@keyframes slideInLeft{0%{transform:translateX(-100px);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes slideInRight{0%{transform:translateX(100px);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes fadeInUp{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}.animate-on-scroll{opacity:0;transition:opacity .6s ease-out,transform .6s ease-out}.animate-slide-left{transform:translateX(-100px)}.animate-slide-right{transform:translateX(100px)}.animate-fade-up{transform:translateY(20px)}.animate-slide-left.active{animation:slideInLeft .8s forwards}.animate-slide-right.active{animation:slideInRight .6s forwards}.animate-fade-up.active{animation:fadeInUp .6s forwards}