/* [project]/styles/hero-animations.css [app-client] (css) */
@keyframes heroDrift {
  from {
    transform: scale(1.06)translate3d(-8px, -6px, 0);
  }

  to {
    transform: scale(1.1)translate3d(10px, 8px, 0);
  }
}

@keyframes floaty {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  15% {
    opacity: .55;
  }

  85% {
    opacity: .55;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -130px, 0);
  }
}

.hero-bg-drift {
  animation: 20s ease-in-out infinite alternate heroDrift;
}

.hero-symbol-float {
  animation: linear infinite floaty;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-drift {
    animation: none !important;
  }

  .hero-symbol-float {
    opacity: .25 !important;
    animation: none !important;
  }
}

/*# sourceMappingURL=styles_hero-animations_5f2aeb6d.css.map*/