svg {
    position: absolute;
    left: 17%;
    width: 32%;
    /* width: 86px; */
    /* height: 100px; */
    z-index: 1950;
}

.brush-stroke {
    stroke-dasharray: 10000;
    stroke-dashoffset: 10000;
    animation-name: dash;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;   
    animation-play-state: ;
}

@keyframes dash {
    from {
        stroke-dashoffset: 10000;
    }
    to {
        stroke-dashoffset: 5000;
    }
}

@keyframes replay_dash {
    from {
        stroke-dashoffset: 10000;
    }
    to {
        stroke-dashoffset: 5000;
    }
}