﻿.services-abc {
    color: #012d59;
    font-size: 24px;
    margin: 20px 0;
    margin-bottom: 10px;
    font-weight: bold;
    background: linear-gradient(90deg, #000, #4cff00, #E74C3C);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
    0% {
        background-position: -500%;
    }

    100% {
        background-position: 500%;
    }
}
