body, html {
    height: 100%;
}

body {        
    font-family: Montserrat,Helvetica,Arial,sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    max-width: 100vw;
    overflow-x: hidden;
}


/**************************************
Header
**************************************/

header {
    background-color: #fff;
}

.navbar
{
    border-bottom: 1px solid #eee;
    padding: 15px 0px;  
    min-height: 12%;  
}

.navbar h4 {
    font-size: 30px !important;
    font-weight: 600;
    color: #337ab7;
}

.ringto {
    font-size: 30px !important;
    font-weight: 600;
    color: #337ab7;
}

.navbar h5 {
    font-size: 22px !important;
    font-weight: 600;
}

.ringtocta {
    font-size: 22px !important;
    font-weight: 600;
}

.navbar-title {	
    width: 100%;
	font-weight: 700;
    font-size: 32px !important;		            
}


/* The hero image */
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/accident_bg.jpg");

  /* Set a specific height 
  min-height: 80%;*/

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-content {
    padding-top: 2.5em !important;
}


.oc-content {
    font-family: 'Montserrat';
    color: #fff;    
}

.oc-content h1 {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 25px;
}

.oc-content h2 {
    font-weight: 600;
    font-size: 22px;
}

 .oc-footer {
    min-height: 8%;
    padding-left: 3em;
    padding-top: 1.5em;
    text-indent: 20px;
    background: #1b1d29;
    color: #eed;
}

 .oc-footer a {
     color: #eed;
 }
 
 .oc-footer a:hover {
     text-decoration: none;
     color: #337ab7;
 }


@media screen and (min-width: 600px) {   
    
    .only-mobile {
        display: none !important;        
    }
}

@media screen and (max-width: 600px) {
  
    .navbar-header {
       text-align: center;
    }

    .navbar-title {    	
        font-size: 22px !important;        
    }
    
    .navbar h4 {
        font-size: 20px !important;
    }
    
	.ringto {
    	font-size: 20px !important;
    }
	
    .navbar h5 {
        font-size: 18px !important;
        margin-top: 40px;        
    }
	
    .ringtocta {
        font-size: 18px !important;
        margin-top: 40px;        
    }
	
    .hero-content {
        padding-top: 0 !important;
    }
    
    .no-mobile {
        display: none !important;        
    }
    
    .mobile-text-left {
        text-align: left !important;
    } 
    
    .mobile-text-center {
        text-align: center !important;
    }
}





@-moz-keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}





@-webkit-keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  60% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@-moz-keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(30px);
  }
  60% {
    transform: translateX(15px);
  }
}
@keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  60% {
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
}
/* /left bounce */


/* right bounce */
@-webkit-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
@-moz-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-30px);
  }
  60% {
    transform: translateX(-15px);
  }
}
@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
/* /right bounce */


/* assign bounce */
.fa-arrow-right {
  -webkit-animation: bounceRight 2s infinite;
  animation: bounceRight 2s infinite;
  float:right;
}

.fa-arrow-left {
  -webkit-animation: bounceLeft 2s infinite;
  animation: bounceLeft 2s infinite;
}

.fa-chevron-down {
  -moz-animation: bounceDown 2s infinite;
  -webkit-animation: bounceDown 2s infinite;
  animation: bounceDown 2s infinite;
text-align:center;
  display:block;
}


.credits {padding-top:50px; display:block; clear:both;}







.arrow_box {
position: relative;
background: #fff;
border-left: 2px solid #aaa;
border-top: 2px solid #aaa;
border-bottom: 2px solid #aaa;
width: 300px;
padding: 8px 20px 8px 40px;
box-sizing: border-box;
}
.arrow_box:after, .arrow_box:before {
left: 100%;
top: 50%;
border: solid transparent;
content: " ";
height: 1;
width: 0;
position: absolute;
pointer-events: none;
}
.arrow_box:after {
border-color: rgba(255, 255, 255, 0);
border-left-color: #fff;
border-width: 17px;
margin-top: -17px;
}
.arrow_box:before {
border-color: rgba(170, 170, 170, 0);
border-left-color: #aaa;
border-width: 19px;
margin-top: -19px;
}


#info{
    
    padding: 25px 0;
}

#info p{
    
    padding: 10px 0;
}


