/*!
 * Theme: Default
 * Package: AXCEL
 * Version: 1.0.0
 * Updated: 04.16.2024
 * Author: Digital ALign Inc.
 * Author URI: https://www.digitalalign.com/
**/
/** WRITE YOUR OWN STYLE **/

.gradient-text {
    background: linear-gradient(
        to right,
        #7953cd 20%,
        #303F9F 30%,
        #0190cd 70%,
        #009688 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}

.gradient-text-2 {
    background: linear-gradient(
        to right,
        #cd6d53 20%,
        #303F9F 30%,
        #0190cd 70%,
        #009688 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine2 5s ease-in-out infinite alternate;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes textShine2 {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}