/* Custom Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}
.parallax-bg {
  /* Requires parent to have perspective and overflow hidden/scroll, but we can do a simpler fake parallax or will-change */
  will-change: transform;
}
