
.gallery-slideshow-container {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    overflow: hidden;
    min-height: 400px;  Ensures visible height 
}

.gallery-slide {
    display: none;
    width: 100%;
    height: auto;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

    .gallery-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        max-height: 80vh; /* Optional: prevents overly tall images */
    }

 Fade effect 
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.gallery-slide.active {
    display: block;
    position: relative;
    z-index: 1;
}

/* Dots 
.gallery-dots {
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 3px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

    .dot:hover, .dot.active {
        background-color: #717171;
    }*/

