/* Looping marquee replicating the Webflow interaction on the purple line. */
.loop-train {
  animation: pdg-marquee 18s linear infinite;
  will-change: transform;
}

@keyframes pdg-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
