<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/****************** common style starts ***********************/
@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF1F3E;
    --secondary-color: #1B1B6F;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --gray-color: #808080;
}

.mktoFrom {
    display: none;
}

html {
    font-size: 1.1vw;
}

body {
    position: relative;
    font-family: "Blinker", serif;
    font-size: 1rem;
}

main {
    position: relative;
    overflow: hidden;
}

input.error {
    border: 0.125rem solid #FF1F3E !important;
}

label:has(.error) {
    border: 0.125rem solid #FF1F3E !important;
}

.container {
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding: 0 2rem;
}

.btn {
    padding: 1rem 0rem;
    width: 13rem;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 0.063rem solid transparent;
    transition: all 0.2s cubic-bezier(0, 0, .2, 1);
}

.btn-secondary {
    color: #FFFFFF;
    background-color: #FF1F3E;
    border: 0.125rem solid #FF1F3E;
}

.btn-secondary:hover {
    color: #1B1B6F;
    background-color: transparent;
    transition: all 0.2s cubic-bezier(0, 0, .2, 1);
}

.btn-primary {
    color: #1B1B6F;
    background-color: #FFFFFF;
    border: 0.125rem solid #1B1B6F;
    position: relative;
    z-index: 10;
}

.btn-primary:hover {
    background-color: transparent;
    transition: all 0.2s cubic-bezier(0, 0, .2, 1);
}

/* Hide the spin buttons in WebKit browsers */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide spin buttons in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

input[data-autocompleted] {
    background-color: transparent !important;
}


/* Nav styles */
nav {
    background-color: #ffffff;
    position: sticky;
    top: -1px;
    left: 0;
    z-index: 9999;
    margin-top: -1px;
}

.nav-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.063rem solid #E5E5E5;
}

.brand-logo {
    width: 8.75rem;
    height: 2rem;
    vertical-align: bottom;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.trustpilot_review {
    width: 8rem;
    height: 3.5rem;
}

.trustpilot_review img {
    width: 100%;
    height: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.438rem;
}

.nav-contact-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-contact-number img {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-contact-number p a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 2%;
    text-decoration: none;
}

.nav-right .sales_person_info {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02rem;
    color: var(--gray-color);
}

.nav-right .sales_person_info span {
    color: var(--black-color);
}

/* Nav styles end*/

/* Progress Bar styles */
.progress_bar {
    width: 100%;
    background-color: #e0e0e0;
    height: 0.375rem;
    margin-bottom: 1.25rem;
    border-radius: 0.25rem;
    position: relative;
}

.progress_bar span {
    display: block;
    height: 100%;
    background-color: #11A871;
    width: 0%;
    border-radius: 0.25rem;
    transition: width 0.3s ease-in-out;
}

/* Form Container */
.form_section {
    position: relative;
    width: 100%;
    padding: 7.125rem 0;
    /* overflow: hidden; */
}

.form_section .form_container {
    width: 80%;
    margin: 0 auto;
}

.form_section .form_container h2 {
    text-align: center;
    color: #000;
}

.form_section .form_container .steps_container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 4rem;
    gap: 1.25rem;
    width: 50%;

}

.form_section .form_container .steps_container .step {
    text-align: center;
    width: 100%;
    background-color: #D9D9D9;
    height: 0.375rem;
    border-radius: 5rem;
    overflow: hidden;
}

.form_section .form_container .steps_container .step .step_number {
    width: 100%;
    height: 100%;
    display: block;
    color: white;
    font-weight: bold;
    transition: background-color 0.4s ease-in-out;
}

.form_section .form_container .steps_container .step.active_step .step_number {
    background-color: #3BCFF0;
}

.form_section .form_container .form_step {
    display: none;
}

.form_section .form_container .form_step .form_header h2 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.02rem;
    margin-bottom: 1.5rem;
    color: var(--black-color);
}

.form_section .form_container .form_step .form_header h2 span {
    color: var(--primary-color);
}

.form_section .form_container .form_step .radio_group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 1.5rem;
}

.form_section .form_container .form_step.form_step_active {
    display: block;
    opacity: 0;
    animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.form_section .form_container .form_step .radio_group .input_group {
    max-width: 25%;
    flex: 0 0 calc(25% - 0.5rem);
}

.form_section .form_container .form_step .radio_group .input_group label.label {
    position: relative;
    padding: 1.25rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 1.375rem;
    line-height: 1.65;
}

input[type="radio"] {
    visibility: hidden;
    opacity: 0;
    position: absolute;
}

.form_section .form_container .form_step .radio_group .input_group label.label span.tick {
    width: 1rem;
    height: 1rem;
    border: 0.063rem solid #000000;
    display: inline-grid;
    place-content: center;
    transition: all 0.2s ease;
    border-radius: 50%;
    cursor: pointer;
}

.form_section .form_container .form_step .radio_group .input_group label.label span.tick::before {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    transform: scale(0);
    transform-origin: bottom left;
    background-color: #fff;
    clip-path: polygon(32% 78%, 14% 64%, 7% 76%, 20% 86%, 33% 95%, 53% 69%, 69% 48%, 87% 24%, 77% 18%, 58% 43%);
    transition: all 0.2s ease;
}

.form_section .form_container .form_step .radio_group .input_group label.label span.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #E7EAF2;
    border-radius: 0.75rem;
}

input[type=radio]:checked+.tick {
    border: 0.063rem solid #ffffff !important;
    background-color: #11A871;
    transition: all 0.2s ease !important;
}

input[type=radio]:checked+.tick+.bg {
    width: 100%;
    background-color: #3BCFF0 !important;
    border-radius: 0.75rem;
    transition: background-color 0.2s ease;
}

input[type=radio]:checked+.tick::before {
    transform: translateX(0.031rem) scale(1) !important;
    background-color: #ffffff !important;
    transition: all 0.2sease !important;
}


.form_section .form_container .form_step .radio_group .input_group input {
    font-family: "Blinker", serif;
}


.form_section .form_container .form_step .btn_container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    gap: 1.5rem;
}

.form_section .form_container .form_step .flex_group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    position: relative;
}

.form_section .form_container .form_step .flex_group .input_group {
    flex: 0 0 calc(50% - 1.5rem);
    width: 100%;
    position: relative;
}

.form_section .form_container .form_step .flex_group .input_group:has(#buisnessName) {
    flex: 0 0 calc(65% - 1.5rem);

}

.form_section .form_container .form_step .flex_group .input_group:has(#phoneNo) {
    flex: 0 0 calc(30% - 1.5rem);
}

.form_section .form_container .form_step .flex_group .input_group:has(#email) {
    flex: 0 0 calc(60% - 1.5rem);
}

.form_section .form_container .form_step .flex_group .input_group input {
    width: 100%;
    font-size: 1.25rem;
    padding: 1rem;
    border-radius: 0.25rem;
    border: 0.063rem solid #808080;
    font-family: "Blinker", serif;
    outline: none;
}

.form_section .form_container .form_step .flex_group .input_group input::placeholder {
    color: #BFBFBF;
}

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

.submit_descripion p {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 0.875rem;
    text-align: left;
    margin-top: 1.25rem;
    color: var(--black-color);
    width: 88%;
}

.submit_descripion p a {
    color: var(--black-color);
}

.previous_btn {
    position: absolute;
    top: 3.5rem;
    left: 2rem;
    z-index: 10;
}

.previous_btn img {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

label.error {
    position: relative;
    top: 0.5rem;
    color: #FF1F3E !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    /* background-color: #FFD9D9 !important; */
    padding: 0.2rem 0.5rem 0.2rem 0 !important;
    /* border-radius: 0.2rem !important; */
    width: fit-content !important;
}

.form_fields {
    position: relative;
}

.form_fields .error_message {
    display: none;
}

.form_fields.error .error_message {
    display: block;
    position: absolute;
    bottom: -1.5rem;
}


/* Home  */

.home_section {
    position: relative;
    /* overflow: hidden; */
}

.home_container {
    text-align: center;
    padding-top: 3.228rem;
    padding-bottom: 4.009rem;
}


.years {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5rem;
    letter-spacing: 2%;
    margin-bottom: 0.75rem;
}

.head_text {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 3.896rem;
    letter-spacing: 2%;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.head_text span {
    color: var(--secondary-color);
    display: block;
}

.head_sub_text {
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.7rem;
    letter-spacing: 2%;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.head_sub_text span {
    color: var(--black-color);
}

.head_sub_text span sup {
    position: relative;
    top: 0.3rem;
}

.get_started_btn {
    width: 19.25rem;
}

.info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.381rem;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.info img {
    width: 0.666rem;
    height: 0.856rem;
}

.info p {
    font-family: Blinker;
    font-weight: 400;
    font-size: 0.761rem;
    line-height: 0.913rem;
    letter-spacing: 2%;

}

.points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.726rem;
    padding-top: 1.994rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 0.691rem;
}

.point img {
    width: 1.381rem;
    height: 1.381rem;
}

.point p {
    font-weight: 400;
    font-size: 0.863rem;
    line-height: 1.036rem;
    letter-spacing: 2%;
}

.customer_support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 2.094rem;
}

.customer_support img {
    width: 1.5rem;
    height: 1.5rem;
}

.customer_support p {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.5rem;
    letter-spacing: 2%;
    color: var(--black-color);
}

.customer_support p span {
    color: var(--primary-color);
}

/* /lotties */

#top_lines_01 {
    position: absolute;
    top: 0;
    right: -16rem;
    width: 39.75rem;
}

#bottom_lines_01 {
    position: absolute;
    bottom: -3rem;
    left: -12rem;
    width: 38.75rem;
}


@media screen and (min-width : 900px) {
    #top_lines_01.active {
        position: absolute;
        top: 0;
        right: -12rem;
        width: 30.75rem;
    }

    #bottom_lines_01.active {
        position: absolute;
        bottom: -2rem;
        left: -9rem;
        width: 31.75rem;
    }
}



/* Footer  */

footer {
    background-color: var(--secondary-color);
    padding: 1.288rem 0;
    color: var(--white-color);
}

.footer_review_section_img img {
    width: 10.063rem;
    height: 4.388rem;
}

.links_container {
    margin-bottom: 0.625rem;
}

.links_container,
.links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.links a {
    text-decoration: none;
    color: var(--white-color);
    font-weight: 400;
    font-size: 0.938rem;
    line-height: 1.125rem;
    letter-spacing: 2%;
    margin-right: 1.5rem;
}

.privacy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: unset !important;
}

.privacy img {
    width: 2.5rem;
    height: 1.199rem;
}


.social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social a img {
    width: 1.5rem;
    height: 1.5rem;
}

.copyRigths {
    font-weight: 400;
    font-size: 0.938rem;
    line-height: 1.125rem;
    display: flex;
    gap: 1.5rem;
}

/* rating card */

.footer_review_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: calc(100% - 12.75rem);
    margin: 0 auto;
    gap: 1.563rem;
}

.footer_review_underText {
    width: calc(100% - 12.75rem);
    text-align: right;
    margin: 0 auto;
    margin-bottom: 2.5rem;
}

.footer_review_underText p {
    font-weight: 400;
    line-height: 0.846rem;
    letter-spacing: 2%;
    font-size: 0.616rem;
    color: #fff;
    margin-right: 3rem;
}

.rating_cardSection {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    /* align-items: flex-start; */
    justify-content: flex-start;
    margin: 0 auto;
    gap: 1.5rem;
    /*  */
    height: auto;
    margin: 0.625rem 0 0;
    padding: 0 3.125rem;
    position: relative;
}

.rating_card {
    /* background-color: #f8f9fa; */
    background-color: #1b1b6f;
    border-radius: 0.125rem;
    /* box-shadow: 0 1px 0 0 rgba(182, 196, 210, 0.4); */
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    /* min-height: 9.938rem; */
    /* justify-content: space-between; */
    line-height: 1rem;
    /* margin: 0 1.5rem 0 0; */
    /* padding: 0.938rem; */
    position: relative;
    vertical-align: middle;
    white-space: normal;
    /* width: calc(100% / 5 - 1.2rem); */
    height: auto;
    /* width: calc(100% / 5 - 19px); */
    /* flex: 0 0 auto; */
}

.rating_star {
    /* width: 50%; */
    margin-bottom: 0.616rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.rating_star img {
    height: 0.938rem;
    width: 5rem;
}

.rating_star span {
    font-weight: 400;
    font-size: 0.6rem;
    line-height: 0.643rem;
    letter-spacing: 0.02rem;
}

h3.ratingCard_head {
    color: #151c25;
    font-size: 1rem;
    font-weight: 600;
    height: 1.5rem;
    /* margin: 0 0 0.625rem; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*  */
    display: none;
}

p.ratingCard_text {
    font-weight: 400;
    line-height: 0.846rem;
    letter-spacing: 0.02rem;
    font-size: 0.85rem;
    width: 94%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


.ratingCard_userNameTime {
    font-weight: 400;
    font-size: 0.6rem;
    line-height: 0.643rem;
    letter-spacing: 0.02rem;
    color: #fff;
    margin-top: 0.308rem;
}

.ratingCard_userNameTime span {
    font-weight: 500;
    margin-left: 0.125rem;
}

.swiper_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.938rem;
    overflow: hidden;
}

.swipe_container {
    position: relative;
    overflow: hidden;
    /* padding: 0 3.35rem; */
    width: calc(100% - 6.5rem);
    /* margin: 0 auto; */
}

._next_svg_container,
._prev_svg_container {
    position: relative;
    width: 1.5rem;
    height: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event_swiper_prev {
    z-index: 10;
    left: 0;
    top: 50%;
}

.event_swiper_next {
    z-index: 10;
    right: 0;
    top: 50%;
}

.event_swiper_next svg {
    transform: rotate(180deg);
}

.event_swiper_next svg,
.event_swiper_prev svg,
.event_swiper_next svg circle,
.event_swiper_prev svg circle {
    stroke: #fff;
}

.event_swiper_next.swiper-button-disabled svg,
.event_swiper_prev.swiper-button-disabled svg,
.event_swiper_next.swiper-button-disabled svg circle,
.event_swiper_prev.swiper-button-disabled svg circle {
    stroke: #fff;
    opacity: 0.8;
}

.offer_condition_desktop {
    display: block;
}

.offer_condition_mob {
    display: none;
}

.offer_condition {
    color: #fff;
    font-weight: 700;
    font-size: 0.938rem;
    line-height: 1.125rem;
    letter-spacing: 2%;
}

a:has(.rating_card) {
    color: unset;
    text-decoration: none;
}


@media screen and (max-width: 1035px) {
    .rating_star img {
        width: 35%;
    }

    .rating_cardSection {
        padding: 0 5.125rem;
    }
}

@media screen and (max-width: 801px) {
    html {
        font-size: unset;
    }

    .rating_star img {
        width: 30%;
    }

    p.ratingCard_text {
        font-size: 0.881rem;
        line-height: 1.212rem;
    }

    .rating_star span {
        font-size: 0.771rem;
    }

    .ratingCard_userNameTime {
        font-size: 0.771rem;
    }

    .footer_review_section {
        flex-direction: column;
        align-items: normal;
        width: 100%;
    }

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

    .footer_review_underText {
        text-align: center;
        margin: 1rem auto 2.5rem;
        width: 100%;
    }

    .footer_review_underText p {
        margin: 0;
        font-size: 0.813rem;
    }

    .links_container {
        display: flex;
        align-items: start;
        justify-content: space-between;
        flex-direction: column;
        gap: 0.75rem;
    }

    .links {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .swiper_flex {
        gap: 0.75rem;
        justify-content: space-between;
    }

    .offer_condition_desktop {
        display: none;
    }

    .offer_condition_mob {
        display: block;
    }
}

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

    .rating_star img {
        height: auto;
    }

    .rating_cardSection {
        padding: 0 8.125rem;
    }

    p.ratingCard_text {
        width: 100%;
    }

    .swipe_container {
        width: calc(100% - 3.5rem);
    }
}


/* thank you */

.thankYouCon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 3.844rem 0;
}

.thankYou .correct_icon {
    width: 6.5rem;
    height: 6.5rem;
}

.thankYou .description {
    font-weight: 400;
    font-size: 3rem;
    line-height: 3.6rem;
    width: 70%;
    margin: 1rem 0;
}

.thankYou .btn_home {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.questionSec {
    background-color: #D7F7FF;
    padding: 1.875rem 0;
    text-align: center;
}

.questionSec h3 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin-bottom: 0.375rem;
}

.questionSec p {
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.4rem;
}

.questionSec p span {
    color: var(--primary-color);
    font-weight: 700;
    white-space: nowrap;
}

.thankYou {
    display: none;
}

.thankYou.active {
    display: block;
}

/* terms modal */

.terms_modal {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(96, 96, 99, 0.418);
    z-index: 999999;
    display: none;
    overflow-y: auto;
}

.terms_modal.active {
    display: flex;
}

.terms_btn {
    font-weight: 700;
    font-size: 0.938rem;
    line-height: 1.125rem;
    cursor: pointer;
}

.close-icon {
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

.terms_container {
    position: relative;
    width: 53%;
    text-align: center;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    box-shadow: 0px 11px 104px 0px #0000001F;
    backdrop-filter: blur(2.813rem);
    border-radius: 1rem;
    padding: 3.125rem 2.625rem 2rem 2.625rem;
}

.terms_container h3 {
    font-weight: 400;
    font-size: 2.25rem;
    line-height: 2.7rem;
    margin-bottom: 0.75rem;
}

.terms_container h3 span {
    color: var(--primary-color);
}

.terms_container p {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1rem;
    margin-bottom: 0.75rem;
    color: #1e1e1e;
}

.terms_container p sup {
    font-size: 0.45rem;
    position: relative;
    font-weight: 600;
    left: -0.1rem;
    top: 0.1rem;
}


.QA h3 {
    font-size: 1.75rem;
    line-height: 2.1rem;
    margin-bottom: 0.188rem;
}

.QA p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 1.125rem;
}

.call_btn button {
    cursor: pointer;
    padding: 0.5rem 1.188rem;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5rem;
    border-radius: 0.5rem;
    outline: none;
    border: none;
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.call_btn button span {
    color: #D7F7FF;
}

.call_btn button img {
    width: 1.063rem;
    height: 1rem;
    margin-right: 0.5rem;
}


/* Responsive styles  */

@media screen and (max-width: 900px) {
    html {
        font-size: 2vw;
    }

    #top_lines_01 {
        top: 0;
        right: -9rem;
        width: 20.75rem;
    }

    #bottom_lines_01 {
        bottom: -2rem;
        left: -7rem;
        width: 23.75rem;
    }

    .years {
        font-size: 1rem;
        line-height: 1rem;
        margin-bottom: 0.5rem;
    }

    .head_text {
        font-size: 2.5rem;
        line-height: 2.896rem;
    }

    .head_sub_text {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 1.2rem;
    }

    .get_started_btn {
        width: 15.25rem;
        font-size: 1rem;
    }

    .form_section .form_container .form_step .form_header h2 {
        font-size: 2rem;
        line-height: 1;
    }

    .form_section .form_container .steps_container {
        margin: 0 auto 2rem;
        width: 60%;
    }

    .btn {
        padding: 0.8rem 0rem;
        width: 10rem;
        font-size: 1rem;
        line-height: 1;
    }

    .form_section .form_container .form_step .btn_container {
        margin-top: 2rem;
    }

    .form_section .form_container .form_step .flex_group .input_group input {
        font-size: 1rem;
    }

    .submit_descripion p {
        width: 80%;
    }

    .thankYou .correct_icon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .thankYou .description {
        font-size: 2rem;
        line-height: 2.6rem;
    }

    .questionSec h3 {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    .questionSec p {
        font-size: 1.7rem;
        line-height: 2rem;
    }

    .brand-logo {
        width: 6.75rem;
    }

    .nav-contact-number p a {
        font-size: 1.4rem;
    }

    .points {
        padding-top: 1rem;
    }

    .info {
        margin-bottom: 1rem;
    }

    .customer_support {
        margin-top: 1rem;
    }

    .nav-container {
        padding-top: 1.3rem;
        padding-bottom: 1.3rem;
    }

    .sales_person_info {
        font-size: 0.9rem !important;
    }
}


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

    html {
        font-size: unset;
    }

    .container {
        padding: 0 1.5rem;
    }

    .home_container {
        padding-top: 3.625rem;
        padding-bottom: 3.625rem;
    }


    .nav-right .sales_person_info {
        display: none;
    }

    .nav-container {
        padding: 1rem 1.5rem 1rem;
    }

    .brand-logo {
        width: 6.563rem;
    }

    .nav-contact-number p a {
        font-size: 1.5rem;
    }

    .years,
    .customer_support p {
        font-size: 1.25rem;
        line-height: 1.5rem;

    }

    .nav-contact-number img {
        width: 1.063rem;
        height: 1rem;
    }

    .years {
        margin-bottom: 0;
    }

    .head_text {
        font-size: 2.25rem;
        line-height: 2.7rem;
        margin-bottom: 1rem;

    }

    .head_sub_text {
        font-size: 1.5rem;
        line-height: 1.8rem;
        margin-bottom: 2.313rem;
    }

    .previous_btn {
        top: 1.5rem;
    }

    .form_section .form_container .form_step .radio_group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .form_section .form_container .form_step .radio_group .input_group {
        max-width: 50%;
        flex: 0 0 calc(50% - 0.25rem);
    }

    .form_section .form_container .form_step .radio_group .input_group label.label {
        font-size: 1rem;
    }

    .form_section .form_container .form_step .radio_group .input_group label.label span.tick {
        width: 0.75rem;
        height: 0.75rem;
    }

    .form_section .form_container .form_step .radio_group .input_group label.label span.tick::before {
        width: 0.5rem;
        height: 0.5rem;
    }

    .info {
        margin: 0.75rem 0 2.313rem;
        font-size: 0.875rem;
        line-height: 1rem;
        gap: 0.5rem;
    }

    .info img {
        height: 0.813rem;
    }

    .points {
        padding-top: 0;
        gap: 0.75rem;
    }

    .point {
        gap: 0.5rem;
        flex-direction: column;
        width: 33.33%;
    }

    .point img {
        width: 1.25rem;
        height: 1.25rem;
    }

    .point p {
        font-size: 0.75rem;
        line-height: 1.2rem;

    }

    .customer_support {
        margin-top: 1.12rem;
    }

    .form_section {
        padding: 6.75rem 0;
    }

    .form_section .form_container {
        width: 100%;
        padding: 0 1.5rem;
    }

    .form_section .form_container .steps_container {
        width: 100%;
        margin: 2.625rem 0 1.813rem;
    }

    .form_section .form_container .form_step .form_header h2 {
        font-size: 2rem;
        line-height: 2.4rem;
        margin-bottom: 0.75rem;
    }

    .form_section .form_container .form_step .btn_container {
        margin-top: 1.438rem;
    }

    .form_section .form_container .form_step .flex_group {
        flex-direction: column;
    }

    .submit_descripion p {
        width: 100%;
        font-size: 0.75rem;
        line-height: 0.875rem;
    }


    .thankYouCon {
        padding: 7.875rem 1.5rem;
        margin: 0;
    }

    .thankYou .correct_icon {
        width: 5rem;
        height: 5rem;
    }

    .thankYou .description {
        font-size: 1.75rem;
        line-height: 2.1rem;
        width: 100%;
    }

    .form_section .form_container .form_step .flex_group .input_group {
        flex: unset;
        width: 100%;
    }

    .thankYou .btn_home {
        padding: 0.813rem 2.313rem;
        width: auto;
    }

    .questionSec {
        padding: 1.5rem 1.5rem;
    }

    .questionSec h3 {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }

    .questionSec p {
        font-size: 1.5rem;
        line-height: 1.8rem;

    }

    .terms_container h3 {
        font-size: 2.25rem;
        line-height: 2.7rem;
        margin-top: 1rem;
    }

    .terms_container p {
        font-size: 0.75rem;
        line-height: 1rem;
    }

    .terms_container {
        padding: 1rem;
        width: 90%;
    }

    .QA p {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    #top_lines_01 {
        top: 0;
        right: -7rem;
        width: 14.75rem;
    }

    #bottom_lines_01 {
        bottom: -2rem;
        left: -7rem;
        width: 16.75rem;
    }
}

@media screen and (max-width: 560px) {
    .btn {
        font-size: 1.125rem;
        padding: 0.813rem;
        width: 100%;
    }

    .form_section .form_container .form_step .radio_group .input_group label.label {
        height: 100%;
    }
}

@media screen and (max-width: 420px) {
    .form_section .form_container .form_step .radio_group .input_group label.label {
        font-size: 0.8rem;
    }

    .form_section .form_container .form_step .radio_group .input_group label.label {
        padding: 1rem;
    }
}

@media screen and (max-width: 370px) {
    .btn {
        font-size: 1rem;
        padding: 0.813rem 0.5rem;
        width: 100%;
    }

}

@media screen and (max-width: 380px) and (max-height: 800px) {
    .terms_container {
        margin-top: 14rem;
        margin-bottom: 4rem;
    }
}

@media screen and (orientation: landscape) and (max-width: 700px) and (max-height: 380px) {
    .terms_container {
        margin-top: 14rem;
        margin-bottom: 4rem;
    }
}</pre></body></html>