.animate-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 600;
  animation: draw 4s ease-out infinite;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
