/* Slider CSS */
.video-container{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.video-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    background: #000000;
    opacity: 0.2;
}
.video-container video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
  /* Play/Pause button styling */
  .video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
  }

  #playPauseBtn {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #playPauseBtn:hover {
    background-color: rgba(255, 255, 255, 1);
  }

  /* Font Awesome icon style */
  #playPauseBtn i {
    color: #000;
  }
.swiper-container {
    position: relative;
  height: 100%;
  width: 100%;
  margin: auto;
}

.swiper-slide {
  position: relative;
  left: 0;
  top: 0;
  overflow: hidden;
  background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh!important;
}
.swiper-slide:before{
    content: '';
    position: absolute;
    width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
    background: linear-gradient(to right, rgb(3 56 130 / 90%) 30%, rgb(0 0 0 / 10%) 100%);
}

.swiper-slide-active h1 {
  animation: fadeInLeft .8s;
  -webkit-animation-delay: 1s;
  animation-delay: .3s;
  opacity: 1;
}

.swiper-slide-active p {
  animation: fadeInRight .8s;
  -webkit-animation-delay: 1s;
  animation-delay: .3s;
  opacity: 1;
}

.swiper-slide-active a{
    animation: fadeInUp .8s;
  -webkit-animation-delay: 1s;
  animation-delay: .3s;
  opacity: 1;
}
.slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.slide-inner .header-text {
  position: relative;
  padding-top: 2rem;
}
.slide-inner .header-text h1{
    color: #fff;
}
.slide-inner .header-text p{
    color: #fff;
    font-size: 20px;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff !important;
}

.slider-pagination {
    position: absolute;
    bottom: 5%;
}
.swiper-pagination-bullet {
        width: 13px!important;
        height: 10px!important;
        display: inline-block!important;
        background: #DC402B!important;
        opacity: .5!important;
        margin: 0 5px!important;
        border: 1px solid #fbfbfb!important;
        -webkit-border-radius: 20px!important;
                border-radius: 20px!important;
        -webkit-transition: opacity .5s, background-color .5s, width .5s;
        -o-transition: opacity .5s, background-color .5s, width .5s;
        transition: opacity .5s, background-color .5s, width .5s;
        -webkit-transition-delay: .5s, .5s, 0s;
             -o-transition-delay: .5s, .5s, 0s;
                transition-delay: .5s, .5s, 0s;
        }
.swiper-pagination-clickable .swiper-pagination-bullet {
        cursor: pointer;
    }
.slider-pagination .swiper-pagination-bullet-active {
        opacity: 1!important;
        background: #DC402B!important;
        width: 30px!important;
        -webkit-transition-delay: 0s;
             -o-transition-delay: 0s;
                transition-delay: 0s;
    }
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.clearfix {
  display: inline-block;
}
.section-heading {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    text-align: center;
    margin-bottom: 70px;
}
/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/
body {
  overflow-x: hidden;
}
@media (max-width: 992px) {
  html, body {
    overflow-x: hidden;
  }
  .slide-inner .header-text {
    width: auto;
  }
}

@media (max-width: 767px) {
  .video-container{
     position: relative;
     width: 100%;
     height: 100%;
     overflow: hidden;
    }
   .video-container:before{
	 height: 98%;
    }
   .video-container video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     padding-top: 50px;
    }	
	#playPauseBtn{
		width: 45px;
    height: 45px;
    font-size: 20px;
	}
  .swiper-slide:before{
    background: linear-gradient(to right, rgb(3 56 130 / 90%) 30%, rgb(3 56 130 / 79%) 100%);
  }
  .slide-inner .header-text {
    text-align: center;
    width: auto;
  }
  .slide-inner .header-text .buttons {
    display: inline-flex;
  }
  .slider-pagination{
    left: 50%;
    transform: translateX(-50%)!important;
  }
}