/* Table of content 
=====================================

01. Typography
02. Misc and reusable element
03. Preloader
04. Header
05. Home
06. Footer
07. Dark

*/
/* =========================================================== 
    01. Typography
============================================================ */
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a,
a:hover,
a:focus,
a:active,
input,
button,
textarea {
  outline: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

button {
  border: none;
}
button:focus {
  outline: none;
}

a,
input,
textarea {
  -webkit-transition: all 0.3s ease-in-out 0.25s;
  -o-transition: all 0.3s ease-in-out 0.25s;
  transition: all 0.3s ease-in-out 0.25s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

p {
  font-size: 14px;
  line-height: 22px;
}

/* =========================================================== 
    02. Misc and Re-usable Element
============================================================ */
.bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.main-wrapper {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 150px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* overlay gradient solid opacity */
.r4r-overlay,
.r4r-gradient,
.r4r-solid-opacity {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.r4r-overlay {
  background-image: url(../images/overlay.png);
  background-repeat: repeat;
}

.page-section {
  padding-top: 50px;
  display: none;
  max-height: 450px;
  overflow-y: auto;
}
.page-section.active {
  display: block;
}

.page-heading {
  margin-bottom: 50px;
}

.r4r-btn-default {
  padding: 15px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  background-color: transparent;
  border: 1px solid;
  transition: all 0.3s ease;
  font-weight: 700;
  border: 1px solid;
}
.r4r-btn-default:hover, .r4r-btn-default:focus {
  color: #fff;
}

.heading-sepearator {
  display: inline-block;
  width: 50px;
  height: 3px;
  margin: 30px 0;
}

/* helper class */
.mt-10 {
  margin-top: 10px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}


@media(max-width:767px) {
	
	.r4r-header {
	    float: left;
	}
	
	.navbar>.container .r4r-description {
	    margin-left: -10px;
	}
	
	.navbar-right {
	     float: right;
	     margin-right: 5px;
	}

}


@media(min-width:768px) {
    .navbar-custom {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

}

    
@media(min-width:1200px) {
    .navbar-right {
	  margin-right: -40px!important;
	}	
}

/* =========================================================== 
    03. Preloader
============================================================ */
#r4r-preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999999;
  display: block;
  background-color: #fff;
}

.r4r-preloader-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: rgba(0, 0, 0, 0.65);
  border-bottom-color: rgba(0, 0, 0, 0.15);
  border-left-color: rgba(0, 0, 0, 0.65);
  border-right-color: rgba(0, 0, 0, 0.15);
  -webkit-animation: undr-preloader-circle 0.8s linear infinite;
  animation: undr-preloader-circle 0.8s linear infinite;
}

@keyframes r4r-preloader-circle {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes undr-preloader-circle {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
#content-preloader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 2px solid;
  -webkit-animation: r4r-preloader-circle 0.8s linear infinite;
  animation: r4r-preloader-circle 0.8s linear infinite;
  z-index: 99;
}

/* =========================================================== 
    04. Header
============================================================ */
.r4r-header {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.toggle-bar {
  width: 45px;
  height: 45px;
  display: inline-block;
  float: left;
}
.toggle-bar.exit .bars {
  background-color: transparent !important;
}
.toggle-bar.exit .bars:before {
  transform: translateY(8px) rotateZ(-45deg);
}
.toggle-bar.exit .bars:after {
  transform: translateY(-8px) rotateZ(45deg);
}
.toggle-bar .bars {
  display: inline-block;
  width: 23px;
  height: 2px;
  position: relative;
  top: 2px;
  vertical-align: bottom;
  -webkit-transition: all ease .3s;
  -moz-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}
.toggle-bar .bars:after, .toggle-bar .bars:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 23px;
  height: 2px;
  -webkit-transition: all ease .3s;
  -moz-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
  outline: 1px solid transparent;
  left: 0;
}
.toggle-bar .bars:before {
  top: -8px;
}
.toggle-bar .bars:after {
  top: 8px;
}

.container>.logo-row {
    margin-right: 0;
    margin-left: 0;
}

.logo-row {
	float: left;
}

.logo-row .logo-small {
	width: 200px;
	height: 200px;	
}


img.r4r-logo {
 display:block;
 width: 200px;
}


.r4r-description {
  display: block;
  text-transform: uppercase;
  position: relative;
  font-size: 12pt;
  margin-top: 10px;
}

.navbar-nav a.r4r-listen-live {
 display: block;
 padding: 10px;
 text-transform: uppercase;
 font-size: 12pt;
}

.navbar-right .navbar-right>.navbar-nav>li>a.r4r-live-stream {
  
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 9999;
  
}

.navbar-nav a.r4r-listen-live:focus, .navbar-nav a.r4r-listen-live:hover {
    color: #000;
    text-decoration: none;
}

@media(min-width:768px) and (max-width:1199px) {
	
	.logo-row .logo-small {
		width: 200px;
		height: 200px;	
	}
	img.r4r-logo {
	 display:block;
	 width: 200px;
	}
	
	.r4r-description, .navbar-nav a.r4r-listen-live {

  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 9999;




	  font-size: 10pt;
	}	

}

@media(min-width:400px) and (max-width:767px) {

	.logo-row .logo-small {
		width: 200px;
		height: 200px;	
	}
	img.r4r-logo {
	 display:block;
	 width: 200px;
	}	
	
	.navbar-nav a.r4r-listen-live {
	  font-size: 8pt;
	}	
	.r4r-description {
     font-size: 8pt;
     word-wrap: normal;
     width: 200px;
	}
	.navbar-right {
	    margin-top: -20px;
	}
	
}

@media(max-width:399px) {
	.logo-row .logo-small {
		width: 200px;
		height: 200px;	
	}
	img.r4r-logo {
	 display:block;
	 width: 200px;
	}	
	.navbar-nav a.r4r-listen-live {
	  font-size: 8pt;
	}
	.r4r-description {
     font-size: 8pt;
     word-wrap: normal;
     width: 200px;
	}
	.navbar-right {
	    margin-top: -20px;
	}
}





.r4r-menu {
  float: left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.r4r-menu.show-menu {
  opacity: 1;
  visibility: visible;
}
.r4r-menu li {
  padding: 10px 5px;
}
.r4r-menu a {
  display: block;
  text-transform: uppercase;
  position: relative;
}
.r4r-menu a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s ease;
}
.r4r-menu a:hover:after {
  width: 100%;
}
.r4r-menu li.active > a:after {
  width: 100%;
}

/* =========================================================== 
    05. Home
============================================================ */
#r4r-home h1 {
  font-size: 50px;
}

.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.r4r-countdown div {
  display: inline-block;
}
.r4r-countdown div span {
  display: block;
  width: 100px;
}
.r4r-countdown div span:first-child {
  font-size: 3em;
}
.r4r-countdown div span:last-child {
  font-size: 1em;
  text-transform: uppercase;
  width: 60px;
  text-align: center;
}

/* =========================================================== 
    06. Footer
============================================================ */
.r4r-footer {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.social-footer a {
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

.social-footer a:focus, .social-footer a:hover {
    color: #000;
}

.copyright {
  font-size: 13px;
}

/* =========================================================== 
    07. Dark
============================================================ */

.r4r-gradient {
  background: -webkit-linear-gradient(90deg, rgba(123, 67, 151, 0.5) 10%, rgba(220, 36, 48, 0.7) 90%);
  /* Chrome 10+, Saf5.1+ */
  background: -moz-linear-gradient(90deg, rgba(123, 67, 151, 0.5) 10%, rgba(220, 36, 48, 0.7) 90%);
  /* FF3.6+ */
  background: -ms-linear-gradient(90deg, rgba(123, 67, 151, 0.5) 10%, rgba(220, 36, 48, 0.7) 90%);
  /* IE10 */
  background: -o-linear-gradient(90deg, rgba(123, 67, 151, 0.5) 10%, rgba(220, 36, 48, 0.7) 90%);
  /* Opera 11.10+ */
  background: linear-gradient(90deg, rgba(123, 67, 151, 0.5) 10%, rgba(220, 36, 48, 0.7) 90%);
  /* W3C */
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
.r4r-btn-default,
input,
.r4r-countdown,
.r4r-menu li.active > a,
.r4r-menu a:hover,
.r4r-symbol i,
span.r4r-description,
.service .icon i {
  color: #fff;
}

.toggle-bar .bars,
.toggle-bar .bars:before,
.toggle-bar .bars:after,
.r4r-menu a:after,
.heading-sepearator {
  background-color: #fff;
}

r4r-mc-form input,
.r4r-btn-default {
  border-color: #fff;
}

#content-preloader {
  border-top-color: rgba(255, 255, 255, 0.65);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  border-left-color: rgba(255, 255, 255, 0.65);
  border-right-color: rgba(255, 255, 255, 0.15);
}

::-webkit-input-placeholder {
  color: #fff;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

:-ms-input-placeholder {
  color: #fff;
}

