/* start number */
.wrapper svg {
    width: 30px;
    height: 30px;
    background: var(--main);
    border-radius: 50%;
}

.wrapper svg text {
    animation: stroke 5s infinite alternate;
    stroke-width: 2;
    stroke: var(--sec);
    font-size: 30px;
    color: var(--main);
}

@keyframes stroke {
    0% {
        fill: rgba(250, 250, 250, 1);
        stroke: var(--sec);
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 1;
    }

    70% {
        fill: rgba(72, 138, 204, 0);
        stroke: var(--sec);
    }

    80% {
        fill: rgba(72, 138, 204, 0);
        stroke: var(--sec);
        stroke-width: 1;
    }

    100% {
        fill: white;
        stroke: rgba(54, 95, 160, 0);
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }
}

.circ {
    background-color: var(--main)
}


.line {
    height: 2px;
    width: 25%;
    background-color: var(--sec);
}

/* end number */


/* start send btn */


form button[type=submit] {
    font-family: inherit;
    float: left;
    font-size: 20px;
    background: white;
    color: var(--main);
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid var(--main);
    transition: all 0.3s ease-in-out;
}


button[type=submit] span {
    display: block;
    margin-right: 0.3em;
    transition: all 0.3s ease-in-out;
}

button[type=submit] svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

form button[type=submit]:hover {
    background: var(--sec);
}

button[type=submit]:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

button[type=submit]:hover svg {
    transform: translateX(-1.2em) rotate(45deg) scale(1.1);
}

button[type=submit]:hover span {
    transform: translateX(5em);
}

button[type=submit]:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

/* end send btn */