/* Fade In Up Custom animation 20250723 */
@keyframes fadeInUpCustom {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUpCustom {
  animation-name: fadeInUpCustom;
}
/*# sourceMappingURL=styles.css.map */