/*
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;
}

/********************************/
/*          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);
    height:100%;
    width:100%;
}

.hero h1 {
    font-size: 6em;    
    font-weight: bold;
    margin: 0;
    padding: 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;    
}

/********************************/
/*            Overlay           */
/********************************/
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #080d15;
    opacity: .3;
}

/********************************/
/*          Custom Buttons      */
/********************************/
.btn.btn-lg {padding: 10px 40px;}
.btn.btn-hero {
  font-size: 18px;
  font-weight: 700;
  color: white;
  background: rgba(117, 168, 17, 0.9);
  padding: 23px 45px 28px 37px;
  border-radius: 15px;
  border: 2px solid transparent;
},
.btn.btn-hero:hover,
.btn.btn-hero:focus {
  color: white;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
  margin: 20px auto;
}
.btn a {
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.btn a:hover,
.btn a:focus {
  color: white;
}

/********************************/
/*       Slides backgrounds     */
/********************************/
.fade-carousel .slides .slide-1 {
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/********************************/
/*          Media Queries       */
/********************************/
@media screen and (min-width: 980px){
    .hero { width: 980px; },
}
@media screen and (max-width: 640px){
    .hero h1 { font-size: 4em; }    
}

.img-top-slideshow { position: relative; margin: auto; top: 30%; left: 0px; right: 0px; bottom: 0px; z-index: 1; height: auto; width: auto;} 
.img-bottom-slideshow { position: relative; margin: auto; top: 30%; left: 0%; right: 0px; bottom: 0px; z-index: 2; max-height:44px; height:auto; width:auto; max-width:100%;} 
.img-bottom-other-slideshow { position: relative; margin: auto; top: 30%; left: 0%; right: 0px; bottom: 0px; z-index: 2; max-height:134px; height:auto; width:auto; max-width:100%;} 
