/* Small decorative music wave; transforms do not change the photo layout. */
@media (prefers-reduced-motion: no-preference) {
  .home-intro .home-signal i {
    transform-origin: center;
    animation: km-home-hero-signal 1.8s ease-in-out infinite alternate;
  }
  .home-intro .home-signal i:nth-child(2) { animation-delay: -1.15s; }
  .home-intro .home-signal i:nth-child(3) { animation-delay: -.55s; }
  .home-intro .home-signal i:nth-child(4) { animation-delay: -1.45s; }
  .home-intro .home-signal i:nth-child(5) { animation-delay: -.35s; }
  .home-intro .home-signal i:nth-child(6) { animation-delay: -.95s; }
  .home-intro .home-signal i:nth-child(7) { animation-delay: -1.3s; }
  .is-reduced .home-intro .home-signal i { animation: none; }
}
@keyframes km-home-hero-signal {
  from { transform: scaleY(.24); }
  to { transform: scaleY(1); }
}
