.swiper-container {
  max-width: 100%;
  overflow: hidden;
}
.swiper-slide .slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 400px;
}
.swiper-thumbs .slide-bg {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.swiper-thumbs {
  display: none;
}
@media (min-width: 768px) {
  .swiper-thumbs {
    display: flex;
    max-width: 100%;
    margin-top: 12px;
    height: 100px;
  }
  .swiper-thumbs .swiper-slide {
    width: 100px;
    opacity: 0.6;
    cursor: pointer;
  }
  .swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #0073aa;
  }
}
.fullscreen {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}
.fullscreen .swiper-slide .slide-bg {
  height: 100vh !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
