body {
    font-family: 'open_sansregular', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #464646;;
    background: #fff;
}

.bold {
    font-family: "open_sansbold";
    font-weight: normal;
}

.btn {
    background: #ff6600;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    font-family: 'open_sansbold', sans-serif;
    display: inline-block;
}

.btn:hover,
.btn:focus {
    background-color: #e95f03;
    color: #fff;
}

a {
    color: #ff6600;
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    color: #e95f03;
    transition: all 0.2s;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3 {
    border-left: 10px solid #0A4D80;
    border-bottom: 1px solid #0A4D80;
    padding-left: 10px;
    padding-bottom: 5px;
    font-family: 'open_sansbold', sans-serif;
    color: #0A4D80;
}

h1 {
    font-size: 26px;
    margin-bottom: 30px;
}

h2 {
    font-size: 22px;
    margin-bottom: 20px;
}


h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

ul li,
ol li {
    margin-bottom: 15px;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    margin: 20px auto;
    display: block;
}

table {
    width: 100%;
    box-shadow: 0 0 15px #DADADA;
    border-right: 10px;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 20px;
    border: solid 1px #ddd;
}

table tr th {
    background: #0A4D80;
    font-size: 18px;
    color: #FFF;
    text-align: left;
    padding: 15px 25px;
}

table td {
    padding: 5px 20px;
    border-right: 1px solid #E9E5DC;
}

table tr.even, table tr.alt,
table tr:nth-of-type(even) {
    background: #f9f9f9;
}

table tr.even td,
table tr:nth-of-type(even) td {
    background: #E9E5DC;
}

.footer-holder {
    background: #0a4d80;
    width: 100%;
    padding: 15px 0;
    color: #e6e6e6;
    font-size: 15px;
}

.footer-holder-inner {
    display: flex;
    align-items: center;
}

.footer-holder .cta-call {
    font: 30px "open_sansbold";
    padding-left: 25px;
    color: #ff6600;
    background: url(../images/layout/icons.png) -10px -370px no-repeat;
}

.footer-menu {
    margin: 0 auto;
    padding: 0;
}

.footer-menu li {
    display: inline-block;
    margin: 0 5px;
}

.footer-menu li a {
    color: #e6e6e6;
    padding: 0 5px;
    position: relative;
    display: inline-block;
}

.footer-menu li a:before {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background-color: #e6e6e6;
    top: 6px;
    right: -5px;
    position: absolute;
}

.footer-menu li:last-child a:before {
    display: none;
}

.copyright {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 991.98px) {
    .footer-holder-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }   

    .footer-menu {
        width: 100%;
        margin: 25px auto;
        text-align: center;
    }
}

@media (max-width: 767px) {

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    .alignright,
    .alignleft {
        float: none;
        display: block;
        margin: 20px auto 20px;
    }
    
}