@charset "UTF-8";
/* CSS Document */
.swiper {
  width: 100%;
  height: 100%; /* Höhe festlegen */
}

/*.swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}*/

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bild füllt den Bereich */
}

.text-content {
  position: absolute;
  bottom: 20px; /* Position am unteren Rand */
  left: 20px;
  background: rgba(0, 0, 0, 0.4); /* Halbtransparenter Hintergrund */
  /*color: white;*/
  padding: 5px;
  border-radius: 5px;
}

.text-white {
    color: hsla(0,0%,100%,1.00) !important;
    font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
}

@media screen and (max-width: 575px) {
  .text-content{
    display: none; /* text-content auf dem Handy ausblenden */
  }
  .main-content {
    width: 100%; /* Hauptinhalt über die volle Breite */
  }
}
 
@media screen and (max-width: 575px) {
  .qr_code{
    display: none; /* text-content auf dem Handy ausblenden */
  }
   
}


