.linear-wipe {
    text-transform: uppercase;
    font-style: normal;
    font-weight: 400;
    font-size: 36px !important;
    line-height: 120% !important;
    letter-spacing: -0.01em;
    color: #012944;
    background-image: -webkit-linear-gradient(92deg, #12A9EC, #0665EA);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-animation: hue 3s infinite linear;
}

@-webkit-keyframes hue {
    0% {
        -webkit-filter: hue-rotate(10deg);
    }

    30% {
        -webkit-filter: hue-rotate(-10deg);
    }

    80% {
        -webkit-filter: hue-rotate(-10deg);
    }

    100% {
        -webkit-filter: hue-rotate(10deg);
    }
}
