/* 
  Global animation system - GSAP classes setup
  The JS will animate elements with these classes,
  so we slightly prep them for fading if needed.
*/

.gsapFadeUp,
.gsapFadeLeft,
.gsapFadeRight,
.gsapScaleIn {
  /* Prevent FOUC before JS kicks in. */
  visibility: hidden;
}
