/* Kompiliert aus assets/scss/animations.scss. */
[data-animate] {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(1);
  transition: opacity 0.72s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

[data-animate=fade-up] {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(1);
  transition: opacity 0.72s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

[data-animate=fade-down] {
  opacity: 0;
  transform: translate3d(0, -28px, 0) scale(1);
  transition: opacity 0.72s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

[data-animate=fade-left] {
  opacity: 0;
  transform: translate3d(28px, 0, 0) scale(1);
  transition: opacity 0.72s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

[data-animate=fade-right] {
  opacity: 0;
  transform: translate3d(-28px, 0, 0) scale(1);
  transition: opacity 0.72s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

[data-animate=zoom-in] {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.96);
  transition: opacity 0.72s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-animate-group] > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(1);
  transition: opacity 0.72s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

[data-animate-group].is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-animate-group].is-visible > *:nth-child(1) {
  transition-delay: 0s;
}

[data-animate-group].is-visible > *:nth-child(2) {
  transition-delay: 0.08s;
}

[data-animate-group].is-visible > *:nth-child(3) {
  transition-delay: 0.16s;
}

[data-animate-group].is-visible > *:nth-child(4) {
  transition-delay: 0.24s;
}

[data-animate-group].is-visible > *:nth-child(5) {
  transition-delay: 0.32s;
}

[data-animate-group].is-visible > *:nth-child(6) {
  transition-delay: 0.4s;
}

[data-animate-group].is-visible > *:nth-child(7) {
  transition-delay: 0.48s;
}

[data-animate-group].is-visible > *:nth-child(8) {
  transition-delay: 0.56s;
}

[data-animate-group].is-visible > *:nth-child(9) {
  transition-delay: 0.64s;
}

[data-animate-group].is-visible > *:nth-child(10) {
  transition-delay: 0.72s;
}

[data-animate-group].is-visible > *:nth-child(11) {
  transition-delay: 0.8s;
}

[data-animate-group].is-visible > *:nth-child(12) {
  transition-delay: 0.88s;
}

.hero-main-image {
  animation: hero-float 7s ease-in-out infinite;
}

.hero-spark {
  animation: micro-float 4.2s ease-in-out infinite;
}

.hero-spark-two {
  animation-delay: 1.2s;
}

.center-box {
  animation: brand-pulse 5.5s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes micro-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.82;
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(8deg);
    opacity: 1;
  }
}

@keyframes brand-pulse {
  0%, 100% {
    box-shadow: 0 24px 50px rgba(15, 76, 129, 0.22);
  }
  50% {
    box-shadow: 0 28px 64px rgba(237, 31, 52, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate],
  [data-animate-group] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
