/* -- parallax.css — required styles for parallax.js ----------------------- */

.parallax-window {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.static-content {
    position: relative;
    z-index: 2;
}
