/* 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;
}

.flex-justify-content-center{
    justify-content: center;
}

.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: #cd3934;
    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: #cd3934;
    border: 1px solid #cd3934;
    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;
}


.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: 10px;
}

.content-text2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: #7888A7;
    margin-bottom: 10px;
}


ul.content-list{
    margin: 10px auto 20px auto;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

ul.content-list2{
    margin: 1% auto 1% auto;
    list-style: none;
    padding-left: 0;
    margin-left: 35%;
    align: left;
}

ul.content-list li{
    padding: 5px 0px;
    text-align: left;
}

.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;
}


/* 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;
    }

    ul.content-list{
        margin-left: auto;
    }

    .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;
    }

    /* .mdlogo {
        display: none;
    }

    .smlogo {
        display: block;
    } */
}


/* 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;
    }


}

@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;
    }
}


/* 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'); */
    background-color: #16162a;
}

.webp .hero-section-v2 {
    /* background-image: url('../images/bg_new.webp'); */
    background-color: #16162a;
}

.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;
}

.vertical-align-middle {
    vertical-align: middle;
}


#hero .hero-col-left {
    width: 60%;
    padding: 15px 0px;
    margin: auto;
}

#hero .hero-col-right {
    width: 40%;
}

#hero .hero-col-left h1 {
    font-size: 50px;
    margin: 0 0 15px 0;
    line-height: 55px;
    text-transform: capitalize;
}

#hero .hero-col-left p {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 20px;
    width: 75%;
}

#hero .hero-col-right .form-steps {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 50px 0px rgba(33, 68, 172, 0.20);
    padding: 30px 20px;
    color: #0F0E07;
}

#hero .hero-col-right .form-steps .btn-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

#hero .hero-col-right .form-steps .step h2 {
    color: #0F0E07;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    text-transform: capitalize;
    margin: 20px 15px;
}

#hero .hero-col-right .form-steps .step p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

#hero .hero-col-right .form-steps .step .step-disclaimer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0px;
}

#hero .hero-col-right .form-steps .step .step-disclaimer span {
    color: #595959;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    text-transform: capitalize;
    margin-right: 10px;
}

#hero .hero-col-right .form-steps .step .step-disclaimer .trust-logo {
    max-height: 26px;
    max-width: 128px;
}


.blue-text {
    color: #2144AC;
}


button,
.btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background-color: transparent;
    border-radius: 50px;
    border: 2.5px solid #595959;
    color: #595959;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 2.25em;
    text-decoration: none;
    white-space: nowrap;
    padding: 20px;
    width: 100%;
    margin: 10px auto;
    position: relative;
    max-width: 380px;
}

button:hover,
.btn:hover {
    background-color: #fff;
    border: 2.5px solid #595959;
    color: #595959;
}

button:active,
.btn:active {

        background-color: #cd3934;
        border: 2.5px solid #cd3934;
        color: #fff;

}

.input-wrap #btn-back:hover, .input-wrap #btn-skip:hover, .input-wrap #btn-back:active, .input-wrap #btn-skip:active {
    background-color: transparent;
    border: none;
    color: #a9b3cb;
}


.btn-red, .btn.btn-red:active , .btn.btn-red:focus{
    background-color: #cd3934;
    border: 2.5px solid #cd3934;
    color: #fff;
}

.btn-white, .btn.btn-white:active , .btn.btn-white:focus{
    background-color: transparent;
    border: none;
    padding: 10px;
    font-weight: 400;
    width: auto;
    color: #595959;
}
.btn-white:hover{
    background-color: transparent !important;
    border: none !important;
    color: #595959 !important;
}

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

.text-right{
    text-align: right;
}
.no-border{
    border: none !important;
}

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


.carrier-content{
    text-align: center;
    width: 75%;
    margin: auto;
}
p.carrier{
    font-size: 21px;
}

@media (hover: hover) {
    button:hover,
    .btn:hover {
        background-color: #cd3934;
        border: 2.5px solid #cd3934;
        color: #fff;
    }
}

@media (hover: none) {
    button:active,
    .btn:active {
        background-color: #cd3934;
        border: 2.5px solid #cd3934;
        color: #fff;
    }
  }


.city-row{
    display: flex;
    justify-content: space-between;
}
.city-col{
    width: 55%;
}
.state-col{
    width: 40%;
}

@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'); */
        background-color: #16162a;
    }

    .webp .hero-section-v2 {
        /* background-image: url('../images/bg_new_mobile.webp'); */
        background-color: #16162a;
    }

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

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

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



    #hero .flex-row {
        flex-direction: column;
    }

    #hero .hero-col-left,
    #hero .hero-col-right {
        width: 100%;
        padding: 0;
    }

    #hero .hero-col-left h1 {
        font-size: 34px;
        line-height: 40px;
    }

    #hero .hero-col-left p {
        font-size: 18px;
        line-height: 24px;
        width: 100%;
    }

    #hero .hero-col-right .form-steps {
        padding: 20px 10px;
    }

    #hero .hero-col-right .form-steps .step h2 {
        /* font-size: 24px;
        line-height: 32px; */
        font-size: 30px;
        line-height: 38px;
        margin: 15px 0px;
    }

    #hero .hero-col-right .form-steps .step p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    button,
    .btn {
        padding: 15px;
    }

    #hero .hero-col-right .form-steps .step .step-disclaimer .trust-logo {
        max-height: 26px;
        max-width: 115px;
    }

    button:hover,
    .btn:hover {
        background-color: #cd3934;
        border: 2.5px solid #cd3934;
        color: #fff;
    }


    .input-wrap #btn-back:hover, .input-wrap #btn-skip:hover, .input-wrap #btn-back:active, .input-wrap #btn-skip:active {
        background-color: transparent;
        border: none;
        color: #a9b3cb;
    }

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


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


/* .mdlogo {
    display: block;
}

.smlogo {
    display: none;
    max-width: 30px !important;
} */

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

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


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

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

@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;
}



/* Form */


.d-none {
    display: none!important;
    transition: 0.5s;
}
.d-flex {
    display: flex !important;
    flex-wrap: wrap;
}

.pr-3, .px-3 {
    padding-right: 1rem!important;
}

/* PROGRESS BAR */

.progress-wrapper {
    /* max-width: 380px; */
    width: 100%;
}
.progress-wrapper p{
    margin: 0;
    text-align: left;
}

.progress {
    width: 100%;
    height: 6px;
    margin-top: 5px;
    background: #f5f8fa;
    border: 1px solid #c4cad6;
    margin-bottom: 20px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    border-radius: 0.25rem;
}

.top-progress-bar {
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #cd3934;
    transition: width 0.6s ease;
    max-width: 100% !important;
}



/* FORM STEPS */

.step {
    display: none;
}

.step.show {
    display: block;
}

.step h2 {
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #111;
    font-weight: 700;
}

.input-wrap {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-end;
}

.input-form {
    background: #fff;
    border: 1px solid #c4cad6;
    box-sizing: border-box;
    border-radius: 4px;
    height: 68px;
    /* font-family: Montserrat; */
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    display: block;
    margin: 1rem 0 0;
    padding: 22px 30px 15px;
    width: 100%;
}

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

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

.input-form--small {
    width: 30%;
}

.input-form--large {
    width: 40%;
}

/* radio button */

.radio-button {
    box-sizing: border-box;
    box-shadow: inset 0 -4px 4px rgb(21 46 83 / 50%);
    padding-top: 15px;
    font-size: 20px;
    background: #cd3934;
    border: 1px solid #e67579;
    border-radius: 4px;
    width: 100%;
    height: 68px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.radio-button:hover {
    cursor: pointer;
}

.btn input {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    z-index: 999;
    cursor: pointer;
}

.radio-button:hover {
    cursor: pointer;
    background: #cd3934;
}

/* FORM BUTTONS */
.form-steps{
    min-height: 300px;
}
.form-buttons {
    margin-top: 20px;
    text-align: center;
}

/* #btn-next {
    background: #cd3934;
    color: #fff;
    box-shadow: 0 2px 4px rgb(0 0 0 / 24%);
    border-radius: 6px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    display: block;
    width: 100%;
    max-width: 380px;
    margin: auto;
    margin-right: auto;
    padding: 15px 10px;
    text-transform: uppercase;
    margin-bottom: 20px;
} */

.next-arrow {
    display: inline-block;
    margin-left: 13px;
    margin-bottom: 0px;
}
.next-arrow.move {
    -webkit-animation: move 1s infinite linear;
    -moz-animation: move 1s infinite linear;
    animation: move 1s infinite linear;
}


@-webkit-keyframes move {
    50% {
      -webkit-transform: translateX(5px);
    }
  }
  @keyframes move {
    50% {
      transform: translateX(5px);
    }
  }

  
#btn-back {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    display: block;
    align-items: center;
    text-transform: uppercase;
    padding: 10px 10px;
    color: #a9b3cb;
    width: auto;
    margin-right: auto;
}


.input-wrap #btn-skip {
    font-weight: 400;
    font-size: 20px;
    display: block;
    align-items: center;
    text-transform: uppercase;
    padding: 10px 10px;
    color: #a9b3cb;
    width: auto;
    text-align: right;
    margin-right: 0;
}

.input-wrap #btn-back,
.input-wrap #btn-skip {
    /* width: 49%; */
}

.input-wrap #btn-back {
    text-align: left;
    margin-left: 0;
}


.back-arrow {
    display: inline-block;
    margin-right: 13px;
    margin-bottom: 0px;
}

/* VALIDATION */

.input-wrap>div {
    position: relative;
}

.validate-text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 145.31%;
    color: #eb1010;
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 7px;
    display: none;
}

.input-wrap>div.error .validate-text {
    display: block;
}

div.error input {
    border: 1px solid #eb1010;
}

.icon-val {
    position: absolute;
    bottom: 24px;
    left: 10px;
}

.icon-error {
    color: rgb(235, 16, 16);
    display: none !important;
}

div.error .icon-error {
    display: block !important;
}

.icon-good {
    color: rgb(0, 193, 179);
    display: none !important;
}

div.good .icon-good {
    display: block !important;
}

.icon-edit {
    display: inline-block;
    margin-left: 10px;
}

#show-adress {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-top: 15px;
}

#show-adress svg:hover {
    cursor: pointer;
}

#show-adress svg:hover path {
    fill: #cd3934;
}

#street-address {
    /* font-family: Montserrat; */
    /* font-style: normal; */
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    color: #9fa9b5;
}

#zip-code {
    padding-left: 30px;
    padding-right: 10px;
}

.dob-prefix {
    position: relative;
}

.dob-prefix input {
    padding-left: 48px;
}

.dob-prefix label {
    position: absolute;
    top: 42px;
    left: 27px;
    font-weight: 600;
    font-size: 18px;
}



.disclaimer {
    font-size: 14px;
    text-align: justify;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.disclaimer.show {
    display: block !important;
}


p.ma{
    /* display: none; */
    font-size: 13px !important;
}


.stateImg{
    max-width: 200px;
    margin: auto;
    vertical-align: middle;
    display: block;
    margin-bottom: 50px;
}


  
.trin-trin
{
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}



@keyframes trin {

    from {
        transform:rotate3d(0, 0, 1, 0deg);
    }
    20%, 32%, 44%, 56%, 68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%, 35%, 47%, 59%, 71% {
        transform: rotate3d(0,0,1,15deg);
    }
    26%, 38%, 50%, 62%, 74% {
        transform: rotate3d(0,0,1,0deg);
    }
    29%, 41%, 53%, 65%, 77% {
        transform: rotate3d(0,0,1,-15deg);
    }
    80% {
        transform:rotate3d(0, 0, 1, 0deg);
    }
  
  }
  


  .successStep {
    text-align: center;
}
.successStep p.successTxt {
    text-align: center;
    font-size: 16px !important;
    line-height: 140%;
    text-transform: capitalize;
    display: inline-block;
    position: relative;
}

.successStep span.greendot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #5fb96f;
    display: block;
    position: absolute;
    left: -15px;
    top: 6px;
}


.successStep .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 15px 40px;
    margin-bottom: 20px;
    text-decoration: none;
}

.successStep .btn:hover {
    text-decoration: none;
}

.successStep .phoneicon {
    display: inline-block;
}

.successStep .ctaNumber {
    text-align: left;
    padding-left: 15px;
}

.successStep em {
    font-style: normal;
}

.successStep .ctaNumber span {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
}
/* Form */

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

    .input-form {
        height: 53px;
        font-size: 16px;
        padding: 10px 25px 10px 10px !important;
        margin-top: 1.5rem;
    }

    .input-wrap.dob-row{
        flex-direction: row !important;
    }

    .dob-prefix label {
        position: absolute;
        top: 40px;
        left: 20px;
        font-size: 16px;
    }

    .dob-prefix input {
        padding-left: 38px !important;
    }

    .validate-text {
        top: unset;
        left: 0;
    }

    .c-button{
        margin-bottom: 15px;
    }

    .stateImg{
        max-width: 120px;
        display: none;
    }


    .trin-trin{
        width: 35px;
        height: 35px;
        }

    .successStep p.successTxt {
        font-size: 14px !important;
    }        
        
}


#loading1,
#loading2,
#loading3{
  display: none;
  transition: 0.5s;
}


.c-progressbar {
  font-weight: none;
  font-style: none;
  text-align: center;
  background-color: #335284;
}

.cprogress-bar {
  background-color: #335284;
  text-shadow: 0 0 0 transparent;
  text-align: center;
  background-color: unset !important;
  margin-bottom: 16px;
}

.progressbarOffsetWhite {
  background: #f5f5f5;
}

.progress-outer {
  height: 35px;
  line-height: 36px;
  font-size: 14px;
  overflow: hidden;
  width: 100%;
  background-color: #f5f5f5;
  box-shadow: inset 0 1px 2px #0000001a;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: inherit;
  height: 24px !important;
  line-height: 24px !important;
}

.progress-bar{
  background: transparent;
}

.progress-bar .progress-inner {
  font-weight: none;
  font-style: none;
  text-align: center;
  background-color: #335284;
}

.progress-inner {
  float: left;
  width: 0;
  height: 100%;
  font-size: 14px;
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: inset 0 -1px #00000026;
  transition: width 0.6s ease;
}

.progress-bar .progress-inner {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  animation: progress-bar-animation 100s linear infinite;
}

.progress30 {
  width: 30%;
}
.progress50 {
  width: 50%;
}
.progress80 {
  width: 80%;
}

.review-heading {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    display: inline-block;
    color: #000;
  }
  .review-heading h2 {
    font-size: 20px !important;
    text-align: center;
    color: #000;
  }
  



@-webkit-keyframes progress-bar-animation {
  to {
    background-position: 0px -3000px;
  }
}
@keyframes progress-bar-animation {
  to {
    background-position: 0px -3000px;
  }
}



@keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .fade-in {
    animation: fade-in;
    animation-duration: 0.5s;
  }
  .fade-out {
    animation: fade-out;
    animation-duration: 0.5s;
  }
  



  
/* The Modal (background) */

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

#myModal {
	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 */
#myModal .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 */
#myModal .close {
	color: #aaaaaa;
    float: right;
    font-size: 35px;
    font-weight: normal;
    position: absolute;
    top: 0;
    right: 10px;
}

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

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