@keyframes fadeInUpShortest {
    from {
      opacity: 0;
      transform: translate3d(0, 20px, 0);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInUpShortest {
    animation-name: fadeInUpShortest;
  }
  