:root {
    --primary: #ef8222;
    --secondary: #e7e757;
    --primary-rgb: 239, 130, 34;
    --secondary-rgb: 231, 231, 87;
    --linear-gradient-bg: linear-gradient(90deg, #ef8222, #e7e757);
}
.color-primary {
    color: var(--primary);
}
.color-secondary {
    color: var(--secondary) !important;
}
/* COLOR 1 */
.gradient-text-color-1 {
    background: linear-gradient(to right, #ef8222 0%, #e7e757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bg-color-1 {
    background: radial-gradient(circle at center, rgba(239, 130, 34, 0.4), rgba(231, 231, 87, 0.4), transparent 70%);
}
