.main-slider {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
  background: transparent;
  margin-top: 50px;
}

.main-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-slider {
  width: 100%;
  max-width: 800px;
  height: 80px;
  margin-top: 20px;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 50px;
}

.thumb-slider .swiper-slide {
  height: 100%;
  opacity: 0.55;
  transition: opacity 0.3s ease, border 0.3s ease;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--active-color);
}

.thumb-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-slider .swiper-pagination {
  background: #fff;
  padding: 8px 0;
  border-radius: 999px;
  display: none;
}

.main-slider .swiper-pagination-bullet {
  background: #9ca3af;
  opacity: 1;
}

.main-slider .swiper-pagination-bullet-active {
  background: #2563eb;
}

/* @media (max-width: 767px) {
  .main-slider .swiper-pagination {
    display: block !important;
    position: relative;
    margin-top: 10px;
  }

  .thumb-slider {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .main-slider .swiper-pagination {
    display: none;
  }

  .thumb-slider {
    display: block !important;
  }
} */