@font-face {
    font-family: 'MazzardM';
    font-display: swap;
    src: url('../fonts/MazzardH-Medium.woff2') format('woff2'),
        url('../fonts/MazzardH-Medium.woff') format('woff');
    font-weight: 500;
}
@font-face {
    font-family: 'MazzardHRegular';
    font-display: swap;
    src: url('../fonts/MazzardH-Regular.woff2') format('woff2'),
        url('../fonts/MazzardH-Regular.woff') format('woff');
    font-weight: 400;
}
@font-face {
    font-family: 'Poppins';
    font-display: swap;
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: 400;
}
.popform {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(9, 11, 62, 0.7) !important;
    z-index: 9999999;
    font-size: 18px;
    display: none;
    opacity: 0;
    -webkit-transition: 200ms ease-in-out;
    -moz-transition: 200ms ease-in-out;
    -o-transition: 200ms ease-in-out;
    transition: 200ms ease-in-out;
}
.popform.fadePop {
    display: block !important;
    opacity: 1 !important;
}
.popform .popup-centered .pop-body {
    position: absolute;
    width: 91%;
    left: 52%;
    margin: 0 0 0 -335px;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    color: #313131;
    font-weight: 100;
    background: #fff;
    border-radius: 0 150px 0 0;
    top: 3%;
}
.popform .popup-centered .pop-body .pop-header {
    background: transparent;
    color: #181818;
    padding: 20px 25px 20px;
    position: relative;
    font-size: 20px;
}
.popform .popup-centered .pop-body .pop-header b {
    font-family: 'MazzardM' !important;
    font-size: 4.5rem;
    position: relative;
    text-align: left !important;
    line-height: 54px;
    display: inline-block;
    font-weight: 500;
}
.popform .popup-centered .pop-body .pop-header b::before {
    content: '';
    left: 0;
    bottom: 0;
    width: auto;
    border-bottom: 4px solid #1EFBD3;
    display: inline-block;
    position: absolute;
    width: 180px;
}
.popform .popup-centered .pop-body .pop-header b:has(span) span {
    border-bottom: 4px solid #1EFBD3;
}
.popform .popup-centered .pop-body .pop-header b:has(span)::before {
    display: none;
}

.popform .popup-centered .pop-body .pop-header .pop-close {
    position: absolute;
    cursor: pointer;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: inline-block;
    top: -20px;
    right: -30px;
}
.popform .popup-centered .pop-body .pop-content {
    min-height: inherit;
    max-height: inherit;
    padding: 17px 25px;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}
.popform .popup-centered .pop-body .pop-content .pop-field {
    padding: 0;
    margin-bottom: 18px;
    min-height: 55px;
    line-height: 50px;
}

.popform .popup-centered .pop-body .pop-content .pop-field:after {
    content: '';
    display: block;
    clear: both;
}

.popform .popup-centered .pop-body .pop-content .pop-field label {
    display: none !important;
}
.popform .popup-centered .pop-body .pop-content .pop-field input {
    font-family: MazzardHRegular;
    width: 100%;
    outline: 0;
    color: #0a0a3f !important;
    padding: 18px 10px 18px 25px;
    border: 1px solid #BBBCDE;
    font-size: 15px;
    border-radius: 6px;
    min-height: 55px;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 53px;
    font-weight: 300;
    height: 52px;
    float: right;
    font-weight: 400;
}

.popform .popup-centered .pop-body .pop-content .pop-field input::-webkit-input-placeholder {
    color: #9596ac;
}

.popform .popup-centered .pop-body .pop-content .pop-field input::-moz-placeholder {
    color: #9596ac;
}

.popform .popup-centered .pop-body .pop-content .pop-field input:-ms-input-placeholder {
    color: #9596ac;
}

.popform .popup-centered .pop-body .pop-content .pop-field input::-ms-input-placeholder {
    color: #9596ac;
}

.popform .popup-centered .pop-body .pop-content .pop-field input::placeholder {
    color: #9596ac;
}
.popform .popup-centered .pop-body .pop-content .pop-field .pop-error {
    margin-left: 20px;
    line-height: 18px;
    display: inline-block;
    color: #ff0000;
    margin-top: 5px;
    float: right;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    margin-bottom: -10px;
    padding-bottom: 2px;
    padding-top: 5px;
}

.popform .popup-centered .pop-body .pop-content .checkbox-field {
    padding: 0 0 0 5px;
    margin: 7px 0 13px 0;
    position: relative;
    display: block;
    min-height: auto;
    line-height: inherit;
}

.popform .popup-centered .pop-body .pop-content .checkbox-field input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    cursor: pointer;
    position: absolute;
    opacity: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.popform .popup-centered .pop-body .pop-content .checkbox-field input:checked + .label_text:before {
    background-color: #0072f5;
}

.popform .popup-centered .pop-body .pop-content .checkbox-field input:checked + .label_text:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .12s, border-color .08s;
    -o-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

.popform .popup-centered .pop-body .pop-content .checkbox-field .label_text {
    font-family: MazzardHRegular;
    color: #878787;
    font-size: 13px;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    /*min-height: 37px;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0px;
    line-height: 21.84px;
    font-weight: 400;
}

.popform .popup-centered .pop-body .pop-content .checkbox-field .label_text span {
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    top: 1px;
}

.popform .popup-centered .pop-body .pop-content .checkbox-field .label_text:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #BBBCDE;
    padding: 11px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 20px;
    border-radius: 3px;
}
.popform .popup-centered .pop-body .pop-content .pop-column {
    display: inline-block;
}

.popform .popup-centered .pop-body .pop-content .pop-column.half {
    width: 49%;
}

.popform .popup-centered .pop-body .pop-thankyou {
    padding: 17px 25px;
    text-align: left;
    font-size: 25px;
    line-height: 40px;
    font-family: 'Poppins';
    font-weight: 400;
}

.popform .popup-centered .pop-body .pop-thankyou div {
    text-align: center;
    margin-top: 20px;
}

.popform .popup-centered .pop-body .pop-thankyou div::after {
    content: none;
}

.popform .popup-centered .pop-body .pop-thankyou .pop-close-thankyou {
    border-radius: 6px;
    text-align: center;
    background-color: #0072f5;
    color: #fff;
    outline: 0;
    padding: 10px 40px;
    font-family: 'Poppins';
    position: relative;
    display: inline-block;
    margin: 5px auto;
    min-height: 50px;
    cursor: pointer;
    border: 0 none;
    min-width: 125px;
}

.popform .popup-centered .pop-body .pop-footer {
    text-align: center;
    clear: left;
    position: relative;
}

.popform .popup-centered .pop-body .pop-footer:after {
    content: '';
    display: block;
    clear: both;
}

.popform .popup-centered .pop-body .pop-footer p {
    width: 100%;
    font-size: 13px;
    color: #878787;
    line-height: 20px;
    text-align: left;
    font-weight: 400;
    margin: 0 0px 20px 8px;
    font-family: MazzardHRegular;
    line-height: 21.84px;
    display: inline-block;
    vertical-align: bottom;
    float: left;
    padding: 0px 10px 10px 0;
    font-weight: 400;
}

.popform .popup-centered .pop-body .pop-footer p a {
    color: #0072f5 !important;
    text-decoration: none;
}

.popform .popup-centered .pop-body .pop-footer p:last-of-type {
    margin-top: 0;
}

.popform .popup-centered .pop-body .pop-footer p:has(br) br {
    display: none;
}

.popform .popup-centered .pop-body .pop-footer button[type="submit"] {
    border-radius: 6px;
    text-align: center;
    background-color: #0072f5;
    color: #fff;
    outline: 0;
    padding: 12px 45px;
    font-size: 17px;
    min-width: 230px;
    min-height: 46px;
    font-family: 'Poppins';
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    cursor: pointer;
    border: 0 none;
    margin: 5px auto 0 auto;
    font-weight: 500;
}

.popform .popup-centered .pop-body .pop-footer button[type="submit"] svg {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.popform input:focus,
.popform select:focus,
.popform textarea:focus,
.popform button:focus,
.popform *:focus {
    outline: none;
}

.no-scroll .popform {
    overflow-y: auto;
}

.wrapper-no-scroll {
    overflow: hidden;
}
.popform .pop-loading {
    margin: 0 auto;
    padding: 0;
    width: 16px !important;
    height: 16px !important;
    position: absolute;
    left: 0;
    max-width: 16px;
    max-height: 36px;
    right: 0;
    bottom: 0px !important;
}
.popform .popup-centered .pop-body .pop-content .pop-field input::-webkit-input-placeholder {
    min-height: 20px;
}

.popform .popup-centered .pop-body .pop-content .pop-field input::-moz-placeholder {
    min-height: 20px;
}

.popform .popup-centered .pop-body .pop-content .pop-field input:-moz-placeholder {
    min-height: 20px;
}
@media (max-width: 767px) {
    .popup-centered .pop-body .pop-thankyou {
        font-size: 18px;
    }
}


@media (min-width: 768px) {
    .popform .popup-centered .pop-body {
        max-width: 650px;
        top: 15%;
    }
}

@media (min-width: 1024px) {
    .popform .popup-centered .pop-body .pop-thankyou {
        max-height: 545px;
    }
}

@media (min-width: 1200px) {
    .popform .popup-centered .pop-body {
        max-width: 585px;
        top: 9%;
    }
}


@media screen and (max-width: 1100px) {
    .popform .popup-centered .pop-body .pop-header b {
        font-size: 25px;
    }

    .popform .popup-centered .pop-body .pop-content .pop-field input {
        padding: 14px 10px 14px 18px;
        min-height: 45px;
        line-height: 1;
    }

    .popform .popup-centered .pop-body .pop-content .pop-field select {
        padding: 14px 10px 14px 30px;
    }
}


@media (max-width: 1024px) {
    .popform .popup-centered .pop-body .pop-header b.request-box::before {
        width: 140px;
    }

    .popform .popup-centered .pop-body .pop-header b::before {
        width: 140px;
    }

    .popform .popup-centered .pop-body .pop-thankyou {
        padding: 0px 25px;
        font-family: 'Poppins';
        font-size: 17px;
        line-height: 28px;
        color: #000;
        min-height: 150px;
        margin-top: -10px;
    }

    .popform .popup-centered .pop-body .pop-thankyou div {
        margin-top: 30px;
    }

    .popform .popup-centered .pop-body .pop-thankyou .pop-close-thankyou {
        font-size: 17px;
        color: #fff;
        width: 220px;
        height: 54px;
    }

    .popform .popup-centered .pop-body .pop-thankyou .pop-close-thankyou::after {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .popform .popup-centered .pop-body .pop-content {
        padding: 4px;
    }

    .popform .popup-centered .pop-body .pop-content .pop-field {
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .popform .popup-centered .pop-body .pop-header {
        padding: 10px 10px 20px;
    }

    .popform .popup-centered .pop-body .pop-thankyou {
        padding: 0px 10px;
    }
}

@media (max-width: 800px) {
    .popform .popup-centered .pop-body .pop-header b::before {
        width: 140px;
        border-bottom-width: 3px;
    }
}

@media (max-width: 768px) {
    .popform.detailthank .pop-body {
        max-width: 672px !important;
        left: 50% !important;
    }
}

@media screen and (max-width: 767px) {
    .popform .popup-centered .pop-body .pop-header .pop-close {
        top: -5px;
        right: -5px;
    }

    .popform .popup-centered .pop-body .pop-content .pop-field {
        min-height: 42px;
    }

    .popform .popup-centered .pop-body .pop-content .pop-field input {
        padding: 10px 10px 10px 15px;
        min-height: 42px;
        height: 42px;
        font-size: 15px;
        line-height: 1 !important;
    }

    .popform .popup-centered .pop-body .pop-content .pop-field select {
        padding: 10px 10px 10px 15px;
    }

    .popform .popup-centered .pop-body .pop-content .pop-field .pop-error {
        width: 100%;
        text-align: center;
        margin-bottom: -10px;
    }

    .popform .popup-centered .pop-body .pop-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
    }

    .popform .popup-centered .pop-body .pop-footer p {
        margin: 20px 0 10px;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .popform .popup-centered .pop-body .pop-footer button[type="submit"] {
        min-width: 205px;
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .popform .popup-centered .pop-body {
        left: auto;
        right: 16px;
        padding: 15px;
        bottom: inherit;
    }

    .popform .popup-centered .pop-body .pop-header {
        margin-bottom: 10px;
        padding: 10px 7px 15px;
    }

    .popform .popup-centered .pop-body .pop-header b::before {
        width: 150px;
    }

    .popform .popup-centered .pop-body .pop-thankyou {
        font-size: 18px;
    }

    .popform .popup-centered .pop-body .pop-thankyou div {
        margin-bottom: 15px;
    }

    .popform .popup-centered .pop-body .pop-thankyou .pop-close-thankyou {
        font-size: 21px;
        width: 100%;
        height: 65px;
    }

    .popform .pop-loading {
        top: 74px !important;
        left: 0 !important;
    }
}

@media screen and (max-width: 550px) {
    .popform .popup-centered .pop-body .pop-footer p br {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .popform .popup-centered .pop-body .pop-content .checkbox-field input:checked + .label_text:after {
        left: 8px;
        width: 6px;
        height: 10px;
    }

    .popform .popup-centered .pop-body .pop-content .checkbox-field .label_text {
        padding-left: 32px;
    }

    .popform .popup-centered .pop-body .pop-content .checkbox-field .label_text:before {
        padding: 9.5px;
    }
}

@media (max-width: 500px) {
    .popform .popup-centered .pop-body .pop-content .pop-field input::-webkit-input-placeholder {
        font-size: 15px;
    }
    .popform .popup-centered .pop-body .pop-content .pop-field input::-moz-placeholder {
        font-size: 15px;
    }
    .popform .popup-centered .pop-body .pop-content .pop-field input:-ms-input-placeholder {
        font-size: 15px;
    }
    .popform .popup-centered .pop-body .pop-content .pop-field input::-ms-input-placeholder {
        font-size: 15px;
    }
    .popform .popup-centered .pop-body .pop-content .pop-field input::placeholder {
        font-size: 15px;
    }
}

@media (max-width: 395px) {
    .popform .popup-centered .pop-body .pop-header b::before {
        width: 118px;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .popform .popup-centered .pop-body {
        top: 7%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .popform .popup-centered .pop-body {
        max-width: 490px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media screen and (min-width: 991px) and (max-width: 1100px) {
    .popform .popup-centered .pop-body .pop-footer p:first-of-type {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.webp .popform .popup-centered .pop-body .pop-header .pop-close {
    background: url(../img/home/x.webp) no-repeat center center/14px 15px !important;
}
#fRM_response{
    color: red;
    font-size: 14px;
    font-family: 'MazzardHRegular';
    text-align: center;
}
#wm-video-popup {
    display: none;
    overflow-y: auto;
    z-index: 99999999;
    opacity: 1;
}
#wm-video-popup .pop-body {
    background-color: transparent !important;
    border-radius: 0px !important;
    padding: 0px !important;
}
#wm-video-popup.popform .popup-centered .pop-body .pop-header .pop-close{
    top: 35px;
    right: 0;
}