html {
    font-size: 14px;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;
    background: #f5e3d2;
    background-repeat: repeat;
    background-position: center;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

section {
    max-width: 100%;
    overflow: hidden;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.gap-2 {
    gap: 8px;
}

.z-3 {
    z-index: 3;
}

.position-relative {
    position: relative;
}

header {
    background-image: linear-gradient(#f58220, #b02a30);
    padding: 6px 0;
}

header h2 {
    position: relative;
    font-family: Mulish;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 45px;
    margin: 15px 0 0 20px;
    color: #fff
}

header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

}

header h2::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 19px;
    background-color: #fff;
    top: 15px;
    bottom: 0;
    left: -10px
}

h1 {
    color: #97281d;
    font-size: 40px;
    line-height: 50px;
    font-weight: 900;
}

.arrow {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.resend {
    background: #e3530f;
    padding: 10px 10px;
    border-radius: 10px;
    margin-top: 0;
    color: #fff;
    text-align: center;
    text-decoration: none;
    width: auto;
    font-size: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.resend span {
    font-size: 11px;
}

#banner form .proceed,
.laststep form .submit,
.view-more-btn,
.calculate {
    width: 160px;
    height: 50px;
    text-align: center;
    display: block;
    margin: 0 auto;
    background: #e3530f;
    align-content: center;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.laststep {
    padding: 30px;
}

.backbtn {
    text-decoration: none;
    font-size: 1.2rem;
    color: #333132;
}

.backbtn>img {
    width: 12px;
}

.laststep form h2 {
    font-size: 2rem;
    line-height: 32px;
    font-weight: 700;
    color: #db610b;
}


.faq-section {
    margin: auto;
    padding: 40px 0px;
    border-radius: 12px;
    position: relative;
}

.faq-section .faq-wrapper {
    background: #fff;
    border-radius: 20px;
}

.faq-section h2 {
    color: #fff;
    background: #e3530f;
    padding: 15px 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item {
    border-top: 1px solid rgb(160, 160, 160);
}

.faq-item:first-child:not(.expanded) {
    border-top: none;
}

.hidden-faq-wrapper .faq-item:first-child {
    border-top: 1px solid rgb(160, 160, 160);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px 0;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #97281d;
    width: calc(100% - 50px);
}

.toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
    margin-top: 5px;
}

.toggle-btn img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 1.2rem;
    color: #414042;
    line-height: 1.5;
    width: calc(100%);
    margin-right: 0;
    margin-left: 0;
    padding-left: 50px;
}

.faq-answer .ans_wrap {
    margin-top: 0;
    font-size: 1rem;
}

ol.numbered-list {
    padding-left: 15px;
}


.faq-item.active .faq-answer {
    max-height: 800px;
}

/* .faq-item.active .toggle-btn {
    transform: rotate(45deg);
} */

.hidden-faq-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.hidden-faq-wrapper.expanded {
    max-height: 3000px;
}



#banner form {
    padding-bottom: 30px;
    background: #fff;
    background-position: top center;
    background-size: 94%;
    z-index: 1;
    position: relative;
    margin-top: -5px;
    border-radius: 20px;
}

#banner form h3 {
    font-size: 1.4rem;
    line-height: 30px;
    font-weight: 700;
    background: #e3530f;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px 15px;
    color: #fff;
}

#banner form input,
.laststep form input {
    width: calc(100% - 0px);
    border-radius: 0;
    padding: 15px 10px 5px 40px;
    border: none;
    border-bottom: 1px solid #cfcfcf;
    font-size: 14px;
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.6);
    outline: none;
}

#banner form select,
.laststep form select {
    width: calc(100%);
    border-radius: 0;
    padding: 15px 10px 5px 40px;
    border: none;
    border-bottom: 1px solid #cfcfcf;
    font-size: 14px;
    margin-top: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: rgba(0, 0, 0, 0.6);
    outline: none;
    font-family: "Mulish", sans-serif;
}

#banner form select::-ms-expand {
    display: none;
}

#banner form .otp_wrapper {
    border-bottom: 1px solid #cfcfcf;
}

#banner form .timer {
    background: #a0a0a0;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    color: #333132;
    font-weight: 700;
}

.arrow {
    position: absolute;
    right: 10px;
    top: 20px;
}


.resend span {
    font-size: 11px;
}

#banner form .proceed,
.laststep form .submit,
.view-more-btn {
    width: 160px;
    height: 50px;
    text-align: center;
    display: block;
    margin: 0 auto;
    background: #e3530f;
    align-content: center;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: "Mulish", sans-serif;
}

.laststep {
    padding: 30px;
}

.backbtn {
    text-decoration: none;
    font-size: 18px;
    color: #333132;
}

.backbtn>img {
    width: 12px;
}

.laststep form h2 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    color: #db610b;
}


.button {
    width: 160px;
    height: 50px !important;
    text-align: center;
    display: block;
    margin: 0 auto;
    align-content: center;
    text-decoration: none;
    margin-top: 50px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 0;
    bottom: 20px;
    left: 20px;
}

.button.dark {
    background: #e3530f;
    color: #fff;
    border: 1px solid #e3530f;
}

.button.light {
    background: #e3530f;
    color: #fff;
    font-weight: 700;
    right: 20px;
    left: auto;
}


::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

#banner form select,
.laststep form select {
    color: rgba(0, 0, 0, 0.4);
    background: #fff;
}

#banner form input,
.laststep form input {
    background: #fff;
}

#banner form input,
.laststep form input {
    color: rgba(0, 0, 0, 0.4);
}


input,
select {
    position: relative;
}

.input_wrapper {
    position: relative;
}

#banner form .input_wrapper:has(> #name)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 22px;
    height: 32px;
    background: url(../img/icons/user.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

#banner form input#mobile {
    width: calc(100%);
    border-bottom: none;
}

#banner form .input_wrapper>div:has(> #mobile)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 25px;
    height: 30px;
    background: url(../img/icons/mobile.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

#banner form .input_wrapper:has(> #email)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 25px;
    height: 30px;
    background: url(../img/icons/email.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}



#banner form .input_wrapper>div:has(> #otp)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 23px;
    height: 30px;
    background: url(../img/icons/OTP.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

#banner form input#otp {
    border-bottom: none;
}

#banner form .input_wrapper:has(> #pan)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 25px;
    height: 30px;
    background: url(../img/icons/PAN.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

#banner form .input_wrapper:has(> #occupation)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 25px;
    height: 35px;
    background: url(../img/icons/salary.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

#banner form .input_wrapper:has(> #companyname)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 28px;
    height: 35px;
    background: url(../img/icons/company.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

#banner form .input_wrapper:has(> #annualincome)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 28px;
    height: 35px;
    background: url(../img/icons/income.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

#banner form .input_wrapper:has(> #homeloan_req)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 28px;
    height: 35px;
    background: url(../img/icons/income.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

#banner form .input_wrapper:has(> #pincode)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 27px;
    height: 35px;
    background: url(../img/icons/pincode.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

#banner form .input_wrapper:has(> #date)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 25px;
    height: 35px;
    background: url(../img/icons/DOB.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}


#banner form .input_wrapper:has(> #email)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 25px;
    height: 35px;
    background: url(../img/icons/email.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}


#banner form .input_wrapper:has(> #relationship)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 32px;
    height: 35px;
    background: url(../img/icons/relation.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}


#banner form .input_wrapper:has(> #language)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 32px;
    height: 35px;
    background: url(../img/icons/language.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

#banner form .input_wrapper:has(> #city)::before {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 30px;
    transform: translateY(-50%);
    width: 32px;
    height: 35px;
    background: url(../img/icons/language.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.4) !important;

    background: #fff url(../img/icons/email.svg) no-repeat left 20px center !important;
    background-size: 25px !important;
}


.reset {
    font-size: 12px;
    line-height: 26px;
    color: #fff;
    background: #f07a20;
    border-radius: 50px;
    padding: 0 15px;
    text-decoration: none;
    margin-top: 20px;
    display: block;
    width: fit-content;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.reset:disabled {
    opacity: 0.7;
}



footer {
    width: 100%;
    background-color: #e3530f;
    padding: 15px 0 15px;
    border-top: 1px solid #ccc;
    margin-bottom: 60px;
}

footer p {
    color: #fff;
    font-size: 0.9rem;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
    margin-bottom: 0;
}

footer p a {
    text-decoration: none;
    color: #fff;
}

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

.img-ques {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    padding: 5px;
}

.text-box {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    max-height: 0;
    line-height: 1.5em;
    margin-bottom: 0;
    margin-top: 0;
}

.text-box.expanded {
    -webkit-line-clamp: unset;
    max-height: 500px;
}

.read-toggle-btn {
    color: #e3530f;
    cursor: pointer;
    display: inline-block;
    margin-top: 5px;
    font-size: 1rem;
    border-bottom: 1px solid #e3530f;
}

.mortgage_bx {
    width: 100%;
    position: relative;
    background-color: white;
    border-radius: 20px;
    padding: 10px 30px 10px 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.mortgage_bx::after {
    width: 100px;
    height: 100%;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background: url(../img/types_bg.webp) no-repeat top center #e3530f;
    background-size: cover;
    border-radius: 15px 0px 0px 15px;
}

.mortgage_bx .icon_wrap,
.mortgage_bx .text-wrapper {
    position: relative;
    z-index: 1;
}

.mortgage_bx .icon_wrap {
    margin-top: 7px;
    margin-right: 15px;
    width: 60px;
    height: 60px;
}

.mortgage_bx .icon_wrap img {
    width: 60px;
}

.mortgage_bx .text-wrapper p {
    font-size: 1rem;
    margin-bottom: 0;
}

.mortgage_bx h4 {
    font-size: 1.3rem;
    color: #97281d;
    margin: 10px 0px 10px 0px;
}

.subHeading {
    color: #97281d;
    font-size: 2rem;
    margin: 20px 0 20px 14px;
}

.faq-wrapper1 .faq-item {
    background-color: white;
    margin-bottom: 20px;
    border-top: none;
    border-radius: 10px 10px 10px 10px;
    padding: 0px 10px;
    position: relative;
}

.faq-wrapper1 .faq-item::before {
    position: absolute;
    left: 0px;
    top: 0;
    content: '';
    width: 10px;
    height: 100%;
    background-color: #97281d;
    border-radius: 10px 0px 0px 10px;

}

.fbox {
    background: linear-gradient(135deg, #fe7910 0%, #e4540f 100%);
    padding: 15px 10px;
    border-radius: 20px;
    border-top: 5px solid #e3530f;
    min-height: 240px;
    margin-bottom: 15px;
}

.fbox h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

.fbox p {
    color: white;
    font-size: 0.9rem;
}

.fbox p>i {
    color: white;
    font-size: 0.8rem;
    line-height: 1rem;
}

.form_section {
    max-width: 450px;
    padding: 0;
    margin: 0 auto;
}

.checkbox_wrap {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.checkbox_wrap input[type='checkbox'] {
    width: 20px !important;
    margin: 0px !important;
    border: 1px solid #e3530f !important;
}

.checkbox_wrap label {
    font-size: 0.6rem;
    margin-left: 10px;
}

.shadow {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.calc_container {
    margin: 0px auto 15px auto;
    width: calc(100% - 30px);
    color: #414042;
}

.calc-wrap {
    background-color: #f6dfcc;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.calculator_section {
    background-color: white;
    padding: 15px 0px;
    border-radius: 15px;
    margin: 10px 0px;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 8px;
}


.range-labels>input {
    width: 160px;
    text-align: right;
    border-radius: 5px;
    background-color: white;
    padding: 5px 10px;
    border-width: 0.5px;
    border-color: #b3b3b3;
    border-style: solid;
    border-radius: 5px;
    font-size: 20px;
    font-family: "Mulish", sans-serif;
    color: #414042;
}


.range-labels>label {
    font-size: 20px;
}


.interest>label {
    font-size: 20px;
}

.range-labels>input:focus-visible {
    outline: none;
}

.calc-wrap input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    margin: 15px 0;
}

.calc-wrap input[type="range"]::-webkit-slider-runnable-track {
    height: 10px;
    background: white;
    border-radius: 5px;
}

.calc-wrap input[type="range"]::-moz-range-track {
    height: 10px;
    background: white;
    border-radius: 5px;
}

.int-rates {
    width: 70px;
    text-align: left;
    border: none;
    background: none;
    font-size: 20px;
}

.resultbx {
    background-color: #f9e9db;
    margin-top: 30px;
    padding: 15px 30px 0px 30px;
}

.result-line {
    position: relative;
    margin-bottom: 25px;
    padding-left: 10px;
    min-width: 170px;
}

.result-line::before {
    position: absolute;
    left: -10px;
    top: 0;
    content: '';
    width: 6px;
    height: 100%;
    background-color: #e3530f;
    border-radius: 3px;
}

.result-line label {
    color: #414042;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.result-line span {
    color: #e3530f;
    font-size: 1.3rem;
    display: block;
}


#banner .feat {
    background: #e3530f;
    width: fit-content;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    padding: 20px 30px 20px 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    margin-left: 30px;
    min-width: 250px;
    height: fit-content;
    margin-top: 40px;
}

#banner .feat p {
    margin: 10px 0;
}

#banner .feat .iconwrap {
    background: #fff;
    padding: 4px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e3530f;
    margin-left: -45px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.benefits::after {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    top: calc(100% + 2px);
    background: url(../img/features_shadow.webp) no-repeat center;
    background-size: cover;
}

.int-rates {
    color: #414042;
}

@media screen and (min-width: 768px) {
    .checkbox_wrap label {
        font-size: 0.8rem;
    }

    #banner form input,
    .laststep form input {
        padding: 10px 10px 5px 40px;
    }

    .samantha_desk {
        margin-top: 100px;
        margin-bottom: 196px;
    }

    #banner {
        background: linear-gradient(to bottom, #f5e3d2 calc(100% - 30%), transparent 30%), url(../img/desk_bg.webp);
        background-repeat: repeat;
        background-position: bottom;
        background-size: auto auto;
    }

    .calculator_section {
        background-color: unset;
    }

    .shadow {
        box-shadow: unset;
    }

    .calculator {
        background: #fff;
        padding: 30px 0;
    }

    .subHeading {
        text-align: center;
    }

    .calculator_section .subHeading,
    .mortage .subHeading {
        margin: 10px 0 40px 14px;
    }

    .resultbx {
        background-color: #f9e9db;
        margin-top: 0;
        padding: 15px 30px 0px 30px;
        min-height: 235px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .result-line label {
        font-size: 1.3rem;
    }

    .range-labels {
        font-size: 16px;
    }

    .calc-wrap.interest {
        height: calc(100% - 15px);
        display: flex;
        justify-content: center;
        flex-direction: column;
    }


    .benefits {
        border-radius: 5px;
        background: url(../img/orangebg.webp) no-repeat center;
        background-size: cover;
        width: 75%;
        margin-right: 30px;
        margin-left: auto;
        margin-top: 70px;
        margin-bottom: 40px;
        position: relative;
    }

    .fbox {
        display: flex;
        align-items: center;
        background: none;
        gap: 30px;
        border: none;
        min-height: auto;
        padding: 0 30px;
        border-radius: 0;
    }

    .fbox div {
        width: 200px;
    }

    .pbox:nth-of-type(1)::after {
        content: "";
        display: block;
        width: 2px;
        height: calc(100% - 80px);
        position: absolute;
        right: 0;
        bottom: 40px;
        background: #fb8c10;
    }

    .pbox:nth-of-type(2)::after {
        content: "";
        display: block;
        height: 2px;
        width: calc(100% - 80px);
        position: absolute;
        left: 40px;
        bottom: 0;
        background: #fb8c10;
    }

    .pbox:nth-of-type(3)::after {
        content: "";
        display: block;
        height: 2px;
        width: calc(100% - 80px);
        position: absolute;
        left: 40px;
        top: 0;
        background: #fb8c10;
    }

    .pbox:nth-of-type(4)::after {
        content: "";
        display: block;
        width: 2px;
        height: calc(100% - 80px);
        position: absolute;
        left: 0;
        bottom: 40px;
        background: #fb8c10;
    }

    .pbox {
        padding: 0px 0;
        width: 50%;
        align-content: center;
        justify-items: center;
        min-height: 225px;
        position: relative;
    }

    .feat_samantha {
        position: absolute;
        width: 330px;
        left: -150px;
        top: -150px;
    }

    .benefits_wrapper {
        padding: 40px 0;
    }

    .fbox h4 {
        font-size: 1.6rem;
    }

    .fbox p {
        font-size: 1rem;
    }
}

@media screen and (min-width: 1440.5px) {
        .samantha_desk {
        margin-top: 100px;
        margin-bottom: 208px;
    }

}





@media (min-width: 768px) and (max-width: 1200px) {

    #banner .feat {
        min-width: 200px;
    }

    #banner {
        background: linear-gradient(to bottom, #f5e3d2 calc(100% - 30%), transparent 30%), url(../img/desk_bg.webp);
        background-repeat: repeat;
        background-position: bottom;
        background-size: auto auto;
    }

    h1 {
        color: #97281d;
        font-size: 32px;
        line-height: 36px;
        font-weight: 900;
    }

}

@media (min-width: 1200px) and (max-width: 1400px) {

    #banner {
        background: linear-gradient(to bottom, #f5e3d2 calc(100% - 30%), transparent 30%), url(../img/desk_bg.webp);
        background-repeat: repeat;
        background-position: bottom;
        background-size: auto auto;
    }

    h1 {
        color: #97281d;
        font-size: 36px;
        line-height: 42px;
        font-weight: 900;
    }

}


.custom-slider {
    -webkit-appearance: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 14px;
    background: #e3530f;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    margin-top: -2px;
}

.custom-slider::-moz-range-thumb {
    width: 24px;
    height: 14px;
    background: #dc5524;
    border: none;
    border-radius: 7px;
    cursor: pointer;
}

.custom-slider::-ms-thumb {
    width: 24px;
    height: 14px;
    background: #dc5524;
    border: none;
    border-radius: 7px;
    cursor: pointer;
}


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

    #banner form h3 {
        min-height: 80px;
        align-content: center;
        font-size: 17px;
    }

    h1 {
        color: #97281d;
        font-size: 26px;
        line-height: 30px;
        font-weight: 900;
        margin: 20px;
    }

    .sam_mob {
        position: relative;
        z-index: 0;
        margin-bottom: -245px;
        width: 100%;
    }
    .width_inherit {
        justify-content: center;
    }
    #banner .feat div{
        width: 33.33%;
    }
    #banner .feat .iconwrap {
        margin-left: auto;
        margin-right: auto;
        width: 50px;
        height: 50px;
        margin-top: -40px;
        object-fit: contain;
    }

    #banner .feat p {
        margin: 0;
    }

    #banner .feat {
        display: flex;
        border-top-right-radius: 7px;
        border-bottom-right-radius: 20px;
        border-top-left-radius: 7px;
        border-bottom-left-radius: 20px;
        margin: 0 20px;
        font-size: 17px;
        line-height: 20px;
        text-align: center;
        padding: 15px;
        position: relative;
        z-index: 1;
        background: #e3530f;
        justify-content: space-evenly;
    }

    #banner .feat br {
        display: none;
    }




    .benefits {
        border-radius: 5px;
        background: url(../img/orangebg.webp) no-repeat center;
        background-size: cover;
        width: 70%;
        margin-right: 0;
        margin-left: auto;
        margin-top: 60px;
        margin-bottom: 40px;
        position: relative;
    }

    .fbox {
        display: flex;
        align-items: center;
        background: none;
        gap: 30px;
        border: none;
        min-height: auto;
        padding: 0;
        border-radius: 0;
        margin-bottom: 0;
        padding-bottom: 15px;
        border-bottom: 2px solid #fb8c10;
    }

    .fbox div {
        width: 140px;
    }

    .pbox:last-child {
        border-bottom: none;
    }

    .pbox {
        padding: 15px;
        width: 100%;
        align-content: center;
        justify-items: center;
        padding-bottom: 0;
    }

    .feat_samantha {
        position: absolute;
        width: 250px;
        left: -110px;
        top: -115px;
        height: auto;
    }

    .h-set {
        min-height: 350px;
        position: relative;
        z-index: 1;
    }

    .benefits_wrapper {
        padding: 40px 0;
    }

    .fbox h4 {
        font-size: 1.1rem;
    }

    .fbox p {
        font-size: 1rem;
        display: none;
    }

    .fbox img {
        width: 40px;
        height: auto;
    }

    .subHeading {
        text-align: left;
        font-size: 1.4rem;
        margin: 20px 10px;
    }

    .benefits_wrapper .subHeading {
        margin: 20px auto 20px 120px;
    }

}


@media (min-width: 575px) and (max-width: 767px) {
    .container {
        max-width: 90%;
    }

    #banner .container {
        max-width: 100%;
    }

    .sam_mob {
        width: 100%;
    }

    #banner .feat {
        margin: -100px auto 0 auto;
    }

    h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .form_section {
        max-width: 90%;
    }

    .calculator_section {
        margin: 20px 0px;
    }

    .benefits_wrapper .subHeading {
        margin: 20px auto 20px 200px;
    }

    .feat_samantha {
        position: absolute;
        width: 270px;
        left: -125px;
        top: -125px;
    }

    .subHeading {
        font-size: 1.6rem;
    }

    footer .text-right,
    footer .col-md-6 {
        text-align: center !important;
    }

}

@media (min-width: 768px) and (max-width: 1023px) and (min-height: 800px) {

    .form_section {
        max-width: 600px;
        padding: 10px;
        margin: 0 auto;
    }

    .benefits_wrapper .subHeading {
        margin: 20px 0 20px 0;
        text-align: center;
    }

    .benefits {
        margin-right: 50px;
    }

    #banner {
        background: #f5e3d2;
    }

    .sam_mob {
        width: 100%;
        max-width: unset;
        margin-bottom: -270px;
    }

    .width_inherit {
        margin-bottom: 40px;
    }

    .form_section {
        max-width: 600px;
        padding: 10px;
        margin: 0 auto;
    }

    #banner .feat {
        margin: 0 auto;
    }

    #banner .feat br {
        display: block;
    }

    #banner .feat .iconwrap {
        position: relative;
        top: 0px;
    }

    #banner .feat div {
        padding: 20px;
        padding-top: 0;
    }

    h1 {
        color: #97281d;
        font-size: 32px;
        line-height: 40px;
        font-weight: 900;
        margin: 20px;
    }

    #banner .container {
        max-width: 100%;
    }

    .pbox:nth-of-type(2)::after {
        display: none;
    }

    .pbox:nth-of-type(3)::after {
        display: none;
    }

    .pbox {
        min-height: auto;
    }

    .feat_samantha {
        position: absolute;
        width: 270px;
        left: -125px;
        top: -125px;
    }
}

.tandc {
    font-size: 12px;
    font-style: italic;
    text-align: right;
    padding-right: 50px;
    margin-top: -30px
}

@media screen and (max-width: 768px) {
    .sam_mob{
        margin-bottom: -125px;
    }
    .range-labels>input {
        width: 120px;
        font-size: 1.1rem;
    }

    .range-labels>label {
        font-size: 18px;
    }

    .range-labels {
        font-size: 15.5px;
    }

    .interest {
        height: calc(100% - 15px);
        align-content: center;
    }

    .interest>label {
        font-size: 18px;
        display: block;
        margin-bottom: 10px;
    }

    .tandc {
        padding-right: 5px;
        margin-top: -00px
    }

    .int-rates {
        font-size: 18px;
    }
}

.width_inherit {
    width: inherit;
}

#errorMsg {
    color: red;
    margin-top: 10px;
    display: none;
}

.btnApply {
    text-align: center;
    display: block !important;
    text-decoration: none;
    background-color: #e3530f;
    font-family: "Mulish";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 0;
    position: fixed;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
    color: #FFFFFF;
}


@media (min-width: 575px) and (max-width: 767px) {}

@media screen and (max-width: 480.5px) {
    header h2 {
        font-size: 16px;
        margin: 9px 0 0 18px;
    }

    .faq-answer p {
        margin-top: 0;

    }

    header {
        padding: 0px 0;
    }

    header button {
        padding: 10px 0 10px 10px;
        width: 50%;
    }


}

span.error {
    color: red;
    font-size: 12px;
}

p.error {
    text-align: left;
    line-height: 0px;
    color: red;
}

.toast-container {
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 280px;
    padding: 14px 18px;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.4s ease, fadeOut 0.5s ease 2.5s forwards;
}

.toast.success {
    background: url(../img/sucess.svg) no-repeat left 10px center #22c55e;
    padding-left: 40px;
    background-size: 20px;
}

.toast.error {
    background: url(../img/error.svg) no-repeat left 10px center #ef4444;
    padding-left: 40px;
    background-size: 20px;
}

.toast.info {
    background-color: #3b82f6;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: rgba(0, 0, 0, 1) !important;
    background: #fff url(../img/icons/email.svg) no-repeat left 20px center !important;
    background-size: 25px !important;
}

#banner form select.placeholder {
    color: rgba(0, 0, 0, 0.4);
}

#banner form select.filled {
    color: rgba(0, 0, 0, 1);
}


#banner form input {
    color: rgba(0, 0, 0, 1);
    font-family: "Mulish", sans-serif;
}

#sendOtpBtn,
#verifyOtpBtn {
    width: 110px;
}

#banner form input#mobile {
    width: calc(100% - 100px);
    border-bottom: none;
}

#banner form input#otp {
    width: calc(100% - 160px);
    border-bottom: none;
}

@media screen and (max-width: 768px) {
    #banner form input#mobile {
        width: calc(100% - 90px);
        border-bottom: none;
    }

    #banner form input#otp {
        width: calc(100% - 140px);
        border-bottom: none;
    }

    #sendOtpBtn,
    #verifyOtpBtn {
        width: 82px;
    }
}

.terms label {
    font-size: 10px;
    cursor: pointer;
    color: #414042;
}

.thank-you {
    min-height: calc(100vh - 112px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 30px 30px 30px;
}

.thank-you .popup-icon {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 100px;
}

.thank-you h2 {
    color: #e3530f;
    text-align: center;
    margin-bottom: 40px
}

.thank-you h3 {
    text-align: center;
    color: #414042
}

.thank-you p {
    text-align: center;
    color: #414042;
    font-size: 14px;
}

.thank_you_back {
    border: none;
    display: flex;
    background: none;
    gap: 5px;
    cursor: pointer;
    align-items: center;
    cursor: pointer;
    color: #333333;
    font-size: 16px;
    margin-top: 15px;
}

.thank_you_back>img {
    width: 10px;
}

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

    #banner .feat {
        width: calc(100% - 21px);
        height: fit-content;
        max-width: 450px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    #banner .feat br {
        display: block;
    }

    #banner .feat div {
        width: 33.33%;
    }

    .result-line label {
        font-size: 18px;
    }
    

.result-line span {
    color: #e3530f;
    font-size: 18px;
    display: block;
}

    #banner form input,
    .laststep form input,
    #banner form select.placeholder {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1200px) {

    #banner form h3 {
        font-size: 1.6rem;
    }
}
