
.st0{
    stroke-width: 5px;
    stroke-dasharray: 100;
    animation: dash1 5s linear;
    animation-delay: 2s;
}

@keyframes dash1 {
  to {
    stroke-dashoffset: 1000;
  }
}
.st1 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 5s linear forwards;
}


.st2 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 5s linear forwards;
}

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


.st3 {
  animation: fadein 2s linear ;
}
    
@keyframes fadein {
 from {
    opacity: 0;
    }
  to {
    opacity: 1;
  }
    

.st4 {
  animation: fadein 2s linear;
}

@keyframes fadein {

  to {
    opacity: 1;
  }
    

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

.g{
    max-width: 1024px;
}