.fade-in-up {
  opacity: 0;
  transform: translateY(4rem);

  &.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s;
  }
}