/* Slideshow container */
.slideshow-container {
    /*max-width: 1000px;*/
    position: relative;
    margin: auto;
    width: 100%;
    height: 100%;
}

/* Hide the images by default */
.slideshow-container .mySlides {
    display: none;
    height: 100%;
}
.slideshow-container .mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Next & previous buttons */
.slideshow-container .prev, .slideshow-container .next {
    cursor: pointer;
    text-decoration: none;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next & prev buttons" */
.slideshow-container .prev { left: 0; }
.slideshow-container .next { right: 0; }

/* On hover, add a black background color with a little bit see-through */
.slideshow-container .prev:hover, .slideshow-container .next:hover {
    /*background-color: rgba(0,0,0,0.8);*/
}

/* Caption text */
.slideshow-container .slideText {
    padding: 8px 12px;
    position: absolute;
    top: 10%;
    width: auto;
    /*text-align: center;*/
}

.slideshow-container .dot-container {
    position: absolute;
    bottom: 15%;
    width: 100%;
}
/* The dots/bullets/indicators */
.slideshow-container .dot {
    /*cursor: pointer;*/
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
.slideshow-container .active, .dot:hover {
    background-color: #717171;
}
  
/* Fading animation */
.slideshow-container .fadeslide {
    -webkit-animation-name: fade-anim;
    -webkit-animation-duration: 1.5s;
    animation-name: fade-anim;
    animation-duration: 1.5s;
}
  
@-webkit-keyframes fade-anim {
    from {opacity: .4}
    to {opacity: 1}
}
  
@keyframes fade-anim {
    from {opacity: .4}
    to {opacity: 1}
}