.line1 {
    stroke-dasharray: 220 230;
    stroke-dashoffset: 230;
    animation: line1 3s ease forwards infinite;
  }
  
  @keyframes line1 {
    0% {
      stroke-dashoffset: 230;
    }
  
    40% {
      stroke-dashoffset: 0;
    }
  
    70% {
      stroke-dashoffset: 0;
    }
  
    100% {
      stroke-dashoffset: 230;
    }
  }
  
  .line2 {
    stroke-dasharray: 65 80;
    stroke-dashoffset: 80;
    animation: line2 3s ease forwards infinite;
    transform-origin: center;
  }
  
  @keyframes line2 {
    0% {
      stroke-dashoffset: 80;
    }
  
    30% {
      stroke-dashoffset: 80;
    }
  
    55% {
      stroke-dashoffset: 0;
    }
  
    70% {
      stroke-dashoffset: 80;
    }
  }
  
  .line3 {
    stroke-dasharray: 71 80;
    stroke-dashoffset: 80;
    animation: line3 3s ease forwards infinite;
    transform-origin: center;
  }
  
  @keyframes line3 {
    0% {
      stroke-dashoffset: 80;
    }
  
    20% {
      stroke-dashoffset: 80;
    }
  
    35% {
      stroke-dashoffset: 0;
    }
  
    60% {
      stroke-dashoffset: 0;
    }
  
    75% {
      stroke-dashoffset: 80;
    }
  }
  
  .line4 {
    stroke-dasharray: 74 80;
    stroke-dashoffset: 74;
    animation: line4 3s ease forwards infinite;
    transform-origin: center;
  }
  
  @keyframes line4 {
    0% {
      stroke-dashoffset: 74;
    }
  
    25% {
      stroke-dashoffset: 74;
    }
  
    35% {
      stroke-dashoffset: 0;
    }
  
    55% {
      stroke-dashoffset: 0;
    }
  
    60% {
      stroke-dashoffset: 74;
    }
  }
  
  .line5 {
    animation: line5 3s ease forwards infinite;
    stroke-dasharray: 80;
    transform-origin: center;
  }
  
  @keyframes line5 {
    0% {
      stroke-dasharray: 80;
      transform: rotate(0deg);
    }
  
    20% {
      stroke-dasharray: 18 10 18;
      transform: rotate(180deg);
    }
  
    30% {
      stroke-dasharray: 18 28;
    }
  
    65% {
      transform: rotate(180deg);
      stroke-dasharray: 18 28;
  
    }
  
    85% {
      stroke-dasharray: 80;
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  

/*# sourceMappingURL=index.a76c98245b849544260b.css.map*/