:root {
    --primary: #73249c;
    --secondary: #ff416c;
    --primary-rgb: 115, 36, 156;
    --secondary-rgb: 255, 65, 108;
    --linear-gradient-bg: linear-gradient(90deg, #73249c, #ff416c);
    --lite-bg: linear-gradient(90deg, rgba(115, 36, 156, 0.4), rgba(255, 65, 108, 0.4));
}
.color-primary {
    color: var(--primary);
}
.color-secondary {
    color: var(--secondary) !important;
}
/* COLOR 1 */
.gradient-text-color-1 {
    background: linear-gradient(to right, #73249c 0%, #ff416c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bg-color-1 {
    background: radial-gradient(circle at center, rgba(115, 36, 156, 0.4), rgba(255, 65, 108, 0.4), transparent 70%);
}
