@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.animate-dash {
    animation: dash 35s linear infinite;
}

@layer utilities {
    .text-brand-blue {
        color: #002D62;
    }

    .text-gradient-orange {
        background: linear-gradient(180deg, #FFC130 0%, #FFA000 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}