/* style.css 
 * Ffw Sannerz
 * 04.02.2025 MS
 */

 body {
    font-family: "Montserrat", sans-serif;
    /*font-size: 16px; */
    font-size: 1.2em;

}

div,
p,
th,
td,
ul,
li {
    font-family: inherit;
    font-size: inherit;
    color: lightgray;

}

.menu-icon {
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: black;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    color: white;
    border-radius: 5px;
}

.w3-sidebar {
    display: none;
    position: fixed;
    right: 0;
    width: 250px;
    background-color: black;
    padding-top: 60px;
    z-index: 1000;
}

.w3-sidebar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 16px;
    text-align: right;
}

.w3-sidebar a:hover {
    background-color: #575757;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    min-height: 400px;
    z-index: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: darkgrey;
}

/* Standardfarbe der Bullets */
.swiper-pagination-bullet {
    background: darkgrey;
}

/* Farbe der aktiven Bullet */
.swiper-pagination-bullet-active {
    background: darkgrey;
}

.swiper-slide img {
    /* display: block; */
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
}