/* ============================================================
   ANIMATIONS — staggered page load
============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.55s ease forwards;
}

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

.fade-up:nth-child(1) {
  animation-delay: 0.05s;
}

.fade-up:nth-child(2) {
  animation-delay: 0.15s;
}

.fade-up:nth-child(3) {
  animation-delay: 0.25s;
}

.fade-up:nth-child(4) {
  animation-delay: 0.35s;
}
