.flow-line {
  fill: none;
  stroke: url(#fadeGradient);
  stroke-linecap: round;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    stroke-dashoffset: 3000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
