﻿
body, html {
    font-family: "Roboto-Regular";
}
.hero_container {
    margin-top: 170px;
    display: flex;
    width: 100%;
}

.hero_left_section {
    flex: 50%;
    background: linear-gradient(90deg, rgba(14,52,106,1) 0%, rgba(0,93,166,1) 50%, rgba(14,52,106,1) 100%);
}
.gray-text {
    color: #c7c7c7;
}
.hero_left_section .wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 40px 0;
    text-align: center;
    height: 50vh;
    justify-content: center;
}

@media (min-width: 375px){
    .hero_left_section .wrapper{
        height: 220px;
    }
}
@media (min-width: 1024px) {
    .hero_left_section .wrapper {
        height: 50vh;
    }
}

.hero_left_section .wrapper h1.hero_headertext{
    margin-bottom: 10px;
}

.hero_left_section .wrapper h1.hero_headertext p {
    font-size: 42px;
    font-weight: bold;
    font-family: "Roboto-Bold";
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}
@media (min-width: 375px){
    .hero_left_section .wrapper h2{
        width: 90%;
    }
}
@media (min-width: 1024px) {
    .hero_left_section .wrapper h2 {
        width: 80%;
    }
}
.hero_left_section .wrapper h2.hero_subheadertext p {
    font-size: 34px;
    font-family: "Roboto-Regular";
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.hero_left_section .wrapper p b{
    font-family: "Roboto-bold";
}

.faq-header {
    font-family: 'Roboto-bold';
    font-size: 28px;
    color: #005da6;
}  
@media (min-width: 1900px) {
    .hero_left_section .wrapper h1.hero_headertext p {
        font-size: 52px;
        line-height: 1;
    }
    .hero_left_section .wrapper h2.hero_subheadertext p {
        font-size: 42px;
    }
}

.hero_right_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 50%;
    position: relative;
}

.hero_imagetext_wrapper {
    width: 100%;
    background: #404165ad;
    position: absolute;
    bottom: 0px;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, rgba(14, 52, 106, 0.09) 0%, rgb(14 52 106 / 24%) 50%, rgba(14, 52, 106, 69%) 80%);
}

.hero_right_section .hero_image {
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 375px){
    .hero_right_section .hero_image {
        height: 220px;
    }
}
@media (min-width: 1024px) {
    .hero_right_section .hero_image {
        height: 50vh;
    }
}

.hero_right_section .hero_image .hero_imagetext {
    color: #ffffff;
    font-size: 20px;
    font-family: "Roboto-Bold";
    text-align: center;
    margin-bottom: 15px;
    width: max-content;
}

.questions_container{
    display: flex;
    justify-content:center;
    background-color:#ededed;
}

.questions_container .wrapper {
    width: 1000px;
    padding: 35px 0 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    column-gap: calc(100vw / 8);
}

.questions_container .wrapper img {
    width: 40px;
    height: 40px;
}

.questions_container .wrapper .question_item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.questions_container .wrapper .question_item a{
    font-family: "Roboto-Medium";
    font-size: 22px;
    color: #0000ee;
}

.cashout_container{
    padding: 40px 0 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    gap: 30px;
}

.cashout_container h3.title{
    font-size: 28px;
    font-family: "Roboto-Bold";
    color: #005da6;
}

.cashout_container .description p{
    margin-bottom: 0px;
    font-size:22px;
}

.cashout_container .bulletpoints ul li{
    display: grid;
    grid-template-columns: 40px 11fr;
    align-items: center;
    margin-bottom: 25px;
    font-size: 22px;
}
@media (min-width: 320px){
    .cashout_container .bulletpoints ul li {
        grid-template-columns: 25px 11fr;
    }
}
@media (min-width: 420px) {
    .cashout_container .bulletpoints ul li {
        grid-template-columns: 40px 11fr;
    }
}
.cashout_container .bulletpoints ul li:before {
    content: '';
    background-image: url("../img/CheckmarkBlue_Desktop_35x25.svg");
    width: 35px;
    height: 30px;
    display: block;
    background-repeat: no-repeat;
    margin-top: -3px;
}
@media (max-width: 1023px) {
    .cashout_container .bulletpoints ul li:before {
        width: 30px;
        height: 25px;
    }
}

    .cashout_container .bulletpoints ul li:last-child {
        margin-bottom: 5px;
    }

.cashout_container .bottomtext p {
    margin-bottom: 0px;
    text-align:center;
    font-size: 22px;
}

.cashout_container .bottomtext b{
    font-family: "Roboto-Bold";
}

.cashout_container .buttontext a {
    text-decoration: none;
    background: linear-gradient(90deg, rgba(0,93,166,1) 0%, rgba(14,52,106,1) 50%, rgba(0,93,166,1) 100%);
    color: #ffffff;
    font-family: "Roboto-Medium";
    font-size: 18px;
    border-radius: 12px;
    width: 280px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cashout_container .callus{
    font-size: 22px;
    color: #005da6;
    font-family: "Roboto-Bold";
}

.cashout_container a{
    color: #0000ee;
}

.cashout_container .disclaimer{
    display: flex;
    justify-content: center;
    font-size: 12px;
    margin-top: 0;
}

.cashout_container .redarrow{
    width:50px;
    height: 28px;
}

/*Qualify section css*/
.qualify_container {
    padding: 40px 0 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    gap: 30px;
}

.qualify_container .qualify_icon{
    width: 60px;
    height: 60px;
}

.qualify_container h3.title {
    font-size: 28px;
    font-family: "Roboto-Bold";
    color: #005da6;
}

.qualify_container .description p {
    margin-bottom: 0px;
}
    .qualify_container .description  {
        font-size: 22px;
    }

.qualify_container .bulletpoints ul li {
    
    display: grid;
    grid-template-columns: 40px 11fr;
    margin-bottom: 25px;
    font-size: 22px;
    align-items: center;
}
@media (min-width: 320px) {
    .qualify_container .bulletpoints ul li {
        grid-template-columns: 25px 11fr;
    }
}

@media (min-width: 420px) {
    .qualify_container .bulletpoints ul li {
        grid-template-columns: 40px 11fr;
    }
}
.qualify_container .bulletpoints ul li:before {
    content: '';
    background-image: url("../img/CheckmarkBlue_Desktop_35x25.svg");
    width: 35px;
    height: 30px;
    display: block;
    background-repeat: no-repeat;
    margin-top: -3px;
}
@media (max-width: 1023px) {
    .qualify_container .bulletpoints ul li:before {
        width: 30px;
        height: 25px;
    }
}
.qualify_container .bulletpoints ul li sup {
    left: -10px;
}

.qualify_container .bulletpoints ul li:last-child {
    margin-bottom: 5px;
}


.qualify_container .buttontext a {
    text-decoration: none;
    background: linear-gradient(90deg, rgba(0,93,166,1) 0%, rgba(14,52,106,1) 50%, rgba(0,93,166,1) 100%);
    color: #ffffff;
    font-family: "Roboto-Medium";
    font-size: 18px;
    border-radius: 12px;
    width: 280px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qualify_container .redarrow {
    width: 50px;
    height: 28px;
}

.calc_container{
    background-color: #ededed;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 10%;
}
.calc-button {
    display: block;
    text-align: center;
    margin: 10px auto;
    color: #ffffff;
    font-family: 'Roboto-medium';
    font-size: 18px;
    width: 280px;
    height: 46px;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
    background: rgb(0,93,166);
    background: linear-gradient(90deg, rgba(0,93,166,1) 0%, rgba(14,52,106,1) 50%, rgba(0,93,166,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.calc_container img.icon{
    width: 60px;
    height: 60px;
}

.calc_container .head_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calc_container .head_wrapper .header {
    font-family: "Roboto-Bold";
    font-size: 28px;
    color: #005da6;
    margin:35px 0 25px 0;
}

.calc_container .head_wrapper .subheader p{
    margin: 0;
    text-align:center;
    font-family: "Roboto-Regular";
    font-size: 22px;
}

.calc_container .calc_wrapper{
    margin-top: 25px;
    display: flex;
    width: 80%;
}
.calc_container .calc_wrapper .calc_form{
    width: 40%;
}
.calc_container .calc_wrapper .form-calc .layout{
    margin-left: 0;
}
.calc_container .calc_wrapper .layout__item .info_icon{
    width: 20px;
    height: 20px;
}

.calc_container .calc_wrapper .layout__item .tooltip-icon:hover{
    opacity: 1;
}

.calc_container .calc_wrapper .layout__item .form__label{
    font-family: "Roboto-Regular";
    font-size: 22px;
    color: #005da6;
}
.calc_container .calc_wrapper .form-calc .form__field-square, .calc_container .calc_wrapper .form-calc .form__select-Square select{
    background-color: #ffffff;
    color: #000000;
    font-family: "Roboto-Regular";
}

.calc_container .calc_wrapper .form-calc .form__select-Square:after {
    background-color: #ffffff;
    color: #005da6;
    border-color: #000;
    background-image: url("../img/DropDownArrow_Desktop_53x60.png");
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    width: 53px;
}

.calc_container  .calc_wrapper .result_header{
    font-family: "Roboto-Bold";
    font-style: italic;
    font-size:28px;
    color: #005da6;
    text-align:center;
    margin-bottom: 15px;
}

.calc_container .calc_wrapper .result_header_wrapper{
    grid-column: 1 / span 2;
}

.calc_container  .calc_wrapper .calc-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 35px;
    width: 60%;
    margin-left: 8%;
}

@media (min-width: 1440px){
    .calc_container .calc_wrapper .calc-result{
        font-size: 30px;
    }
}
.calc_container .calc_wrapper .calc-result .calc-result-head {
    font-size: 44px;
}
.calc_container .calc_wrapper .calc-result .calc-result-head-bold {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}
@media (min-width: 320px){
    .calc_container .calc_wrapper .calc-result .calc-result-head {
        font-size: 26px;
    }

    .calc_container .calc_wrapper .calc-result .calc-result-head-bold {
        font-size: 28px;
    }
}
@media (min-width: 1200px) {
    .calc_container .calc_wrapper .calc-result .calc-result-head {
        font-size: 44px;
    }

    .calc_container .calc_wrapper .calc-result .calc-result-head-bold {
        font-size: 48px;
    }
}
.calc_container .calc_wrapper .calc-result .result_icon {
    width: 202px;
    height: 108px;
    margin-left: 2rem;
}

.grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.grid_item {
}

.calc_container .calc_wrapper .calc-result .grid .value{
    padding-left: 20%;
}

@media (min-width: 1440px) {
    .calc_container .calc_wrapper .calc-result .grid .value {
        padding-left: 10%;
    }
}


.calc_container .calc_wrapper .calc-result .disclaimer {
    grid-column: 1 / span 2;
    width: 100%;
    padding: 0;
}

.steps_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
    padding: 40px;
}
.steps_container .section_icon {
    width: 60px;
    height: 52px;
}
.steps_container .buttontext a {
    text-decoration: none;
    background: linear-gradient(90deg, rgba(0,93,166,1) 0%, rgba(14,52,106,1) 50%, rgba(0,93,166,1) 100%);
    color: #ffffff;
    font-family: "Roboto-Medium";
    font-size: 18px;
    border-radius: 12px;
    width: 280px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.steps_container .redarrow {
    width: 50px;
    height: 28px;
}
.steps_container .section_title{
    font-family: "Roboto-Bold";
    font-size: 28px;
    color:#005da6;
}
.steps_container .step{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.steps_container .step .img{
    width: 40px;
    height: 40px;
    margin-bottom:20px;
}
.steps_container .step.second .img{
    width: 32px;
    height: 40px;
    margin-bottom:20px;
}
.steps_container .step .title{
    font-family: "Roboto-Bold";
    font-size:24px;
    color: #005da6;
}
.steps_container .step .description{
    font-family: "Roboto-Regular";
    font-size: 22px;
    color: #000;
    text-align:center;
}
.steps_container .step .description a{
    text-decoration: underline;
    font-family: "Roboto-Bold";
    color: #0000ee;
}
.steps_container .step .description p{
    margin: 0;
    font-size:22px;
}

.faq_container {
    display: flex;
    justify-content: center;
    padding: 45px;
    background-color: #ededed;
}

.faq_container .section_icon{
    width: 60px;
    height: 60px;
}

.faq_container .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

.faq_container .wrapper .faqs_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq_container .wrapper .faqs_wrapper .faq_wrapper{
    width: 45vw;
}

.faq_container .wrapper .faqs_wrapper .faq_wrapper label#a {
    margin-bottom: 0;
    border-radius: 0;
    background: #fff;
    color: #505050;
    border: 1px solid #000;
    font-family: "Roboto-Regular";
    font-weight: 500;
    font-size: 22px;
}

.faq_container .wrapper .faqs_wrapper .faq_wrapper label[id=a]::after {
    content: '';
    background-image: url("../img/FAQClosedArrow_Desktop_19x34.svg");
    width: 19px;
    height: 34px;
    top: 50%;
    transform: translateY(-50%);
}

.faq_container .wrapper .faqs_wrapper .faq_wrapper input:checked + label[id=a]::after {
    content: '';
    background-image: url("../img/FAQOpenArrow_Desktop_34x19.svg");
    width: 34px;
    height: 19px;
}
.faq_container .wrapper .faqs_wrapper .faq_wrapper .content{
    padding: 0;
    background: #fff;
}
.faq_container .wrapper .faqs_wrapper .faq_wrapper .content .Accordion_copy{
    font-family: "Roboto-Regular";
    font-size: 22px;
    color: #000000;
    border: 1px solid #000;
    padding: 16px 22px;
}

.getstarted_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    padding: 45px;
}
.getstarted_container .title{
    font-family: "Roboto-Bold";
    font-size: 28px;
    color: #005da6;
    margin-bottom: 20px;
    text-align: center;
}

.getstarted_container .description{
    font-family: "Roboto-Regular";
    font-size: 22px;
    color:#000;
}

.getstarted_container .description p{
    margin: 0;
    text-align: center;
    line-height:1;
}

    .getstarted_container .button {
        text-decoration: none;
        background: linear-gradient(90deg, rgba(0,93,166,1) 0%, rgba(14,52,106,1) 50%, rgba(0,93,166,1) 100%);
        color: #ffffff;
        font-family: "Roboto-Medium";
        font-size: 18px;
        border-radius: 12px;
        width: 280px;
        height: 46px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -20px;
    }

.getstarted_container .button a{
    text-decoration: none;
}

.disclaimer {
    font-family: 'Roboto Condensed';
}
/***************Responsive****************/

@media (min-width:768px) and (max-width:1023px) {
    .questions_container .wrapper {
        width: 35% !important;
    }

    .calc-result-head{
        font-size:36px !important;
    }
    .calc-result-head-bold {
        font-size: 38px !important;
    }
    .grid_item .u-font-roboto-bold{
        font-size:27px;
    } 
}

@media(max-width: 767px) {
    .hero_left_section .wrapper h1.hero_headertext p {
        font-size: 18px;
        display: inline;
    }
    .hero_left_section .wrapper h2.hero_subheadertext p {
        font-size: 16px;
        display: inline;
    }
}
@media (min-width:768px) and (max-width:1023px) {
    .hero_left_section .wrapper h1.hero_headertext p {
        font-size: 23px;
        display: inline;
    }
    .hero_left_section .wrapper h2.hero_subheadertext p {
        font-size: 20px;
        display: inline;
    }
}
@media(max-width: 1023px) {
        .hero_container {
            margin-top: 70px;
        }

        .hero_right_section .hero_image {
            display: block;
        }

        .hero_left_section .wrapper h1.hero_headertext {
            padding: 0px 20px;
            line-height: 1.25rem;
        }

        .hero_left_section .wrapper h2 {
            font-size: 14px !important;
            padding: 5px 15px;
        }

        .hero_left_section .wrapper h1.hero_headertext p:last-child {
            padding-left: 5px;
        }
                
        .hero_left_section {
            flex: 60%;
            order: 1;
        }

        .questions_container .wrapper .question_item a {
            font-size: 19px;
            text-wrap: nowrap;
        }

        .cashout_container h3.title {
            font-size: 22px;
        }

        .cashout_container .description, .cashout_container .bottomtext {
            text-align: center;
        }

            .cashout_container .description p, .cashout_container .callus {
                font-size: 18px;
            }

        .description p {
            font-size: 18px;
            display: inline
        }

        .cashout_container .bulletpoints ul li {
            font-size: 18px;
            align-items: flex-start;
        }

        .cashout_container {
            gap: 25px;
        }

        .qualify_container {
            gap: 10px;
        }

        .cashout_container .bottomtext p, .callus {
            font-size: 18px;
            display: inline;
        }

        .questions_container .wrapper {
            width: 65%
        }

        .calc_container .head_wrapper .subheader p {
            font-size: 18px;
            display: inline;
        }

        .calc_container .head_wrapper {
            text-align: center;
        }

        .tooltip-icon {
            top: 0px;
        }

        .cashout_container .bulletpoints ul li, .qualify_container .bulletpoints ul li {
            margin-bottom: 20px;
        }

        .cashout_container .description, .cashout_container .bottomtext {
            text-align: center;
            line-height: 1.2;
        }

        main ul {
            margin: 0px;
        }

        .questions_container .wrapper {
            padding: 15px 10px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 5px;
        }

        .questions_container img, .bulletpoints img, .qualify_icon, .icon_resp {
            border: 0;
            max-width: 12%;
        }

        .question_item {
            font-size: 18px;
        }

        .qualify_container {
            width: 80%;
            padding: 0 0 35px 0;
        }

            .qualify_container .bulletpoints ul li {
                align-items: flex-start;
                font-size: 18px;
            }

            .qualify_container h3.title {
                font-size: 22px;
                text-align: center;
                line-height: 1.2;
                padding: 0px 20px;
            }

            .qualify_container .description {
                font-size: 18px;
                text-align: center;
            }

            .qualify_container .bulletpoints {
                margin-bottom: 20px;
            }



        #bulletpoints ul li:nth-child(odd) {
            font-size: 20px;
        }

        #bulletpoints ul li:nth-child(even) {
            font-size: 18px;
            margin-left: 45px;
        }
        /*iframe, img {
        border: 0;
        max-width: 7%;
    }*/
        .qualify_container .footr {
            text-align: left;
            font-size: 11px;
            margin-left: 0;
            padding: 0px 20px;
        }

        .qualify_container .description {
            font-size: 18px;
            text-align: center;
        }

        .calc_container {
            padding: 20px
        }

            .calc_container .head_wrapper .header {
                font-size: 22px !important;
                margin: 20px 0 25px 0;
                padding: 0;
            }

            .calc_container .head_wrapper .subheader {
                margin: 0%;
                font-size: 19px;
                text-align: center;
                line-height: 1.1 !important;
            }

            .calc_container .calc_wrapper .layout__item .form__label {
                font-size: 18px;
            }

            .calc_container .calc_wrapper {
                display: inline;
                width: 90%;
            }

                .calc_container .calc_wrapper .calc_form {
                    width: 100%;
                }

                .calc_container .calc_wrapper .result_header {
                    font-size: 20px;
                }

                .calc_container .calc_wrapper .calc-result {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    font-size: 20px;
                    width: 100%;
                    margin-left: 0%;
                    margin-top: 30px;
                    margin-bottom: 20px;
                }

                    .calc_container .calc_wrapper .calc-result .result_icon {
                        height: 70px
                    }

                    .calc_container .calc_wrapper .calc-result .result_icon {
                        margin-left: 0.5rem;
                    }

                    .calc_container .calc_wrapper .calc-result .grid .value {
                        padding-left: 0%;
                    }

        .calc-result-head {
            font-size: 26px;
            font-family: 'Roboto-Regular'
        }

        .calc-result-head-bold {
            font-size: 28px;
            font-family: 'Roboto-Bold'
        }

        .calc_container .head_wrapper .header {
            margin: 5px 0 15px 0;
        }

        .result-payment {
            font-size: 28px;
        }

        .steps_container {
            padding: 15px 30px;
            gap: 25px;
        }

            .steps_container .section_title {
                font-size: 22px;
                text-align: center;
                padding: 0px 20px;
            }

            .steps_container .step .title {
                font-size: 20px;
            }

            .steps_container .step.first, .step.second, .step.third, .step.fourth {
                padding: 0px 0px !important;
            }

            .steps_container .step .description, .steps_container .step .description p {
                font-size: 18px;
            }

            .steps_container .step.first .description {
                margin: 0px 26px !important;
            }

            .steps_container .redarrow {
                margin-bottom: 20px;
            }

        .faq-header {
            font-size: 22px;
        }

        .faq_container {
            padding: 30px;
        }

            .faq_container .wrapper .faqs_wrapper .faq_wrapper label#a {
                font-size: 18px;
                margin: 0 0px -2px 0px;
                padding: 15px 25px 15px 15px;
            }

            .faq_container .wrapper .faqs_wrapper .faq_wrapper {
                width: 90vw;
            }

            .faq_container .wrapper {
                gap: 20px;
            }


                .faq_container .wrapper .faqs_wrapper .faq_wrapper .content .Accordion_copy {
                    font-size: 18px !important;
                    padding: 15px;
                }

        .getstarted_container {
            padding: 0px;
            gap: 25px;
        }

            .getstarted_container .button {
                margin-bottom: 30px;
                margin-top: 0;
            }

        .getstarted-footer {
            gap: 20px;
            padding: 30px;
        }

        .getstarted_container .title {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .getstarted_container .description {
            font-size: 18px;
            text-align: left;
            margin: 0px 0px;
            padding: 0px 30px;
        }

        .gs-title {
            font-size: 27px;
            text-align: center;
        }

        .fill-loanpurpose {
            margin-bottom: 20px;
        }

        .grid {
            display: grid;
            grid-template-columns: 1.25fr 1fr;
        }

        .cashout_container .redarrow, .steps_container .redarrow,
        .qualify_container .redarrow, .steps_container .section_icon,
        .faq_container .section_icon, .steps_container .step .img, .steps_container .step.second .img {
            width: 35px;
        }

        .qualify_container .qualify_icon {
            width: 40px;
            height: 40px;
        }

        .calc_container img.icon {
            width: 35px;
            height: 35px;
        }
    }


    @media (min-width:1024px) and (max-width:1439px) {
        /*.hero_left_section .wrapper h1.hero_headertext p{
        font-size:32px;
    }*/
        .hero_left_section .wrapper h2.hero_subheadertext p {
            font-size: 27px;
        }

        .qualify_container .footr {
            margin-left: 6%;
        }

        .steps_container .step.first, .step.second, .step.third, .step.fourth {
            padding: 0px 170px !important;
        }

        .faq_container .wrapper .faqs_wrapper .faq_wrapper {
            width: 60vw;
        }

        .getstarted_container .description {
            margin: 0px;
        }

        .calc_container .calc_wrapper {
            width: 100% !important;
        }

        .calc_container .head_wrapper .subheader {
            margin: 0% 6%;
            font-size: 18px;
        }

        .calc_container .calc_wrapper .calc-result .result_icon {
            height: 80px;
        }

        .calc_container .calc_wrapper .calc-result {
            display: flex;
            flex-direction: column;
            justify-content: center;
            font-size: 25px;
            width: 60%;
            margin-left: 15%;
            margin-bottom: 40px;
        }

        .calc_container .calc_wrapper .result_header {
            font-size: 24px;
        }

        .result-payment {
            font-size: 40px;
        }

        .questions_container .wrapper {
            width: 60%;
            gap: 20px;
        }

            .questions_container .wrapper .question_item a {
                font-size: 19px;
            }

        .cashout_container .description {
            text-align: center;
        }

            .cashout_container .description p {
                display: inline;
            }

        .qualify_container .description {
            text-align: center;
            font-size: 21px;
        }

        .calc_container .head_wrapper .subheader p {
            display: inline;
        }
    }

    @media (min-width:1024px) and (max-width:1199px) {
        .hero_left_section .wrapper h1.hero_headertext p {
            font-size: 32px;
        }
    }

    @media (min-width:600px) and (max-width:767px) {
        .questions_container .wrapper {
            width: 50% !important;
        }
    }


    @media(max-width:424px) {
        .cashout_container {
            gap: 18px !important;
        }

            .cashout_container .bulletpoints ul li:before, .qualify_container .bulletpoints ul li:before {
                margin-top: -9px !important;
            }

            .cashout_container .bulletpoints ul li, .qualify_container .bulletpoints ul li {
                margin-bottom: 16px;
            }

        .hero_left_section .wrapper h1.hero_headertext {
            padding: 0px;
            margin: 0 15px;
        }

        .image-header-text {
            font-size: 24px !important;
        }

        .calc_container .head_wrapper .header {
            font-size: 20px !important;
            text-wrap: nowrap;
        }

        .calc_container .calc_wrapper .result_header {
            font-size: 16px !important;
        }

        .u-font-roboto-regular {
            font-size: 18px !important;
        }

        .cashout_container .bulletpoints ul li, .qualify_container .bulletpoints ul li {
            grid-template-columns: 35px 11fr;
        }
        /*
    .steps_container .step .title {
        font-size: 18px !important;
    }*/
        .cashout_container .disclaimer {
            display: flex;
            justify-content: center;
            font-size: 10px;
            margin-top: 0;
        }

        .steps_container .section_title {
            font-size: 20px !important;
        }

        .steps_container .step .description, .steps_container .step .description p,
        .steps_container .step .description a {
            font-size: 16px;
        }

        .sub-content p {
            display: inline;
            margin: 0;
            padding: 0;
            font-size: 16px;
        }

        .questions_container .wrapper {
            width: 70%;
        }

        .cashout_container h3.title {
            font-size: 20px;
        }
        /* .questions_container .wrapper {
        margin-left: 10%;
    }*/
        .questions_container .wrapper .question_item a {
            font-size: 15px !important;
        }

        .cashout_container h3.title, .qualify_container h3.title, .calc_container .head_wrapper .header, .faq-header {
            font-size: 20px !important;
        }

        .cashout_container .description p, .cashout_container .callus, .qualify_container .description, .cashout_container .bulletpoints ul li,
        .cashout_container .bottomtext p, .callus, .qualify_container .bulletpoints ul li, .calc_container .head_wrapper .subheader p,
        .calc_container .calc_wrapper .layout__item .form__label, .calc_container .calc_wrapper .form-calc .form__field-square, #loanTerm,
        .faq_container .wrapper .faqs_wrapper .faq_wrapper label#a, .faq_container .wrapper .faqs_wrapper .faq_wrapper .content .Accordion_copy, .description p {
            font-size: 15px !important;
            line-height: 1.2;
        }
        /* .cashout_container .bulletpoints ul li:before, .qualify_container .bulletpoints ul li:before,*/
        .getstarted_container .title {
            height: 18px !important;
        }

        .faq_container .wrapper .faqs_wrapper .faq_wrapper label#a {
            padding: 15px 35px 15px 15px !important;
        }

        .calc-result-head {
            font-size: 22px !important;
        }

        .calc_container .calc_wrapper .calc-result .result_icon {
            margin-left: -1rem !important;
        }

        .calc-result-head-bold {
            font-size: 26px !important;
        }

        .calc_container .calc_wrapper .calc-result {
            font-size: 14px !important;
        }

        .steps_container .step .title {
            font-size: 18px !important;
        }

        .steps_container .step .description, .steps_container .step .description p {
            font-size: 14px !important;
            /*line-height:1;*/
        }

        .faq_container .wrapper .faqs_wrapper .faq_wrapper input:checked + label[id=a]::after {
            top: 60% !important;
        }

        .hero_left_section .wrapper h2 {
            font-size: 14px !important;
            padding: 0px !important;
        }

        .hero_left_section .wrapper h1.hero_headertext p {
            font-size: 19px !important;
        }

        .hero_left_section .wrapper h2.hero_subheadertext p {
            font-size: 16px !important;
            margin: 0 3px;
        }
    }