section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    width: 300px;
    height: 400px;
    background: #F8F9FF;
    border-radius: 90px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
    border: 4px solid #E5D0A7;
    overflow: hidden;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #D52300;
}

.stage-bg-mobile-zoom{
    max-width: none;
}
@media (max-width: 640px) {
    .stage-bg-mobile-zoom {
        max-width: 170%;
        width: 170%;
        left: 50%;
        transform: translateX(-50%);
    }
}