@charset "utf-8";
/* CSS Document */
/*
Fade content bs-carousel with hero headers
Code snippet by maridlcrmn (Follow me on Twitter @maridlcrmn) for Bootsnipp.com
Image credits: unsplash.com
*/

/********************************/
/*       Fade Bs-carousel       */
/********************************/
.fade-carousel {
    position: relative;
    height: 100vh;
}
.fade-carousel .carousel-inner .item {
    height: 100vh;
}
.fade-carousel .carousel-indicators > li {
    margin: 0 2px;
    background-color: #1b3664;
    border: 2px solid #fff;
    opacity: .7;
}
.fade-carousel .carousel-indicators > li.active {
  width: 10px;
  height: 10px;
  opacity: 1;
}
.carousel-indicators{ bottom:100px;}
/********************************/
/*          Hero Headers        */
/********************************/
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0,0,0,.75);
      -webkit-transform: translate3d(-50%,-50%,0);
         -moz-transform: translate3d(-50%,-50%,0);
          -ms-transform: translate3d(-50%,-50%,0);
           -o-transform: translate3d(-50%,-50%,0);
              transform: translate3d(-50%,-50%,0);
}
.hero h1 {
    font-size: 4em;    
    font-weight: bold;
    margin: 0;
    padding: 0;
	line-height:1.2em;
}
.hero h1 span{ 
    font-weight: 200;}
.hero p{ text-transform:none; font-size:16px; font-weight:500; line-height:35px; margin-bottom:0;}
.fade-carousel .carousel-inner .item .hero {
    opacity: 0;
    -webkit-transition: 2s all ease-in-out .1s;
       -moz-transition: 2s all ease-in-out .1s; 
        -ms-transition: 2s all ease-in-out .1s; 
         -o-transition: 2s all ease-in-out .1s; 
            transition: 2s all ease-in-out .1s; 
}
.fade-carousel .carousel-inner .item.active .hero {
    opacity: 1;
    -webkit-transition: 2s all ease-in-out .1s;
       -moz-transition: 2s all ease-in-out .1s; 
        -ms-transition: 2s all ease-in-out .1s; 
         -o-transition: 2s all ease-in-out .1s; 
            transition: 2s all ease-in-out .1s;    
}
.carousel-icon{ position:absolute; top:90%; text-align:center; z-index:999; color:#fff; width:100%;}
.carousel-icon i{ font-size:3em;}
/********************************/
/*            Overlay           */
/********************************/
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #080d15;
    opacity: .7;
}

/********************************/
/*          Custom Buttons      */
/********************************/
.btn.btn-lg {padding: 10px 40px;}
.btn.btn-hero,
.btn.btn-hero:hover,
.btn.btn-hero:focus {
    color: #f5f5f5;
    background-color: transparent;
    border-color: #fff;
    outline: none;
    margin: 20px auto;
	border-radius:0;
}

/********************************/
/*       Slides backgrounds     */
/********************************/
.fade-carousel .slides .slide-1, 
.fade-carousel .slides .slide-2,
.fade-carousel .slides .slide-3 {
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.fade-carousel .slides .slide-1 {
  background-image: url(../images/slider-1.JPG); 
}
.fade-carousel .slides .slide-2 {
  background-image: url(../images/slider-2.JPG);
}
.fade-carousel .slides .slide-3 {
  background-image: url(../images/slider-3.JPG);
}

/********************************/
/*          Media Queries       */
/********************************/
@media screen and (min-width: 980px){
    .hero { width: 650px; }    
	.hero h1 {
		font-size: 4em;    
		font-weight: bold;
		margin: 0;
		padding: 0;
		line-height:1.2em;
	}
	.hero h1 span{ 
		font-weight: 200;}
	.hero p{ text-transform:none; font-size:16px; font-weight:500; line-height:35px; margin-bottom:0;}
}
@media screen and (max-width: 980px){ 
	.hero{ top:70%;}  
	.hero h1 {
		font-size: 3em;    
		font-weight: bold;
		margin: 0;
		padding: 0;
		line-height:1em;
	}
	.hero h1 span{ 
		font-weight: 200;}
	.hero p{ text-transform:none; font-size:13px; font-weight:500; line-height:15px; margin-bottom:0;}
}
@media screen and (max-width: 640px){
    .hero h1 { font-size: 4em; }    
}
