#slideshow {
    height: 202.5px;
}

.slideshow-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 800px;

    left: 0;
    object-position: center;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: -1;
}

img.img-next {
    opacity: 1;
    z-index: 1;
}

.img-fadeOut {
    z-index: 2;
    opacity: 0;
    transition: visibility .5s, opacity .5s linear;
    visibility: hidden;
}

.slide-indicators {
    position: absolute;
    z-index: 999;
    bottom: 5%;
    left: 30%;
    width: 40%;
}

/* Next & previous buttons */
.prev, .next {
    position: absolute;
    z-index: 999;
    margin: 0 auto;
    top: 25%; 
    cursor: pointer;
    color:#000000;
    background-color: rgba(255,255,255, 0.8);
    padding: 40px 16px;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
}
  
/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: #ffffff;
}
  
/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #f4511e;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
.slide-indicators .active, .dot:hover {
    background-color: #fffb00;
}


@media screen and (min-width: 768px) {
    .prev, .next {
        top: 44%;
    }
    #slideshow {
        height: 800px;
    }
}