.animate-elt {
    transition: all 500ms;
    opacity:0;
    transform: translateY(100px);
}
  .animate-elt.afterScroll {
    opacity:1;
    transform: translateY(0);
  }
  .animate-elt.endScroll {
    opacity:0;
  }
