:root {
    --blue: #5c74eb;
    --purple: #5c74eb;
    --turkey: #45bcd4;
    --bg-secondary: linear-gradient(45deg,#5c74eb,#ab65ef);
    --bg-primary: linear-gradient(45deg, #39b0e8, #55ccbd);
    --bg-alert: linear-gradient(45deg, #d65d54, #e01f54) ;
	--bg-white: white;
    --secondary: #876ced;
    --primary-dark: #563ca5;
    --primary: #45bcd4;
	--light-gray: #f5f5f5;
}
.bg-white{
	background: var(--bg-white) !important;
	color: gray;
}
.bg-primary{
    background: var(--bg-primary) !important;
}
.bg-secondary {
    background: var(--bg-secondary) !important;
}
.primary-dark{
    color: var(--primary-dark) !important;
}
.primary{
    color: var(--primary) !important;
}
.secondary{
    color: var(--secondary) !important;
}
.bg-alert{
    background: var(--bg-alert) !important;
}
.bg-primary-image{
    background: var(--primary);
    color: white;
    position: relative;
	z-index: 0;
}
.bg-primary-image::after{
    content: '';
    z-index: -1;
    background-image: url(../images/header.jpg?v=2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: .1;
    background-position: center;
    background-size: cover;
}

