.slideshow {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
}

.slideshow_two {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
}

.slideshow_three {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
}

.slideshow_two-container {
    position: relative;
    margin: auto;
}

.slideshow_three-container {
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    width: 88vw;
    display: none;
}

.mySlides-two {
    width: 88vw;
    display: none;
}

.mySlides-three {
    width: 88vw;
    display: none;
}

.slideshow_img {
    height: 80vh;
    object-fit: contain;
}

.slideshow_img-two {
    height: 80vh;
    object-fit: contain;
}

.slideshow_img-three {
    height: 80vh;
    object-fit: contain;
}

/* first Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    opacity: 0.5;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Reverse "prev button" */
.prev {
    transform: scaleX(-1);
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    opacity: 1;
}





/* second Next & previous buttons */
.prev-two,
.next-two {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    opacity: 0.5;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next-two {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Reverse "prev button" */
.prev-two {
    transform: scaleX(-1);
}

/* On hover, add a black background color with a little bit see-through */
.prev-two:hover,
.next-two:hover {
    opacity: 1;
}




/* third Next & previous buttons */
.prev-three,
.next-three {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    opacity: 0.5;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next-three {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Reverse "prev button" */
.prev-three {
    transform: scaleX(-1);
}

/* On hover, add a black background color with a little bit see-through */
.prev-three:hover,
.next-three:hover {
    opacity: 1;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #F8FFF9;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    right: 0;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* breakpoints */

@media (max-width: 800px) {

    .slideshow_img {
        height: 100%;
    }
    
    .slideshow_img-two {
        height: 100%;
    }
    
    .slideshow_img-three {
        height: 100%;
    }
    
}