@keyframes fadeInUpShort {
    from {
      opacity: 0;
      transform: translate3d(0, min(160px, 10vw), 0);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInUpShort {
    animation-name: fadeInUpShort;
  }
  