.swiper {
  width: 100%;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease;
  border: none;
}

.swiper-slide iframe,
.swiper-slide img {

  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.mySwiper2 {
  height: 60vh;
  width: 100%;
  aspect-ratio: 16/9;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:800px) and (min-height:400px) {

  .mySwiper2 {
    height: 50vh;
  }

}


@media (min-width: 801px) and (orientation: portrait) {
  .swiper-slide img {
    height: 100%;
  }
}