.red {
    color: #B81D23;
}

.black {
    color: #222222;
}


/* a.black:hover, a.black:active, a{
    
} */

.white {
    color: white;
}

.blue {
    color: #003366;
}

.grey {
    color: #888888;
}

.light-grey {
    color: #F4F4F4;
}

.yellow {
    color: #FFCC00;
}

.bg-red {
    background-color: #B81D23;
}

.bg-light-red {
    background-color: rgba(184,29,35,0.6);
}

.bg-grey {
    background-color: #888888;
}

.bg-light-grey {
    background-color: #F4F4F4;
}

.bg-soft-grey {
    background-color: #FAFBFC;
}

.bg-black {
    background-color: #222222;
}

.bg-blue {
    background-color: #003366;
}

.bg-yellow {
    background-color: #FFCC00;
}

.bg-white {
    background-color: white;
}

.bg-filter {
    background-color: rgba(0, 0, 0, 0.2);
}

.bg-gradient-t-b {
    background-image: linear-gradient(transparent, rgba(15, 15, 15, 0.9));
}