/* ============================================================
   agrisphere — Scroll Animations
   Add this to the bottom of style.css, or keep separate
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
