.layout-video_carousel .vcarousel-cell {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    aspect-ratio: 445 / 820;
    background: transparent;
}
@media (min-width: 768px) {
    .layout-video_carousel .vcarousel-cell {
        width: 358px;
    }
}
@media (min-width: 1200px) {
    .layout-video_carousel .vcarousel-cell {
        width: 390px;
    }
}
@media (min-width: 1800px) {
    .layout-video_carousel .vcarousel-cell {
        width: 445px;
    }
}
/* .layout-video_carousel .vcarousel-cell:not(.is-selected) {
    transform: scaleY(0.8);
} */
.layout-video_carousel .vcarousel-cell .img-container {
    aspect-ratio: 445 / 560;
    width: 100%;
    height: auto;
    overflow: hidden;
    transition: aspect-ratio 0.3s ease;
    transition-delay: 0.3s;
    object-position: center;
    object-fit: contain;
}
.layout-video_carousel .vcarousel-cell.is-selected .img-container {
    aspect-ratio: 445 / 660;
}
/* @media (min-width: 768px) {
    .layout-video_carousel .vcarousel-cell .img-container {
        aspect-ratio: 358 / 440;
    }
}
@media (min-width: 1200px) {
    .layout-video_carousel .vcarousel-cell .img-container {
        aspect-ratio: 390 / 575;
    }
}
@media (min-width: 1800px) {
    .layout-video_carousel .vcarousel-cell .img-container {
        aspect-ratio: 445 / 660;
    }
} */
.layout-video_carousel .vcarousel-cell .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.layout-video_carousel .vcarousel-cell .img-container .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.layout-video_carousel .vcarousel-cell .slide_title {
    width: 100%;
    padding: 20px 0 0 0;
    height: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    transition-delay: 0.5s;
}
.layout-video_carousel .vcarousel-cell.is-selected .slide_title {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    height: auto;
}
