html:not(.js-loaded) .animate-on-scroll,
html.no-animations .animate-on-scroll {
  opacity: 0 !important;
  transform: none !important;
  transition: none !important;
}
.animate-on-scroll {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}