/*
 * Preserve Wix Studio's original motion, font, color, and timing rules.
 * The companion script only starts Wix's paused CSS keyframes when each
 * element reaches the viewport.
 */
html {
  scroll-behavior: smooth;
}

.surhine-motion-ready {
  will-change: clip-path, opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
