.sliderContainer {
  display: flex;
  gap: 10px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 30px;
}

.mainSliderWrapper {
  width: calc(100% - 280px);
  height: 502px;
  position: relative;
}

.mainSlider {
  height: 100%;
  width: 100%;
  /* border-radius: 8px; */
  overflow: hidden;
}

.mainSlide {
  position: relative;
  height: 100%;
  width: 100%;
}

.thumbsContainer {
  width: 270px;
  height: 502px;
}

.thumbsSlider {
  height: 100%;
}

.thumbSlide {
  position: relative;
  height: 154px !important;
  width: 270px !important;
  /* border-radius: 8px; */
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  cursor: pointer;
  margin-bottom: 10px;
}

.thumbSlide:hover {
  opacity: 0.8;
}

.thumbSlide.swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #00adb5;
}

.swiperButtonPrev,
.swiperButtonNext {
  background-color: rgba(255, 255, 255, 0.7);
  width: 35px !important;
  height: 35px !important;
  border-radius: 50%;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0px 0px 2px 0px #00000040;
}

.swiperButtonPrev::after,
.swiperButtonNext::after {
  display: none;
}

@media (max-width: 1400px) {
  .sliderContainer {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .mainSliderWrapper {
    height: 400px;
  }

  .thumbsContainer {
    height: 400px;
  }

  .thumbSlide {
    height: 120px !important;
  }
}

@media (max-width: 768px) {
  .sliderContainer {
    flex-direction: column;
    height: auto;
    padding: 0 10px;
  }

  .mainSliderWrapper {
    width: 100%;
    height: 350px;
  }

  .thumbsContainer {
    width: 100%;
    height: 100px;
    margin-top: 10px;
  }

  .thumbSlide {
    height: 100px !important;
    width: 120px !important;
    margin-right: 10px;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .mainSliderWrapper {
    height: 250px;
  }

  .thumbSlide {
    width: 90px !important;
    height: 90px !important;
  }

  .swiperButtonPrev,
  .swiperButtonNext {
    width: 30px !important;
    height: 30px !important;
  }
}
