a {
    color: #003fff;
}
a:focus,
a:hover {
    color: #003fff;
    text-decoration: underline;
}
.background-2 {
    background-image: url("../images/bg2.svg");
    background-size: 100% 100%;
}
.blue-text {
    color: #003fff;
}
.bold-text {    
    font-weight: bold;
}
.btn {
    border-color: transparent;
    background-color: rgba(0,63,255,0.5);
    width: 100%;
    font-weight: bold;
    color: white;
    -moz-transition: all 0.5s;    
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.btn:hover, btn:focus {
    background-color: rgba(0,63,255,1);
    color: white;
}
hr {
    width: 100%;
    height: 2px;
    border: none;
    margin: 0;
    background-color: #bababa;
}
p {
    margin: 0.8em 0;
}
.row {
    padding-top: 1em;
    padding-bottom: 1em;
}
@media only screen and (min-width: 992px) {
    .row-eq-height-md {
        display: -webkit-flex;
        display: flex;
    }
}
@media only screen and (min-width: 992px) {
    .row-eq-height-sm {
        display: -webkit-flex;
        display: flex;
    }
}
@media only screen and (min-width: 768px) { 
    .row-vertical-align-sm {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }
}