/* general */

* {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    margin: 0;
}

.main-wrapper {
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1220px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

.width-half {
    width: 50%;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-row-space-between {
    justify-content: space-between;
}

.flex-row-align-center {
    align-content: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-colum-start {
    align-items: flex-start;
}

.flex-colum-center {
    align-items: center;
}

.flex-colum-end {
    align-items: flex-end;
}

.text-large {
    font-weight: bold;
    font-size: 55px;
    line-height: 70px;
}

.text-regular {
    font-size: 18px;
    line-height: 28px;
}

.text-25 {
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 40px;
}

.text-20 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.text-15 {
    font-size: 15px;
}

.text-12 {
    font-size: 12px;
}

.text-white {
    color: #fff;
}

.text-light-gray {
    color: #9AA2BC;
}

.text-dark-gray {
    color: #697A9A;
}

.text-black {
    color: #293345;
}

.text-600 {
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.text-mont {
    font-family: 'Montserrat', sans-serif;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}


/* header */

.header-btn-green {
    background: #4EC862;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 60px;
    border: none;
    box-shadow: none;
    color: white;
    margin-top: 15px;
    transition: 0.4s all;
    border: 1px solid transparent;
}

.hover-icon {
    display: none;
}

.header-btn-green:hover {
    background: white;
    color: #4EC862;
    border: 1px solid #4EC862;
    cursor: pointer;
}

.header-btn-green img {
    max-width: 14px;
}

.header-btn-green:hover img {
    display: none;
}

.header-btn-green:hover .hover-icon {
    display: inline-block;
}

header {
    padding: 25px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

header .container {
    padding: 0 15px;
    max-width: 1220px;
}

.header-navigation {
    display: inline-block;
    margin-left: 10px;
}

.header-logo-wrapper a {
    text-decoration: none;
}

.header-navigation a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-decoration: none !important;
    padding: 10px;
    position: relative;
}

.header-navigation a.active {
    font-weight: 600;
}

.header-navigation a.active:after {
    content: '';
    width: calc(100% - 20px);
    height: 2px;
    background: #FFFFFF;
    border-radius: 12px;
    position: absolute;
    left: 10px;
    bottom: 0;
}

header img {
    vertical-align: middle
}

.clear:before,
.clear:after {
    content: "";
    clear: both;
    display: table;
}

header nav div {
    display: inline-block;
}

.header-logo-wrapper {
    max-width: calc(100% - 100px);
    float: left;
}

.header span {
    font-size: 13px;
    color: #425069;
}

.header-cta {
    width: 100px;
    display: inline-block;
    text-align: right;
    float: right;
}

.header-cta .header-btn-green {
    /* padding: 15px 20px; */
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-top: -12px;
}

.header-cta .header-btn-green img {
    margin-right: 10px;
}

.hide {
    display: none;
}


/* header old */


/*
.header {
    position: absolute;
    top: 0;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 15px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-contact span {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 13px;
    line-height: 22px;
    color: #F4F8FC;
    margin-right: 35px;
}*/


/* hero section */

.hero-section {
    /*background-image: url('images/hero-bg.png');*/
    background-position: center 30%;
    background-size: cover;
    padding-top: 130px;
    padding-bottom: 70px;
}

.hero-form {
    max-width: 495px;
    width: 100%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 80px;
}

#serach-form {}

.hero-form-icon {
    top: 17px;
    left: 20px;
    z-index: 99;
}

#search-form #zip_search {
    width: 100%;
    color: #697A9A;
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    /*padding: 18px 230px 18px 50px;*/
    padding: 18px 50px 18px 50px;
    background-color: #fff;
    border-radius: 40px;
    border: none;
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.btn-green {
    background: #4EC862;
    border-radius: 30px;
    color: #fff;
    border: none;
    outline: none;
    width: 213px;
    height: 56px;
    font-weight: bold;
    font-size: 16px;
    right: -1px;
    transition: 0.4s;
}

.btn-green:hover {
    cursor: pointer;
    background: #61D574;
}

.btn-green::active {
    background: #3EB151;
}

.hero-panel {
    display: flex;
    padding: 25px 20px 25px 30px;
}

.hero-panel {
    max-width: 850px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    margin: auto;
    margin-bottom: 8px;
}

.btn-purple {
    background: #4E61FB;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.4s;
}

.btn-purple:hover {
    background: #6275FF;
    text-decoration: none;
}

.btn-purple:active {
    background-color: #3037E9;
}

.btn-purple img {
    vertical-align: middle;
    margin-right: 8px;
}

.hero-panel__logo {
    flex: 1;
    justify-content: center;
    text-align: left;
}

.hero-panel__logo span {
    white-space: nowrap;
}

.hero-panel__logo img {
    margin-bottom: 12px;
}

.hero-panel__body {
    flex: 2;
    text-align: left;
    padding: 0 60px 0 30px;
    max-width: 50%;
}

.hero-panel__body span {
    font-family: Montserrat;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
    color: #182A58;
    font-weight: 500;
}

.hero-panel__body--gray {
    border-radius: 2px;
    background-color: #e6e9ef;
    height: 6px;
    width: 100%;
}

.hero-panel__body--gray-second {
    margin-top: 8px;
    width: calc(100% - 50px);
}

.hero-panel__footer {
    flex: 1;
}

.hero-panel__footer a {
    margin-top: 10px;
    display: inline-block;
}


/* logo section */

.logo-section {
    padding-top: 40px;
    padding-bottom: 90px;
    background-color: #F4F8FC;
}

.logo-section-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 0 15px;
}

.logo-section-images div {
    width: 20%;
    margin-bottom: 20px;
}

.logo-section-images img {
    padding-right: 10px;
    padding-left: 10px;
    width: 100%
}


/* content */

.content {
    padding: 0 15px;
}

.content-first {
    margin-top: 70px;
    margin-bottom: 120px;
}

.content-second {
    margin-bottom: 100px;
}

.content img {
    width: 100%;
}

.content-text {
    max-width: 530px;
}

.content-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    margin-top: 85px;
}

.content-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    color: #7888A7;
    margin-top: 0;
    margin-bottom: 30px;
}

.link-purple {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #4E61FB;
    text-decoration: none;
    transition: all 0.4s;
    white-space: nowrap;

}

.link-purple:after {
    content: url(images/chevron-right.svg);
    vertical-align: sub;
    margin-left: 8px;
    display: inline-block;
}

.link-purple:hover {
    color: #6275FF;
}

.link-purple:active {
    color: #3037E9;
}

.image-wrapper-left {
    padding-right: 100px;
}

.image-left-mask {
    width: 130%;
    bottom: -30px;
    left: -10%;
    z-index: -1;
}

.image-right-mask {
    width: 130%;
    bottom: -40px;
    right: -2%;
    z-index: -1;
}


ul.enroll-list {
    list-style: none;
}

ul.enroll-list>li:not(:first-child) {
    margin-top: 15px;
}

ul.enroll-list ul li {
    list-style: none;
}

ul.enroll-list ul li:first-child {
    font-weight: 600;
}

ul.enroll-list ul li::before {
    content: "•";
    color: #4ec862;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 30px;
    vertical-align: bottom;
}



/* footer */

.footer {
    background-color: #16162A;
    text-align: center;
}

.footer-container {
    max-width: 760px;
    width: 100%;
    padding: 60px 15px 25px;
    margin: auto;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-contact {
    color: #BAC6D8;
    margin-bottom: 30px;
}

.link-green {
    color: #4EC862;
    margin-left: 20px;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer-contact img {
    margin-right: 10px;
}

.footer-text {
    color: #93A1BA;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
}

.footer-bottom {
    font-size: 14px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #384459;
}

.footer-bottom strong {
    font-weight: normal;
    color: #F0F5FC;
    opacity: 0.5;
}

.footer-bottom a {
    color: #FFFFFF;
    font-weight: 500;
    text-decoration: none;
    margin-right: 30px;
}

.footer-bottom a:last-child {
    margin-right: 0px;
}


/* FORM */

.main-wrapper-form {
    background-color: #F4F8FC;
    padding-top: 115px;
    /*padding-bottom: 50px;*/
    overflow: auto;
}


/* header */

.main-wrapper-form .header span {
    color: #5D6D8A;
}


/* form */

.form-heading {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    color: #293345;
    margin-bottom: 40px;
}

.form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px 10px;
    max-width: 730px;
    width: 100%;
    margin: auto;
}

.form-section {
    margin-bottom: 40px;
}

.form-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #293345;
    margin-top: 0;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 16px;
}

.form-element {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
}

.form-element label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: #293345;
    margin-bottom: 10px;
}

.form-element input,
.form-element::placehoder {
    font-family: ' Open Sans', sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #7888A7;
}

.form-element input {
    padding: 10px 20px 10px 16px;
    border: 1px solid #BAC6D8;
    box-sizing: border-box;
    border-radius: 3px;
    background-color: #fff;
    font-size: 14px;
    width: 100%;
}


/* custom radio */

.custom-radio {
    display: flex;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-radio-row {
    display: flex;
}

.custom-radio label {
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #293345;
}

.custom-radio:nth-child(2) {
    margin-left: 25px;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
    top: 0;
    z-index: 9999;
    transform: scale(1.5);
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #fff;
    border-radius: 50%;
    border: 1.5px solid #293345;
}

.custom-radio:hover input~.checkmark {
    background-color: #fff;
    border: 1.5px solid #4E61FB;
}

.custom-radio input:checked~.checkmark {
    background-color: #fff;
    border: 1.5px solid #4E61FB;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-radio input:checked~.checkmark:after {
    display: block;
}

.custom-radio .checkmark:after {
    top: 3.5px;
    left: 3.5px;
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: #4E61FB;
}

.input-description {
    font-family: ' Open Sans', sans-serif;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    color: #697A9A;
    margin-top: 5px;
}

.form-element-full {
    width: 100%;
}


/* CUSTOM DROPDOWN */


/*the container must be positioned relative:*/

.custom-select {
    position: relative;
    width: 100%;
    border-radius: 3px;
}

.custom-select select {
    display: none;
    /*hide original SELECT element:*/
}

.select-selected {
    background-color: #fff;
}


/*style the arrow inside the select element:*/

.select-selected:after {
    position: absolute;
    content: url(images/chevron-down.svg);
    top: 10px;
    right: 15px;
    border-color: #fff transparent transparent transparent;
}

.custom-select.custom-select-error .select-selected:after,
.custom-select.custom-select-valid .select-selected:after {
    right: 45px;
}


/*point the arrow upwards when the select box is open (active):*/

.select-selected.select-arrow-active:after {}


/*style the items (options), including the selected item:*/

.select-items div,
.select-selected {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #7888A7;
    padding: 8px 16px;
    border-bottom: 1px solid #BAC6D8;
    border-left: 1px solid #BAC6D8;
    border-right: 1px solid #BAC6D8;
    cursor: pointer;
    user-select: none;
}

.select-selected {
    border-top: 1px solid #BAC6D8;
    border-radius: 4px;
    padding: 7px 20px 7px 16px;
    font-family: 'Open Sans', sans-serif;
}

.select-arrow-active {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}


/*style items (options):*/

.select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}


/*hide the items when the select box is closed:*/

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.form-element-small {
    width: 150px;
}

.form-element-with-small {
    width: calc(100% - 330px);
}

.btn-small-border {
    border-radius: 5px;
}

.btn-full-width {
    width: 100%;
}

.justify-start img {
    align-self: flex-start;
}

.justify-end img {
    align-self: flex-end;
}

.form-footer {
    max-width: 1140px;
    padding: 0 15px;
    margin: auto;
}

.form-footer p {
    font-family: Open Sans;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #7888A7;
    margin: 40px 0 60px;
}

.form-footer .logo-section-images {
    margin-bottom: 50px;
}

.hide-desktop {
    display: none;
}


.width-full {
    width: 100%;
    max-width: 100%;
}

.text-right {
    text-align: right;
}


.mt-3,
.my-3 {
    margin-top: 1rem !important;
}


.carrier-content {
    text-align: center;
    width: 75%;
    margin: auto;
}

p.carrier {
    font-size: 21px;
}

.tap-text {
    font-size: 24px !important;
    text-align: center;
    margin-top: 0;
}

.tap-text svg {
    width: 26px;
    height: 26px;
    vertical-align: middle;
}

.phone-wrap img {
    max-width: 25px;
    vertical-align: middle;
    margin-top: -3px;
}

.c-button a {
    background-color: #4EC862;
    color: #fff;
    text-decoration: none;
    padding: 20px 10px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: 0 0 0 transparent;
    border-radius: 10px;
    font-size: 21px;
}


/* RESPONSIVENESS */


/* INDEX */

@media only screen and (max-width: 1024px) {
    .hero-panel {
        padding: 15px 10px 15px 20px;
    }

    .hero-panel__footer a {
        white-space: nowrap;
    }

    .logo-section-images {
        flex-wrap: wrap;
    }

    .logo-section-images div {
        width: 33%;
    }

    .content-first {
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .image-wrapper-left,
    .image-wrapper-right {
        display: flex;
        align-items: center;
    }

    .image-wrapper-left {
        padding-right: 30px;
    }

    .image-wrapper-right {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .text-large {
        font-size: 30px;
        line-height: 40px;
    }

    .text-regular {
        font-size: 16px;
        line-height: 26px;
    }

    .hero-section {
        padding-top: 105px;
        padding-bottom: 30px;
    }

    .hero-form {
        margin-bottom: 50px;
        padding-left: 10px;
        padding-right: 10px;
    }

    #search-form #zip {
        padding: 18px 50px 18px 50px;
    }

    #search-form button {
        position: relative;
        width: 100%;
        margin-top: 10px;
    }

    .hero-panel {
        padding: 12px;
    }

    .hero-panel__body span {
        font-size: 14px;
    }

    .hero-panel__body {
        padding: 0 10px 0 20px;
    }

    .hero-panel__logo span {
        font-size: 12px;
    }

    .logo-section {
        padding-bottom: 70px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .logo-section-images {
        margin-top: 35px;
        padding-left: 0;
        padding-right: 0;
    }

    .logo-section-images div {
        padding: 0 5px;
    }

    .content {
        padding-right: 15px;
        padding-left: 15px;
    }

    .content>div {
        flex-wrap: wrap;
        text-align: center;
    }

    .content .width-half {
        width: 100%;
    }

    .image-wrapper-left,
    .image-wrapper-right {
        display: none;
    }

    .content-heading {
        /*margin-top: 70px;*/
        margin-top: 30px;
        margin-bottom: 25px;
        font-size: 25px;
        line-height: 40px;
    }

    .content-text {
        font-size: 16px;
        line-height: 26px;
    }

    .content-second {
        margin-bottom: 20px;
    }

    .footer-container {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .footer-contact {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .footer-bottom {
        padding-bottom: 35px;
    }

    .enroll-list {
        text-align: left;
    }

    ul.enroll-list {
        padding-left: 5px;
    }

    .carrier-content {
        width: 100%;
    }
}


/* FORM */

@media only screen and (max-width: 768px) {

    /* HEADER */
    .main-wrapper-form .container {
        padding: 0 15px;
    }

    .hide-mobile {
        display: none;
    }

    .hide-desktop {
        display: inline;
    }

    .header-logo img {
        max-width: 175px;
    }

    .header-contact {
        flex-direction: column;
    }

    .header-contact .btn-purple {
        background-color: transparent;
        padding: 5px 10px;
    }

    .main-wrapper-form .header-contact .btn-purple {
        color: #7888A7;
    }

    .header-contact span {
        margin: 0;
        font-size: 14px;
    }

    .header-contact a {
        font-size: 14px;
    }

    /* FORM */
    .main-wrapper-form {
        padding-top: 60px;
    }

    .form-container {
        padding: 25px 15px 10px;
    }

    .form-heading {
        margin: 25px;
    }

    .form-section {
        margin-bottom: 25px;
    }

    .form-row {
        margin-bottom: 0;
    }

    .form-element {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-element input {
        font-size: 16px;
    }

    .custom-radio label {
        margin-bottom: 0;
    }

    .margin-mobile-10 {
        margin-bottom: 10px;
    }

    .form-section-footer .form-element.form-element-with-small {
        order: 1;
        margin-bottom: 30px
    }

    .form-section-footer .form-element.justify-start {
        order: 2;
        width: 50%;
    }

    .form-section-footer .form-element.justify-start img {
        align-self: flex-end;
        margin-right: 10px;
    }

    .form-section-footer .form-element.justify-end {
        order: 3;
        width: 50%;
    }

    .form-section-footer .form-element.justify-end img {
        align-self: flex-start;
        margin-left: 10px;
    }

    .form-footer p {
        text-align: left;
        font-size: 13px;
        line-height: 22px;
    }

    .main-wrapper-form .logo-section-images {
        align-items: center;
        flex-wrap: wrap;
        padding: 0;
    }

    .logo-section-images img {
        padding: 0;
    }

    .logo-section-images div {
        width: 30%;
    }

    /* footer */
    .footer-container {
        padding-bottom: 0;
    }

    .footer-bottom {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .footer-bottom>.container {
        flex-direction: column-reverse;
    }

    .footer-bottom>.container>div {
        flex-direction: column;
        display: flex;
    }

    .footer-bottom a {
        margin: 0px 0px 15px 0px
    }

    .footer-bottom a:nth-child(1) {
        /* margin-right: 0; */
        /* margin-bottom: 15px; */
    }

    .footer-bottom strong {
        margin-top: 35px;
    }

    .link-purple {
        font-size: 15px;
        white-space: normal;
    }
}

@media only screen and (max-width: 520px) {
    .hero-panel__body {
        padding: 0 10px
    }

    .hero-panel__logo img {
        max-width: 60px;
        margin-bottom: 5px;
    }

    .hero-panel__logo span {
        font-size: 8px;
    }

    .hero-panel__body span {
        font-size: 10px;
        line-height: 14px;
        margin-bottom: 5px;
    }

    .hero-panel__rating {
        direction: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .hero-panel__rating.text-12 {
        font-size: 8px;
        text-align: right;
    }

    .hero-panel__rating img {
        max-width: 50px;
    }

    .hero-panel__footer a {
        font-size: 8px;
        padding: 5px 10px;
    }
}


/* form validation */

.form-control {
    position: relative;
}

.form-control.error input {
    box-shadow: inset 0px 0px 0px 2px red !important;
    background-color: #efbfbf !important;
}

.form-control.valid input {
    box-shadow: inset 0px 0px 0px 2px #4ec862 !important;
    background-color: #c3e6c3 !important;
}

.twoCharCheck.error {
    box-shadow: inset 0px 0px 0px 2px red !important;
    background-color: #efbfbf !important;
}

.input-validation.valid {
    box-shadow: inset 0px 0px 0px 2px #4ec862 !important;
    background-color: #c3e6c3 !important;
}

.input-validation.error {
    box-shadow: inset 0px 0px 0px 2px red !important;
    background-color: #efbfbf !important;
}

input {
    outline: none;
}

.twoCharCheck.valid {
    box-shadow: inset 0px 0px 0px 2px #4ec862 !important;
    background-color: #c3e6c3 !important;
}


/* MODAL */


/*  MODAL CSS */

#modal-custom {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000087;
    display: none;
    opacity: 0;
    padding: 15px;
    z-index: 999;
}

#modal-custom.visible {
    display: flex;
    -webkit-animation-name: modal-show;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s;
    /* Safari 4.0 - 8.0 */
    animation-name: modal-show;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@-webkit-keyframes modal-show {
    from {
        opacity: 0;
        display: none;
    }

    to {
        opacity: 1;
        display: flex;
    }
}


/* Standard syntax */

@keyframes modal-show {
    from {
        opacity: 0;
        display: none;
    }

    to {
        opacity: 1;
        display: flex;
    }
}

.modal-box {
    max-width: 455px;
    width: 100%;
    border-radius: 10px;
    background: #ffffff;
    margin: auto;
    text-align: center;
}

.modal-header.custom {
    padding: 40px 40px 15px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    cursor: pointer;
    margin-right: 0 !important;
    max-width: 12px !important;
}

.modal-header p {
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 0;
    margin-top: 20px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    padding: 20px 40px 30px;
}

.modal-body p {
    font-family: Open Sans;
    font-weight: normal;
    font-size: 15px;
    line-height: 24px;
    color: #697A9A;
    margin-top: 25px;
    margin-bottom: 0;
}

.text-modal-center {
    text-align: center;
    margin: 25px 0 !important;
    font-size: 22px;
}

.modal-body button {
    border: none;
    padding: 10px 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 28px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*    box-shadow: 0px 1px 4px 2px #00000054;*/
    transition: all 0.4s;
    cursor: pointer;
}

.text-line {
    display: flex;
    align-items: center;
}

.text-line p {
    width: 40px;
    background-color: white;
    margin: 25px auto !important;
}

.text-line span {
    display: inline-block;
    width: calc(50% - 24px);
    height: 1px;
    background-color: #E6EDF7;
}

.button-dark {
    background-color: #0d64e6;
}

.button-red {
    background: #DE3A11;
    border-radius: 5px;
    font-weight: bold !important;
    font-size: 20px !important;
    line-height: 25px !important;
}

.button-red img {
    margin-right: 7px;
}

.button-dark:hover {
    background-color: #185abb;
    cursor: pointer;
}

.button-light {
    background-color: #20c0f9;
}

.button-light:hover {
    background-color: #1bafe4;
    cursor: pointer;
}

.button-gray {
    background: #E6EDF7;
    border-radius: 5px;
}

.button-gray span {
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 22px;
    color: #293345 !important;
}

.modal-body button span {
    font-family: Open Sans;
    font-weight: normal;
    font-size: 14px;
}

@media only screen and (max-width: 600px) {

    .modal-header.custom,
    .modal-body {
        /*flex-direction: column;
        align-items: flex-start;*/
        padding: 40px 15px 15px 15px
    }

    .modal-body {
        padding-top: 15px;
    }

    .modal-header.custom p {
        margin-top: 15px;
        font-size: 24px;
    }

    .modal-body p {
        margin-top: 15px;
    }

    .text-line p {
        margin: 15px auto !important;
    }
}


/* submit form loader */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #92929285;
    padding: 15px;
    display: none !Important;
}

.loader.show {
    display: flex !Important;
}

.form-submit-loader {}

#submit-form:disabled {
    opacity: 0.5;
}

.loader,
.loader-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.loader-content span {
    font-size: 22px;
}

.loader-content {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 1px 1px 11px #2f2f2f66;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-top: 10px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4E61FB;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* new home page */

.hero-section-v2 {
    /*   background-image: url('images/bg_new.webp');*/
    padding-top: 190px;
    padding-bottom: 110px;
}

.no-webp .hero-section-v2 {
    background-image: url('images/bg_new.png');
}

.webp .hero-section-v2 {
    background-image: url('images/bg_new.webp');
}

.hero-section-v2 .container {
    text-align: left;
}

.hero-section-v2 .text-large {
    margin-bottom: 0;
}

.hero-section-v2 .text-regular {
    margin-top: 0;
}

.hero-divider {
    width: 50px;
    height: 6px;
    background-color: #4FC971;
    margin: 15px 0 20px;
}

.hero-section-v2 .hero-form {
    margin-left: 0;
    margin-top: 35px;
}

@media only screen and (max-width: 768px) {
    .hero-section-v2 {
        padding-top: 100px;
        padding-bottom: 20px;
    }

    .no-webp .hero-section-v2 {
        background-image: url('images/bg_new_mobile.png');
    }

    .webp .hero-section-v2 {
        background-image: url('images/bg_new_mobile.webp');
    }

    .hero-section-v2 .container {
        text-align: center;
    }

    .hero-divider {
        margin: 15px auto 20px;
    }

    .link-green {
        display: block;
        margin: 0;
    }
}

#zipStatus {
    padding: 10px;
    color: red;
    font-weight: 600;
    display: none;
}

@media only screen and (min-width: 801px) {
    .caption1 {
        width: 800px;
    }

    .caption2 {
        width: 370px;
    }
}

@media only screen and (max-width: 321px) {
    .footer-contact {
        font-size: 12px;
    }

    .link-green {
        font-size: 12px;
    }

    .content-heading {
        margin-top: 35px;
    }
}

@media only screen and (min-width: 768px) {
    .md-text-center {
        text-align: center;
    }

    header .container {
        max-width: 1220px;
    }

    .header-logo-wrapper {
        max-width: 435px;
    }

    .header-cta {
        max-width: auto;
    }

    .cta-description {
        display: block !important;
        margin-top: -15px;
        margin-bottom: 15px;
        color: #F4F8FC;
        font-size: 13px;
    }

    .header-navigation {
        margin-left: 30px;
    }

    .header-cta .header-btn-green {
        padding: 9px 20px;
        margin-left: 20px;
    }

    .header-cta {
        width: auto;
    }

    .md-hide {
        display: none;
    }

    .md-show {
        display: inline-block;
    }


}

@media only screen and (max-width: 359px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-logo-wrapper {
        max-width: calc(100% - 70px);
    }

    .header-navigation a {
        padding: 10px 5px;
    }

    .header-cta {
        width: 85px;
        margin-top: 3px;
    }

    .header-cta .header-btn-green {
        padding: 7px 11px;
    }

    .header-cta .btn-green img {
        margin-right: 4px;
    }

    .footer-cta {
        font-size: 15px;
    }

    .footer-cta img {
        margin-left: 10px;
        margin-right: 7px;
    }
}

@media only screen and (min-width: 991px) {
    .cta-description {
        display: inline-block !Important;
        margin-bottom: 0;
        margin-top: 0;
    }
}


.button-arrow {
    font-family: monospace;
    font-weight: 400;
}


p.pop a,
p.pop a:visited,
p.pop a:hover {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 0.5rem;
    /* position: absolute; */
    top: 40vh;
    max-width: 780px;
    position: relative;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 35px;
    font-weight: normal;
    position: absolute;
    top: 0;
    right: 10px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .modal-content {
        width: 100%;
    }
}