/*BANNER CSS*/


.hero-slider {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 100vh;
  }
}

section.read-more-section .read-more {
  padding: 1.5rem 9rem 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
section.read-more-section a.explore-more2 {
  position: absolute;
  right: 80px;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #ffffff;
  border-radius: 55px;
  opacity:0;
  visibility:hidden;
  transition:all .3s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform:translateX(0);
  opacity:1;
  visibility:visible;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform:translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #fff;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform:translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #fff;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  text-align: center;
  line-height: 21px;
  font-size: 13px;
  color: #000;
  opacity: 1;
  background: #ffffff54;
  transition:all .2s ease;
  margin: 0 .8rem;
  font-weight: normal;
  text-indent: -999999px;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity:1;
  width: 24px;
  height: 24px;
  background: #ed1c2452;
  position: relative;
  top: -5px;
  line-height: 27px;
  color: #fff;
  text-indent: 0px;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px; display: none;
}

@media screen and (min-width: 992px) {

.swiper-pagination {
  text-align:left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
  bottom:50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}
}
@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
  bottom:30px;

}
}
/*--------------------------------------------------------------
    #hero-style
--------------------------------------------------------------*/
.hero-style {
  height: 90vh;
  transition:all .4s ease;
}


@media screen and (min-width: 992px) {
  .hero-style .container {
    padding-top: 95px;
  }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 690px;
}

.hero-style .slide-title h2 {
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 40px;
  text-transform: capitalize;
  transition:all .4s ease;
}

@media (max-width: 1199px) {
  .hero-style .slide-title h2 {
    font-size: 75px;
  }
}

@media (max-width: 991px) {
  .hero-style .slide-title h2 {
    font-size: 50px;
    margin: 0 0 35px;
  }
}

@media (max-width: 767px) {
  .hero-style .slide-title h2 {
    font-size: 35px;
    margin: 0 0 30px;
  }
}

.hero-style .slide-text p {
  transition:all .4s ease; position: relative; z-index:3;
}

@media (max-width: 767px) {
  .hero-style .slide-text p {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    margin: 0 0 30px;
  }
}

.hero-style .slide-btns > a:first-child {
  margin-right: 10px;
}


.swiper-slide.swiper-slide-active .line-top:after {
        animation-duration: 2s;
        -webkit-animation-duration: 2s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        height: 100%;
        animation-name: fadeInline;
        animation-delay: 1.8s;
    }

    .swiper-slide .line-top:after {
        width: 10px;
        height: 0px;
        background: #E6001A;
        content: "";
        position: absolute;
        top: 0px;
        right:-25px;
        z-index: 99999;
    }



    @keyframes fadeInUp{
      0% {opacity: 0;transform: translateY(3.5rem);}
      100% {opacity: 1;transform: translateY(0);}
      }
      @keyframes fadeIndown {
      0% {opacity: 0;transform: translateY(-3.5rem);}
      100% {opacity: 1;transform: translateY(0);}
      }
      @keyframes fadeInline {
      0% {opacity: 0;width:0%}
      100% {opacity: 1;width:150px;}
      }


      .video-full{height:100%; overflow: hidden;}
      .video-full video {
        height:100%;
        object-fit: cover;
        padding: 0;
        margin: 0;
    }
    .video-banner1 {
      height: 100%;
      padding: 0;
      background-position: inherit;
      background-image: inherit;
      background-size: cover;
      margin: 0;
  }
  body .video-banner1 .mute-toggle {
    position: absolute;
    bottom: 3rem;}



    .video-banner1 .mute-toggle{position: absolute;bottom: 40rem;right: 3rem;width: 4rem;aspect-ratio: 1/1;display: flex;justify-content: space-between;align-items: center;background: rgba(0,0,0,.7);backdrop-filter: blur(10px);cursor: pointer;border-radius: 50%;-webkit-border-radius: 50%;-moz-border-radius: 50%;-ms-border-radius: 50%;-o-border-radius: 50%;}
.video-banner1 .mute-toggle::before{ content: ''; position: absolute; inset: 25%; background-size: contain; filter: brightness(0) invert(1); -webkit-filter: brightness(0) invert(1); background-repeat: no-repeat; background-position: center;}
.video-banner1 .mute-toggle::before{background-image: url('../images/unmute.webp')}
.video-banner1 .mute-toggle.muted::before{background-image: url('../images/mute.webp')}

.video-banner1 .mute-toggle {
  z-index: 5;
  background-color: #fff3;
}

.swiper-pagination {
  bottom: 11rem;
  right: 5rem;
  font-family: var(--family-dm);
}

section.hero-slider.hero-style.hero-slider2 {
  height: auto;
  position: relative;
  z-index: 9;
}
