@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.04);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.97);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.d1 {
  animation-delay: 0.1s;
}

.d2 {
  animation-delay: 0.2s;
}

.d3 {
  animation-delay: 0.3s;
}

.d4 {
  animation-delay: 0.4s;
}

.d5 {
  animation-delay: 0.5s;
}

.d6 {
  animation-delay: 0.6s;
}

.d7 {
  animation-delay: 0.7s;
}

.d8 {
  animation-delay: 0.8s;
}
