I've been working on it for hours but I couldn't come with a solution. I am really tired, maybe move without it is the easy option for me 😴
I updated css/html code and implemented scrollTrigger plugin,
gsap.registerPlugin(ScrollTrigger);
const rev_left = document.querySelector(".column-reverse-left");
const rev_right = document.querySelector(".column-reverse-right");
const center = document.querySelector(".column-section");
let tl = gsap.timeline({scrollTrigger:{trigger:".column-section",start:"top top",end:"bottom bottom",scrub: true,markers: true}});
tl.to([rev_left], {
duration: 1,
yPercent: 200,
}, 0);
tl.to([rev_right], {
duration: 1,
yPercent: 200,
}, 0);