.animate-on-scroll{opacity:1;transform:translateY(20px);transition:transform 1.5s ease-out;will-change:transform}@supports (animation-timeline:scroll()){.animate-on-scroll{animation-timeline:view();animation-range:entry 0 entry 80%;animation-name:moveUpOnScroll;animation-fill-mode:both;animation-timing-function:ease-out}}@keyframes moveUpOnScroll{0%{transform:translateY(40px)}to{transform:translateY(0)}}@supports not (animation-timeline:scroll()){.animate-on-scroll{transform:translateY(0)}}@media (prefers-reduced-motion:reduce){.animate-on-scroll{transform:none;transition:none;animation:none}}