@media (prefers-reduced-motion: no-preference) {
  .home-hero .hero-copy,
  .home-hero .hero-panel,
  .section-heading,
  .service-card,
  .post-card,
  .process-list li {
    animation: new-era-rise 560ms ease both;
  }

  .service-card:nth-child(2),
  .post-card:nth-child(2),
  .process-list li:nth-child(2) {
    animation-delay: 80ms;
  }

  .service-card:nth-child(3),
  .post-card:nth-child(3),
  .process-list li:nth-child(3) {
    animation-delay: 140ms;
  }

  .service-card:nth-child(4),
  .process-list li:nth-child(4) {
    animation-delay: 200ms;
  }
}

@keyframes new-era-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

