* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

.slideshow-container-wrap {
    max-width: 2000px;
    margin: auto;
}

.slideshow-container {
    position: relative;
    overflow: hidden;
    height: 66.66vh;
    border-bottom: 8px solid var(--sg-calvoerde-yellow);
}

.slideshow-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(20vw + 16px);
    min-width: 160px;
    max-width: 224px;
    z-index: 10;
    padding: 16px;
    background-color: #ffffffa3;
    border-radius: 8px 0 0 0;
}

.slideshow-container-end {
    position: relative;
}

.slideshow-container-end:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 66.67%;
    height: 8px;
    background-color: var(--sg-calvoerde-red);
}

.slideshow-container-end:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33.33%;
    height: 8px; 
    background-color: var(--sg-calvoerde-yellow);
}

.img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.img-slide.show {
    opacity: 1;
}

.img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.prev, .next {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 64px;
    height: 64px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    color: transparent;
}

.slideshow-container:hover .prev,
.slideshow-container:hover .next {
    background-color: #ffffff75;
    color: #3b3b3b !important;
}

.next {
    right: 0;
}

.slideshow-container:hover .prev:hover,
.slideshow-container:hover .next:hover {
    background-color: white;
}

@media (min-width: 2000px) {
    .slideshow-container {
        height: 32rem;
    }
}

@media (max-width: 575.9px) {
    .slideshow-container {
        height: 33.33vh;
    }
}