@keyframes fade-in{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes slide-up{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes progress-bar{0%{width:0}to{width:75%}}@keyframes gradient{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}.animate-fade-in{animation:fade-in 1.2s ease-out}.animate-slide-up{animation:slide-up .8s ease-out .3s both}.animate-slide-up-delay{animation:slide-up .8s ease-out .5s both}.animate-progress-bar{animation:progress-bar 2s ease-out 1s both}.animate-gradient{background-size:200% 200%;animation:gradient 3s ease infinite}.animation-delay-200{animation-delay:.2s}