:root{
    --brand_yellow:#fce54d;
    --brand_blue:#122e68;
    --brand_light:#c7cee9;
    --brand-grey : #aaa;
    --brand-black:#000;
    --brand-red : #f00;
}

.bg-yellow{
    background-color: var(--brand_yellow);
    
}
.bg-blue{
    background-color: var(--brand_blue);
}
.bg-light{
    background-color: var(--brand_light);
}
.text-brand-blue{
    color: var(--brand_blue);
}
.bg-grey{
    background-color: var(--brand-grey);
}
.bg-black{
    background-color: var(--brand-black);
}
.border-left
{border-left: 1px solid #333;}
.border_right{
    border-right: 1px solid #333;

}
.padding{
    padding: 0 5.5em;
}
.round{
    border-radius: 20px;
    border: 2px solid #fce54d;
    box-shadow: 1px 1px 20px #000;
    transition: transform .2s linear;
    cursor: pointer;
}
.round:hover{
    transform: scale(1.01);
}
.col-2_5{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.text_red{
    color:var(--brand-red)
}
.border-top{
    border-top: 5px solid var(--brand_yellow);

}
.underline{
    text-decoration: underline;
}

