/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 14 2026 | 11:08:37 */
.hero-reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.hero-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.hero-reveal.delay-1{ transition-delay: .12s; }
.hero-reveal.delay-2{ transition-delay: .24s; }

@media (prefers-reduced-motion: reduce){
  .hero-reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
