/* PAGE SCROLL REVEAL */
.reveal{
  opacity:0;
  transform:translate3d(0, 36px, 0);
  transition:
    opacity 1.4s cubic-bezier(.2,.75,.25,1),
    transform 1.4s cubic-bezier(.2,.75,.25,1);
}

.reveal.reveal-from-left{
  transform:translate3d(-32px, 24px, 0);
}

.reveal.reveal-from-right{
  transform:translate3d(32px, 24px, 0);
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}
