/* scroll elm */
.Scroll-wrapper {
    height: 100vh;
    overflow: auto;
}

.the-real-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    z-index: 10;
}

.split_elm {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    will-change: transform;
    transform: translate3d(0px, calc(var(--scroll-spl-y) * 1px), 0px);
}
