/* MINIFY! */
:root {
    /** Fonts **/
    --headerFont : 'Buenard';
    --primaryFont : "Source Sans Pro";
    --headerFont-v4 : "DM Serif Display", serif;
    --primaryFont-v4 : "Montserrat", sans-serif;
    --buttonFont-v4 : "Inter", sans-serif;

    /** Colors **/
    --headerColor : #454545;
    --fontColor : #454545;
    --logoColor1 : #A62836;
    --logoColor2 : #0B4B7F;
    --primaryColor1 : #F8C828;
    --primaryColor2 : #44A318;
    --primaryColor3 : #CC071D;
    --secondaryColor1 : #EFF5FA;
    --secondaryColor2 : #D3E4F1;
    --secondaryColor3 : #7FA2BF;
    --secondaryColor4 : #7FA2BF;
    --secondaryColor5 : #0775CE;
    --secondaryColor6 : #CC071D;
    --secondaryColor7 : #E37F14;
    --white : #fff;
    --black : #000;

    /* New Colors */
    --slate-950 : #020617;
}
html {
    min-height: 100%;
    box-sizing: border-box;
    font-size: 62.5%; /* Now 10px = 1 rem! */
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    min-height: 100%;
    font-family: var(--primaryFont), sans-serif;
    font-size: 1.6rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headerFont), serif;
    font-weight: 700;
    color: var(--headerColor);
    text-align: left;
}
h1 {
    font-size: 3.8rem;
    line-height: 4.6rem;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
    h1 {
        font-size: 4.8rem;
        line-height: 6.2rem;
        margin-bottom: .5rem;
    }
}
h2 {
    font-size: 3rem;
    line-height: 4.2rem;
}
@media only screen and (min-width: 600px) {
    h2 {
        font-size: 3.4rem;
        line-height: 5.6rem;
    }
}
@media only screen and (min-width: 768px) {
    h2 {
        font-size: 4rem;
        line-height: 5.2rem;
    }
}
h3 {
    font-size: 2.6rem;
    line-height: 3.6rem;
}
@media only screen and (min-width: 600px) {
    h3 {
        font-size: 3rem;
        line-height: 4rem;
    }
}
@media only screen and (min-width: 768px) {
    h3 {
        font-size: 3.2rem;
        line-height: 4.2rem;
    }
}
h4 {
    font-size: 2.6rem;
    line-height: 3.4rem;
}
h5 {
    font-size: 2rem;
    line-height: 2.6rem;
}
h6 {
    font-size: 1.6rem;
    line-height: 2.1rem;
}
p, p.p1, p.p2, p.p3, p.p4, th.p4, p.p5, p.p6, td.p6 {
    font-family: var(--primaryFont-v4);
    color: var(--fontColor);
    font-weight: 400;
    text-align: left;
}
p {
    font-size: 1.6rem;
    line-height: 2.6rem;
}
p.p1 {
    font-size: 1rem;
    line-height: 1.6rem;
}
p.p2 {
    font-size: 1.2rem;
    line-height: 2rem;
}
p.p3 {
    font-size: 1.4rem;
    line-height: 1.9rem;
}
p.p4, th.p4 {
    font-size: 1.6rem;
    line-height: 2.6rem;
}
p.p5 {
    font-size: 1.8rem;
    line-height: 2.6rem;
}
p.p6, td.p6 {
    font-size: 1.6rem;
    line-height: 2rem;
}
@media only screen and (min-width: 600px) {
    p.p6, td.p6 {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
}
@media only screen and (min-width: 768px) {
    p.p6, td.p6 {
        font-size: 2rem;
        line-height: 3.2rem;
    }
}
input:-moz-submit-invalid {
    background: red;
}
/*----------------------------------------------------------------------------------------------------------------------
 Site Headers
 ---------------------------------------------------------------------------------------------------------------------*/
header.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--slate-950);
}
nav.navbar {
    align-items: flex-start;
}
nav.navbar > button.navbar-toggler {
    height: 2.375rem;
    border-color: #004A80;
    color: #004A80;
}
button.navbar-toggler > span.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='30'%20height='30'%20viewBox='0%200%2030%2030'%3e%3cpath%20stroke='rgba(0,74,128,1)'%20stroke-linecap='round'%20stroke-miterlimit='10'%20stroke-width='2'%20d='M4%207h22M4%2015h22M4%2023h22'/%3e%3c/svg%3e");

}
#main_menu {
    padding: 10px 0;
}
@media only screen and (min-width: 768px) {
    header.site-header > nav {
        padding: 15px 25px 20px;
    }
    nav.navbar {
        align-items: center;
    }
    #main_menu {
        justify-content: flex-end;
        padding-top: 8px;
        padding-bottom: unset;
    }
    ul.navbar-nav {
        padding-left: 72px;
    }
}
@media only screen and (min-width: 1200px) {
    header.site-header > nav {
        padding: 25px 35px 30px;
    }
}
ul.navbar-nav > li {
    font-family: var(--primaryFont-v4), sans-serif;
    font-size: 1.8rem;
    line-height: normal;
    color: var(--slate-950);
    font-weight: 500;
    padding-right: 32px;
}
ul.navbar-nav > li > a {
    color: #020617;
}
ul.navbar-nav > li > a:hover {
    text-decoration: underline;
}
@media only screen and (min-width: 1200px) {
    div.nav-cta {
        margin-right: 40px;
        padding-top: 8px;
    }
}
div.nav-cta > p {
    margin-bottom: 0;
}
div.nav-cta > p.p3 {
    line-height: normal;
    font-size: 1.8rem;
    font-family: var(--primaryFont-v4), sans-serif;
}
div.nav-cta a.heavy {
    color: var(--slate-950);
    font-weight: 600;
}
div.nav-cta a.btn-black {
    color: #375f99;
    background-color: var(--white);
    padding: 16px 18px;
    border-radius: 8px;
    border: 1px solid #375f99;
    font-family: var(--buttonFont-v4), sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: normal;
    text-transform: capitalize;
}
/* Site Footer Styles */
.site-footer > div.row {
    margin: 0 auto;
}
@media only screen and (min-width: 992px) {
    .site-footer > div.row {
        margin: 0 10px;
    }
}
@media only screen and (min-width: 1200px) {
    .site-footer > div.row {
        padding: 0 30px;
    }
}
@media only screen and (min-width: 1440px) {
    .site-footer > div.row {
        padding: 0 60px;
    }
}
div.footer-nav {
    background: #004A80;
    padding: 20px 10px;
    margin-bottom: 15px;
}
@media only screen and (min-width: 992px) {
    div.footer-nav {
        border-radius: 20px;
        margin-bottom: 0;
    }
}
@media only screen and (min-width: 1200px) {
    div.footer-nav {
        padding: 40px 72px;
    }
}
div.footer-nav ul.menu_items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
@media only screen and (min-width: 768px) {
    div.footer-nav ul.menu_items {
        justify-content: center;
    }
}
ul.menu_items a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    font-family: var(--primaryFont-v4);
}
@media only screen and (min-width: 1200px) {
    ul.menu_items > li {
        margin-right: 63px;
    }
}
li.home-icon > a {
    color: #375F99;
}
ul.menu_items > li.home-icon > a::before {
    display: inline-block;
    vertical-align: top;
    content: url(../images/v4-icons/house-white-26x26.png);
    font-size: 2.6rem;
    line-height: 26px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    margin-top: -6px;
}
@media only screen and (min-width: 1200px) {
    ul.menu_items > li.home-icon > a::before {
        margin-top: -3px;
    }
}
li.home-icon > a > span {
    display: none;
}
div.address-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid rgba(148,163,184,0.5);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    div.address-logo {
        justify-content: space-between;
        padding: 0 20px 20px;
    }
}
@media only screen and (min-width: 1200px) {
    div.address-logo {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 32px 77px 29px 0;
        margin-bottom: 30px;
    }
}
div.footer-info-bottom {
    align-content: center;
}
@media only screen and (min-width: 1200px) {
    div.footer-info-bottom {
        padding-left: 20px;
    }
}
div.footer-logo {
    text-align: center;
    margin-top: 20px;
}
@media only screen and (min-width: 1200px) {
    div.footer-logo {
        padding-right: 20px;
        text-align: left;
    }
}
div.footer-info-bottom p > a {
    color: #004A80;
}
div.footer-info-bottom p.toll-free {
    color: #375F99;
    font-weight: 700;
    font-family: var(--primaryFont-v4);
    font-size: 2.8rem;
    line-height: normal;
}
div.footer-info-bottom p.mail-to {
    color: #375F99;
    font-weight: 500;
    font-family: var(--primaryFont-v4);
    font-size: 1.6rem;
    line-height: normal;
    text-align: center;
}
@media only screen and (min-width: 1200px) {
    div.footer-info-bottom p.mail-to {
        text-align: left;
    }
}
div.footer-info-bottom p.mail-to > a {
    text-decoration: underline;
}
div.footer-info-bottom p.p2 {
    font-size: 14px;
    line-height: 17px;
    color: #64748B;
}
div.footer-info-bottom p.p2 > a {
    color: #64748B;
    text-decoration: underline;
    margin-right: 24px;
}
div.footer-logo > img {
    max-width: 80%;
    margin-bottom: 12px;
}
div.footer-logo > p.addr-line {
    color: #2B333D;
    font-family: var(--buttonFont-v4);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
}
@media only screen and (min-width: 1200px) {
    div.footer-logo > p.addr-line {
        text-align: left;
    }
}
div.hs-ack p.p2 {
    line-height:15px;
    text-align: center;
    margin-bottom: 10px;
    color: #64748B;
    margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) {
    div.hs-ack p.p2 {
        margin-bottom: 40px;
    }
}
div.hs-ack p.p2 > img {
    display: block;
    margin: 0 auto 15px;
}
@media only screen and (min-width: 1200px) {
    div.hs-ack p.p2 > img {
        display: inline-block;
        margin: 0;
    }
}
div.hs-ack p.p2 > a {
    color: #2B333D;
}

/* Common Styles */
div.row.get-codes {
    position: relative;
    margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
    div.row.get-codes {
        max-width: 1160px;
    }
}
@media only screen and (min-width: 1440px) {
    div.row.get-codes {
        max-width: 1320px;
    }
}
div.row.get-codes > div.cta {
    background-color: #61A741;
    border-radius: 16px;
    padding: 15px 15px 22px;
}
@media only screen and (min-width: 992px) {
    div.row.get-codes > div.cta {
        border-radius: 20px;
    }
}
div.row.get-codes > div.cta.front {
    background-color: #004A80;
    padding: 15px 15px 22px;
}
@media only screen and (min-width: 1200px) {
    div.row.get-codes > div.cta, div.row.get-codes > div.cta.front {
        padding: 58px;
    }
}
#get_codes_cta div.cta h2 {
    text-align: center;
    font-family: var(--headerFont-v4);
    font-weight: 400;
    color: #fff;
    font-size: 3rem;
    line-height: 34px;
    margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
    #get_codes_cta div.cta.front h2 {
        text-align: left;
        font-size: 4.6rem;
        line-height: 5.8rem;
    }
    #get_codes_cta div.cta.front h2 {
        font-size: 4rem;
        line-height: 5.2rem;
    }
}
@media only screen and (min-width:1200px) {
    #get_codes_cta div.cta h2 {
        font-size: 5.8rem;
        line-height: 6.8rem;
        margin-bottom: 4rem;
    }
    #get_codes_cta div.cta.front h2 {
        font-size: 4.4rem;
        line-height: 5.6rem;
    }
}
#get_codes_cta div.cta.front h2.no-bot-margin,
#get_codes_cta div.cta h2.no-bot-margin {
    margin-bottom: 0;
}
#get_codes_cta div.cta.front h2 {
    color: #fff;
}
#zip_address_cta {
    margin-bottom: 0;
    width: 100%;
}
@media only screen and (min-width: 1200px) {
    #zip_address_cta {
        padding-left: 0;
        width: 60%;
        margin-right: 12px;
    }
}
.fp_header-form-cta {
    display: flex;
    flex-wrap: wrap;
}
@media only screen and (min-width: 1200px) {
    .fp_header-form-cta {
        flex-wrap: nowrap;
    }
}
@media only screen and (min-width: 1200px) {
    .fp_header-form-cta {
        width: 100%;
    }
}
.fp_header-form-cta input[type=text] {
    width: 100%;
    font-family: var(--primaryFont-v4);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: normal;
    color: #1e1e1e;
    background-color: #fff;
    padding: 20px 10px 20px;
    border: 1px solid #94A3B8;
    border-radius: 8px;
    margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
    .fp_header-form-cta input[type=text] {
        padding: 35px 20px 35px;
    }
}
@media only screen and (min-width: 992px) {
    .fp_header-form-cta input[type=text] {
        border-radius: 12px;
        font-size: 1.8rem;
        padding: 35px 24px;
        margin-bottom: 2rem;
    }
}
.fp_header-form-cta input[type=text]:focus {
    outline: none;
}
#zip_address > label {
    display: none;
}
div.code-submit-cta {
    width: 100%;
}
@media only screen and (min-width: 1200px) {
    div.code-submit-cta {
        width: unset;
    }
}
div.code-submit-cta input[type=submit] {
    width: 100%;
    padding: 8px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #004A80;
    border-radius: 8px;
    background-color: #004A80;
    color: #fff;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    font-family: var(--primaryFont-v4);
}
@media only screen and (min-width: 768px) {
    div.code-submit-cta input[type=submit] {
        padding: 24px 27px;
    }
}
@media only screen and (min-width: 1200px) {
    div.code-submit-cta input[type=submit] {
        font-size: 1.8rem;
        line-height: 2.2rem;
        padding: 24px 41px;
        border-radius: 12px;
    }
}
div.cta.front div.code-submit-cta input[type=submit] {
    background-color: #61A741;
    border: 1px solid #61A741;
}
div.code-submit-cta {
    padding: 0;
}
div.address-error-cta {
    bottom: -20%;
}
@media only screen and (min-width: 428px) {
    div.address-error-cta {
        bottom: -22%;
    }
}
@media only screen and (min-width: 768px) {
    div.address-error-cta {
        bottom: -15%;
    }
}
div.row.get-codes > div.house {
    display: flex;
}
@media only screen and (min-width: 1200px) {
    div.row.get-codes > div.house {
        padding-right: 0;
        padding-left: 20px;
    }
}
div.house > div.house-bg {
    width: inherit;
    height: inherit;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/house-1.png);
}
/* Styles for ESRI Search Widget and Maps */
/* Error Messages */
div.address-error-cta.show {
    opacity: 1;
}
div.address-error-cta {
    position: absolute;
    bottom: -18%;
    background-color: #FFD9DE;
    border-radius: 3px;
    opacity: 0;
    transition: opacity .3s ease-in-out .2s;
    width: 100%;
    left: 0;
}
@media only screen and (min-width: 768px) {
    div.address-error-cta {
        bottom: -8%;
    }
}
@media only screen and (min-width: 600px) {
    div.address-error-cta {
        width: 60%;
        left: calc(50% - calc(calc(100% * .75) / 2));
    }
}
div.address-error-cta p {
    text-align: center;
    padding: .8rem 1.6rem;
    margin-bottom: 0;
    color: var(--secondaryColor6);
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: 600;
}
