.fade-up {
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease-out;
}

.fade-up.appear {
  opacity:1;
  transform:translateY(0);
}
