@keyframes fadeUp{from{opacity:0; transform:translateY(28px)}to{opacity:1; transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.fade-up{animation:fadeUp .9s ease both}
.fade-in{animation:fadeIn 1s ease both}
.delay-1{animation-delay:.12s}
.delay-2{animation-delay:.24s}
.delay-3{animation-delay:.36s}
.delay-4{animation-delay:.48s}
img{transition:transform .6s ease}
