/* .animated-line {
 position: relative;
  height: 0;
  pointer-events: none;
}

.animated-line .svg-container {
 position: absolute;
  height: 5762px;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
 
} */

.animated-line{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: max-content;
  pointer-events: none;
}

.svg-container svg path{
  z-index: 9999998;
}

.svg-container svg{
  width: 102%;
}

@media screen and (max-width: 1023px){
  
  .animated-line{
    display: none;
}
