body {
	font-family: "Open Sans", sans-serif;
	line-height: 1.6;
	color: #333;
	max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
}
a {
	text-decoration: none;
}
p {
    line-height: 1.2;
}
header {
	background: #fff;
	padding: 10px 20px;
	position: sticky;
	top: 0;
	z-index: 1000;
}
.form-control:focus {
   box-shadow: none;
   border-color:#ccc;
}

header .logo {
	height: auto;
    max-width: 160px;
}
header .btn-orange {
	background-color: #ff6200;
	color: #fff;
	border: none;
	padding: 8px 20px;
	font-size: 1em;
	font-weight: 700;
	transition: background-color 0.3s;
}
header .btn-orange:hover {
	background-color: #e65c00;
}
h2{line-height: 1;}
.page-content {
    height: 100vh;
    display: flex;
    align-items: start;
    justify-content: center;
    margin-top: 120px;
}
.btn{
    background-color: #009C3E;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 1em;
    font-weight: 700;
}	

.hero {
	background: #ededf5 url('/assets/images/hero.webp?v=9') no-repeat;
	color: #fff;
	text-align: center;
	padding: 10px 20px 30px;
	min-height: 650px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	justify-content: center;
	background-position: top;
	margin-top: 60px;  
	background-size: cover;
}
.hero h1 {
	color:#FFD478;
	font-size: 3.6em;
	font-weight: 700;
	margin-bottom: 0px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	line-height:1;
}
.hero h1 span {
	color: #fff;
	display: block;
}
.hero p {
	font-size: 1.2em;
	max-width: 800px;
	margin: 0 auto 40px;
	font-weight: 400;
}
.hero p.text-muted{font-size: .9em;margin-bottom: 20px;}
.hero p.small-para {
    font-size: .9em;
    margin-top: 10px;
    max-width: 450px;
    margin-left: 0px;
	margin-bottom: 0px;
}
.hero ul {
	list-style: none;
	font-size: 1em;
	margin-bottom: 0px;
	color: #ccc;
	margin-left: 0px;
	padding-left: 0px;
}
.hero ul li {
	margin: 2px 0 0;
	color: #FFF;
	font-style: normal;
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1;        
}
.hero ul li::before {
	display:inline-block;
	content: "\2714";
	color: #fff;
	font-size: 14px;
	margin-right: 10px;
	background: #037D00;
	width: 26px;
	border-radius: 50%;
	height: 26px;
	text-align: center;
	line-height: 26px;
}
.form-container {    
    border-radius: 20px;
    background: #FFF;
    padding: 25px 20px 0px; 
}
.form-container h2 {
    color: #2E2E2E;
    text-align: center;
    font-style: normal;
    font-weight: 700;
	letter-spacing: -1px;
}
.amount-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745; 
    max-width: 120px;
    width:100%;
    margin: auto;
    padding: 12px 5px;
    line-height: 1;
    border: 0.758px solid #A1A1A1;
}
.form-container p {
    color: #484848;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}
.slider-container {
    margin: 0 auto;
    width: 100%;
}

.form-range {
    width: 100%;
    height: 12px;
    background: linear-gradient(to right, #007bff 0%, #007bff 0%, #ddd 0%, #ddd 100%);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: absolute;
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: absolute;
}

.form-range::-webkit-slider-runnable-track {
    background: linear-gradient(to right, #007bff var(--value), #ddd var(--value));
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px; 
    background: #1774FC; 
    border-radius: 50%; 
    cursor: pointer;
    border: 2px solid #ddd; 
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); 
    transition: all 0.2s ease; 
   position: relative;
   top:-7px;
}

.form-range::-webkit-slider-thumb:hover {
    background: #e55a00;
    transform: scale(1.1); 
}

.form-range::-moz-range-thumb {
    width: 30px; 
    height: 30px;
    background: #1774FC; 
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    position: relative;
    top:-7px;
}

.form-range::-moz-range-thumb:hover {
    background: #e55a00;
    transform: scale(1.1);
}
.slider-container span {
    color: #6F6F6F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;   
    
}
.btn-custom {
    background-color: #009C3E; 
    color: white;
    font-weight: bold;
    border: none;
    text-transform: capitalize;
    font-size: 1.2rem;
    padding: 15px 20px;
    border-radius: 40px;
    width: 100%;
    max-width: 400px;
}

.btn-custom:hover, .btn-custom:active {
    background-color: #005623 !important;
}

.text-muted {
    font-size: 0.9rem;
}

    /* Why People With Credit Challenges Choose Us */
    .why-choose-us {
        padding: 40px 20px;
        text-align: center;
        background: url(/assets/images/section-bg.jpg) no-repeat;
        background-color: #ededf5;
        background-size: cover;
        background-position: center right;
    }
    .why-choose-us h2 {
        font-size: 2.8em;
        color: #2E2E2E;
        margin-bottom: 40px;
        font-weight: 700; 
    }
    .why-choose-us h2 span{
        display:block;
    }
    .why-choose-us .card {
        min-width: 220px;
        padding: 10px 20px 10px;
        background: #fff;
        border-radius: 50px 0px;
        border-width: 0px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    .why-choose-us .card p{
       line-height: 1.2;
     }
    .why-choose-us .card h3{
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom:0px;
     }
    .divider{     
        width: 110px;
        height: 4px;
        flex-shrink: 0;     
        border-radius: 17.586px;
        background: linear-gradient(90deg, #4DD493 0%, #76BC4B 100%);
        margin: 20px auto;
    }

    .why-choose-us .card span {
        font-size: 2em;
        color: #ff6200;
        margin-bottom: 15px;
        display: block;
    }

    /* How To Find Loans */
    .how-to-find {
        padding: 40px 20px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }
    .how-to-find h2 {
        margin-bottom: 20px;
        color: #2E2E2E;
        font-size: 3rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1;
    }
    .how-to-find p {
        color: #2E2E2E;
        font-size: 1.3rem;
        font-style: normal;
        font-weight: 300;
        line-height: normal;

    }
    .how-to-find img {
        max-width: 450px;
        border-radius: 10px;
        width: 100%;
    }
    .how-to-find ul {
        list-style:none;
        font-size: 1.1em;
        padding-left: 0px;
		margin-bottom: 0px;
    }
    .how-to-find ul li {
        margin-bottom: 5px;
        color: #000;
        font-size: 1em;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        display: inline-flex;
        align-items: self-start;
		width: 100%;
   }
    .how-to-find ul li span {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
    background: #F16D12;
    border-radius: 50%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    width: 100%;
    max-width: 30px;
    }

    /* Loan Options */
    .loan-options {
	padding: 40px 20px;
	background: linear-gradient(329deg, #D5A53F -22.84%, #5C72AE 99.81%);
	color: #fff;
	text-align: center;
    }
    .loan-options h2 {
    font-size: 3em;
    margin-bottom: 40px;
    font-weight: 700;
    }
    .loan-options  h2 span{  
        display:block;
    }
    
    .loan-options .card {
        min-width: 200px;
        padding: 20px 0px;
        background: #fff;
        color: #333;
        border-radius: 50px 0px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
        border-width: 0px;
    }
    .loan-options .card h3{
        background: #158328;
        padding: 10px;
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 0px;
        margin-top: 20px;        
    }
    .loan-options .card p{
        line-height: 1.2;
        margin-bottom: 0px;
        padding: 0px 20px;
    }

    /* Common Loan Questions */
    .questions {
        padding: 40px 0px;
        background: #E9EEF0;
        text-align: center;
    }
    .questions h2 {
        margin-bottom: 40px;
        color: #2E2E2E;
        text-align: center;
        font-family: Inter;
        font-size: 3rem;
        font-style: normal;
        font-weight: 700;        
    }
    .questions form {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .questions input[type="text"] {
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1em;
        transition: border-color 0.3s;
    }
    .questions input[type="text"]:focus {
        outline: none;
        border-color: #1e3a8a;
        box-shadow: 0 0 5px rgba(30, 58, 138, 0.5);
    }
        .faq-section {
            max-width: 800px;
            margin: auto;
            padding: 0px 20px;
        }
        .faq-title {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
        }
        .accordion-button:not(.collapsed) {
            background-color: #fff;
            box-shadow: none;
        }
        .accordion-item {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 10px;
        }
        .accordion h2{
            margin-bottom:0px;
            font-weight: 600;
            color: #2E2E2E;
            font-size: 30px;
        }
 .accordion-body {
    text-align: left;
    line-height: 1.4;
 }
.accordion-button {
    font-size: 1.4rem;
    font-weight: 600;
 }
    /* CTA */
    .cta {
        color: #fff;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 10px 35px;
    }
    .cta h2 {
        font-size: 3.2em;
        margin-bottom: 20px;
        color:#fff;
        font-weight: 700;
    }
    .cta h2 span{
      display:block;  
    }    
    .cta p {
        font-size: 1.2em;
        margin-bottom: 40px;
        max-width: 800px;
        color:#fff;
        line-height: 1.1;
    }
    .cta p span{    
      display:block;
      color: #C9FF2E;
      font-size: 2em;
      font-weight: 600;
      
    }
    .cta-content {
        border-radius: 70px;
        background: linear-gradient(111deg, #5C72AE -2.71%, #1D3474 158.4%);
        padding: 20px 20px 40px;
   }
.cta-content .form-container {
    background: transparent;
}
.loan-form {
    border-radius: 36.64px;
    background: #FFF;
    max-width: 600px;
    margin: auto;
    padding: 40px 20px 10px;
    width: 100%;
}
.cta .loan-form h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2E2E2E;
    text-align: center;
}
.cta .loan-form p {
    font-size: 1em;
    line-height: 1.1;
}

    /* Understand Credit Challenges */
.understand {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
}
.understand::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    background: url(/assets/images/bottom.jpg?v=1) no-repeat center / contain;
    z-index: -1;
    max-width: 1100px;
}
    .understand h2 {
        font-size: 2.5em;
        color: #25354F;
        margin-bottom: 20px;
        font-weight: 700;
    }
    .understand p {
    max-width: 800px;
    margin: 0 auto 10px;
    font-size: 1.05em;
    line-height: 1.2;
    }
    .understand .inner-content {    
        border-radius: 30px;
        background: #FFF;
        box-shadow: 10px 22px 50px 0px rgba(0, 0, 0, 0.15); 
        padding: 40px;
    }

    /* Footer */
    footer {
        background: #2B2B2B;
        color: #fff;
        text-align: center;
        padding: 40px 0px;
    }
    footer a {
        color: #ff6200;
        margin: 0 15px;
        font-size: 1em;
    }
    footer p {
        margin: 10px 0;
        font-size: 0.9em;
    }
    footer img {
        height: 40px;
        margin-bottom: 15px;
    }
 .index_footer-inline {
    list-style-type: none;
    margin: 0;
    padding: 0;
} 
.inline_item-li {
    display: inline;
    border-right: 1px solid #fff;
    margin: 0px 5px 0px 0px;
}
.index_footer-inline .inline_item-li a {
    font-size: 15px;
}

.index_footer-inline .inline_item-li a {
    color: #fff;
    padding: 0px 5px;
    text-decoration: none;
}
.inline_item-li:last-child {
    border-right: 0px solid #fff;
}
.footer-logo-bm {
    width: 280px;
    height: auto;
}
.page_footer p {
    position: relative;
}

.footer_parah {
    color: #ffffff;
    text-align: center;
}
.footer_parah {
    font-size: 16px !important;
}

.footer_parah_offer {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    padding: 0px 10px;
    line-height: 1.2;
}
.operator_text{
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    padding: 0px 10px;
    line-height: 1.2;
}
h2 span, h1 span{display:block;}
.progress-bar-container {
    background: #005623;
	padding: 20px;
}
.progress {
    background: #fafafa;
    border-radius: 20px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    height: 20px;
    overflow: hidden;
}
.progress-bar {
    padding: 0px 10px;
    background-color: #0fff50;
    font-weight: 500;
    color: #000000;
}
.question-title {
    color: #4a4a4a;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    margin: 25px 0 20px;
	text-transform: capitalize;
}
.form-control {
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 1.2em;
    margin: 0;
    min-height: 2.5em;
    text-align: center;
    line-height: 1em;
}
.form-btn {
    padding: 10px 15px;
    background-color: #2f9ee9;
    color: #fff;
    font-weight: 700;
	border:none;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 0 7px #ddd;
    border-radius: 5px;
    font-size: 20px;
    text-decoration: none;
    max-width: 480px;
    width: 100%;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.form-btn:hover {
  background-color: #15529b;
  color: #fff;
}
.error-border {
    border: 1px solid red !important;
}
.loan-form-wizard {
	display:none;
    background: #fff;
    padding-bottom: 20px;
    margin-top: 80px;
}
.option-select select {
    border-radius: 4px;
    color: #333 !important;
    font-size: 20px;
    font-weight: 700;
    height: 55px;
    line-height: 1;
}
.custom-btn {
	padding: 8px 20px;
    color: #fff;
    background: #2f9ee9;
    margin: 7px auto;
	border: 0px;
    border-bottom: 3px solid #083264;
    border-radius: 5px;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 480px;
	
}
.custom-btn:hover {
    background-color: #15529b;
    color: #fff;	
}
.custom-btn.active {
    background-color: #15529b;
    color: #fff;
} 
.btn-back {
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #333;
	font-size: 19px;
}
.btn-back i{
    font-size: 30px;
}
p.consent, p.additional-text, .consent,  .consent_text{
    font-size: 12px;
    margin-top: 20px;
    text-align: center;
}
.security-text, .advertiser-link a{
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}
.question-subtext  {
    margin-bottom: 0px;
    margin-top: 10px;
	font-size: 12px;
}
.date-error{
	display:none;
    text-align: center;
    margin-top: 10px;
    color: red;
}

.inputValid {
    border-color: #198754 !important;
    padding-right: calc(1.5em + 0.75rem);
	background: #fff url(/assets/images/valid.png?v=1);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
	position:relative;
}

.form-control.inputValid:before {
    content:"";
	width:20px;
	height:20px;
	background:#fff;
	position:absolute;
	right:10px;
}

.form-control:-webkit-autofill {
    appearance: none;
}



.btn-next[disabled]{
    box-shadow: none;
    cursor: not-allowed;
    filter: alpha(opacity = 65);
    opacity: .65;
}
#fnamerow, #lnamerow, #email-row, #phone-row {
    position: relative;
	max-width: 480px;
    margin-left: auto;
	margin-right: auto;	
}
.input-validation.processing::after {
    display: block;
}
.input-validation::after {
    content: "";
    position: absolute;
    top: 30%;
    right: 20px;
    width: 20px;
    height: 20px;
    border: 3px solid #555;
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: spin 1s linear infinite;
    display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.hamburger {
	display: flex;
	flex-direction: column;
	cursor: pointer;
}
.hamburger div {
	width: 40px;
	height: 3px;
	background-color: #484848;
    margin: 4px 0;
}
.top-nav-right {
	position:relative;
}
.top-nav-right p{
	color: #333;
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 0;
    margin-right: 20px;
}
.menu {
	list-style: none;
	padding: 0;
	position: absolute;
	top: 50px;
	right: 10px;
	background-color: #fff;
	width: 220px;
	display: none;
	flex-direction: column;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.menu.show {
	display: flex;
}
.menu li {
	padding: 5px 10px;
    text-align: left;
    border-bottom: 1px solid #e3e0e0;
}
.menu li:last-child {
	border-bottom: none;
}
.menu a {
	color: #333;
	text-decoration: none;
	font-size: 15px;
	display: block;
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    box-shadow: none;
}
.input-container {
	position: relative;
	max-width: 480px;
    margin: auto;
    width: 100%;
}
.input-container.address-field{
	max-width: 100%;
}
.input-container input {
	width: 100%;	
	outline: none;
	text-align:left;
}

.input-container label {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.8);
	padding: 0 5px;
	font-size: 16px;
	transition: all 0.3s ease;
	pointer-events: none; 
}
.input-container.income-field input {
 text-align:center;	
}
.input-container.income-field label, .input-container.phone-field label{
	opacity:0;
}
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label {
	top: 0;
	left: 5px;
	font-size: 15px;
	color: #212529;
    background: #ffffff; 
	opacity:1;
}
#phone-row {
    position: relative;
	max-width:450px;
	margin:auto;
}
.more-content {
    border-top: 1px solid #CFCFCF;
}
.more-content p, .more-content img {
    cursor: pointer;
}
.more-content img {
    width: 34px;
    transform: rotate(180deg);
    margin-top: -15px;
    transition: transform 0.3s ease;
}
.more-content .sml img {
    transform: rotate(0deg);
}
.section-content.sml {
    transform: scaleY(1);
    opacity: 1;
    height: auto;
}

.option-select {
    position: relative;
	max-width: 480px;
    margin: auto;	
}

.option-select select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	padding: 12px 15px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	background-color: #fff;
	cursor: pointer;
	outline: none;
	transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.option-select select:focus {
	border-color: #007bff;
	box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.5);
}
.option-select::after {
	content: "▼";
	font-size: 14px;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	pointer-events: none;
	color: #666;
	transition: color 0.3s ease-in-out;
}

.option-select select:hover + ::after,
.option-select select:focus + ::after {
	color: #007bff;
}
#loanRequested {display:inline;}

input:-webkit-autofill {
    background-color: transparent !important;
    color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:focus {
    background-color: transparent !important; 
}

@media screen and (min-width: 768px) {
    .more-content {
        display: none;
    }
}


@media (max-width: 991px) {
.hero ul {
    display: none;
}
.hero p.small-para {
    display: none;
}
.hamburger {
    display: none;
}	
}

@media (max-width: 768px) {

.top-nav-right p {
  margin-right: 0px;
}  
.section-content {
	display: none;
	transform: scaleY(0);
	opacity: 0;
	transform-origin: top;
	transition: transform 0.3s ease, opacity 0.3s ease;
	height: 0;
	overflow: hidden;
}	
.section-content.sml {
	display: block;
	transition: transform 0.3s ease;
}	
.why-choose-us, .loan-options, .how-to-find, .questions, .understand {
    padding: 30px 20px;
}
.why-choose-us.more-content{
    padding: 20px 20px 10px;
}
.question-title {
    font-size: 1.6rem;
}
header .btn-orange { margin-top: 10px; }
.hero h1 { font-size: 2.5em; }
.hero p { font-size: 1em; margin-bottom: 20px;}
.loan-form { max-width: 100%; padding: 20px; }
.why-choose-us .card, .loan-options .card { min-width: 100%; }
.how-to-find { flex-direction: column; text-align: center; }
.how-to-find img { max-width: 100%; }
.questions form { width: 100%; padding: 0 10px; }
.cta h2 { font-size: 2em; }
.understand::after { display: none; }
footer a { margin: 10px 0; }
.understand {
    align-items: flex-start;
    min-height: auto;
    padding-top: 10px;
 }
.cta {
    padding: 20px 10px 15px;
} 
}


@media (max-width: 576px) {
.hero p.text-muted {
    font-size: .7em;
}	
.input-container.address-field {
    max-width: 480px;
}	
.index_footer-inline .inline_item-li a {
    font-size: 14px;
}	
.hero {
    background: #032042;
    min-height: 600px;
    display: block;
}	
.cta-content {
    border-radius: 40px;
}	
.loan-options h2, .how-to-find h2, .why-choose-us h2, .questions h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
  }
.understand h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
	margin-top: 5px;
}
 .cta p {
    font-size: 1.1em;
 }	
.understand .inner-content {
    padding: 20px;
}  
.faq-section {
    padding: 0px 0px;
}  
.questions h2.accordion-header {
    font-size: 1.6em;
    margin-bottom: 0px;   
} 
.accordion-button {
    font-size: 1.2rem;
}
.accordion-body {
    padding-top: 0px;
}  
.form-container h2 {
    font-size: 1.3em;
}
.cta .form-container h2 {
    font-size: 2.2em;
}
header {
    background: #fff;
    padding: 10px 0px;
}
.hero h1 { 
    font-size: 3rem;
    margin-bottom: 10px;
    }
.hero p { font-size: 1em;line-height: 1.1; }
.hero ul li::before {
    font-size: 13px;
    width: 24px;
    height: 24px;
    line-height: 24px;
}
}

@media (max-width: 480px) {
.top-nav-right p {
    font-size: 19px;
	margin-right: 0px;
}	
 .cta p {
    font-size: 1em;
 }	
.cta-content {
    padding: 20px 15px 35px;
}    
.cta .loan-form h2 {
    font-size: 1.4em;
}
.cta .form-container {
    padding: 12px 0px 0px;
}
 .hero ul li {
    margin: 2px 0 0;
    font-size: 1rem;
    line-height: 1.2;
  } 
.hero ul li::before {
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}  
}    

@media (max-width: 400px) {
.hero ul li {
    margin: 2px 0 0;
    font-size: 1rem;
    line-height: 1.1;
 } 
.top-nav-right p {
    font-size: 12px;
 } 
}   

.validation-link a {
    color: white;
    text-decoration: none;
    cursor: pointer;
	font-size: 14px;
} 
.search-page, .results-page{
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    min-height: 600px;
}
.results-page h2 {
    color: #1A1A1A;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -1.4px;
    margin-bottom: 5px;
    margin-top: 10px;
}
.results-page h2 span{
    display: inline-block; 
}
.results-page p.text-company {
    color: #292929;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;    
}
.results-page p.text-duration {
    color: #292929;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
}
.results-page p.text-duration span {
    font-weight: 700;    
}
.results-page p.results-footer{
    color: #292929;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.results-page p.results-footer a{
    color: #004FAA;
}
.results-page img.company-logo{
    width: 100%;
    max-width: 280px;
}
.results-page .results img {
    width: 100%;
    max-width: 150px;
}
@media screen and (max-width: 567px) {
    .search-page, .results-page {
        padding: 30px 10px;
    }
     .results-page p.text-duration {
        font-size: 14px;
     }
    .results-page h2 {
        font-size: 26px;
    }     
}
.results-page img.company-logo {
    width: auto;
}
.arrow-img {
    width: 120px;
}
.results-text {
    max-width: 500px;
    width: 100%;
}