:root{
    --color-primary: #52499c;
}

a{
    font-weight: 400 !important;
}

.btn-primary{
    background-color: var(--color-primary) !important;
    border: 1px solid var(--color-primary) !important;
}

.btn-warning {
    color: #000 !important;
    background-color: #9ceb02 !important;
    border-color: #9ceb02 !important;
    -webkit-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
}

.border-warning{
    border-color: #9ceb02 !important;
}
	
.btn-check:focus + .btn-warning,
.btn-warning:focus {
    color: #000 !important;
    background-color: #9ceb02 !important;
    border-color: #9ceb02 !important;
    -webkit-box-shadow: 0 0 0 transparent, 0 0 0 .25rem rgb(156 235 2 /50%) !important;
    box-shadow: 0 0 0 transparent, 0 0 0 .25rem rgb(156 235 2 /50%) !important;
}

.img__filter--hover{
    filter: grayscale(1);
    transition: 0.5s ease-in-out;
}

.img__filter--hover:hover{
    filter: grayscale(0);
}

.backdrop__blur{
    -webkit-filter: blur(3.5px) !important; 
    filter: blur(3.5px) !important;
}   