/* Slideshow */
.swiper {
  aspect-ratio: 16 / 8;
  height: auto;
  margin: 0;
  padding: 0;
}

.swiper-slide {
  text-align: center;
  background: #fff;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: auto;
}

/* Mobil */
@media only screen and (max-width: 470px) {

  .swiper-slide img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: auto;
  }

}