.signature {
    stroke-dasharray: 3339;
    stroke-dashoffset: 3339;
    animation-fill-mode: forwards;
}


.signature.is-on {
    animation: sign 4s ease-in-out forwards;
}

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