.dyp-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.2, .8, .2, 1);
}

.dyp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dyp-reveal:nth-child(1) { transition-delay: .05s; }
.dyp-reveal:nth-child(2) { transition-delay: .15s; }
.dyp-reveal:nth-child(3) { transition-delay: .25s; }
.dyp-reveal:nth-child(4) { transition-delay: .35s; }
.dyp-reveal:nth-child(5) { transition-delay: .45s; }
.dyp-reveal:nth-child(6) { transition-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
  #masthead,
  .dyp-reveal {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    will-change: auto !important;
  }
}