#swiper-vb-photos, {
    padding-top: 60px;
}

#swiper-mk4s-sitedocs {
    padding-top: 60px;
}

#swiper-mk4s-sitedocs {
    padding: 0 20% 40px;
    filter: drop-shadow(0px 3px 3px #50505075);
}

@media (max-width: 680px) {
    #swiper-mk4s-sitedocs {
        padding: 0 10% 40px;
    }

}

.swiper-container {
    overflow-x: hidden;
}

.swiper-slide {
    height: 90vw; /* Make slides larger (adjust as needed) */
    width: auto; /* Let the width be determined by the content */
    position: relative; /* Required for overlap */
    transform: scale(0.85); /* Shrink slides slightly for overlap effect */
    transition: transform 0.3s ease; /* Smooth transition when slide changes */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-style: solid;
    border-color: #fff;
    border-width: 10px;
    filter: drop-shadow(0px 3px 8px #50505075);
    /* Drop shadow effect */
    box-shadow: 0px 3px 8px rgba(75, 75, 75, 0.5);
    /* Adding a subtle shadow effect for better visibility */
    onclick: openModal(this) 
}

@media (max-width: 680px) {
    .swiper-slide img {
        border: 8px solid #eeeeee;
    }

    #swiper-mk4s-sitedocs img {
    border-style: unset;
    }
}

@media (max-width: 480px) {
    .swiper-slide img {
        border: 6px solid #eeeeee;
    }

    #swiper-mk4s-sitedocs img {
    border-style: unset;
    }
}

.swiper-slide-active {
    transform: scale(1); /* Enlarge the active slide */
    z-index: 10; /* Bring the active slide to the front */
}
