/* CSS */

.swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.main-carousel {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /*16: 9 Aspect Ratio (9/16 * 100%);*/
}

.swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail {
  margin: 5px;
  cursor: pointer;
}

.thumbnail img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s;
}

.thumbnail img:hover {
  transform: scale(1.1);
}

/* Responsive Styles */

@media (max-width: 1200px) {
  .main-carousel {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .main-carousel {
    height: 40vh;
  }
}

@media (max-width: 768px) {
  .thumbnail img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .main-carousel {
    height: 30vh;
  }
}

@media (max-width: 480px) {
  .thumbnail img {
    width: 40px;
    height: 40px;
  }
}

/* Custom Styles for Navigation and Pagination */

.swiper-button-next, .swiper-button-prev {
  color: maroon;
}

.swiper-pagination-bullet {
  background-color: maroon;
}

.swiper-pagination-bullet-active {
  background-color: maroon;
}

