@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,500;0,700;0,800;1,200;1,500;1,700;1,800&display=swap");

:root {
	--primary-color: hsl(151, 78%, 45%);
	--primary-darker-color: hsl(154, 78%, 43%);
	--primary-focus-color: hsl(154, 77%, 38%);
	--secondary-color: hsl(209, 56%, 18%);
	--secondary-darker-color: hsl(209, 61%, 15%);
	--body-text-color: var(--secondary-color);
	--grey-text-color-light: hsl(210deg 27.76% 69.68%);
	--h2-font-size: 2.375rem;
	--section-gray-color: hsl(213, 36%, 95%);
	--mobile-padding: 1rem;
}
/* General */
body {
	background: #f8faff;
	font-family: "Mulish", sans-serif;
}
body h2 {
	margin-top: 10px;
	margin-bottom: 20px;
	font-weight: 800;
	font-size: 2.2rem;
	line-height: 110%;
	color: var(--secondary-color);
}
body h3 {
	margin-top: 10px;
	margin-bottom: 20px;
	font-weight: 800;
	font-size: 1.2rem;
}
button {
	text-align: center;
}
.err-msg {
    background: #fffdfd;
    width: fit-content;
    padding: 0.4rem 1rem;
    border-radius: 0.6rem;
    font-size: 0.8rem;
    color: #da1710;
    margin-top: 1rem;
    border: 2px solid #da1710;
}
.text-cta {
	color: var(--secondary-color);
	text-decoration: underline;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
}
.jade-image {
	border-radius: 10px;
	box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.05);
}
.color-muted {
	color: var(--grey-text-color-light);
}
.cta-modal__phone {
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.4rem;
    max-width: 100%;
    width: fit-content;
    padding: 0.75rem 4rem;
    border-radius: 4em;
    font-weight: 600;
    margin-top: 3rem;
}
html {
	scroll-behavior: smooth;
}
* {
	box-sizing: border-box;
}
.skip-link {
	display: none;
}

.button {
	--icon-gap: 0.4em;
	--transition-duration: 0.5s;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 9.6875rem;
	/* min-height: 3.125rem; */
	min-height: 2.925rem;
	padding: 0.7rem 1.5625rem;
	gap: var(--icon-gap);
	cursor: pointer;
	color: #fff;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	border-radius: 3.125rem;
	font-family: "Avenir Book", var(--font-sans-serif);
	font-size: 0.875rem;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.7px;
	white-space: nowrap;
	text-align: center;
	text-decoration: none;
	transition-timing-function: var(--ease);
	transition-duration: var(--transition-duration);
	transition-property: background-color, color, border-color, transform;
}

/* Header */
.header {
	width: 100%;
	overflow: hidden;
	padding: 20px 0px;
	position: relative;
	background: rgba(255, 255, 255, 0.7);
	border-bottom: solid 1px #fff;
}
.header-inner {
	width: 1280px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	justify-content: space-between;
}

.logo-container {
	float: left;
	max-width: 250px;
	width: 100%;
	margin-top: 6px;
}
.logo-container img {
	max-width: 100%;
	width: 9rem;
}
.header-cta-wrapper {
	display: flex;
	align-content: center;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 4rem;
}

@media (max-width: 75rem) {
	.header {
		padding: var(--mobile-padding);
	}
}

/* CTA Contact Number Header CSS */
a.phone-cta, a.email-cta {
	position: relative;
	transition: all 0.2s ease;
	margin: 1rem auto;
	display: flex;
	align-content: center;
	align-items: center;
	padding: 1rem 2rem;
}
a.phone-cta span::before {
	content: url("/wp-content/uploads/small-phone-icon.png");
}
a.email-cta span::before {
	content: url("/wp-content/uploads/small-email-icon.png");
}
a.email-cta span {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--secondary-color);
	vertical-align: middle;
	line-height: 1.3rem;
}
a.phone-cta span {
	font-size: 22px;
	line-height: 22px;
	font-weight: 900;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
a.phone-cta span, a.email-cta span {
	position: relative;
	color: var(--body-text-color);
	vertical-align: middle;
}
a.phone-cta::before, a.email-cta::before {
	position: absolute;
	content: "";
	display: flex;
	align-content: center;
	align-items: center;
	transition: all 0.3s ease;
	width: 56px;
}
a.phone-cta ::before, a.email-cta ::before {
	content: "";
	position: absolute;
	top: 0;
	left: -35px;
	transition: all 0.3s ease;
}
a.phone-cta svg {
	position: relative;
	top: 0;
	margin-left: 10px;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke: var(--primary-color);
	stroke-width: 2;
	transform: translateX(-5px);
	transition: all 0.3s ease;
}
a.phone-cta:hover::before, a.email-cta:hover::before {
	width: 100%;
	background: var(--secondary-color);
	border-radius: 4em;
	display: flex;
	position: absolute;
	height: 56px;
	left: -1rem;
}
a.phone-cta:hover span, a.email-cta:hover span {
	color: #fff;
}
a.phone-cta:hover svg, a.email-cta:hover svg {
	transform: translateX(0);
}
a.phone-cta:active, a.email-cta:active {
	transform: scale(0.96);
}
@media (max-width: 48rem) {
	.logo-container {
		width: fit-content;
		display: flex;
		align-items: center;
	}
	.logo-container img {
		width: 9rem;
	}
	.header-cta-wrapper {
		display: none;
	}
	.header-cta-mb-wrapper {
		display: flex;
		align-items: center;
		gap: 2rem;
		padding-right: 2rem;
	}
	a.email-mb-cta,
	a.phone-mb-cta {
		height: 2.8rem;
		display: flex;
	}
	.header-cta-mb-wrapper img {
		width: auto;
		object-fit: contain;
	}
	img.partner__logo {
		margin: 2rem auto;
		height: 7rem;
	}
	img.mobile-partner__logo {
		margin: 1rem auto 2.5rem;
	}
	div.header-cta-wrapper {
		float: none;
	}
	div.header-cta-wrapper a.phone-cta {
		position: relative;
		transition: all 0.2s ease;
		float: none;
		margin: 0 auto;
		padding: 16px 20px 16px 50px;
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		background: rgba(20, 46, 70, 1);
	}
	div.header-cta-wrapper a.phone-cta::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		border-radius: 28px;
		width: 56px;
		height: 56px;
		transition: all 0.3s ease;
	}
	div.header-cta-wrapper a.phone-cta span {
		position: relative;
		font-size: 22px;
		line-height: 22px;
		font-weight: 900;
		letter-spacing: 0.15em;
		text-transform: uppercase;
		color: #fff;
		vertical-align: middle;
	}
	div.header-cta-wrapper a.phone-cta span::before {
		content: url("/wp-content/uploads/small-phone-icon.png");
		position: absolute;
		top: 0;
		left: -35px;
		display: flex;
		border-radius: 28px;
		transition: all 0.3s ease;
		align-content: center;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		width: 30px;
		height: 30px;
	}
	div.header-cta-wrapper a.phone-cta svg {
		position: relative;
		top: 0;
		margin-left: 10px;
		fill: none;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke: var(--primary-color);
		stroke-width: 2;
		transform: translateX(-5px);
		transition: all 0.3s ease;
	}
	div.header {
		border-bottom: 0;
		background: var(--secondary-color);
	}
}
/* End of Header */
/* JF Columns */

.jf-wrap-all {
	width: 100%;
}
.jf-full-row {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
}
.jf-full-row-inner {
	width: 1280px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	flex-wrap: wrap;
	display: flex;
}
.jf-full-width-inner {
	width: 1920px !important;
}

.jf-col-2,
.jf-col-3,
.jf-col-4,
.jf-col-6,
.jf-col-12,
.jf-col-8,
.jf-col-fifth,
.jf-col-2-fifth,
.jf-col-3-fifth {
	margin: 1%;
	background-color: rgba(0, 0, 0, 0);
}
.jf-col-12 {
	width: 98%;
}
.jf-col-6 {
	width: 48%;
}
.jf-col-8 {
	width: 64.666%;
}
.jf-col-4 {
	width: 31.333%;
}
.jf-col-3 {
	width: 23%;
}
.jf-col-2 {
	width: 14.666%;
}
.jf-col-fifth {
	width: 18%;
}
.jf-col-2-fifth {
	width: 38%;
}
.jf-col-3-fifth {
	width: 58%;
}
.jf-no-padding {
	padding-top: 0;
	padding-bottom: 0;
}
.jf-small-padding {
	padding-top: 15px;
	padding-bottom: 15px;
}
.jf-large-padding {
	padding-top: 50px;
	padding-bottom: 50px;
}
.jf-xl-padding {
	padding-top: 80px;
	padding-bottom: 80px;
}

::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #444444;
	opacity: 1; /* Firefox */
}
/* Section 1 */
.section-1 {
	padding: 6rem 0;
	overflow: hidden;
	background-color: #f8faff;
	background-size: contain;
	background-position: center right;
	background-repeat: no-repeat;
	-webkit-mask-image: linear-gradient(180deg, #142e46 90%, transparent);
	mask-image: linear-gradient(180deg, #142e46 90%, transparent);
	position: relative;
	background-position: right center;
}
.section-1 .jf-full-row-inner {
	align-items: center;
}
.section-1 .jf-full-row-inner .jf-col-6 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

ul.intro-features {
	width: 100%;
	list-style-type: none;
	display: flex;
}
ul.intro-features li.outline {
	color: var(--secondary-color);
	padding-left: 35px;
	margin-right: 25px;
	background-image: url("wp-content/uploads/jade-check-solid.svg");
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 1rem;
}

ul.intro-features li.inverse {
	background-image: url("/wp-content/uploads/jade-check-solid.svg");
}
ul.intro-features li.outline {
	background-image: url("/wp-content/uploads/jade-check-solid.svg");
}
.section-1 h1 {
	color: #142e46;
	font-weight: 800;
	font-size: 3.5rem;
	line-height: 110%;
}
.section-1 .strap {
	color: #142e46;
	font-size: 2rem;
	margin: .9rem 0 1.1rem; 
	font-weight: 800;
	line-height: 110%;
}
.partner__logo {
	width: auto;
	border-radius: 1rem;
	box-shadow: 1px 2px 8px #5d5d5d;
	margin-bottom: 1rem;
	height: 10rem;
	padding: 0.5rem;
	background: #fff;
}
.section-1__tag {
	width: 21rem;
	max-width: 100%;
	opacity: 0.3;
}
.show-on-mobile {
	display: none;
}
/* CTA Buttons */
.section-1-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 2rem;
}
.section-1-cta__buttons button {
	display: flex;
	background: var(--primary-color);
	color: #f5f5f5;
	border-radius: 4em;
	text-align: center;
	padding: 1rem 2rem;
	font-size: 1.4rem;
	font-weight: bold;
	align-items: center;
	gap: 1rem;
	justify-content: center;
	transition: all 2s ease-in-out;
	transition-duration: 500ms;
}
.section-1-cta__buttons button:hover {
	transform: scale(1.1);
}
.section-1-cta__buttons button:hover svg {
	transform: translateX(5px);
}

@media (max-width: 75rem) {
	section.section-1 {
		background-size: cover;
		background-position: 8rem top;
		padding: 5rem 1rem;
	}
}
@media (max-width: 48rem) {
	section.section-1 {
		background-image: none !important;
		background: var(--secondary-color);
		padding: 2rem 1rem 0;
		-webkit-mask-image: none;
		mask-image: none;
	}
	section.section-1 .jf-full-row-inner .jf-col-6 {
		width: 100%;
	}
	section.jf-full-row.section-1 h1 {
		text-align: left;
		margin: 1rem auto .3rem;
		font-size: 2.4rem;
		color: #fff;
	}
	p.subheading {
		text-align: left;
		font-size: 1.2rem;
		font-weight: 600;
	}
	section.jf-full-row.section-1 ul.intro-features {
		width: 100%;
		text-align: left;
		margin-bottom: 1.5rem;
		justify-content: center;
		gap: 1rem;
	}
	section.jf-full-row.section-1 ul.intro-features li {
		line-height: 1rem;
		padding-left: 25px;
		margin-right: 0;
		font-size: .85rem;
		color: #fff;
	}

	/* CTA Buttons */
	section.section-1 .section-1-cta__buttons {
		gap: 1rem;
		justify-content: center;
		margin: 0 auto 1rem;
	}
	section.section-1 .section-1-cta__buttons button {
		padding: .7rem 1.5rem;
		font-size: 1.1rem;
	}

	input.quick-quote-loan-amount {
		font-size: 1.8rem;
		font-weight: 600;
		min-height: 3rem;
		padding: 0 3rem;
		border-radius: 10px;
		color: var(--secondary-color);
		background-color: hsl(220, 36%, 95%);
		border: 1px solid transparent;
		appearance: none;
		-webkit-appearance: none;
		width: 100%;
		max-width: 100%;
		position: relative;
	}

	.section-1_qlf_ffield {
		position: relative;
        margin: 1rem auto 0;
        flex-direction: column;
	}

	.section-1_qlf_ffield::before {
		content: "$";
		position: absolute;
		width: 3rem;
		color: var(--primary-color);
		height: 3rem;
		pointer-events: none;
		font-size: 1.6rem;
		font-weight: bold;
		inset: 0;
		z-index: 1;
		display: flex;
		align-content: center;
		justify-content: center;
		align-items: center;
	}
}
/* End of Section 1 */
/* Section 2 */
section.jf-full-row.section-2 {
	margin-top: -8rem;
	position: relative;
}
.loan-types {
	--gap-bottom: 25px;
	--margin-top: 100px;
	border-radius: 25px;
	padding: 30px 25px 25px;
	background-color: #d3e0f5;
	color: var(--secondary-darker-color);
}
.loan-types__heading {
	font-size: 1.75rem;
	margin-bottom: 25px;
}
.loan-types__list {
	list-style-type: none;
	display: grid;
	-moz-column-gap: 18px;
	column-gap: 18px;
	row-gap: 18px;
}
.types-list {
	--margin: 50px;
	color: #fff;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin: 0;
	padding: 0;
}

.types-list__heading {
	cursor: default;
	font-size: 1.3rem;
	margin-bottom: 35px;
}

.types-list__mobile-link {
	display: none;
}

.types-list-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	background-color: var(--secondary-color);
	min-height: 14.5625rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
}

.types-list-item:last-child {
	display: none;
}

.types-list-item .button {
	padding: 5px 10px;
	max-width: 100%;
	min-width: 0px;
	width: 8.4375rem;
	font-size: 0.75rem;
	min-height: 2.5rem;
	margin-bottom: calc(-1 * var(--margin) - 20px);
	transition-property: margin, transform, background-color, color, border-color;
	transition-timing-function: var(--ease);
	transition-duration: 0.5s;
}

.types-list-item>* {
	position: relative;
	z-index: 2;
}

.types-list-item:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 200%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(20, 46, 70, 0) 0%, var(--secondary-color) 50%, var(--secondary-color) 100%);
	transition: top 0.5s var(--ease);
}

@media (max-width: 75rem) {
	section.jf-full-row.section-2 {
		margin-top: -4rem;
		padding: var(--mobile-padding);
	}
}

@media (max-width: 48rem) {
	.section-2 ul.types-list {
		grid-template-columns: repeat(2, 1fr);
		-moz-column-gap: 20px;
		column-gap: 20px;
		row-gap: 20px;
	}
	section.jf-full-row.section-2 {
		margin-top: 0;
		position: relative;
		background: var(--secondary-color);
		margin-bottom: 2rem;
	}
	.section-2 .types-list__item {
		flex: 0 0 85%;
		scroll-snap-align: start;
		max-width: 20rem;
	} 
	ul.types-list .button,
	ul.types-list .types-list-item a.button svg{
		display: none;
	}
	.types-list__heading.h3 {
		font-size: 1rem;
        text-align: center;
        line-height: 1rem;
        font-weight: 600;
		margin-bottom: 0;
	}
	.types-list > :last-child {
		display: flex;
	}
	ul.types-list li.types-list-item {
		border: .3rem solid var(--primary-color);
		justify-content: end;
		min-height: 5rem;
		cursor: pointer;
		aspect-ratio: 1;
	}
	ul.types-list .types-list__mobile-link.alink{
		display: inline-block;
		font-size: 1.05rem;
		border-radius: 4rem;
		margin: 0 auto;
		min-height: 3.5rem;
		width: 80%;
		max-width: 100%;
		pointer-events: all;
		text-align: center;
		align-content: center;
		font-weight: bold;
		position: absolute;
	}
	div.loan-types {
		background: transparent;
		padding: 1rem 0;
	}
}
/* End of Section 2 */
/* Section 3 */
.section-3__card {
	display: grid;
}

.section-3__card h2 {
	font-size: var(--h2-font-size);
}

.section-3__image {
	max-width: 100%;
	max-height: 14rem;
	justify-self: end;
	align-self: end;
	padding-right: 3rem;
	position: absolute;
	bottom: 0;
	right: 0;
}
.section-3__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	grid-gap: 2rem;
	grid-template-rows: auto auto;
}

.section-3__info-main-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	grid-row: span 1;
	grid-column: span 2;
	position: relative;
}

.section-3__info-main {
	width: 70%;
	text-wrap: balance;
}

.section-3__card__heading {
	position: relative;
}

.section-3__info {
	color: var(--secondary-color);
	padding: 2rem;
	background-color: white;
	border-radius: 1rem;
	overflow: clip;
	border: 2px solid var(--section-gray-color);
	max-height: fit-content;
}

.section-3__info--feature-border {
	border-left: 5px solid var(--primary-color);
}

.section-3__buttons {
	display: flex;
	gap: 2rem;
	padding-top: 1rem;
	width: fit-content;
}

.section-3-buttons__info {
	display: flex;
	gap: 0.25rem;
	align-items: center;
}

.buttons-info__text {
	font-weight: bold;
}

@media (max-width: 75rem) {
	section.jf-full-row.section-3 {
		padding: var(--mobile-padding);
	}
}

@media (max-width: 48rem) {
	/* Section 3 */
	.section-3__card {
		display: block;
		background: none;
		border: none;
		padding: 0;
	}

	.section-3__grid {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		padding: 0;
		border: none;
	}

	.section-3__info:not(#about__info-main) {
		background-color: white;
		border: 2px solid var(--section-gray-color);
		border-radius: 1rem;
		padding: 1.5rem;
	}

	.section-3__info-main-wrapper {
		background-color: white;
		border: 2px solid var(--section-gray-color);
		border-radius: 1rem;
		padding: 1rem;
		display: flex;
		flex-direction: column;
		order: 2;
	}

	.section-3__info-main {
		padding: 0 0 10rem;
		border: none;
		width: 100%;
	}

	.section-3__image {
		padding: 0;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: -1.5rem;
		padding-top: 1.5rem;
	}

	.section-3__buttons {
		flex-direction: column;
	}
}
/* End of Section 3 */
/* Section 4 */
.section-4 {
	padding-top: 0;
}
.section-4 h2 {
	font-size: var(--h2-font-size);
}
@media (max-width: 75rem) {
	section.jf-full-row.section-4 {
		padding: var(--mobile-padding);
	}
}
@media (max-width: 48rem) {
	section.jf-full-row.section-4 div#jFconsulation {
		border-radius: 1rem;
		padding: .5rem;
		background: white;
		box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.15);
	}
}
@media (max-width: 36rem) {
	section#jfConsultation.jf-full-row.section-4 {
		display: none;
	}
}
/* End of Section 4 */
/* Section 5 */
.section-5 .jf-full-row-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}
.img-extra-padding {
	padding-right: 1rem;
}
.section-5 .jf-col-6 {
	justify-content: end;
}
.section-5 p {
	margin-bottom: 1rem;
}
@media (max-width: 75rem) {
	section.jf-full-row.section-5 {
		padding: var(--mobile-padding);
	}
	section.section-5 p {
		font-size: .9rem;
	}
}

@media (max-width: 48rem) {
	section.section-5 .jf-col-6 {
		width: 100%;
		padding: 0 1rem;
	}
	section.section-5 .jf-col-6 img {
		margin: 0 auto;
	}
}
/* End of Section 5 */
/* Section 6 - Jade Calculator */
.jade-calculator {
	background: #f8faff;
	margin-top: 6rem;
	padding-top: 9rem;
	border-top: solid 1px #e5e6f0;
	position: relative;
	isolation: isolate;
}
.jade-calculator .calc__bg {
	background-size: cover;
	position: absolute;
	z-index: -10;
	inset: 0;
	height: 100%;
	width: 100%;
}
.jade-calculator .img__overlay {
	--gradient-via-position: 44%;
	--gradient-stops: var(--secondary-color) var(--gradient-via-position),var(--secondary-color),var(--secondary-darker-color);
	position: absolute;
	z-index: -10;
	inset: 0;
	background: linear-gradient(to right,var(--gradient-stops));
	opacity: .85;
}
.calc__wrapper {
	width: 70rem;
	display: block;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 1.2rem 1.2rem 0 0;
	box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.05);
	padding-bottom: 20px;
	margin-bottom: 10rem;
	position: relative;
	max-width: 100%;
}
.calc__wrapper div#jFtriggerCalc {
	padding: 1rem;
}
.jade__calcDisc {
	background: #f5f8fe;
	font-size: 0.8rem;
	padding: 1rem 3rem;
	border-radius: 0 0 10px 10px;
	position: absolute;
	overflow: hidden;
}
.jf-full-row.rating__sec {
	background: #fff;
}
section.jf-full-row.g__reviews {
	padding: 2rem 1rem 0;
}
@media (max-width: 75rem) {
	section.jf-full-row.jade-calculator {
		padding: 9rem 1.5rem 0;
	}
}
@media (max-width: 48rem) {
	section.jade-calculator .calc__bg {
		object-fit: cover;
	}
	.calc__wrapper div#jFtriggerCalc {
		padding: 0;
	}
	.jade__calcDisc {
		padding: 1rem;
	}
}
@media (max-width: 36rem) {
	section.jf-full-row.jade-calculator {
		padding: 9rem 1.5rem 6rem;
	}
}
/* End of Section 6 - Jade Calculator */
/* CTA Section */
.cta-divider {
	background-color: #0f273d;
	background-image: url('/wp-content/uploads/dark-angle-bg.svg');
	background-repeat: no-repeat;
	background-position: right;
	background-size: 50%;
}
.cta-divider .jf-col-6:first-child {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.cta-divider h3 {
	color: #fff;
	font-weight: 400;
	margin: 0 auto;
}
.cta-divider h3 span {
	font-weight: 800;
}
.cta-divider .jade-standard-cta {
	width: fit-content;
	background-color: #17b57c;
	color: #ffffff;
	padding: 0.8rem 8rem;
	text-align: center;
	border-radius: 5px;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.08);
	border: solid 1px #6ceaad;
	font-size: 1.4rem;
	font-weight: bold;
	display: block;
	margin: 0 auto;
}
.cta-divider .jade-standard-cta:hover {
	background: #018555;
	border: solid 1px #6ceaad;
}
.cta-divider .jf-col-6:last-child p {
	font-size: 12px;
	padding-top: 10px;
	padding-bottom: 0;
	color: #fff;
	width: 100%;
	text-align: center;
	float: left;
	margin-bottom: 0;
}
@media (max-width: 48rem) {
	.jf-full-row.jf-small-padding.cta-divider .jf-full-row-inner {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		align-content: center;
	}
	.cta-divider .jf-col-6 {
		width: 100%;
	}
	.cta-divider h3 {
		padding: 1rem 4rem;
		text-align: center;
	}
}
/* End of CTA Divider */
/* Modal */
.jade-fullscreen-quote {
	position: fixed;
	z-index: 200;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow-y: auto;
	width: 100%;
	height: 100%;
	background: #f5f8fe;
	background-size: contain;
	background-position: right center;
	background-repeat: no-repeat;
	background-image: url(/wp-content/uploads/light-bg.svg);
}
.qq-close {
	position: fixed;
	z-index: 300;
	width: 20px;
	height: 20px;
	right: 70px;
	top: 70px;
	cursor: pointer;
}
.jade-fullscreen-quote .jf-col-12,
.jade-fullscreen-quote .jf-col-8 {
	background: #fff;
	padding: 5px;
	border-radius: 1rem;
	z-index: 2;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.05);
	margin-top: 10%;
}
.jade-fullscreen-quote .jf-full-row-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.jade-fullscreen-quote .jf-full-row {
	background: transparent;
}

.jade-fullscreen-quote .qq-logo {
	width: 12rem;
}
@media (max-width: 48rem) {
	.jade-fullscreen-quote {
		background-image: none;
	}
	.jade-fullscreen-quote .jf-full-row-inner {
		padding: 0 1rem;
	}
	.jade-fullscreen-quote .jf-col-8 {
		width: 100%;
	}
	.jade-fullscreen-quote .qq-close {
		top: 1rem;
		right: 1rem;
		position: absolute;
	}
}
/* End of Modal */
/* FBAA component */
.fbaa-sec__container {
	margin: -17rem auto 4rem;
	width: fit-content;
}
.fbaa-sec__wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border: dotted 1px #a7b7d3;
	padding: 2.2rem 2rem;
	margin-top: 50px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.02);
	gap: 2rem;
}
.fbaa-sec__wrapper img:last-child {
	width: 6rem;
	margin-top: 0.2rem;
}
.fbaa-sec__wrapper div:first-child {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.google-rating__text {
	--primary-color: #0f273e;
	color: var(--primary-color);
	margin-right: 0.5rem;
	font-size: 1.65rem;
	font-weight: 600;
	padding-bottom: 0;
	margin-bottom: 0;
}
.google-rating__flex-div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.fbaa-sec__textWrapper p {
	padding-bottom: 0;
}
.fbaa-sec__textWrapper p:first-child {
	--primary-color: #0f273e;
	color: var(--primary-color);
	font-weight: 600;
	font-size: 1.4rem;
}
.fbaa-sec__textWrapper p:last-child {
	color: #9b9b9b;
}
.fbaa-sec__logoWrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	align-self: center;
	padding-left: 1rem;
	border-left: solid 1px #e5edfa;
}
.fbaa-sec__logoImg {
	--primary-color: #0f273e;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	align-self: center;
	fill: var(--primary-color);
}
.fbaa-sec__logoText {
	--primary-color: #0f273e;
	font-size: 0.5rem;
	text-transform: uppercase;
	font-family: sans-serif;
	font-weight: 100;
	letter-spacing: 0.2rem;
	text-align: match-parent;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.5rem;
	color: var(--primary-color);
	padding-bottom: 0;
}
@media (max-width: 48rem) {
	.fbaa-sec__wrapper {
		flex-direction: column;
		gap: 1rem;
	}
	.fbaa-sec__textWrapper {
		text-align: center;
	}
	.fbaa-sec__logoWrapper {
		border: 0;
	}
}
/* end of FBAA component */
/* Google Strap */
.google-container__flex-div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	gap: 0.8rem;
	margin: 0 auto;
}
.google-reviews-section__text {
	--primary-color: #0f273e;
	color: var(--primary-color);
	font-size: 1rem;
	padding-bottom: 0;
}
.google-reviews-tag__text {
	--primary-color: #0f273e;
	color: var(--primary-color);
	margin-right: 0.5rem;
	font-size: 1.65rem;
	font-weight: 600;
	padding-bottom: 0;
}
img.google-reviews-rating__image {
	height: auto;
	width: 9rem;
}
@media (max-width: 48rem) {
	.google-container__flex-div {
		flex-direction: column;
		gap: 0.2rem;
	}
	.calc__wrapper {
		margin-bottom: 14rem;
	}
}
/* end of Google Strap component */
/*Awards Section*/
#awards-sec {
	background: #fff;
	margin-bottom: 1rem;
}
#awards-sec .jf-full-row-inner {
	text-align: center;
	align-items: center;
	justify-content: center;
}
.ss-awards-group {
	display: flex;
	margin-bottom: 1rem;
}
.ss-awards-wrapper {
	display: flex;
	justify-content: center;
}
.ss-awards-wrapper img {
	width: auto;
	height: 7.5rem;
	object-fit: contain;
	margin-left: -1.2rem;
}
.ss-awards-wrapper img:hover {
	transform: scale(1.05);
}
@media (max-width: 75rem) {
	#awards-sec .ss-awards-wrapper img {
		height: 4.2rem;
	}
}
@media (max-width: 48rem) {
	#awards-sec.awards-banner {
		margin-bottom: 0;
		padding: 0;
	}
	#awards-sec .ss-awards {
		max-width: 100%;
	}
	#awards-sec .ss-awards-group {
		padding-left: 0.5rem;
		flex-direction: column;
	}
	#awards-sec .ss-awards-wrapper img {
		height: 2.8rem;
	}
}
/* end of Awards Section component */
/*Lender Section*/
.lender-slider {
	--primary-color: #0f273d;
	background: var(--primary-color);
	padding: 1.3rem;
}
.lender-slider__container {
	overflow: hidden;
	white-space: nowrap;
	box-sizing: border-box;
}
.lender-slider__div {
	display: flex;
	justify-content: center;
}
.lender-slider__div .lender-slider__imgs {
	height: auto;
	margin: 0 auto;
	vertical-align: middle;
	flex-shrink: 0;
	filter: brightness(0) invert(1);
	transition: filter 0.5s ease;
	width: 10.25rem;
	object-fit: contain;
}
@media (max-width: 48rem) {
	div.lender-slider {
		margin-top: 0;
	}
	div.lender-slider__div {
		display: grid;
		grid-template-columns: 1fr 1fr;
		row-gap: 0;
		column-gap: 4rem;
		align-items: center;
	}
	img.lender-slider__imgs {
		margin: 0 auto;
	}
}
/* end of Lender Section component */
/* Footer */
#footer {
	display: flex;
	align-content: center;
}
#footer .jf-full-row-inner {
	align-items: flex-start;
	justify-content: center;
}
#footer .jf-col-3 img {
	height: 6rem;
	width: auto;
	max-width: 100%;
}
#footer .jf-col-3 a {
	display: flex;
}
#footer .jf-col-3 h4 {
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
	text-transform: capitalize;
}
#footer .jf-col-3 p {
	margin-bottom: 0;
	padding-bottom: 0;
}
.copyright {
	display: flex;
	justify-content: center;
	text-align: center;
	align-content: center;
	align-items: center;
	padding: 1rem;
}
.copyright .separator {
	color: var(--primary-color);
}
@media (max-width: 48rem) {
	#footer{
		padding: 3rem 1rem 2rem;
	}
	#footer .jf-full-row-inner {
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	#footer .jf-col-3 h4 {
		margin-top: 1rem;
	}
	#footer .jf-col-3 img {
		margin: 0 auto 1rem;
	}
	#footer .jf-col-3 a {
		margin: 0 auto;
		justify-content: center;
	}
	.copyright {
		padding: 1rem 2rem;
	}
	#footer .jf-col-3 {
		width: 100%;
	}
}
/* End of Footer */
/* Privacy Policy */
body.privacy-policy .jf-full-row{}
body.privacy-policy .entry-content h4 {
	font-size: 1.75rem;
	margin-top: 1.2rem;
	margin-bottom: 1rem;
	font-weight: 600;
	color: var(--secondary-color);
}
body.privacy-policy .entry-content p {
	font-size: 1rem;
	margin-bottom: 1rem;
}
body.privacy-policy .entry-content ul {
	margin: 1rem 2rem;
	padding 0;
}
body.privacy-policy .entry-content ul li {
	margin-left: 1rem;
	list-style-position: outside;
	list-style-type: disc;
}
/* End of Privacy Policy */

/* Other Media Queries */
@media (max-width: 48rem) {
	.hide-on-mobile {
		display: none !important;
	}
	.show-on-mobile {
		display: flex !important;
	}
}
@media (min-width: 64.0625rem) {
	.types-list-item:hover:before {
		top: -100%;
		transition-duration: 0.3s;
	}
	.types-list-item .button:before {
		content: "";
		position: absolute;
		z-index: 2;
		background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1hcnJvdy1yaWdodC1pY29uIGx1Y2lkZS1hcnJvdy1yaWdodCI+PHBhdGggZD0iTTUgMTJoMTQiLz48cGF0aCBkPSJtMTIgNSA3IDctNyA3Ii8+PC9zdmc+);
		background-repeat: no-repeat;
		right: 1rem;
		top: .5rem;
		height: 1.32rem;
		width: 1.3rem;
		background-size: contain;
	}
	.types-list-item:hover .button {
		margin-bottom: 0;
		transition-duration: 0.3s;
	}
}