.video-slider-wrapper {
  max-width: 1920px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.video-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: 30px;
}

.video-swiper-button-prev,
.video-swiper-button-next {
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.video-swiper-button-prev img,
.video-swiper-button-next img {
  width: 100%;
  height: auto;
}

.video-swiper{
  height: 800px;
}
.my-swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  width: 800px;
}

.video-thumb {
  position: relative;
  width: 100%;
  width: 800px;
  height: 700px;
  overflow: hidden;
  border-radius: 12px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(71, 26, 123, 0.6); 
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-thumb:hover .overlay,
.video-thumb:active .overlay {
  opacity: 1;
}

.overlay img {
  width: 50px;
  height: 50px;
}


@media (max-width: 991px) {
 .my-swiper-slide {
   width: 300px!important;
   padding: 0px!important;
  }
  .video-slider-wrapper {
    height: 300px!important;
    margin-bottom: 60px;
    gap: 0px!important;
  }
  .video-swiper{
    height: 250px;
  }
  .video-swiper-button-prev img,
.video-swiper-button-next img {
  width: 20px;
  height: auto;
}
.video-thumb {

  height: 250px;
 
}
.video-swiper-button-prev,
.video-swiper-button-next {
  margin-left: 20px;
}
.my-swiper-wrapper{
padding: 0px!important;
}


} 
