/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 19 2025 | 12:25:36 */
.reverse-scroll-section {
    overflow: hidden;
    position: relative;
}

.scroll-column-left, .scroll-column-right {
    will-change: transform;
    transition: transform 0.5s ease-out;
}

/* Adjust these values based on your needs */
.scroll-column-left {
    transform: translateY(100px);
}

.scroll-column-right {
    transform: translateY(-100px);
}

/* Animation when scrolling */
.reverse-scroll-section.in-viewport .scroll-column-left {
    transform: translateY(0);
}

.reverse-scroll-section.in-viewport .scroll-column-right {
    transform: translateY(0);
}