@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
    font-family: "Source Sans 3", serif;
    font-weight: 400;
}

:root {
    --white-clr: #fff;
    --black-clr: #000;
    --primary-clr: #006336;
    --sec-bg-clr: #F7FAF9;
    --card-bg-clr: #F5F7F5;
    --clr-ddd: #ddd;
    --fontPt: "PT Serif", serif;
}

html,
body {
    height: 100%;
    width: 100%;
    color: #222222;
    position: relative;
    font-size: 16px;
}

.logo {
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin-bottom: 0;
    padding: 0;
    font-size: inherit;
}

li {
    list-style: none;
}

button,
input,
textarea {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

.text-222 {
    color: #222222;
}

.text-444 {
    color: #444444;
}

.text-999 {
    color: #999999;
}

a {
    text-decoration: none;
    color: inherit;
}

textarea {
    resize: none;
}

.flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-full {
    height: 100%;
    width: 100%;
}

.img-fill {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section-heading {
    font-family: var(--fontPt);
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    color: #222222;
}

.section-subHeading {
    font-size: 20px;
    font-weight: 600;
    color: var(--text222);
    line-height: 30px;
    margin-bottom: 6px;
}

.section-padding {
    padding-block: 80px;
}

.sec-info-para {
    font-size: 15px;
    font-weight: 300;
    color: var(--text444);
    line-height: 23px;
}


.cmn-sec-img {
    border-radius: 10px;
}

.theme-btn {
    background: var(--primary-clr);
    color: var(--white-clr);
    transition: .2s linear;
    border-radius: 40px;
    min-height: 46px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.theme-btn:hover:after {
    background: #222;
}

.theme-btn::before {
    content: "";
    position: absolute;
    width: 80%;
    background-color: rgb(0 0 0 / 24%);
    filter: blur(4px);
    z-index: -1;
    height: 10px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.theme-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: var(--primary-clr);
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: inherit;
    transition: .2s linear;
}

.font-ptSerif {
    font-family: "PT Serif", serif;
}

.small-scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 5px;
}

.small-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--primary-clr);
    border-radius: 5px;
}

.small-scrollbar::-webkit-scrollbar-track {
    background-color: #ddd;
}

.inner-area {
    position: relative;
}

/* ----Navbar------ */
#nav_head {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
}

.navBar {
    background: var(--white-clr);
    box-shadow: 0px 2px 15px 0px #0000001A;
}

.navBar .nav-inner {
    padding-block: 15px;
}

.navBar .branding img {
    max-width: 130px;
}

.navBar .header-cta {
    min-width: 156px;
}

/* -----Hero Section---- */
.hero-sec {
    margin-top: 86px;
}

.hero-inner-area div>.inner {
    padding-block: 87px;
}

.hero-inner-area::after {
    position: absolute;
    content: "";
    background-image: url("../assets/images/block-vector.svg");
    background-repeat: no-repeat;
    left: 4px;
    top: 23px;
    height: 102px;
    width: 120px;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 52px;
    font-family: var(--fontPt);
}

.hero-title span {
    font-weight: 700;
    font-family: var(--fontPt);
    color: var(--primary-clr);
}

.hero-heading {
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
    margin-top: 22px;
}

.hero-inner-area .cus-col:first-of-type .col-wrapper {
    max-width: 437px;
}

.contact-form .form-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 16px;
}

.contact-form .field-wrapper .col-6:first-child {
    padding-right: 7px;
}

.contact-form .field-wrapper .col-6:nth-of-type(2) {
    padding-left: 7px;
}


.form-inner-wrapper {
    border: 1px solid #F5F7F5;
    box-shadow: 0px 2px 15px 0px #0000001A;
    background-color: var(--card-bg-clr);
    border-radius: 20px;
    padding: 20px;
}

.form-inner-wrapper button[type="submit"] {
    min-width: 165px;
}

.input-block {
    margin-bottom: 16px;
}

.input-block input {
    background: var(--white-clr);
    border-radius: 10px;
    border: 1px solid var(--clr-ddd);
    padding-inline: 18px;
    min-height: 44px;
    width: 100%;
    transition: .2s linear;
    color: #222222;
}

.input-block input:hover,
.input-block input:focus {
    border-color: var(--primary-clr);
}

.input-block textarea {
    background: var(--white-clr);
    border-radius: 10px;
    border: 1px solid var(--clr-ddd);
    padding: 9px 18px 0;
    height: 44px;
    width: 100%;
    transition: .2s linear;
    resize: vertical;
    color: #222222;
}

.input-block textarea:hover,
.input-block textarea:focus {
    border-color: var(--primary-clr);
}

input.theme-input-placeholder::placeholder,
textarea.theme-input-placeholder::placeholder {
    color: #999;
}

/* ---- Why Pay More Section----- */
.why-pay-more {
    background-color: var(--sec-bg-clr);
}

.whyPy-more-inner-area .listing {
    margin-top: 16px;
}

.whyPy-more-inner-area .listing li {
    font-size: 18px;
    line-height: 26px;
    position: relative;
    padding-left: calc(21px + 14px);
}

.whyPy-more-inner-area .listing li strong {
    color: #222;
}

.whyPy-more-inner-area .listing li:not(:last-of-type) {
    margin-bottom: 12px;
}

.whyPy-more-inner-area .listing li::before {
    display: inline-block;
    content: "";
    background-image: url("../assets/images/list-chck-icnx.svg");
    background-repeat: no-repeat;
    height: 20px;
    width: 21px;
    position: absolute;
    left: 0;
    top: 3px;
}

.whyPy-more-inner-area .cus-col:nth-of-type(2) .col-wrapper {
    width: 100%;
    text-align: end;
}

.whyPy-more-inner-area .cus-col:nth-of-type(2) .col-wrapper img {
    max-width: 427px;
    width: 100%;
}

.whyPy-more-inner-area .listing .cmn-cta {
    min-width: 165px;
    margin-top: 12px;
}

.whyPy-more-inner-area {
    position: relative;
}

.whyPy-more-inner-area .inner {
    position: relative;
    z-index: 1;
}

.whyPy-more-inner-area::after {
    position: absolute;
    content: "";
    background-image: url("../assets/images/block-vector.svg");
    background-repeat: no-repeat;
    right: 20px;
    bottom: 48px;
    height: 102px;
    width: 120px;
}

/* ---- Best Choice Section----- */

.best-choice-inner-area .section-heading {
    margin-bottom: 16px;
}

.best-choice-inner-area {
    position: relative;
}

.best-choice-inner-area::after {
    position: absolute;
    content: "";
    background-image: url("../assets/images/block-vector.svg");
    background-repeat: no-repeat;
    left: 31px;
    bottom: 34px;
    height: 102px;
    width: 120px;
}

.best-choice-inner-area .inner {
    position: relative;
    z-index: 1;
}

.best-choice-inner-area ul {
    counter-reset: list-counter;
}

.best-choice-inner-area ul li {
    font-size: 18px;
}

.best-choice-inner-area .content-inner>ul li:not(:last-of-type) {
    margin-bottom: 16px;
}

.best-choice-inner-area ul li .title {
    counter-increment: list-counter;
    position: relative;
    padding-left: 20px;
}

.best-choice-inner-area ul li .title::before {
    content: counter(list-counter) ". ";
    position: absolute;
    left: 0;
    color: #222;
    font-weight: 600;
    font-family: inherit;
}

.best-choice-inner-area ul li .title {
    font-weight: 600;
    margin-bottom: 4px;
}

.best-choice-inner-area ul .desc-lists li {
    padding-left: calc(6px + 14px);
    position: relative;
    color: #444;
}

.best-choice-inner-area ul .desc-lists li::before {
    display: inline-block;
    content: "";
    position: absolute;
    left: 10px;
    top: calc(22px / 2);
    --sz: 4px;
    border-radius: 50%;
    background-color: #444;
    height: var(--sz);
    width: var(--sz);
}

.best-choice-inner-area ul .desc-lists li:not(:last-of-type) {
    margin-bottom: 4px;
}

.best-choice-inner-area ul li .sub-title {
    color: #444;
    margin-block: 4px;
    font-weight: 400;
}

.best-choice-inner-area ul .desc-lists li strong {
    color: #444;
    font-weight: 600;
}

/* ---- Elegibility Section----- */
section.eligibility {
    background: var(--sec-bg-clr);
}

.eligibility-inner-area,
.eligibility-inner-area .inner {
    position: relative;
    z-index: 1;
}

.eligibility-inner-area::after {
    position: absolute;
    content: "";
    background-image: url("../assets/images/block-vector.svg");
    background-repeat: no-repeat;
    right: 0;
    bottom: 90px;
    height: 102px;
    width: 120px;
}

.eligibility-inner-area .sub-heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-block: 16px 12px;
}

.eligibility-inner-area .listing li {
    font-size: 18px;
    line-height: 26px;
    position: relative;
    padding-left: calc(21px + 14px);
    margin-bottom: 16px;
}

.eligibility-inner-area .listing {
    max-width: 449px;
    padding-left: 8px;
}

.eligibility-inner-area .listing li::before {
    display: inline-block;
    content: "";
    background-image: url("../assets/images/list-chck-icnx.svg");
    background-repeat: no-repeat;
    height: 20px;
    width: 21px;
    position: absolute;
    left: 0;
    top: 3px;
}

.eligibility-inner-area .cmn-cta {
    padding-inline: 15px;
    width: 100%;
    max-width: 325px;
}

.eligibility-inner-area .cus-col:first-of-type img {
    max-width: 396px;
    width: 100%;
}

/* ----Stand Out Sectin---- */

.stand-out-inner-area .section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.stand-out-inner-area,
.stand-out .inner {
    position: relative;
    z-index: 1;
}

.stand-out-inner-area::after {
    position: absolute;
    content: "";
    background-image: url("../assets/images/block-vector.svg");
    background-repeat: no-repeat;
    left: 0;
    bottom: -3px;
    height: 102px;
    width: 120px;
    rotate: -26deg;
    background-position: -32px center;
}

.stand-out-inner-area .ccard {
    background-color: var(--sec-bg-clr);
    height: 100%;
    border-radius: 16px;
}

.stand-out-inner-area .ccard .inner {
    padding: 20px;
    display: flex;
    height: 100%;
    gap: 18px;
}

.stand-out-inner-area .ccard .inner .title {
    font-size: 20px;
    margin-bottom: 6px;
    line-height: 28px;
}

.stand-out-inner-area .ccard .inner .title+p {
    font-size: 18px;
    line-height: 28px;
}

/* --- Insurance programs --- */

.incs-program .col-wrapper .listing {
    margin-top: 15px;
}

.incs-program .col-wrapper li {
    font-size: 18px;
    line-height: 26px;
    position: relative;
    padding-left: calc(21px + 14px);
    margin-bottom: 16px;
}

.incs-program-area {
    position: relative;
}

.incs-program-area,
.incs-program .inner {
    position: relative;
    z-index: 1;
}

.incs-program-area::after {
    position: absolute;
    content: "";
    background-image: url("../assets/images/block-vector.svg");
    background-repeat: no-repeat;
    left: 41px;
    top: 56px;
    height: 84px;
    width: 98px;
    background-size: contain;
}

.incs-program .col-wrapper li::before {
    display: inline-block;
    content: "";
    background-image: url("../assets/images/list-chck-icnx.svg");
    background-repeat: no-repeat;
    height: 20px;
    width: 21px;
    position: absolute;
    left: 0;
    top: 3px;
}

/* ----- Working Section---- */
.working-steps-program {
    background: var(--sec-bg-clr);
}

.working-steps .sec-header {
    text-align: center;
}

.working-steps .section-padding {
    padding-bottom: calc((-50px + 80px));
}

.working-steps .sec-header .section-subHeading {
    color: #016135;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

.working-steps .sec-header .section-subHeading:first-of-type {
    margin-block: 20px 6px;
}

.working-steps .sec-header .section-subHeading:nth-of-type(2) {
    margin-bottom: 32px;
}








/* ----Footer---- */
.footer {
    background: #00341D;
    color: var(--clr-ddd);
    position: relative;
}

.footer::after {
    position: absolute;
    content: "";
    background-image: url("../assets/images/block-vector.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    left: 20px;
    top: 58px;
    height: 84px;
    width: 98px;
    opacity: 6%;
}

.footer::before {
    position: absolute;
    content: "";
    background-image: url("../assets/images/block-vector.svg");
    background-repeat: no-repeat;
    background-position: center bottom -25px;
    background-size: contain;
    right: 20px;
    bottom: 0;
    height: 84px;
    width: 98px;
    opacity: 6%;
}

.footer .inner {
    padding-block: 44px;
    display: flex;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.footer .ft-info {
    margin-block: 10px 12px;
}

.ft-mob-cprght {
    display: none;
}

.ft-cprght p,
.ft-cprght p span {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.footer .right-col .ft-link-title {
    font-size: 20px;
    line-height: 26px;
    text-align: left;
    margin-bottom: 12px;
}

.footer .right-col .ft-links li:not(:last-of-type) {
    margin-bottom: 12px;
}

.footer .right-col .ft-links li {
    font-size: 16px;
    line-height: 22px;
    position: relative;
    padding-left: calc(16px + 13px);
}

.footer .right-col .ft-links li a {
    transition: .1s linear;
}

.footer .right-col .ft-links li a:hover {
    color: #fff;
}

.footer .right-col .ft-links li::before {
    display: inline-block;
    content: "";
    background-repeat: no-repeat;
    height: 20px;
    width: 21px;
    position: absolute;
    left: 0;
    top: 3px;
}

.footer .right-col .ft-links li:first-of-type::before {
    background-image: url("../assets/images/call-icon.svg");
}

.footer .right-col .ft-links li:last-of-type::before {
    background-image: url("../assets/images/web-icon.svg");
}

/* .footer .right-col .ft-links li:nth-of-type(2)::before {
    background-image: url("../assets/images/whatsapp-icon.svg");
} */
.footer .right-col .ft-links li:nth-of-type(2)::before {
    background-image: url("../assets/images/mail-icon.svg");
}


/* -----CTA ACTION MODAL----- */

.ctaModal .modal-content {
    border: 0;
    border-radius: 20px;
    background-color: var(--sec-bg-clr);
}

.ctaModal .modal-header {
    border: 0;
    padding: 26px 30px 0;
    align-items: flex-start;
}

.ctaModal .modal-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}

.ctaModal .modal-title span {
    font-weight: 700;
    line-height: 36px;
    color: var(--primary-clr);
}

.ctaModal .modal-dialog {
    max-width: 585px;
}

.ctaModal .modal-body {
    padding: 10px 30px 26px;
}

.ctaModal .modal-body .container {
    padding-inline: 0;
}

.ctaModal .modal-body .frm-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    color: #555555;
}

.ctaModal .btn-close {
    background: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    height: 30px;
    min-width: 30px;
    width: 30px;
    opacity: 30%;
    transition: .1s linear;
    ;
}

.ctaModal .btn-close:hover {
    opacity: 100%;
}

.ctaModal form button[type="submit"] {
    min-width: 165px;
}

.ctaModal form .field-wrapper .col-6:first-child {
    padding-right: 8px;
}

.ctaModal form .field-wrapper .col-6:nth-of-type(2) {
    padding-left: 8px;
}

.help-block {
    color: red;
    font-size: 14px;
    display: block;
    font-weight: 300;
    margin: 5px 0 0 2px !important;
}

/* ------Working Steps Section----- */

.stepCard {
    box-shadow: 0px 2px 10px 0px #0000001A;
    border-radius: 70px;
    padding: 21px;
    text-align: center;
    margin-bottom: 56px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-clr);
    position: relative;
}

.stepCard .card-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.steps-listing .cus-inner {
    max-width: 840px;
    margin-inline: auto;
}

.stepCard .card-inner .title,
.stepCard .card-inner .title span {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #222;
}

.stepCard .card-inner .title span {
    color: var(--primary-clr);
}

.stepCard .card-inner p {
    font-size: 18px;
    line-height: 26px;
    color: #444;
    margin-top: 4px;
}

.sizerCard {
    max-width: 580px;
    width: 100%;
    margin-inline: auto;
}

.stepCard-grp {
    display: flex;
    gap: 40px;
    margin-top: 110px;
}

.stepCard-grp .stepCard {
    max-width: calc(50% - 20px);
    flex-basis: calc(50% - 20px);
}

.sizerCard::after {
    content: "";
    position: absolute;
    bottom: calc(10px - 56px);
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(56px - 10px);
    background-color: var(--primary-clr);
    pointer-events: none;
}

.sizerCard::before {
    content: "";
    position: absolute;
    background-color: var(--primary-clr);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    --sz: 10px;
    width: var(--sz);
    height: var(--sz);
    bottom: calc(-1 * (var(--sz)));
    pointer-events: none;
}

.stepCard .flw-art {
    position: absolute;
    --ht: 10px;
    height: var(--ht);
    width: 13px;
    background-image: url(../assets/images/triangleShape.svg);
    background-repeat: no-repeat;
    background-size: contain;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(-56px);
    pointer-events: none;

}

.stepCard-grp .stepCard::before {
    top: calc((-1 * 120px) + 66px - 10px);
    position: absolute;
    content: "";
    background-color: transparent;
    width: calc(56% + 21px);
    height: 2px;
    height: 63px;
    border: 2px solid var(--primary-clr);
    pointer-events: none;
}

.stepCard-grp .stepCard:nth-of-type(1)::before {
    right: -20px;
    border-right: 0;
    border-bottom: 0;
    border-radius: 6px 0 0 0;
    pointer-events: none;
}

.stepCard-grp .stepCard:nth-of-type(2)::before {
    left: -20px;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 6px 0 0;
    border-color: #FF0000;
    pointer-events: none;
}

.stepCard-grp .stepCard .flw-art {
    top: calc(-1 * var(--ht));
}

.stepCard-grp .stepCard:nth-of-type(1) .flw-art {
    left: calc(-24px + 50%);
}

.stepCard-grp .stepCard:nth-of-type(2) .flw-art {
    left: calc(24px + 50%);
    filter: brightness(0) saturate(100%) invert(17%) sepia(95%) saturate(7490%) hue-rotate(0deg) brightness(111%) contrast(104%);
}

.stepCard-grp .stepCard .flw-label {
    position: absolute;
    top: -46px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.stepCard-grp .stepCard:nth-of-type(1) .flw-label {
    left: calc(50% - 8px);
    color: var(--primary-clr);
}

.stepCard-grp .stepCard:nth-of-type(2) .flw-label {
    right: calc(50% - 8px);
    color: #FF0000;
}


/* ------Media Queries----- */
@media (min-width:992px) and (max-width: 1399px) {

    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: calc(945px + 24px);
    }
}


@media screen and (max-width: 991px) {
    .hero-inner-area .cus-col:first-of-type .col-wrapper {
        max-width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }

    .hero-inner-area div>.inner {
        position: relative;
        z-index: 1;
        padding-block: 57px;
    }

    .form-inner-wrapper {
        max-width: 480px;
        margin-inline: auto;
    }

    .whyPy-more-inner-area .cus-col:nth-of-type(2) .col-wrapper {
        text-align: center;
        margin-bottom: 50px;
    }

    .stand-out-inner-area .col-lg-6:not(:last-child) {
        margin-bottom: 20px;
    }

    .stand-out-inner-area .section-heading {
        margin-bottom: 14px;
    }

    .stand-out-inner-area .ccard .inner {
        padding: 16px;
        gap: 12px;
    }

    .stand-out-inner-area .ccard {
        min-height: 139px;
    }

    .stepCard-grp .stepCard:nth-of-type(1) .flw-art {
        left: calc(-20px + 50%);
    }

    .stepCard-grp .stepCard:nth-of-type(2) .flw-art {
        left: calc(20px + 50%);
    }
}

@media screen and (max-width:767px) {
    .whyPy-more-inner-area .cus-col:nth-of-type(2) .col-wrapper img {
        max-width: 357px;
    }

    .eligibility-inner-area .cus-col:first-of-type {
        justify-content: center;
        margin-bottom: 50px;
    }

    .stand-out-inner-area .section-heading {
        text-align: left;
    }

    .footer .inner {
        flex-direction: column;
        gap: 18px;
    }

    .ft-web-cprght {
        display: none;
    }

    .ft-mob-cprght {
        display: block;
        margin-top: 18px;
    }

    .footer .ft-info {
        margin-block: 10px 0;
    }

    .stepCard-grp {
        flex-direction: column;
        gap: 0;
        margin-top: 70px;
    }

    .stepCard-grp .stepCard {
        max-width: calc(100% - 30px);
        flex-basis: calc(100% - 30px);
    }

    .stepCard-grp .stepCard::before {
        height: 36px;
    }

    .stepCard-grp .stepCard:nth-of-type(1) .flw-label {
        left: calc(40% - 34px - 30px);
        top: -36px;
    }

    .sizerCard:nth-of-type(4)::after {
        height: calc(19px + 10px);
        bottom: calc(-10px - 19px);
    }

    .stepCard-grp .stepCard:nth-of-type(1)::before {
        right: calc(20% + 20px + 30px + 80px);
        width: calc(20% + 22px + 30px);
        top: calc((-1 * 108px) + 76px - 10px);
    }

    .stepCard-grp .stepCard:nth-of-type(1) .flw-art {
        left: calc(13px + 20%);
    }

    .stepCard-grp .stepCard:nth-of-type(2)::before {
        height: calc(100% + 100px + 50px);
        top: calc(-100px - 56px - 42px);
        left: calc(50% + 16px);
        width: calc(50% + 28px - 16px);
    }

    .stepCard-grp .stepCard:nth-of-type(2) .flw-label {
        right: -6px;
        top: calc(-100px - 56px - 36px);
    }

    .stepCard-grp .stepCard:nth-of-type(2) .flw-art {
        top: calc(50% - 3px);
        left: unset;
        right: calc(0px - 12px);
        transform: rotate(90deg);
    }

    .stepCard-grp .stepCard:nth-of-type(2)::after {
        right: -28px;
        border-radius: 0 0 6px 0;
        border-color: #FF0000;
        position: absolute;
        content: "";
        width: 25px;
        height: 22px;
        background: transparent;
        border: 2px solid #FF0000;
        bottom: calc(50% - 3px);
        border-left: 0;
        border-top: 0;
    }

    .working-steps .sec-header {
        text-align: left;
    }
}

@media screen and (max-width:575px) {
    .hero-title {
        font-size: 27px;
        line-height: 40px;
        padding-inline: 4%;
    }

    .steps-listing .cus-inner {
        padding-inline: calc(20px - 12px);
    }

    .hero-heading {
        font-size: 16px;
        line-height: 28px;
        margin-top: 20px;
        padding-inline: 7%;
    }

    .whyPy-more-inner-area .listing li {
        font-size: 16px;
        line-height: 26px;
    }

    .hero-inner-area::after,
    .whyPy-more-inner-area::after,
    .best-choice-inner-area::after,
    .stand-out-inner-area::after,
    .incs-program-area::after,
    .footer::before,
    .footer::after {
        display: none;
    }

    .stepCard-grp .stepCard:nth-of-type(1)::before {
        width: 55%;
        right: unset;
        left: calc(50% - 13px);
        transform: translateX(-50%);
    }

    .stepCard-grp .stepCard:nth-of-type(1) .flw-art {
        left: calc(25% - 15px - 7px);
    }
}

@media screen and (max-width:480px) {
    .section-padding {
        padding-block: 50px;
    }

    .stepCard .card-inner .title,
    .stepCard .card-inner .title span {
        font-size: 16px;
        line-height: 22px;
    }

    .stepCard .card-inner p {
        font-size: 15px;
        line-height: 20px;
        color: #444;
    }

    .whyPy-more-inner-area .listing {
        margin-top: 19px;
    }

    .whyPy-more-inner-area .listing li {
        font-size: 16px;
        line-height: 22px;
    }

    .hero-sec {
        margin-top: 66px;
    }

    .navBar .nav-inner {
        padding-block: 13px;
    }

    .navBar .branding img {
        max-width: 100px;
    }

    .theme-btn {
        font-size: 14px;
        min-height: 40px;
    }

    .navBar .header-cta {
        min-width: 130px;
    }

    .contact-form .field-wrapper .col-6:first-child {
        padding-right: 6px;
    }

    .contact-form .field-wrapper .col-6:nth-of-type(2) {
        padding-left: 6px;
    }

    .contact-form .form-title {
        font-size: 18px;
        line-height: 24px;
    }

    .hero-inner-area .cus-col:first-of-type .col-wrapper {
        margin-bottom: 40px;
    }

    .ctaModal .modal-title,
    .ctaModal .modal-title span {
        font-size: 19px;
        line-height: 25px;
    }

    .ctaModal .modal-body .frm-title {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .ctaModal .modal-title {
        padding-right: 7px;
    }

    .ctaModal .modal-content {
        border-radius: 16px;
    }

    .ctaModal .modal-body {
        padding: 8px 16px 18px;
    }

    .ctaModal .modal-header {
        padding: 16px 16px 0;
    }

    .stepCard {
        margin-bottom: 46px;
        min-height: 81px;
    }

    .sizerCard::after {
        bottom: -40px;
        height: 40px;
    }

    .stepCard .flw-art {
        bottom: calc(-46px);
    }

    .stepCard-grp .stepCard:nth-of-type(2)::before {
        height: calc(100% + 67px + 50px);
        top: calc(-100px - 46px - 28px);
        left: calc(50% + 16px);
        width: calc(50% + 28px - 16px);
    }

    .stepCard-grp .stepCard .flw-label {
        top: -46px;
        font-size: 17px;
    }

    .stepCard-grp .stepCard:nth-of-type(2) .flw-label {
        top: calc(-100px - 68px);
        right: -10px;
    }
    .qst-wrapper {
        text-wrap: balance;
    }
}

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

    .hero-title {
        font-size: 24px;
        line-height: 30px;
        padding-inline: 0%;
    }

    .hero-heading {
        font-size: 16px;
        line-height: 22px;
        margin-top: 8px;
        padding-inline: 4%;
    }

    .form-inner-wrapper {
        padding: 16px;
    }

    .input-block input {
        min-height: 40px;
        font-size: 14px;
    }

    .input-block {
        margin-bottom: 12px;
    }

    .contact-form .form-title {
        font-size: 22px;
        line-height: 25px;
    }

    .hero-inner-area .cus-col:first-of-type .col-wrapper {
        margin-bottom: 20px;
    }

    .whyPy-more-inner-area .cus-col:nth-of-type(2) .col-wrapper {
        margin-bottom: 24px;
    }

    .section-heading {
        font-size: 20px;
        line-height: 30px;
    }

    .section-padding {
        padding-block: 20px;
    }

    .whyPy-more-inner-area .cus-col:nth-of-type(2) .col-wrapper img {
        max-width: 307px;
    }

    .navBar .branding img {
        max-width: 90px;
    }

    .hero-inner-area div>.inner {
        padding-block: 20px 40px;
    }

    .navBar .header-cta {
        font-size: 12px;
        min-height: 34px;
        min-width: 111px;
    }

    .form-inner-wrapper button[type="submit"] {
        min-width: 100%;
        font-size: 16px;
    }

    .whyPy-more-inner-area .listing .cmn-cta {
        margin-top: 14px;
        min-width: 161px;
    }

    .best-choice-inner-area ul li {
        font-size: 16px;
    }

    .best-choice-inner-area ul li .sub-title,
    .best-choice-inner-area ul .desc-lists li {
        font-size: 15px;
    }

    .best-choice-inner-area .content-inner>ul li:not(:last-of-type) {
        margin-bottom: 12px;
    }

    .best-choice-inner-area .section-padding,
    .stand-out-inner-area .section-padding {
        padding-block: 40px;
    }

    .eligibility-inner-area .cus-col:first-of-type {
        margin-bottom: 24px;
    }

    .eligibility-inner-area .sub-heading {
        font-size: 16px;
        line-height: 22px;
        margin-block: 12px;
    }

    .eligibility-inner-area .listing li {
        font-size: 16px;
        line-height: 22px;
    }

    .eligibility-inner-area .listing li,
    .incs-program .col-wrapper li,
    .whyPy-more-inner-area .listing li {
        padding-left: calc(16px + 12px);
    }

    .eligibility-inner-area .listing li::before,
    .incs-program .col-wrapper li::before,
    .whyPy-more-inner-area .listing li::before {
        height: 15px;
        width: 16px;
        background-size: contain;
    }

    .eligibility-inner-area .cus-col:first-of-type img {
        max-width: 307px;
    }

    .stand-out-inner-area .ccard .icnx img {
        width: 26px;
    }

    .stand-out-inner-area .ccard .inner .title {
        font-size: 16px;
        line-height: 23px;
        margin-bottom: 4px;
    }

    .stand-out-inner-area .ccard .inner .title+p {
        font-size: 15px;
        line-height: 20px;
    }

    .stand-out-inner-area .col-lg-6:not(:last-child) {
        margin-bottom: 16px;
    }

    .footer .inner {
        text-align: center;
        padding-block: 20px;
    }

    .footer .ft-info {
        font-size: 14px;
    }

    .ft-cprght p,
    .ft-cprght p span {
        font-size: 12px;
    }

    .ft-logo {
        max-width: 95px;
    }

    .footer .right-col .ft-link-title {
        text-align: center;
        font-size: 18px;
    }

    .footer .right-col .ft-links li {
        font-size: 15px;
    }

    .footer .right-col .ft-links li:not(:last-of-type) {
        margin-bottom: 8px;
    }

    .footer .right-col .ft-links li {
        width: fit-content;
        margin-inline: auto;
    }

    .ctaModal form button[type="submit"] {
        min-width: 100%;
    }

    .incs-program .col-wrapper li {
        font-size: 16px;
        line-height: 22px;
    }

    .input-block input,
    .input-block textarea {
        padding-inline: 14px;
    }

    .working-steps .sec-header .section-subHeading {
        font-size: 15px;
        line-height: 22px;
    }

    .working-steps .sec-header .section-subHeading:first-of-type {
        margin-block: 10px 4px;
    }

    .working-steps .sec-header .section-subHeading:nth-of-type(2) {
        margin-bottom: 20px;
    }

    .stepCard-grp .stepCard .flw-label {
        font-size: 15px;
    }

    .stepCard-grp .stepCard:nth-of-type(1) .flw-label {
        left: calc(40% - 25px - 25px);
    }

    .stepCard-grp .stepCard:nth-of-type(1) .flw-art {
        left: calc(25% - 15px - 4.5px);
    }

    .nav-head .navBar {
        background: var(--white-clr);
        box-shadow: none;
        transition: .2s linear;
    }

    .nav-head.scrolled .navBar {
        background: var(--white-clr);
        box-shadow: 0px 2px 15px 0px #0000001A;
    }

    .working-steps .section-padding {
        padding-bottom: 20px;
    }

    .stepCard-grp .stepCard:nth-of-type(2) {
        margin-bottom: 0;
    }

    .incs-program .section-padding {
        padding-block: 40px;
    }
    .wa-btn-header {
        display: none !important;
    }
    .wa-btn {
        display: unset !important;
        position: fixed;
        height: 50px;
        width: 50px;
        background: #16BE45;
        color: #FFFFFF;
        border-radius: 50%;
        z-index: 99;
        right: 14px;
        /* bottom: 55px; */
        bottom: 10%;
        font-size: 35px;
        text-align: center;
        align-content: center;
        box-shadow: 0px 0px 10px 0px rgba(66, 68, 90, 0.51);
    }
    .err-msg-block .err-msg {
        padding: unset !important;
    }
    .cmn-btn-box {
        display: inline-flex;
        gap: 5px;
        place-content: flex-end;
    }
    .cmn-btn-box button {
        min-width: 139px !important;
    }
}
.swal2-title {
    text-align: justify;
}
.has-error .theme-input-placeholder {
    border-color: red !important;
}
textarea#hr_address, textarea#incs_address, textarea#address {
    height: auto;
    margin-bottom: -7px;
}
.pac-container {
    z-index: 100000;
    position: absolute !important;
    margin-top: -83px;
}

@media screen and (max-width: 500px) {
    .pac-container {
        margin-top: -62px;
    }
}
.branding{max-height: 59px;max-width: 130px;}

/* Thank You Page */
.thank-you-wrapper {
    margin-top: 89px;
    height: calc(100vh - 85px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #F7FAF9;
}

.thank-you-wrapper .inner {
    width: 550px;
    height: 459px;
    border-radius: 20px;
    background-color: #FFFFFF;
    display: grid;
    padding: 64px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
    gap: 32px;
}
.ty-title {
    font-family: "PT Serif", serif;
    font-size: 28px;
    font-weight: 400;
}
span.ty-msg {
    font-family: "PT Serif", serif;
    font-size: 16px;
    color: #666666;
    line-height: 25px;
}
.ty-text-wrapper {
    gap: 10px;
    display: grid;
}
.ty-contact-wrapper {
    display: flex;
    gap: 14px;
    color: #444444;
}
.ty-contact-wrapper .ty-contact {
    display: flex;
    gap: 10px;
    width: max-content;
}


@media screen and (max-width: 650px) {
    .thank-you-wrapper {
        width: 100%;
        margin-top: 85px;
        height: calc(100dvh - 85px);
    }
    .thank-you-wrapper .inner {
        width: 90%;
        padding: 35px 18px 24px;
        height: fit-content;
    }
    .ty-title {
        font-size: 20px;
    }
    span.ty-msg {
        font-size: 14px;
        line-height: 22px;
    }
    .ty-text-wrapper {
        width: fit-content;
    }
    .ty-contact-wrapper {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    .ty-contact-wrapper .ty-contact {
        font-size: 13px;
    }
    .ty-icon img {
        height: 78px;
        width: 78px;
    }
}
.contact-btn-wrapper {
    display: flex;
    gap: 10px;
}
.whatsapp-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.whatsapp-us-btn::after {
    background: #16BE45 !important;
}
.whatsapp-us-btn .fa-whatsapp {
    font-size: 23px;
}
.wa-btn {
    display: none;
}

 /* 10 March start */

 .custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.custom-control-inline {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}
.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}

label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 700;
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: 0;
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    pointer-events: none;
    content: "";
    background-color: #dee2e6;
    border: #adb5bd solid 1px;
    box-shadow: inset 0 .25rem .25rem rgba(0,0,0,.1);
}

.custom-control-label::before, .custom-file-label, .custom-select {
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
    box-shadow: none;
}
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #006336 !important;
}
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #006336;
    background-color: #006336;
    box-shadow: none;
}
.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: 0;
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    background: 50%/50% 50% no-repeat;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.final-step-submitter button[type="button"] ,.lead-proceed-box button{
    min-width: 159px;
}

.restrict-err-msg h3 { color: red; font-size: 19px; margin-top: 9px; }
.custom-radio {
    cursor: pointer !important;
}
.lead-qst-3 .final-step-submitter{
    margin-top: 0;
}

.qst-box {
    display: flex;
    min-height: 200px;
}
.qst-wrapper {
    align-content: center;
}
.lead-proceed-box, .final-step-submitter {
    align-self: self-end;
}


.err-msg-block {
    display: flex;
    text-align: center;
    font-size: 26px;
    color: #db0000;
    gap: 15px;
}
.err-msg-block .fa-ban{
    font-size: 50px;
}
.err-msg-block .err-msg {
    padding: 0 90px;
    font-size: 26px !important;
    margin-bottom: 30px;
    font-weight: normal !important;
}
.qst-wrapper .control-label {
    font-size: 20px;
}
.lead-mdl-cls-btn {
    display: none;
}
.custom-control-label {
    font-weight: normal !important;
    font-size: 18px !important;
    cursor: pointer;
}


/* Mar 12 */
.qst-btn-wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.custom-qst-btn {
    border: none;
    color: #444444;
    font-weight: 700;
    border-radius: 15px;
    width: 252px;
    padding: 15px 10px;
    box-shadow: 0px 3px 13px 3px rgba(0, 0, 0, 0.06);
    background-color: #FFFFFF;
    border: 2px solid #fff;
}
.custom-qst-btn:hover {
    background-color: #FFFFFF;
    color: var(--primary-clr);
    border-color: var(--primary-clr)
}
.qst-wrapper .form-group {
    display: flex;
    gap: 35px;
}
.custom-back-btn {
    border: none;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 15px;
    width: 252px;
    height: 55px;
    background-color: var(--primary-clr)
}
.err-msg-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.err-img-wrapper {
    text-align: center;
}
.err-title {
    font-size: 28px;
    font-weight: 700;
}
.err-msg-box .frm-title {
    text-align: center;
    max-width: 63%;
}