/* slider.css */

.cis-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.cis-slider-main {
    position: relative;
    overflow: hidden;
    height: 450px; /* Feste Höhe für den Slider */
}

.cis-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cis-slide img {
    width: 100%;
    height: 100%;
    object-fit:  contain;
}

.cis-slider-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.cis-thumbnail {
    width: 100px;
    margin: 0 5px;
    cursor: pointer;
}

.cis-thumbnail img {
    width: 100%;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.cis-thumbnail.active img,
.cis-thumbnail:hover img {
    opacity: 1;
}
