.parallax-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: -1;
}

.parallax-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.parallax-youtube iframe {
    width: 100vw;
    height: 100vh;
    transform: scale(1.5);
}
@media screen and (max-width: 767px) {
    .parallax-container[data-disable-mobile="yes"] .parallax-bg {
        transform: none !important;
        position: absolute !important;
        width: var(--mobile-width, 100%) !important;
        height: var(--mobile-height, 100%) !important;
        left: var(--mobile-position-x, 0) !important;
        top: var(--mobile-position-y, 0) !important;
    }
}