
.aos {
  opacity: 1;
  transform: none;
}

/* Only animate once JS is running */
html.anim-ready .aos {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* When visible */
html.anim-ready .aos.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
