:root {
    --primary-color:#FFF;
    --secondary-color:#031736;
    --accent:#BB134F;
    --text-color: #6d7e99;
    --button-color:#eee;
}
h1{
    font-size: 58px;
    line-height: 52px;
    color: var(--primary-color);
    font-weight: 700; 
}
h2{
    font-size: 45px;
    line-height: 44px;
    font-weight: 700; 
    color: var(--secondary-color);
}
h3{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: var(--secondary-color);
}
h4{
    font-size: 26px;
    line-height: 28px;
    font-weight: 700; 
    color: var(--secondary-color);
}
h5{
    color: var(--accent);
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
}

.padding-top{
    padding-top: 130px;
}
.padding-bottom{
    padding-bottom: 130px;
}
.generic-button a{
    background: var(--accent);
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 22px;
    margin-right: 10px;
    transition-duration: .4s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.generic-button a:hover{
    background: #031736;
    color: var(--primary-color);
    border: none;    
    transform: translateY(-8px);
    transition-duration: .4s;
    transition-property: transform;
    box-shadow: none;
}
a{
    text-decoration: none;
    color: #212529;
}
a:hover{ color: #212529;}
body{
    font-size: 21px !important;
}

.btn-primary{ background: #BA154F; border: 1px solid #BA154F; }
.btn-primary:hover{ background: #2B3A69; border: 1px solid #2B3A69;}