
.text-draw {
  color: #3d3d3b;
  font-size: 3.5vw;
  text-decoration: none;
}

.text-draw__p {
  margin: 0;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.1;
}

.text-draw__box {
  width: 100%;
  height: .75em;
  position: relative;
  display: block;
}

.text-draw__box-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: visible !important;
  pointer-events: none;
}
.text-draw__path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  stroke: currentColor;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 6s cubic-bezier(0.77, 0, 0.175, 1);
}
.text-draw__path.active {
  stroke-dashoffset: 0;
}
@media only screen and (max-width: 767px) {
  p.text-draw__p {
    text-align: center;
  }
}