.parallax-section {
    min-height: 350vh;
    position: relative;
}

.parallax-content {
    position: sticky;
    height: 100vh;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.parallax-content .note {
    margin-top: 20px;
}

.parallax-img {
    display: block;
    border-radius: 10px;
    transition: transform 0.1s ease;
    width: 60vw;
    max-width: 360px !important;
    height: auto;
}

@media (min-width: 900px) {
    .parallax-img {
        width: 70vw;
    }
}

.parallax-gallery {
    margin: auto;
    padding: 20vh calc(var(--gap, 8px) * 4) 100vh;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 1800px) {
    .parallax-gallery {
        overflow: visible;
    }
}

.parallax-gallery-list {
    display: flex;
    flex-direction: column;
    gap: 50vh;
}

.parallax-gallery-item {
    display: flex;
}

[dir=rtl] .parallax-gallery-item {
    flex-direction: row-reverse;
}

.parallax-gallery-item:nth-child(2n) {
    justify-content: flex-end;
}

.parallax-img-odd {
    transform-origin: center left;
}

.parallax-img-even {
    transform-origin: center right;
}
