in website/src/components/sections/Benefits.tsx [244:254]
function onIntersection(entries) {
entries.forEach((entry) => {
if (entry.isIntersecting) {
tweenArrow.paused(false);
tweenFloat.paused(false);
} else {
tweenArrow.paused(true);
tweenFloat.paused(true);
}
});
}