@charset "UTF-8";
/* CSS Document */
.svgWrap {
  width: 50%;
  margin: 0 auto;
}
#mask path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 4px;
  stroke-dasharray: 1800px;
  stroke-dashoffset: 1800px;
  animation: line 4s 0s forwards;
}
#mask path.msk2 {
  animation: line 4s 0.8s forwards;
}
@keyframes line {
  0% {
    stroke-dashoffset: 1800px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
#text {
  mask: url(#mask-wrapper);
  width: 100%;
}