/*
 * Subtle web motion shared by HOME and the four business pages.
 * Kept independent so the same behavior can be moved into WordPress.
 */

.web-motion-frame {
  overflow: hidden;
}

.web-motion-parallax {
  --web-motion-y: 0px;
  transform: translate3d(0, var(--web-motion-y), 0) scale(1.035);
  transform-origin: center;
  will-change: transform;
}

.web-motion-ready .web-motion-sequence > .web-motion-step {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.62s ease var(--web-motion-delay, 0ms),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1)
      var(--web-motion-delay, 0ms);
}

.web-motion-ready
  .web-motion-sequence.web-motion-visible
  > .web-motion-step {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .web-motion-parallax {
    transform: none !important;
    will-change: auto;
  }

  .web-motion-ready .web-motion-sequence > .web-motion-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .web-motion-parallax {
    transform: none !important;
    will-change: auto;
  }

  .web-motion-ready .web-motion-sequence > .web-motion-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
