
/** banner-section **/

.banner-section{
  position: relative;
  overflow: hidden;
}
  
.banner-carousel .slide-item{
  position: relative;
  padding: 185px 0px 230px 0px;
}

.banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0.63%, rgba(0, 0, 0, 0.7) 37.58%, rgba(0, 0, 0, 0.16) 75.48%, rgba(255, 255, 255, 0) 99.13%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.banner-carousel .content-box{
  position: relative;
  display: block;
  max-width: 710px;
  z-index: 5;
}
  
.banner-carousel .slide-item .bg-layer{
  position: absolute;
  right:0;
  top:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}
  
.banner-carousel .active .slide-item .bg-layer{
  -webkit-transform:scale(1.25);
  -ms-transform:scale(1.25);
  transform:scale(1.25);
}
  
.banner-carousel .content-box h2{
  position: relative;
  display: block;
  font-size: 72px;
  line-height: 80px;
  color: #fff;
  margin-bottom: 19px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box h2{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-carousel .content-box p{
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box p{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
  
.banner-carousel .content-box .btn-box{
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-carousel .owl-dots{
  position: absolute;
  left: 30px;
  top: 50%;
  height: 160px;
  width: 15px;
  margin-top: -80px;
  counter-reset: slides-num;
}

.banner-carousel .owl-dots::after {
  position: absolute;
  right: 0px;
  top: -12px;
  content: "0" counter(slides-num);
  display: inline-block;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.50);
  font-weight: 500;
  transform: rotate(-90deg);
}

.banner-carousel .owl-dots .owl-dot span{
  position: absolute;
  display: inline-block;
  left: 18px;
  top: 10px;
  width: 25px !important;
  height: 2px !important;
  background: rgba(255, 255, 255, 0.20) !important;
  margin: 0px !important;
}

.banner-carousel .owl-dots .owl-dot.active span{
  background: var(--theme-color) !important;
}

.banner-carousel .owl-dots .owl-dot:nth-child(2) span{
  left: 51px;
}

.banner-carousel .owl-dots .owl-dot:last-child span{
  left: 84px;
}

.banner-carousel .owl-dots button{
  position: absolute;
  bottom: 29px;
  left: -9px;
  counter-increment: slides-num;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  transform: rotate(-90deg);
}

.banner-carousel .owl-dots button.active:before{
  position: absolute;
  content: counter(slides-num);
}

.banner-carousel .owl-dots button.active:after{
  position: absolute;
  content: '0';
  top: 0px;
  right: 0px;
}


@media only screen and (max-width: 499px){
  .banner-carousel .content-box h2{
    font-size: 40px;
    line-height: 50px;
  }
}











































