<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
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: 449px;
}
.fade-carousel .carousel-inner .item {
    height: 449px;
}
.fade-carousel .carousel-indicators &gt; li {
    margin: 0 2px;
    background-color: #f39c12;
    border-color: #f39c12;
    opacity: .7;
}
.fade-carousel .carousel-indicators &gt; li.active {
  width: 10px;
  height: 10px;
  opacity: 1;
}

/********************************/
/*          Hero Headers        */
/********************************/
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #fff;
    text-align: center;
    text-transform:;
      -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: 72px;
    margin: 0;
    padding: 0;
    font-family: pr;
    color: #030304;
    background: rgba(255, 255, 255, 0.7);
}
.hero h3 {
    font-size: 17px;
    color: #000;
    font-family: pn;
}

.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: .7;
}

/********************************/
/*          Custom Buttons      */
/********************************/
.btn.btn-lg {padding: 10px 40px;}
.btn.btn-hero,
.btn.btn-hero:hover,
.btn.btn-hero:focus {
    color: #f5f5f5;
    background-color: #e01010;
    border-color: #e01010;
    outline: none;
    margin: 20px auto;
}

/********************************/
/*       Slides backgrounds     */
/********************************/
.fade-carousel .slides .slide-1, 
.fade-carousel .slides .slide-2,
.fade-carousel .slides .slide-3 {
  height: 449px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero button {
  -webkit-transform: rotate(-6deg);
  -moz-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  -o-transform: rotate(-6deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
/********************************/
/*          Media Queries       */
/********************************/
@media screen and (min-width: 980px){
    /*.hero { width: 980px; }*/
}
@media screen and (max-width: 640px){
    .hero h1 { font-size: 4em; }    
}
/* custom */
@media screen and (min-width: 1025px){
    .hero {
      left: 65%;
      top: 45%;
    }   
    .hero h1 {
      font-size: 70px;
      margin: 0;
      padding: 0;
      font-family: pr;
      color: #030304;
      background: rgba(255, 255, 255, 0.7);
      margin-right: 138px;
      margin-bottom: 50px;
      font-weight: 500;
    }
    .hero h3 {
      font-size: 17px;
      color: #000000;
      font-family: pn!important;
      font-weight: 500;
      width: 400px;
      margin-left: 20%;
      /* left: 40%; */
      text-align: left;
    }
    .hero button {
      font-family: pr;
      font-size: 30px;
      padding: 5px 16px!important;
      border: none!important;
      border-radius: 0!important;
      margin-left: 350px!important;
    }
}
@media screen and (max-width: 1024px) {
    .hero h1 {
      margin-bottom: 35px;
  }
}








































.hero2 {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #fff;
    text-align: center;
    text-transform:;
    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);
}
.hero2 h1 {
    font-size: 72px;
    margin: 0;
    padding: 0;
    font-family: pr;
    color: #030304;
    background: rgba(255, 255, 255, 0.7);
}
.hero2 h3 {
    font-size: 17px;
    color: #333333;
    font-family: pn;
}

.fade-carousel .carousel-inner .item .hero2 {
    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 .hero2 {
    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: .7;
}

/********************************/
/*          Custom Buttons      */
/********************************/
.btn.btn-lg {padding: 10px 40px;}
.btn.btn-hero2,
.btn.btn-hero2:hover,
.btn.btn-hero2:focus {
    color: #f5f5f5;
    background-color: #e01010;
    border-color: #e01010;
    outline: none;
    margin: 20px auto;
}

/********************************/
/*       Slides backgrounds     */
/********************************/
.fade-carousel .slides .slide-1, 
.fade-carousel .slides .slide-2,
.fade-carousel .slides .slide-3 {
  height: 449px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/********************************/
/*          Media Queries       */
/********************************/
@media screen and (min-width: 980px){
    /*.hero2 { width: 980px; }*/
}
@media screen and (max-width: 640px){
    .hero2 h1 { font-size: 4em; }    
}
/* custom */
@media screen and (min-width: 1025px){
    .hero2 {
      left: 32%;
      top: 55%;
    }   
    .hero2 h1 {
    font-size: 51px;
    margin: 0;
    padding: 0;
    font-family: pr;
    color: #030304;
    background: rgba(255, 255, 255, 0.7);
    margin-right: 138px;
    margin-bottom: 50px;
    font-weight: 500;
    }
}
@media screen and (max-width: 1024px){
  .hero2 img {
    display: none;
  }
}</pre></body></html>