.swiper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 100%;
}

.swiper h3, p {
    margin-bottom: 2vh;
}

.swiper-slide {
    height: 100%;
    width: 100%;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5%;
    height: 100%;
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
    color: white;
}

.swiper-controls {
    display: flex;
    width: 60%;
    align-self: center;
    margin-bottom: 5vh;

    --swiper-navigation-color: #4F4538;
    --swiper-pagination-color: white;
}

.swiper-controls > * {
    position: static !important;
}

/* Carousel für Logos */

.carousel {
    margin-bottom: 1vh;
    height: 10vh;
    overflow: hidden;
}

.carousel .swiper-slide {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel img {
    max-width: 90%;
    max-height: 90%;
}