.parallax-scene-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: visible;
    display: flex;
}

.parallax-scene-container.position-top .parallax-layer {
    align-items: flex-start;
}

.parallax-scene-container.position-middle .parallax-layer {
    align-items: center;
}

.parallax-scene-container.position-bottom .parallax-layer {
    align-items: flex-end;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    will-change: transform;
    display: flex;
    justify-content: center;
}

.parallax-layer img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Image Fit Options */
.fit-cover img {
    object-fit: cover;
}

.fit-contain img {
    object-fit: contain;
}

.fit-fill img {
    object-fit: fill;
}

.fit-scale-down img {
    object-fit: scale-down;
}