.vertical-slider {
    height: 650px;
    /* min-height: 600px; */
    opacity: 0;
    position: relative;
}

.vertical-slider::before {
    content: '';
    height: 80px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    background-image: linear-gradient(to bottom, #ffff 50%, transparent );
    z-index: 9;
}
.vertical-slider::after {
    content: '';
    height: 80px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
    background-image: linear-gradient(to top, #ffff 50%, transparent );
    z-index: 9;
}

.vertical-slider .swiper-slide {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vertical-slider .swiper-slide .img-inner {
    flex-grow: 1;
}

.vertical-slider .swiper-slide img {
    height: 100%;
    object-fit: cover;
    cursor: grab;
}

/* .vertical-slider.swiper-autoheight .swiper-slide {
    height: auto !important;
} */