@charset "UTF-8";

/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap");

/* _variables.scss */

/* _reset.scss */

/* Box sizing and font scaling */
html {
	box-sizing: border-box;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}

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

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
dl,
dd {
	margin: 0;
	padding: 0;
}

/* Remove list styles */
ul[role="list"],
ol[role="list"],
ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Remove default anchor styling */
a {
	text-decoration: none;
	color: inherit;
}

/* Make images responsive */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Remove form element defaults */
input,
button,
textarea,
select {
	font: inherit;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
}

/* Prevent text overflow */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

/* Set base body style */
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Remove table spacing */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #9a9a9a;
	background-color: #fff;
	line-height: 1.6;
	touch-action: manipulation;
	overflow-x: hidden;
}

::-webkit-scrollbar {
	background-color: #000;
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-color: #ffd460;
}

::selection {
	color: #000;
	background-color: #ffd460;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.column {
	flex: 1 0 0%;
	max-width: 100%;
}

.col-1 {
	flex: 0 0 8.33333%;
	max-width: 8.33333%;
}

.col-2 {
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.col-5 {
	flex: 0 0 41.66667%;
	max-width: 41.66667%;
}

.col-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	flex: 0 0 58.33333%;
	max-width: 58.33333%;
}

.col-8 {
	flex: 0 0 66.66667%;
	max-width: 66.66667%;
}

.col-9 {
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	flex: 0 0 83.33333%;
	max-width: 83.33333%;
}

.col-11 {
	flex: 0 0 91.66667%;
	max-width: 91.66667%;
}

.col-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

.hidden {
	display: none !important;
}

.spinner-border {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	vertical-align: text-bottom;
	border: 0.25em solid #000;
	border-right-color: transparent;
	border-radius: 50%;
	animation: spinner-border 0.75s linear infinite;
}

.button-spinner {
	margin-left: 5px;
}

@keyframes spinner-border {

	to {
		transform: rotate(360deg);
	}
}

header {
	position: sticky;
	color: white;
	top: 0;
	z-index: 1000;
	transition: background 0.3s ease;
}

header.blur-header {
	background: rgba(20, 20, 20, 0.6);
	backdrop-filter: blur(16px);
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

header .logo {
	flex: 25%;
	display: flex;
	justify-content: start;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
}

header .logo a {
	display: inline-block;
}

header #barker-logo-header {
	height: 33px;
}

header #barker-logo-circle-header {
	display: none;
	height: 100px;
}

header .main-nav {
	flex: 50%;
}

header .main-nav ul {
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .main-nav ul .menu-item {
	display: inline-block;
}

header .main-nav ul .menu-item a {
	position: relative;
	color: white;
	text-decoration: none;
	transition: color 0.5s ease;
	padding: 1.5rem 0;
}

header .main-nav ul .menu-item a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 12px;
	height: 2px;
	width: 40px;
	opacity: 0;
	transition: opacity 0.5s ease;
}

header .main-nav ul .menu-item a:hover {
	color: #ffe08b;
}

header .main-nav ul .menu-item a:hover::after {
	background: #ffe08b;
	opacity: 1;
}

header .main-nav ul .menu-item-has-children {
	position: relative;
	cursor: pointer;
}

header .main-nav ul .menu-item-has-children .sub-menu {
	display: none;
	position: absolute;
	left: 0;
	top: 20px;
	padding-top: 28px;
	min-width: 180px;
	z-index: 1002;
}

header .main-nav ul .menu-item-has-children .sub-menu .menu-item {
	display: block;
	text-align: left;
	background: rgba(20, 20, 20, 0.6);
	backdrop-filter: blur(6px);
}

header .main-nav ul .menu-item-has-children .sub-menu .menu-item a {
	font-size: 1rem;
	color: #fff;
	padding: 10px 24px;
	display: block;
	transition: background 0.2s, color 0.2s;
}

header .main-nav ul .menu-item-has-children .sub-menu .menu-item a::after {
	content: none;
}

header .main-nav ul .menu-item-has-children .sub-menu .menu-item a:hover {
	background: #ffd460;
	color: #000;
}

header .main-nav ul .menu-item-has-children:hover > .sub-menu,
header .main-nav ul .menu-item-has-children:active > .sub-menu {
	display: block;
}

header .main-nav ul .current_page_item a,
header .main-nav ul .current-menu-ancestor a {
	color: #ffd460;
}

header .main-nav ul .current_page_item a::after,
header .main-nav ul .current-menu-ancestor a::after {
	background: #ffd460;
	opacity: 1;
}

header .main-nav ul .current-menu-ancestor .current_page_item a {
	background: #ffd460;
	color: #000;
}

header .header-cta {
	display: flex;
	justify-content: end;
	flex: 25%;
}

header .header-cta a {
	font-size: 1rem;
	line-height: 1rem;
	color: #000;
	background: #ffd460;
	padding: 8px 20px;
	border-radius: 30px;
}

.burger-menu {
	display: none;
	position: fixed;
	top: 20px;
	right: 20px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	cursor: pointer;
	margin-left: auto;
	z-index: 2001;
}

.burger-menu span {
	display: block;
	height: 3px;
	width: 100%;
	background: #fff;
	margin: 4px 0;
	border-radius: 2px;
	transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

.mobile-navigation {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background: #000;
	z-index: 1000;
	flex-direction: column;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-navigation .mobile-nav-logo {
	text-align: center;
	margin-bottom: 4rem;
}

.mobile-navigation .mobile-nav-logo a {
	display: inline-block;
}

.mobile-navigation .mobile-nav-logo a img {
	max-width: 70px;
	width: 100%;
	height: auto;
}

.mobile-navigation .menu-header-menu-container {
	width: 100%;
	height: 100%;
}

.mobile-navigation .menu-header-menu-container ul {
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
}

.mobile-navigation .menu-header-menu-container ul .menu-item {
	margin: 2rem 0;
	text-align: center;
}

.mobile-navigation .menu-header-menu-container ul .menu-item:first-child {
	margin-top: 0;
}

.mobile-navigation .menu-header-menu-container ul .menu-item:last-child {
	margin-bottom: 0;
}

.mobile-navigation .menu-header-menu-container ul .menu-item a {
	font-size: 1.5rem;
	line-height: 1.5rem;
}

.mobile-navigation .menu-header-menu-container ul .menu-item-has-children {
	position: relative;
}

.mobile-navigation .menu-header-menu-container ul .menu-item-has-children .sub-menu {
	display: none;
	position: static;
	background: none;
	box-shadow: none;
	padding: 0;
	margin: 1rem 0;
}

.mobile-navigation .menu-header-menu-container ul .menu-item-has-children .sub-menu .menu-item {
	margin: 1rem 0;
}

.mobile-navigation .menu-header-menu-container ul .menu-item-has-children .sub-menu .menu-item a {
	font-size: 1.5rem;
}

.mobile-navigation .menu-header-menu-container ul .menu-item-has-children.active > .sub-menu {
	display: block;
}

.mobile-navigation .menu-header-menu-container ul .current-menu-ancestor > a {
	color: #ffd460;
}

.mobile-navigation .menu-header-menu-container ul .current_page_item a {
	color: #ffd460;
}

.mobile-navigation .mobile-nav-cta {
	margin-top: 4rem;
}

.mobile-navigation .mobile-nav-cta a {
	font-size: 1.5rem;
	line-height: 1.5rem;
	color: #000;
	background: #ffd460;
	padding: 10px 30px;
	border-radius: 30px;
}

.mobile-navigation.active {
	display: flex;
}

footer {
	background-color: #000;
}

footer .upper-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 100px 0;
}

footer .upper-footer h2 {
	font-size: 3rem;
	line-height: 3rem;
	color: #fff;
	text-align: center;
	font-weight: 500;
}

footer .upper-footer h2 strong {
	color: #ffd460;
	font-weight: 500;
}

footer .upper-footer .btn-yellow {
	background: #ffd460;
	color: #000;
	padding: 5px 25px;
	border-radius: 15px;
}

footer .footer-hl {
	height: 2px;
	background: #fff;
	opacity: 0.24;
	width: 95vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

footer .lower-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .lower-footer .footer-nav-left,
footer .lower-footer .footer-nav-right {
	flex: 1;
	display: flex;
	flex-direction: column;
}

footer .lower-footer .footer-logo {
	flex: 1;
}

footer .lower-footer .footer-nav {
	display: flex;
	flex: 1;
	padding: 100px 0 50px;
}

footer .lower-footer .footer-nav ul li {
	margin-bottom: 20px;
}

footer .lower-footer #barker-logo-footer {
	height: 60px;
}

footer .footer-copright p {
	font-size: 1rem;
	line-height: 1.5rem;
	padding: 20px 0;
	color: #9a9a9a;
	text-align: center;
}

/*Vertical Sliding*/
.sliding-vertical,
.sliding-vertical-v2 {
	display: inline;
	text-indent: 8px;
}

.sliding-vertical span {
	animation: topToBottom 12s linear infinite 0s;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}

.sliding-vertical-v2 span {
	animation: topToBottom 12s linear infinite 1s;
	opacity: 0;
	overflow: hidden;
	position: absolute;
}

.sliding-vertical span:nth-child(2) {
	animation-delay: 6s;
}

.sliding-vertical-v2 span:nth-child(2) {
	animation-delay: 7s;
}

/*topToBottom Animation*/
@keyframes topToBottom {

	0% {
		opacity: 0;
		transform: translateY(-50px);
	}

	2% {
		opacity: 1;
		transform: translateY(10px);
	}

	4% {
		opacity: 1;
		transform: translateY(-5px);
	}

	5% {
		opacity: 1;
		transform: translateY(0);
	}

	50% {
		opacity: 1;
		transform: translateY(0);
	}

	52% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 0;
		transform: translateY(50px);
	}
}

/**
 * Desktop responsive breakpoints
 **/
@media screen and (max-width: 1600px) {

	.container {
		max-width: calc(1340px - 200px) !important;
	}

	/**
    ** Home Page
    **/
	.hero-section h2 {
		font-size: 3.25rem !important;
		margin-bottom: 0 !important;
	}

	.hero-section h3 {
		font-size: 2rem !important;
		padding-left: 185px !important;
	}

	.hero-section h3::before {
		width: 170px !important;
	}

	.hero-section p {
		font-size: 1.2rem !important;
		max-width: 480px !important;
		margin-bottom: 70px !important;
	}

	.hero-section .hero-left {
		flex: 5 !important;
	}

	.hero-section .hero-right {
		flex: 5 !important;
	}

	.hero-section .hero-right .hero-thumbnail {
		width: 154.8px !important;
		height: 226.8px !important;
	}

	.hero-section .hero-right .img01 {
		top: 256px !important;
		right: 350px !important;
	}

	.hero-section .hero-right .img02 {
		bottom: 255px !important;
		right: 175px !important;
	}

	.hero-section .hero-right .img03 {
		top: 365px !important;
		right: 175px !important;
	}

	.hero-section .hero-right .img04 {
		top: 14px !important;
	}

	.section.client-says .container {
		max-width: calc(1670px - 300px) !important;
	}

	.section.client-says .client-says-carousel .carousel-item .carousel-content {
		max-width: 440px !important;
	}

	.section.client-says .client-says-carousel .carousel-item p {
		font-size: 2rem !important;
		line-height: 2.25rem !important;
	}

	.section.client-says .client-says-carousel .carousel-item hr {
		margin: 30px 0 !important;
	}

	.section.client-says .client-says-carousel .carousel-item small {
		font-size: 1.25rem !important;
	}

	.section.client-says .client-says-carousel .active-slide .carousel-content {
		max-width: unset !important;
	}

	.section.client-says .client-says-carousel .active-slide hr {
		margin: 40px 0 !important;
	}

	.section.client-says .client-says-carousel .active-slide p {
		font-size: 2.5rem !important;
		line-height: 2.75rem !important;
		max-width: 600px !important;
	}

	.section.challenge-outcome h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin: 0 auto 70px !important;
		max-width: 650px !important;
	}

	.section.challenge-outcome .row .column {
		padding: 70px 70px 15px !important;
	}

	.section.challenge-outcome .row .column h3 {
		font-size: 2rem !important;
		line-height: 2rem !important;
	}

	.section.challenge-outcome .row .column p {
		font-size: 1rem !important;
		margin: 20px 0 60px !important;
	}

	.section.challenge-outcome .row .column::after {
		max-height: 200px !important;
	}

	.section.with-barker h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		max-width: 430px !important;
		margin-bottom: 40px !important;
	}

	.section.with-barker p {
		font-size: 1rem !important;
		line-height: 1.25rem !important;
		max-width: 420px !important;
		margin-bottom: 40px !important;
	}

	.section.with-barker .with-barker-right .thumbnail {
		max-width: 283px !important;
		height: 255px !important;
		margin: 5px !important;
	}

	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front,
	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back {
		padding: 20px !important;
	}

	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front svg,
	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back svg {
		max-height: 110px !important;
		margin-bottom: 20px !important;
	}

	.section.most-of-barker h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin-bottom: 50px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 120px 30px 30px !important;
		max-width: 450px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 2rem !important;
		line-height: 3rem !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-1 .feature-card .feature-content h3 {
		margin-bottom: 50px !important;
	}

	.section.most-of-barker .features-grid .lower .feature-card .feature-content h3 {
		font-size: 1.25rem !important;
		line-height: 2.25rem !important;
		max-width: 250px !important;
	}

	.section.secure-process h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin: 0 auto 70px !important;
	}

	.section.secure-process .desktop .wizard {
		padding: 80px 10px 0 !important;
		width: 100%;
	}

	.section.secure-process .desktop .wizard::before {
		content: "";
		top: 78px !important;
	}

	.section.secure-process .desktop .wizard .step .step-number {
		font-size: 1.2rem !important;
		line-height: 1.2rem !important;
	}

	.section.secure-process .desktop .wizard .step .step-dot {
		width: 14px !important;
		height: 14px !important;
		margin-bottom: 12px !important;
	}

	.section.secure-process .desktop .wizard .step .step-label {
		font-size: 1.2rem !important;
		line-height: 1.5rem !important;
		max-width: 190px !important;
	}

	.section.secure-process .desktop .wizard .step.active .step-number {
		font-size: 3rem !important;
		line-height: 3rem !important;
	}

	.section.secure-process .desktop .demo {
		min-height: 260px !important;
	}

	.section.secure-process .desktop .demo .label {
		padding: 40px !important;
	}

	.section.secure-process .desktop .demo .label p {
		font-size: 1rem !important;
	}

	.section.our-clients .container h3 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin-bottom: 50px !important;
	}

	.section.our-clients .container .our-clients-carousel .slick-dots {
		margin-top: 40px !important;
	}

	.section.barkers-backer h2 {
		font-size: 2.5rem !important;
		margin-bottom: 40px !important;
	}

	.section.barkers-backer .backer-logos .backer-logo-wrapper {
		padding: 15px !important;
		min-height: 150px !important;
	}

	.section.case-studies .container h3 {
		font-size: 2.5rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 90px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details {
		padding: 40px 80px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details h3 {
		line-height: 3rem !important;
		margin-bottom: 50px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details p {
		margin-bottom: 50px !important;
	}

	.section.coming-soon h2 {
		font-size: 2rem !important;
	}

	.section.coming-soon p {
		font-size: 1rem !important;
		margin-bottom: 20px !important;
		max-width: 470px !important;
	}

	.section.coming-soon .popup {
		width: 480px !important;
		padding: 40px 20px !important;
	}

	.section.coming-soon .popup::after {
		max-height: 160px !important;
	}

	.section.coming-soon .popup .email-submit {
		max-width: 385px !important;
	}

	.section.coming-soon .popup .email-submit button {
		padding: 10px 30px !important;
	}

	.section.coming-soon .popup .thank-you-message {
		padding-top: 90px !important;
	}

	.section.coming-soon .popup .thank-you-message::before {
		font-size: 3.25rem !important;
		line-height: 3.25rem !important;
		width: 80px !important;
		height: 80px !important;
	}

	.section.coming-soon .popup .thank-you-message h2 {
		margin-bottom: 20px !important;
	}

	.section.coming-soon .popup .thank-you-message p {
		margin-bottom: 0 !important;
	}

	/**
    ** About Us Page
    **/
	.abt-hero-section h2 {
		font-size: 3.5rem !important;
		line-height: 3.5rem !important;
	}

	.abt-hero-section .hero-right .hero-thumbnail {
		width: 240px !important;
		height: 344px !important;
	}

	.abt-hero-section .hero-right .img01 {
		top: -41px !important;
		right: 205px !important;
	}

	.section.most-trusted .container {
		max-width: calc(1670px - 300px) !important;
	}

	.section.most-trusted h2 {
		font-size: 2.75rem !important;
		line-height: 2.75rem !important;
		max-width: 870px !important;
		margin-bottom: 80px !important;
	}

	.section.most-trusted p {
		margin-bottom: 70px !important;
	}

	.section.most-trusted .row .column {
		min-height: 400px !important;
	}

	.section.most-trusted .row .column .img-container {
		height: 180px !important;
	}

	.section.most-trusted .row .column .details-container {
		margin-top: 40px !important;
	}

	.section.most-trusted .row .column .details-container h3 {
		font-size: 1.75em !important;
		margin-bottom: 25px !important;
	}

	.section.most-trusted .row .column .details-container p {
		font-size: 1.1rem !important;
		margin: 0 !important;
	}

	.section.most-trusted .row .column.advancing-technology .img-container {
		background-image: url("assets/images/about-us/1/img-01.jpg");
	}

	.section.most-trusted .row .column.delivering-trust .img-container {
		background-image: url("assets/images/about-us/1/img-02.jpg");
		background-position: 50% 47%;
	}

	.section.most-trusted .row .column.growth-partner .img-container {
		background-image: url("assets/images/about-us/1/img-03.png");
		background-position: 50% 50%;
	}

	.section.borrowers-lenders h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin: 0 auto 70px !important;
		max-width: 630px !important;
	}

	.section.borrowers-lenders .row .column {
		padding: 70px 70px 60px !important;
	}

	.section.borrowers-lenders .row .column svg {
		max-height: 120px !important;
	}

	.section.borrowers-lenders .row .column h3 {
		font-size: 2rem !important;
		line-height: 2rem !important;
	}

	.section.borrowers-lenders .row .column p {
		font-size: 1rem !important;
	}

	.section.smarter-lending h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin: 0 auto 50px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 70px 30px 30px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 2rem !important;
		line-height: 3rem !important;
		margin-bottom: 20px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content p {
		font-size: 1rem !important;
	}

	.section.confidence {
		padding: 130px 0 !important;
		background-size: auto 190% !important;
		background-position: 315px 85% !important;
	}

	.section.confidence .content-wrapper h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin-bottom: 50px !important;
	}

	.section.confidence .content-wrapper p {
		font-size: 1rem !important;
	}

	/**
    ** Case Studies Page
    **/
	.case-studies-hero-section .content-wrapper {
		max-width: 520px !important;
	}

	.case-studies-hero-section .content-wrapper h2 {
		font-size: 3rem !important;
		line-height: 3.5rem !important;
		margin-bottom: 50px !important;
	}

	.case-studies-hero-section .content-wrapper p {
		font-size: 1rem !important;
	}

	.section.case-studies-list h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin: 0 auto 80px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-banner {
		height: 300px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content {
		margin: 90px 0 !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row {
		margin-bottom: 70px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row .col-6:first-child {
		padding-right: 65px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .title-wrapper .title {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .subtitle-wrapper .subtitle {
		font-size: 1.4rem !important;
		line-height: 1.9rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description,
	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-list {
		font-size: 1rem !important;
		margin-bottom: 20px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis {
		margin-bottom: 20px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-primary {
		font-size: 1.4rem !important;
		line-height: 1.9rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-secondary {
		font-size: 1.2rem !important;
		line-height: 1.7rem !important;
	}

	/**
    ** Lenders Page
    **/
	.lenders-hero-section .hero-left h2 {
		font-size: 3.5rem !important;
		line-height: 4.5rem !important;
	}

	.lenders-hero-section .hero-right .hero-graph-wrapper {
		padding-left: 25px !important;
		padding-bottom: 25px !important;
	}

	.section.ai-valuations h2 {
		font-size: 2.75rem !important;
		line-height: 2.75rem !important;
		max-width: 600px;
	}

	.section.ai-valuations .valuations-container .valuations-left {
		padding: 70px 50px 50px;
	}

	.section.ai-valuations .valuations-container .valuations-left h3 {
		font-size: 2.75rem !important;
		line-height: 3.25rem !important;
	}

	.section.ai-valuations .valuations-container .valuations-left p {
		font-size: 1.1rem !important;
		max-width: 490px !important;
	}

	.section.how-it-works h3 {
		font-size: 2.75rem !important;
		line-height: 3.25rem !important;
		margin-bottom: 40px !important;
	}

	.section.how-it-works p {
		margin-bottom: 80px !important;
	}

	.section.how-it-works h4 {
		font-size: 2rem !important;
		line-height: 2rem !important;
		margin-bottom: 40px !important;
	}

	.section.how-it-works .asset-type-list {
		column-gap: 10px !important;
		row-gap: 35px !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details p {
		margin-bottom: 10px !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details h5 {
		font-size: 1.1rem !important;
	}

	.section.portfolio-insights h2 {
		font-size: 2.75rem !important;
		line-height: 3.5rem !important;
		margin: 0 auto 80px !important;
		max-width: 575px !important;
	}

	.section.portfolio-insights .row .column {
		height: 600px !important;
	}

	.section.portfolio-insights .row .column .img-container {
		height: 350px !important;
	}

	.section.portfolio-insights .row .column .details-container p {
		font-size: 1.1rem !important;
	}

	.section.whats-in-it {
		padding-top: 0 !important;
	}

	.section.whats-in-it h2 {
		font-size: 2.75rem !important;
		line-height: 2.75rem !important;
		margin: 0 auto 80px !important;
	}

	.section.whats-in-it .categories-container .category-list {
		max-width: 900px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item {
		padding: 40px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-image-wrapper .category-image {
		height: 120px !important;
		width: 120px !important;
	}

	/**
    ** Borrowers Page
    **/
	.borrowers-hero-section .hero-left h2 {
		font-size: 3.5rem !important;
		line-height: 3.5rem !important;
	}

	.borrowers-hero-section .hero-left p {
		font-size: 1.1rem !important;
	}

	.section.borrowers-assets .container h2 {
		font-size: 2.75rem !important;
		margin-bottom: 50px !important;
	}

	.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p {
		font-size: 1.1rem !important;
	}

	/**
    ** Contact Us Page
    **/
	.contact-hero-section h2 {
		font-size: 3rem !important;
		line-height: 3rem !important;
	}

	.contact-hero-section h3 {
		font-size: 2rem !important;
		line-height: 2rem !important;
		margin-bottom: 40px !important;
		max-width: 500px !important;
	}

	.contact-hero-section p {
		font-size: 1.1rem !important;
	}

	.contact-hero-section .hero-right .contact-form {
		max-width: 500px !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content::before {
		font-size: 3.5rem !important;
		line-height: 3.5rem !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content h2 {
		font-size: 2rem !important;
		margin-bottom: 20px !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content p {
		font-size: 1.1rem !important;
	}

	.section.any-questions .any-questions-left {
		flex: 1;
	}

	.section.any-questions .any-questions-left h2 {
		font-size: 3rem !important;
		line-height: 3rem !important;
		margin-bottom: 50px !important;
	}

	.section.any-questions .any-questions-left p {
		font-size: 1.1rem !important;
		max-width: 420px !important;
	}

	/**
    ** Footer
    **/
	footer .upper-footer {
		padding: 80px 0 !important;
	}

	footer .upper-footer h2 {
		font-size: 2.5rem !important;
		line-height: 2.5rem !important;
	}

	footer .upper-footer .btn-yellow {
		padding: 5px 25px !important;
		border-radius: 15px !important;
	}

	footer .lower-footer .footer-nav {
		display: flex;
		flex: 1;
		padding: 80px 0 !important;
	}

	footer .lower-footer .footer-nav ul li {
		margin-bottom: 15px !important;
	}

	footer .lower-footer #barker-logo-footer {
		height: 50px !important;
	}
}

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

	.container {
		max-width: calc(1340px - 250px) !important;
	}

	.cta-with-arrow {
		font-size: 1.1rem !important;
		line-height: 1.1rem !important;
	}

	.section {
		padding: 80px 0 !important;
	}

	/**
    ** Home Page
    **/
	.hero-section {
		padding: 130px 0 80px !important;
	}

	.hero-section h2 {
		font-size: 3rem !important;
		margin-bottom: 0 !important;
	}

	.hero-section h3 {
		font-size: 1.75rem !important;
		padding-left: 185px !important;
	}

	.hero-section h3::before {
		width: 170px !important;
	}

	.hero-section p {
		font-size: 1.1rem !important;
		max-width: 440px !important;
		margin-bottom: 60px !important;
	}

	.hero-section .hero-left {
		flex: 5 !important;
	}

	.hero-section .hero-right {
		flex: 5 !important;
	}

	.hero-section .hero-right .hero-thumbnail {
		width: 147.06px !important;
		height: 215.46px !important;
	}

	.hero-section .hero-right .img01 {
		top: 245px !important;
		right: 336px !important;
	}

	.hero-section .hero-right .img02 {
		bottom: 260px !important;
		right: 168px !important;
	}

	.hero-section .hero-right .img03 {
		top: 360px !important;
		right: 168px !important;
	}

	.hero-section .hero-right .img04 {
		top: 26px !important;
	}

	.section.client-says .container {
		max-width: calc(1670px - 350px) !important;
	}

	.section.client-says .client-says-carousel .carousel-item .carousel-content {
		max-width: 440px !important;
	}

	.section.client-says .client-says-carousel .carousel-item p {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
	}

	.section.client-says .client-says-carousel .carousel-item hr {
		margin: 20px 0 !important;
	}

	.section.client-says .client-says-carousel .carousel-item small {
		font-size: 1.1rem !important;
	}

	.section.client-says .client-says-carousel .active-slide .carousel-content {
		max-width: unset !important;
	}

	.section.client-says .client-says-carousel .active-slide hr {
		margin: 30px 0 !important;
	}

	.section.client-says .client-says-carousel .active-slide p {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		max-width: 550px !important;
	}

	.section.challenge-outcome h2 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin: 0 auto 60px !important;
		max-width: 600px !important;
	}

	.section.challenge-outcome .row .column {
		padding: 60px 60px 15px !important;
	}

	.section.challenge-outcome .row .column h3 {
		font-size: 1.75rem !important;
		line-height: 1.75rem !important;
	}

	.section.challenge-outcome .row .column p {
		font-size: 1rem !important;
		margin: 10px 0 50px !important;
	}

	.section.challenge-outcome .row .column::after {
		max-height: 200px !important;
	}

	.section.with-barker h2 {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
		max-width: 380px !important;
		margin-bottom: 30px !important;
	}

	.section.with-barker p {
		font-size: 1rem !important;
		line-height: 1.25rem !important;
		max-width: 420px !important;
		margin-bottom: 30px !important;
	}

	.section.with-barker .with-barker-right .thumbnail {
		max-width: 263px !important;
		height: 235px !important;
		margin: 5px !important;
	}

	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front,
	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back {
		padding: 20px !important;
	}

	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front svg,
	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back svg {
		max-height: 95px !important;
		margin-bottom: 20px !important;
	}

	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front p,
	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back p {
		font-size: 0.9rem !important;
		line-height: 1.1rem !important;
		max-width: 214px !important;
	}

	.section.most-of-barker h2 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin-bottom: 40px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 100px 30px 30px !important;
		max-width: 450px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-1 .feature-card .feature-content h3 {
		margin-bottom: 40px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-2 .feature-card .feature-content h3 {
		max-width: 250px !important;
	}

	.section.most-of-barker .features-grid .lower .feature-card .feature-content h3 {
		font-size: 1.1rem !important;
		line-height: 1.75rem !important;
	}

	.section.secure-process h2 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin: 0 auto 60px !important;
	}

	.section.secure-process .desktop .wizard {
		padding: 70px 10px 0 !important;
		width: 100%;
	}

	.section.secure-process .desktop .wizard::before {
		content: "";
		top: 66px !important;
	}

	.section.secure-process .desktop .wizard .step .step-number {
		font-size: 1.1rem !important;
		line-height: 1.1rem !important;
	}

	.section.secure-process .desktop .wizard .step .step-dot {
		width: 14px !important;
		height: 14px !important;
		margin-bottom: 12px !important;
	}

	.section.secure-process .desktop .wizard .step .step-label {
		font-size: 1.1rem !important;
		line-height: 1.25rem !important;
		max-width: 190px !important;
	}

	.section.secure-process .desktop .wizard .step.active .step-number {
		font-size: 2.75rem !important;
		line-height: 2.75rem !important;
	}

	.section.secure-process .desktop .demo {
		min-height: 260px !important;
	}

	.section.secure-process .desktop .demo .label {
		padding: 40px !important;
	}

	.section.secure-process .desktop .demo .label p {
		font-size: 1rem !important;
		max-width: 380px !important;
	}

	.section.our-clients .container h3 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin-bottom: 40px !important;
	}

	.section.our-clients .container .our-clients-carousel .carousel-content .carousel-details {
		min-height: 225px !important;
	}

	.section.our-clients .container .our-clients-carousel .slick-dots {
		margin-top: 30px !important;
	}

	.section.barkers-backer h2 {
		font-size: 2.25rem !important;
		margin-bottom: 40px !important;
	}

	.section.barkers-backer .backer-logos .backer-logo-wrapper {
		padding: 15px !important;
		min-height: 150px !important;
	}

	.section.case-studies .container h3 {
		font-size: 2.25rem !important;
		line-height: 2.25rem !important;
		margin-bottom: 80px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details {
		padding: 30px 70px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details h3 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin-bottom: 40px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details p {
		margin-bottom: 40px !important;
	}

	.section.coming-soon h2 {
		font-size: 1.75rem !important;
		margin-bottom: 20px !important;
	}

	.section.coming-soon p {
		font-size: 1rem !important;
		margin-bottom: 20px !important;
		max-width: 470px !important;
	}

	.section.coming-soon .popup {
		width: 480px !important;
		padding: 40px 20px !important;
	}

	.section.coming-soon .popup::after {
		max-height: 160px !important;
	}

	.section.coming-soon .popup .email-submit {
		max-width: 385px !important;
	}

	.section.coming-soon .popup .email-submit button {
		padding: 10px 30px !important;
	}

	.section.coming-soon .popup .thank-you-message {
		padding-top: 90px !important;
	}

	.section.coming-soon .popup .thank-you-message::before {
		font-size: 3.25rem !important;
		line-height: 3.25rem !important;
		width: 80px !important;
		height: 80px !important;
	}

	.section.coming-soon .popup .thank-you-message h2 {
		margin-bottom: 20px !important;
	}

	.section.coming-soon .popup .thank-you-message p {
		margin-bottom: 0 !important;
	}

	/**
    ** About Us Page
    **/
	.abt-hero-section {
		padding: 130px 0 80px !important;
	}

	.abt-hero-section h2 {
		font-size: 3.25rem !important;
		line-height: 3.25rem !important;
	}

	.abt-hero-section p {
		font-size: 1.1rem !important;
	}

	.abt-hero-section .hero-right .hero-thumbnail {
		width: 228px !important;
		height: 326.8px !important;
	}

	.abt-hero-section .hero-right .img01 {
		top: -15px !important;
		right: 191px !important;
	}

	.section.most-trusted .container {
		max-width: calc(1670px - 350px) !important;
	}

	.section.most-trusted h2 {
		font-size: 2.5rem !important;
		line-height: 2.5rem !important;
		max-width: 800px !important;
		margin-bottom: 70px !important;
	}

	.section.most-trusted p {
		margin-bottom: 60px !important;
	}

	.section.most-trusted .row .column {
		min-height: 380px !important;
	}

	.section.most-trusted .row .column .img-container {
		height: 170px !important;
	}

	.section.most-trusted .row .column .details-container {
		margin-top: 30px !important;
	}

	.section.most-trusted .row .column .details-container h3 {
		font-size: 1.5em !important;
		margin-bottom: 15px !important;
	}

	.section.most-trusted .row .column .details-container p {
		font-size: 1.1rem !important;
		margin: 0 !important;
	}

	.section.borrowers-lenders h2 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin: 0 auto 60px !important;
		max-width: 630px !important;
	}

	.section.borrowers-lenders .row .column {
		padding: 60px 60px 60px !important;
	}

	.section.borrowers-lenders .row .column svg {
		max-height: 100px !important;
		max-width: 140px !important;
	}

	.section.borrowers-lenders .row .column h3 {
		font-size: 1.75rem !important;
		line-height: 1.75rem !important;
		margin-bottom: 30px !important;
	}

	.section.borrowers-lenders .row .column p {
		font-size: 1rem !important;
	}

	.section.smarter-lending h2 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin: 0 auto 40px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 70px 30px 30px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 1.75rem !important;
		line-height: 2.75rem !important;
		margin-bottom: 20px !important;
		max-width: 340px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content p {
		font-size: 1rem !important;
	}

	.section.confidence {
		padding: 100px 0 !important;
		background-size: auto 200% !important;
		background-position: 390px 85% !important;
	}

	.section.confidence .content-wrapper h2 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin-bottom: 40px !important;
	}

	.section.confidence .content-wrapper p {
		font-size: 1rem !important;
	}

	/**
    ** Case Studies Page
    **/
	.case-studies-hero-section .content-wrapper {
		max-width: 520px !important;
	}

	.case-studies-hero-section .content-wrapper h2 {
		font-size: 2.75rem !important;
		line-height: 3.25rem !important;
		margin-bottom: 40px !important;
	}

	.case-studies-hero-section .content-wrapper p {
		font-size: 1rem !important;
	}

	.section.case-studies-list h2 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin: 0 auto 70px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-banner {
		height: 250px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content {
		margin: 80px 0 !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row {
		margin-bottom: 60px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row .col-6:first-child {
		padding-right: 100px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .title-wrapper .title {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .subtitle-wrapper .subtitle {
		font-size: 1.3rem !important;
		line-height: 1.8rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-primary {
		font-size: 1.3rem !important;
		line-height: 1.8rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-secondary {
		font-size: 1.1rem !important;
		line-height: 1.6rem !important;
	}

	/**
    ** Lenders Page
    **/
	.lenders-hero-section .hero-left h2 {
		font-size: 3.25rem !important;
		line-height: 4.25rem !important;
		margin-bottom: 50px !important;
	}

	.lenders-hero-section .hero-left p {
		font-size: 1.1rem !important;
		max-width: 570px !important;
		margin-bottom: 50px !important;
	}

	.lenders-hero-section .hero-right .hero-graph-wrapper {
		padding-left: 25px !important;
		padding-bottom: 25px !important;
	}

	.section.ai-valuations h2 {
		font-size: 2.5rem !important;
		line-height: 2.5rem !important;
		max-width: 570px !important;
	}

	.section.ai-valuations .valuations-container .valuations-left h3 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
	}

	.section.ai-valuations .valuations-container .valuations-left p {
		font-size: 1rem !important;
		max-width: 445px !important;
	}

	.section.how-it-works h3 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin-bottom: 30px !important;
	}

	.section.how-it-works p {
		font-size: 1.1rem !important;
		margin-bottom: 70px !important;
		max-width: 800px !important;
	}

	.section.how-it-works h4 {
		font-size: 1.75rem !important;
		line-height: 1.75rem !important;
		margin-bottom: 30px !important;
	}

	.section.how-it-works .asset-type-list {
		column-gap: 10px !important;
		row-gap: 30px !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details p {
		font-size: 0.9rem !important;
		margin-bottom: 10px !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details h5 {
		font-size: 1rem !important;
	}

	.section.portfolio-insights h2 {
		font-size: 2.5rem !important;
		line-height: 3.25rem !important;
		margin: 0 auto 70px !important;
		max-width: 500px !important;
	}

	.section.portfolio-insights .row .column {
		height: 570px !important;
	}

	.section.portfolio-insights .row .column .img-container {
		height: 320px !important;
	}

	.section.portfolio-insights .row .column .details-container p {
		font-size: 1.1rem !important;
	}

	.section.whats-in-it h2 {
		font-size: 2.5rem !important;
		line-height: 2.5rem !important;
		margin: 0 auto 70px !important;
	}

	.section.whats-in-it .categories-container .category-list {
		max-width: 900px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item {
		padding: 40px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-image-wrapper .category-image {
		height: 120px !important;
		width: 120px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-details p {
		font-size: 1.1rem !important;
	}

	/**
    ** Borrowers Page
    **/
	.borrowers-hero-section .hero-left h2 {
		font-size: 3.25rem !important;
		line-height: 3.25rem !important;
	}

	.borrowers-hero-section .hero-left p {
		font-size: 1.1rem !important;
		margin-bottom: 30px !important;
	}

	.section.borrowers-assets .container h2 {
		font-size: 2.5rem !important;
		margin-bottom: 40px !important;
	}

	.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p {
		font-size: 1.1rem !important;
	}

	/**
    ** Footer
    **/
	footer .upper-footer {
		padding: 80px 0 !important;
	}

	footer .upper-footer h2 {
		font-size: 2.25rem !important;
		line-height: 2.25rem !important;
	}

	footer .upper-footer .btn-yellow {
		padding: 5px 25px !important;
		border-radius: 15px !important;
	}

	footer .lower-footer .footer-nav {
		padding: 80px 0 !important;
	}

	footer .lower-footer .footer-nav ul li {
		margin-bottom: 15px !important;
	}

	footer .lower-footer #barker-logo-footer {
		height: 50px !important;
	}
}

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

	.container {
		max-width: calc(1340px - 350px) !important;
	}

	.cta-with-arrow {
		font-size: 1rem !important;
		line-height: 1rem !important;
	}

	.section {
		padding: 70px 0 !important;
	}

	/**
    ** Home Page
    **/
	.hero-section {
		padding: 120px 0 70px !important;
	}

	.hero-section h2 {
		font-size: 3rem !important;
		margin-bottom: 0 !important;
	}

	.hero-section h3 {
		font-size: 1.75rem !important;
		padding-left: 185px !important;
	}

	.hero-section h3::before {
		width: 170px !important;
	}

	.hero-section p {
		font-size: 1.1rem !important;
		max-width: 440px !important;
		margin-bottom: 60px !important;
	}

	.hero-section .hero-left {
		flex: 5 !important;
	}

	.hero-section .hero-right {
		flex: 5 !important;
	}

	.hero-section .hero-right .hero-thumbnail {
		width: 147.06px !important;
		height: 215.46px !important;
	}

	.hero-section .hero-right .img01 {
		top: 245px !important;
		right: 336px !important;
	}

	.hero-section .hero-right .img02 {
		bottom: 260px !important;
		right: 168px !important;
	}

	.hero-section .hero-right .img03 {
		top: 360px !important;
		right: 168px !important;
	}

	.hero-section .hero-right .img04 {
		top: 26px !important;
	}

	.section.client-says .container {
		max-width: calc(1670px - 450px) !important;
	}

	.section.client-says .client-says-carousel .carousel-item .carousel-content {
		max-width: 440px !important;
	}

	.section.client-says .client-says-carousel .carousel-item p {
		font-size: 1.5rem !important;
		line-height: 1.75rem !important;
	}

	.section.client-says .client-says-carousel .carousel-item hr {
		margin: 20px 0 !important;
	}

	.section.client-says .client-says-carousel .carousel-item small {
		font-size: 1rem !important;
	}

	.section.client-says .client-says-carousel .active-slide .carousel-content {
		max-width: unset !important;
	}

	.section.client-says .client-says-carousel .active-slide hr {
		margin: 30px 0 !important;
	}

	.section.client-says .client-says-carousel .active-slide p {
		font-size: 2rem !important;
		line-height: 2.25rem !important;
		max-width: 460px !important;
	}

	.section.challenge-outcome h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin: 0 auto 40px !important;
		max-width: 550px !important;
	}

	.section.challenge-outcome .row .column {
		padding: 50px 50px 15px !important;
	}

	.section.challenge-outcome .row .column h3 {
		font-size: 1.75rem !important;
		line-height: 1.75rem !important;
	}

	.section.challenge-outcome .row .column p {
		font-size: 1rem !important;
		margin: 10px 0 40px !important;
	}

	.section.challenge-outcome .row .column::after {
		max-height: 200px !important;
	}

	.section.with-barker h2 {
		font-size: 1.5rem !important;
		line-height: 2rem !important;
		max-width: 380px !important;
		margin-bottom: 30px !important;
	}

	.section.with-barker p {
		font-size: 1rem !important;
		line-height: 1.25rem !important;
		max-width: 350px !important;
		margin-bottom: 30px !important;
	}

	.section.with-barker .with-barker-left {
		flex: 40% !important;
	}

	.section.with-barker .with-barker-right {
		flex: 60% !important;
	}

	.section.with-barker .with-barker-right .thumbnail {
		max-width: 263px !important;
		height: 235px !important;
		margin: 5px !important;
	}

	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front,
	.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back {
		padding: 20px !important;
	}

	.section.most-of-barker h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 30px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 80px 20px 20px !important;
		max-width: 450px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 1.5rem !important;
		line-height: 1.75rem !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-1 .feature-card .feature-content h3 {
		margin-bottom: 40px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-2 .feature-card .feature-content h3 {
		max-width: 250px !important;
	}

	.section.most-of-barker .features-grid .lower .feature-card .feature-content h3 {
		font-size: 1.1rem !important;
		line-height: 1.75rem !important;
	}

	.section.secure-process h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin: 0 auto 50px !important;
	}

	.section.secure-process .desktop .wizard {
		padding: 60px 10px 0 !important;
		width: 100%;
	}

	.section.secure-process .desktop .wizard::before {
		content: "";
		top: 56px !important;
	}

	.section.secure-process .desktop .wizard .step .step-number {
		font-size: 1rem !important;
		line-height: 1rem !important;
	}

	.section.secure-process .desktop .wizard .step .step-dot {
		width: 14px !important;
		height: 14px !important;
		margin-bottom: 12px !important;
	}

	.section.secure-process .desktop .wizard .step .step-label {
		font-size: 1rem !important;
		line-height: 1.1rem !important;
		max-width: 160px !important;
	}

	.section.secure-process .desktop .wizard .step.active .step-number {
		font-size: 2.5rem !important;
		line-height: 2.5rem !important;
	}

	.section.secure-process .desktop .demo {
		min-height: 230px !important;
	}

	.section.secure-process .desktop .demo .label {
		padding: 20px !important;
	}

	.section.secure-process .desktop .demo .label p {
		font-size: 1rem !important;
		max-width: 360px !important;
	}

	.section.our-clients .container h3 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 30px !important;
	}

	.section.our-clients .container .our-clients-carousel .slick-dots {
		margin-top: 20px !important;
	}

	.section.barkers-backer h2 {
		font-size: 2rem !important;
		margin-bottom: 40px !important;
	}

	.section.barkers-backer .backer-logos .backer-logo-wrapper {
		padding: 15px !important;
		min-height: 150px !important;
	}

	.section.case-studies .container h3 {
		font-size: 2rem !important;
		line-height: 2rem !important;
		margin-bottom: 70px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details {
		padding: 20px 60px !important;
	}

	.section.coming-soon h2 {
		font-size: 1.5rem !important;
		margin-bottom: 15px !important;
	}

	.section.coming-soon p {
		font-size: 1rem !important;
		margin-bottom: 20px !important;
		max-width: 470px !important;
	}

	.section.coming-soon .popup {
		width: 480px !important;
		padding: 40px 20px !important;
	}

	.section.coming-soon .popup::after {
		max-height: 160px !important;
	}

	.section.coming-soon .popup .email-submit {
		max-width: 385px !important;
	}

	.section.coming-soon .popup .email-submit button {
		padding: 10px 30px !important;
	}

	.section.coming-soon .popup .thank-you-message {
		padding-top: 90px !important;
	}

	.section.coming-soon .popup .thank-you-message::before {
		font-size: 3.25rem !important;
		line-height: 3.25rem !important;
		width: 80px !important;
		height: 80px !important;
	}

	.section.coming-soon .popup .thank-you-message h2 {
		margin-bottom: 20px !important;
	}

	.section.coming-soon .popup .thank-you-message p {
		margin-bottom: 0 !important;
	}

	/**
    ** About Us Page
    **/
	.abt-hero-section {
		padding: 120px 0 70px !important;
	}

	.abt-hero-section h2 {
		font-size: 3rem !important;
		line-height: 3rem !important;
	}

	.abt-hero-section p {
		font-size: 1rem !important;
	}

	.abt-hero-section .hero-right .hero-thumbnail {
		width: 216.6px !important;
		height: 310.46px !important;
	}

	.abt-hero-section .hero-right .img01 {
		top: 5px !important;
		right: 172px !important;
	}

	.section.most-trusted .container {
		max-width: calc(1670px - 450px) !important;
	}

	.section.most-trusted h2 {
		font-size: 2.25rem !important;
		line-height: 2.25rem !important;
		max-width: 700px !important;
		margin-bottom: 60px !important;
	}

	.section.most-trusted p {
		font-size: 1rem !important;
		max-width: 590px !important;
		margin-bottom: 50px !important;
	}

	.section.most-trusted .row .column {
		min-height: 350px !important;
	}

	.section.most-trusted .row .column .img-container {
		height: 150px !important;
	}

	.section.most-trusted .row .column .details-container {
		margin-top: 20px !important;
	}

	.section.most-trusted .row .column .details-container h3 {
		font-size: 1.5em !important;
		margin-bottom: 15px !important;
	}

	.section.most-trusted .row .column .details-container p {
		font-size: 1rem !important;
		margin: 0 !important;
	}

	.section.borrowers-lenders h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin: 0 auto 40px !important;
		max-width: 500px !important;
	}

	.section.borrowers-lenders .row .column {
		padding: 50px 50px 50px !important;
	}

	.section.borrowers-lenders .row .column svg {
		max-height: 80px !important;
		max-width: 95px !important;
		margin-bottom: 30px !important;
	}

	.section.borrowers-lenders .row .column h3 {
		font-size: 1.75rem !important;
		line-height: 1.75rem !important;
		margin-bottom: 20px !important;
	}

	.section.borrowers-lenders .row .column p {
		font-size: 1rem !important;
	}

	.section.smarter-lending h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin: 0 auto 40px !important;
		max-width: 390px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 60px 20px 20px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 1.5rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 10px !important;
		max-width: 300px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content p {
		font-size: 1rem !important;
	}

	.section.confidence {
		padding: 80px 0 !important;
		background-size: auto 215% !important;
		background-position: 390px 85% !important;
	}

	.section.confidence .content-wrapper h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 30px !important;
	}

	.section.confidence .content-wrapper p {
		font-size: 1rem !important;
	}

	/**
    ** Case Studies Page
    **/
	.case-studies-hero-section .content-wrapper {
		max-width: 450px !important;
	}

	.case-studies-hero-section .content-wrapper h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin-bottom: 30px !important;
	}

	.case-studies-hero-section .content-wrapper p {
		font-size: 1rem !important;
	}

	.section.case-studies-list h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin: 0 auto 60px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-banner {
		height: 200px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content {
		margin: 70px 0 !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row {
		margin-bottom: 50px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row .col-6:first-child {
		padding-right: 110px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .title-wrapper .title {
		font-size: 1.5rem !important;
		line-height: 2rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .subtitle-wrapper .subtitle {
		font-size: 1.2rem !important;
		line-height: 1.7rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-primary {
		font-size: 1.2rem !important;
		line-height: 1.7rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-secondary {
		font-size: 1rem !important;
		line-height: 1.5rem !important;
	}

	/**
    ** Lenders Page
    **/
	.lenders-hero-section .hero-left h2 {
		font-size: 3rem !important;
		line-height: 4rem !important;
		margin-bottom: 40px !important;
	}

	.lenders-hero-section .hero-left p {
		font-size: 1rem !important;
		max-width: 530px !important;
		margin-bottom: 40px !important;
	}

	.lenders-hero-section .hero-right .hero-graph-wrapper {
		padding-left: 20px !important;
		padding-bottom: 20px !important;
	}

	.section.ai-valuations h2 {
		font-size: 2.25rem !important;
		line-height: 2.25rem !important;
		max-width: 520px !important;
	}

	.section.ai-valuations .valuations-container .valuations-left h3 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
	}

	.section.ai-valuations .valuations-container .valuations-left p {
		font-size: 1rem !important;
		max-width: 445px !important;
	}

	.section.how-it-works h3 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin-bottom: 20px !important;
	}

	.section.how-it-works p {
		font-size: 1rem !important;
		margin-bottom: 60px !important;
		max-width: 720px !important;
	}

	.section.how-it-works h4 {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
		margin-bottom: 30px !important;
	}

	.section.how-it-works .asset-type-list {
		column-gap: 10px !important;
		row-gap: 25px !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper {
		width: 80px !important;
		height: 80px !important;
		margin-right: 10px !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details p {
		font-size: 0.9rem !important;
		margin-bottom: 10px !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details h5 {
		font-size: 1rem !important;
	}

	.section.portfolio-insights h2 {
		font-size: 2.25rem !important;
		line-height: 3rem !important;
		margin: 0 auto 60px !important;
		max-width: 450px !important;
	}

	.section.portfolio-insights .row .column {
		height: 450px !important;
	}

	.section.portfolio-insights .row .column .img-container {
		height: 260px !important;
	}

	.section.portfolio-insights .row .column .details-container p {
		font-size: 1rem !important;
	}

	.section.whats-in-it h2 {
		font-size: 2.25rem !important;
		line-height: 2.25rem !important;
		margin: 0 auto 60px !important;
	}

	.section.whats-in-it .categories-container .category-list {
		max-width: 800px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item {
		padding: 35px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-image-wrapper .category-image {
		height: 100px !important;
		width: 100px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-details p {
		font-size: 1rem !important;
	}

	/**
    ** Borrowers Page
    **/
	.borrowers-hero-section .hero-left h2 {
		font-size: 3rem !important;
		line-height: 3rem !important;
		margin-bottom: 30px !important;
	}

	.borrowers-hero-section .hero-left p {
		font-size: 1rem !important;
		margin-bottom: 20px !important;
	}

	.section.borrowers-assets .container h2 {
		font-size: 2.25rem !important;
		margin-bottom: 30px !important;
	}

	.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p {
		font-size: 1rem !important;
	}

	/**
    ** Contact Us Page
    **/
	.contact-hero-section h2 {
		font-size: 2.5rem !important;
		line-height: 2.5rem !important;
	}

	.contact-hero-section h3 {
		font-size: 1.75rem !important;
		line-height: 1.75rem !important;
		margin-bottom: 40px !important;
		max-width: 400px !important;
	}

	.contact-hero-section p {
		font-size: 1rem !important;
	}

	.contact-hero-section .hero-right .contact-form {
		max-width: 440px !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content::before {
		font-size: 3.5rem !important;
		line-height: 3.5rem !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content h2 {
		font-size: 2rem !important;
		margin-bottom: 20px !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content p {
		font-size: 1.1rem !important;
	}

	.section.any-questions .any-questions-left {
		flex: 1;
	}

	.section.any-questions .any-questions-left h2 {
		font-size: 3rem !important;
		line-height: 3rem !important;
		margin-bottom: 50px !important;
	}

	.section.any-questions .any-questions-left p {
		font-size: 1.1rem !important;
		max-width: 420px !important;
	}

	/**
    ** Footer
    **/
	footer .upper-footer {
		padding: 70px 0 !important;
	}

	footer .upper-footer h2 {
		font-size: 2rem !important;
		line-height: 2rem !important;
	}

	footer .upper-footer .btn-yellow {
		padding: 5px 25px !important;
		border-radius: 15px !important;
	}

	footer .lower-footer .footer-nav {
		padding: 70px 0 !important;
	}

	footer .lower-footer .footer-nav ul li {
		margin-bottom: 15px !important;
	}

	footer .lower-footer #barker-logo-footer {
		height: 50px !important;
	}
}

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

	/**
    ** Home Page
    **/
	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details {
		padding: 20px 60px !important;
	}

	/**
    ** About Us
    **/
	.section.confidence {
		padding: 80px 0 !important;
		background-size: auto 225% !important;
		background-position: 247px 85% !important;
	}
}

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

	/**
    ** Home Page
    **/
	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details {
		padding: 20px 50px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details h3 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
	}

	/**
    ** About Us
    **/
	.section.most-trusted .row .column {
		height: 370px !important;
	}

	.section.most-trusted .row .column .img-container {
		height: 120px !important;
	}

	.section.most-trusted .row .column .details-container {
		margin-top: 0 !important;
	}

	.section.most-trusted .row .column .details-container h3 {
		font-size: 1.2em !important;
		margin-bottom: 15px !important;
	}

	.section.most-trusted .row .column .details-container p {
		font-size: 1rem !important;
		margin: 0 !important;
	}

	.section.confidence {
		background-position: 100px 85% !important;
	}
}

/**
 * Mobile responsiveness breakpoints
 **/
@media (max-width: 992px) {

	/**
    ** Burger Menu
    **/
	.burger-menu {
		display: flex !important;
	}

	.main-nav {
		display: none;
	}

	.header-cta {
		display: none !important;
	}
}

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

	.cta-with-arrow {
		display: none;
	}

	.sections-group {
		background-image: linear-gradient(90deg, #151515 0%, #2f2f2f 50%, #151515 100%) !important;
	}

	/**
    ** Home Page
    **/
	.hero-section {
		padding: 120px 0 70px !important;
	}

	.hero-section .container {
		flex-direction: column;
		height: 100% !important;
	}

	.hero-section .container h2 {
		font-size: 4rem !important;
		line-height: 4rem !important;
		max-width: 220px !important;
	}

	.hero-section .container h2 .sliding-vertical {
		margin-left: -25px;
	}

	.hero-section .container h3 {
		padding-left: 0 !important;
		font-size: 2.2rem !important;
	}

	.hero-section .container h3 .sliding-vertical {
		margin-left: -4px;
	}

	.hero-section .container h3::before {
		display: none;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper {
		position: relative;
		height: 610px !important;
		width: 420px !important;
		margin: 0 auto;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img01 {
		left: 202.06px !important;
		top: 67.94px !important;
		height: 147.06px !important;
		width: 215.46px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img02 {
		top: 230px !important;
		left: 230.46px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img03 {
		left: 40px !important;
		top: 0 !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img04 {
		top: 392.06px !important;
		left: 64.4px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img05 {
		left: 0 !important;
		top: 230px !important;
		height: 147.06px !important;
		width: 215.46px !important;
	}

	.section.client-says {
		background-position: 10% 10% !important;
		background-size: 250% 150% !important;
	}

	.section.client-says .client-says-carousel::before {
		background: rgba(0, 0, 0, 0.6) !important;
	}

	.section.client-says .client-says-carousel .slick-list {
		z-index: 1000;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content {
		max-width: 550px !important;
		text-align: center;
		margin: 0 auto;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content p {
		font-size: 2.75rem !important;
		line-height: 3.25rem !important;
		text-align: center !important;
		max-width: 100% !important;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content p br {
		display: none;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content hr {
		width: 80%;
		margin: 50px auto !important;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content small {
		font-size: 1.25rem !important;
		text-align: center !important;
	}

	.section.challenge-outcome h2 {
		font-size: 2.5rem !important;
		line-height: 2.75rem !important;
		max-width: 650px !important;
	}

	.section.challenge-outcome .row {
		flex-direction: column;
	}

	.section.challenge-outcome .row .column h3 {
		font-size: 2rem !important;
		line-height: 2.25rem !important;
	}

	.section.challenge-outcome .row .column p {
		font-size: 1.5rem !important;
	}

	.section.challenge-outcome .row .column.outcome img {
		margin-top: 80px !important;
	}

	.section.with-barker .container {
		flex-direction: column;
	}

	.section.with-barker .container h2 {
		font-size: 2.5rem !important;
		line-height: 2.75rem !important;
		max-width: 550px !important;
		text-align: center !important;
		margin: 0 auto 50px !important;
	}

	.section.with-barker .container p {
		font-size: 1.5rem !important;
		line-height: 1.75rem !important;
		max-width: 550px !important;
		text-align: center;
		margin: 0 auto 50px !important;
	}

	.section.with-barker .container .with-barker-left .mobile-hint {
		display: block;
	}

	.section.with-barker .container .with-barker-right {
		display: flex;
		flex-direction: column;
	}

	.section.with-barker .container .with-barker-right .thumbnail {
		max-width: 100% !important;
		height: 100% !important;
		margin: 10px;
		background-color: transparent;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner {
		height: 200px !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front,
	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back {
		display: flex;
		align-items: center;
		gap: 20px !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front .thumbnail-image-wrapper,
	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back .thumbnail-image-wrapper {
		flex: 20%;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front .thumbnail-image-wrapper svg,
	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back .thumbnail-image-wrapper svg {
		max-height: 80px !important;
		margin: 0 auto !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front p,
	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back p {
		flex: 80%;
		font-size: 1.5rem !important;
		line-height: 1.75rem !important;
		text-align: left !important;
		max-width: 100% !important;
		margin-bottom: 0 !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back {
		transform: rotateX(-180deg) !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail:hover .thumbnail-inner {
		transform: rotateX(-180deg) !important;
	}

	.section.with-barker .container .with-barker-right .active .thumbnail-inner {
		transform: rotateX(-180deg) !important;
	}

	.section.most-of-barker .row {
		flex-direction: column;
	}

	.section.most-of-barker .col-4,
	.section.most-of-barker .col-8,
	.section.most-of-barker .col-6,
	.section.most-of-barker .col-12 {
		max-width: 100%;
	}

	.section.most-of-barker h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin-bottom: 50px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper {
		padding: 10px 0 !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card {
		min-height: 500px;
		background-size: 100% auto !important;
		background-position: top center !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 80px 30px 30px !important;
		max-width: 100% !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 2rem !important;
		line-height: 3rem !important;
		max-width: 300px !important;
		margin-bottom: 20px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-1 .feature-card .feature-content h3 {
		margin-bottom: 20px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-2 .feature-card::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 50%, black 100%) !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-2 .feature-card .feature-content h3 {
		max-width: 300px !important;
	}

	.section.secure-process {
		background: #000;
	}

	.section.secure-process h2 {
		font-size: 2.5rem !important;
		line-height: 2.75rem !important;
		text-align: center !important;
		margin-bottom: 70px !important;
	}

	.section.secure-process h2 span {
		display: none;
	}

	.section.secure-process .desktop {
		display: none !important;
	}

	.section.secure-process .mobile {
		display: flex !important;
	}

	.section.our-clients .container h3 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin-bottom: 50px !important;
	}

	.section.our-clients .container .our-clients-carousel .carousel-item {
		filter: unset !important;
	}

	.section.our-clients .container .our-clients-carousel .carousel-item .carousel-content .carousel-details {
		padding: 20px 50px 55px !important;
	}

	.section.our-clients .container .our-clients-carousel .slick-list::before {
		content: none !important;
	}

	.section.our-clients .container .our-clients-carousel .slick-list::after {
		content: none !important;
	}

	.section.our-clients .container .our-clients-carousel .slick-dots {
		position: absolute !important;
		bottom: 20px !important;
	}

	.section.barkers-backer {
		min-height: unset !important;
	}

	.section.barkers-backer h2 {
		font-size: 2.5rem !important;
		line-height: 2.75rem !important;
	}

	.section.case-studies .container h3 {
		font-size: 2.5rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 50px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item {
		padding: 0 20px;
		transition: 0.25s transform ease-in;
		transform: unset !important;
		padding-bottom: 50px;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content {
		box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
		flex-direction: column;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-image img {
		max-height: 375px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details {
		padding: 30px 40px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details h3 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 20px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details p {
		margin-bottom: 20px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details .action-container {
		justify-content: start !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details .action-container .cta-with-arrow {
		display: inline-block !important;
	}

	.section.coming-soon {
		min-height: 100vh;
		padding: 100px 0 90px !important;
	}

	.section.coming-soon .container {
		padding: 0 40px !important;
	}

	.section.coming-soon .popup {
		max-width: 500px !important;
	}

	.section.coming-soon::before {
		background-size: 90% auto !important;
		background-position: 50% 5% !important;
	}

	.section.coming-soon h2 {
		font-size: 2.5rem !important;
	}

	.section.coming-soon p {
		margin: 0 auto 20px !important;
	}

	/**
    ** About Us Page
    **/
	.abt-hero-section {
		padding: 120px 0 70px !important;
	}

	.abt-hero-section .container {
		flex-direction: column;
		height: 100% !important;
	}

	.abt-hero-section .hero-left {
		margin-bottom: 20px;
	}

	.abt-hero-section .hero-left h2 {
		font-size: 4rem !important;
		line-height: 4rem !important;
		margin-bottom: 20px !important;
	}

	.abt-hero-section .hero-left p {
		font-size: 1rem !important;
		margin-bottom: 20px !important;
	}

	.abt-hero-section .hero-right .hero-thumbnail-wrapper {
		position: relative;
		height: 500px !important;
		width: 100% !important;
		max-width: 500px !important;
		margin: 0 auto !important;
	}

	.abt-hero-section .hero-right .hero-thumbnail-wrapper .hero-thumbnail {
		width: 55% !important;
		height: 55% !important;
	}

	.abt-hero-section .hero-right .hero-thumbnail-wrapper .img01 {
		top: 0;
		left: 0;
	}

	.abt-hero-section .hero-right .hero-thumbnail-wrapper .img02 {
		bottom: 0;
		right: 0;
	}

	.section.most-trusted h2 {
		font-size: 2.5rem !important;
		line-height: 2.75rem !important;
	}

	.section.most-trusted p {
		font-size: 1rem !important;
	}

	.section.most-trusted .row {
		flex-direction: column;
	}

	.section.most-trusted .row .column {
		margin: 10px auto !important;
		min-height: 300px !important;
		max-width: 500px !important;
	}

	.section.most-trusted .row .column:first-child {
		margin-top: 0 !important;
	}

	.section.most-trusted .row .column:last-child {
		margin-bottom: 0 !important;
	}

	.section.borrowers-lenders h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin: 0 auto 40px !important;
		max-width: 510px !important;
	}

	.section.borrowers-lenders .row {
		flex-direction: column;
	}

	.section.borrowers-lenders .row .column {
		margin: 20px auto !important;
		max-width: 500px !important;
	}

	.section.borrowers-lenders .row .column svg {
		max-height: 80px !important;
		max-width: 95px !important;
	}

	.section.borrowers-lenders .row .column h3 {
		font-size: 2rem !important;
		line-height: 2rem !important;
	}

	.section.borrowers-lenders .row .column p {
		font-size: 1rem !important;
	}

	.section.smarter-lending .row {
		flex-direction: column;
	}

	.section.smarter-lending .col-4,
	.section.smarter-lending .col-8,
	.section.smarter-lending .col-12 {
		max-width: 100%;
	}

	.section.smarter-lending h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin: 0 auto 40px !important;
		max-width: 500px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper {
		padding: 10px 0 !important;
		max-width: 500px !important;
		margin: 0 auto;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card {
		min-height: 500px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 60px 20px 20px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 1.75rem !important;
		line-height: 2.75rem !important;
		margin-bottom: 10px !important;
		max-width: 300px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content p {
		font-size: 1rem !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper.feature-1 .feature-card {
		background-position: center top !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper.feature-2 .feature-card {
		background-size: 100% auto !important;
		background-position: center top !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper.feature-2 .feature-card::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 50%, black 100%) !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper.feature-3 .feature-card {
		background-size: 100% auto !important;
		background-position: center top !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper.feature-3 .feature-card::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 50%, black 100%) !important;
	}

	.section.confidence {
		background-size: 160% !important;
		background-position: center !important;
	}

	.section.confidence::before {
		background: linear-gradient(180deg, black 0%, black 10%, rgba(0, 0, 0, 0.4) 100%) !important;
	}

	.section.confidence .col-6 {
		max-width: 100%;
	}

	.section.confidence .content-wrapper {
		max-width: 500px !important;
		margin: 0 auto;
	}

	.section.confidence .content-wrapper h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		text-align: center !important;
		max-width: 376px !important;
		margin: 0 auto 30px !important;
	}

	.section.confidence .content-wrapper p {
		text-align: center;
	}

	/**
    ** Case Studies Page
    **/
	.case-studies-hero-section .col-6 {
		max-width: 100%;
	}

	.case-studies-hero-section .content-wrapper {
		max-width: 525px !important;
	}

	.case-studies-hero-section .content-wrapper h2 {
		font-size: 3rem !important;
		line-height: 3.5rem !important;
		margin-bottom: 40px !important;
	}

	.case-studies-hero-section .content-wrapper p {
		font-size: 1rem !important;
	}

	.section.case-studies-list h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin: 0 auto 80px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-banner {
		height: 200px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content {
		margin: 90px 0 !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row {
		flex-direction: column;
		margin-bottom: 50px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row .col-6 {
		max-width: 100%;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row .col-6:first-child {
		padding-right: 0 !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .title-wrapper .title {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		text-align: center !important;
		margin-bottom: 30px;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .subtitle-wrapper .subtitle {
		font-size: 1.5rem !important;
		line-height: 2rem !important;
		margin-bottom: 20px;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-primary {
		font-size: 1.5rem !important;
		line-height: 2rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-secondary {
		font-size: 1rem !important;
		line-height: 1.5rem !important;
	}

	/**
    ** Lenders Page
    **/
	.lenders-hero-section {
		padding: 120px 0 70px !important;
	}

	.lenders-hero-section .container {
		flex-direction: column;
		height: 100% !important;
	}

	.lenders-hero-section .hero-left {
		flex: 6;
	}

	.lenders-hero-section .hero-left h2 {
		font-size: 2rem !important;
		line-height: 2.25rem !important;
	}

	.lenders-hero-section .hero-left p {
		font-size: 1rem !important;
	}

	.lenders-hero-section .hero-right .hero-graph-wrapper {
		max-width: 500px !important;
		margin: 0 auto !important;
		margin-top: 0 !important;
	}

	.section.ai-valuations h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
	}

	.section.ai-valuations .valuations-container {
		flex-direction: column;
		max-width: 500px !important;
		margin: 0 auto;
	}

	.section.ai-valuations .valuations-container .valuations-left {
		padding: 40px 40px !important;
		text-align: center !important;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 0 !important;
	}

	.section.ai-valuations .valuations-container .valuations-left h3 {
		font-size: 1.5rem !important;
		line-height: 1.75rem !important;
		text-align: center;
		max-width: 280px !important;
		margin: 0 auto 20px !important;
	}

	.section.ai-valuations .valuations-container .valuations-left p {
		text-align: center;
		font-size: 1rem !important;
		max-width: 100% !important;
	}

	.section.ai-valuations .valuations-container .valuations-left .cta-with-arrow {
		display: block !important;
		margin: 30px auto 0 !important;
	}

	.section.ai-valuations .valuations-container .valuations-right {
		border-top-right-radius: 0 !important;
		border-bottom-left-radius: 30px;
		padding: 40px !important;
	}

	.section.ai-valuations .valuations-container .valuations-right .assets-donut-wrapper {
		display: flex;
		justify-content: center;
		width: 100%;
		padding: 20px !important;
		border-radius: 30px;
		max-width: 100% !important;
		max-height: 400px;
	}

	.section.how-it-works h3 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		text-align: center !important;
	}

	.section.how-it-works p {
		font-size: 1rem !important;
		text-align: center !important;
	}

	.section.how-it-works h4 {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
		text-align: center !important;
		margin-bottom: 30px !important;
	}

	.section.how-it-works .asset-type-list {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper .asset-type-image {
		background-size: 80% 100% !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details p {
		font-size: 0.9rem !important;
		line-height: 1rem !important;
		text-align: left !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details h5 {
		font-size: 0.9rem !important;
		line-height: 1rem !important;
	}

	.section.portfolio-insights h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 30px !important;
	}

	.section.portfolio-insights .row {
		flex-direction: column;
	}

	.section.portfolio-insights .row .column {
		margin: 20px auto !important;
		max-width: 500px !important;
	}

	.section.portfolio-insights .row .column .details-container {
		padding: 25px 25px 50px !important;
	}

	.section.portfolio-insights .row .column .details-container p {
		font-size: 1rem !important;
	}

	.section.portfolio-insights .row .column .details-container .cta-with-arrow {
		display: block !important;
	}

	.section.whats-in-it h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
	}

	.section.whats-in-it .categories-container .category-list {
		grid-template-columns: repeat(1, 1fr) !important;
		grid-template-rows: repeat(1, 1fr) !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item {
		max-width: 500px !important;
		padding: 30px !important;
		border-radius: 20px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-image-wrapper {
		flex: 20%;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-image-wrapper .category-image {
		height: 90px !important;
		width: 90px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-details {
		flex: 80%;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-details p {
		font-size: 1rem !important;
	}

	/**
    ** Borrowers Page
    **/
	.borrowers-hero-section {
		padding: 120px 0 70px !important;
	}

	.borrowers-hero-section .container {
		flex-direction: column;
	}

	.borrowers-hero-section .hero-left h2 {
		font-size: 4rem !important;
		line-height: 4rem !important;
		margin-bottom: 30px !important;
	}

	.borrowers-hero-section .hero-left p {
		font-size: 1rem !important;
		max-width: 100% !important;
		margin-bottom: 20px !important;
	}

	.borrowers-hero-section .hero-right .hero-image-wrapper {
		margin-top: 40px !important;
	}

	.section.borrowers-assets .container h2 {
		font-size: 2.25rem !important;
		margin-bottom: 30px !important;
	}

	.section.borrowers-assets .container .row {
		flex-direction: column;
	}

	.section.borrowers-assets .container .row .col-6 {
		max-width: 100% !important;
	}

	.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p {
		font-size: 1rem !important;
		max-width: 100% !important;
		text-align: center;
	}

	.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p:last-child {
		margin-bottom: 30px !important;
	}

	/**
    ** Contact Us Page
    **/
	.contact-hero-section {
		padding: 120px 0 70px !important;
	}

	.contact-hero-section .container {
		flex-direction: column;
		height: 100% !important;
	}

	.contact-hero-section h2 {
		font-size: 2.5rem !important;
		line-height: 2.75rem !important;
		max-width: 500px !important;
	}

	.contact-hero-section h2 br {
		display: none;
	}

	.contact-hero-section h3 {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
		margin-bottom: 40px !important;
		max-width: 350px !important;
	}

	.contact-hero-section p {
		font-size: 1rem !important;
	}

	.contact-hero-section .hero-right {
		justify-content: center !important;
	}

	.contact-hero-section .hero-right .contact-form {
		padding: 20px !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content h2 {
		font-size: 2.5rem !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content p {
		font-size: 1rem !important;
	}

	.section.any-questions .container {
		flex-direction: column;
	}

	.section.any-questions .any-questions-left h2 {
		font-size: 2.5rem !important;
		line-height: 2.75rem !important;
		text-align: center !important;
		margin: 0 auto 40px !important;
	}

	.section.any-questions .any-questions-left p {
		font-size: 1rem !important;
		text-align: center !important;
		margin: 0 auto !important;
	}

	.section.any-questions .any-questions-right .questions-list .question-container .question {
		border-radius: 10px !important;
	}

	.section.any-questions .any-questions-right .questions-list .question-container .answer-container {
		border-bottom-left-radius: 10px !important;
		border-bottom-right-radius: 10px !important;
	}

	.section.any-questions .any-questions-right .questions-list .question-container.active .question {
		border-bottom-left-radius: 0 !important;
		border-bottom-right-radius: 0 !important;
	}

	/**
    ** Footer
    **/
	footer .upper-footer {
		flex-direction: column;
		padding: 50px 0 !important;
		gap: 50px;
	}

	footer .upper-footer h2 {
		font-size: 2.5rem !important;
		line-height: 2.75rem !important;
	}

	footer .upper-footer .btn-yellow {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
		padding: 8px 30px !important;
		border-radius: 25px !important;
	}

	footer .lower-footer {
		flex-direction: column;
		align-items: start;
		padding: 50px 0;
	}

	footer .lower-footer .footer-logo {
		margin-bottom: 50px;
	}

	footer .lower-footer .footer-nav {
		width: 100%;
		padding: 0 !important;
	}

	footer .lower-footer .footer-nav ul li {
		font-size: 1rem !important;
	}

	footer .lower-footer #barker-logo-footer {
		height: 60px;
	}

	/**
    ** Error - 404 Page
    **/
	.error-section {
		padding: 120px 0 70px !important;
	}
}

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

	/**
    ** Home Page
    **/
	.sections-group .background-circles.hero .circle:nth-child(1) {
		background-image: url("assets/images/home/circle-mobile-1.svg") !important;
		background-size: 60% !important;
		background-position: 100% 0% !important;
	}

	.sections-group .background-circles.hero .circle:nth-child(2) {
		background-image: url("assets/images/home/circle-mobile-2.svg") !important;
		background-size: 100% !important;
		background-position: 0% 90% !important;
	}

	.sections-group .background-circles.hero .circle:nth-child(3) {
		background-image: none !important;
	}

	.sections-group .background-circles.challenge-ai .circle {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		pointer-events: none;
		background-repeat: no-repeat;
		z-index: 0;
	}

	.sections-group .background-circles.challenge-ai .circle:nth-child(1) {
		background-image: url("assets/images/home/circle-mobile-3.svg") !important;
		background-size: 95% !important;
		background-position: 0% 2% !important;
	}

	.sections-group .background-circles.challenge-ai .circle:nth-child(2) {
		background-image: url("assets/images/home/circle-mobile-4.svg") !important;
		background-size: 90% !important;
		background-position: 100% 20% !important;
	}

	.sections-group .background-circles.challenge-ai .circle:nth-child(3) {
		background-image: url("assets/images/home/circle-mobile-5.svg") !important;
		background-size: 95% !important;
		background-position: 0% 41% !important;
	}

	.sections-group .background-circles.challenge-ai .circle:nth-child(4) {
		background-image: url("assets/images/home/circle-mobile-6.svg") !important;
		background-size: 100% !important;
		background-position: 0% 70% !important;
	}

	.sections-group .background-circles.challenge-ai .circle:nth-child(5) {
		background-image: url("assets/images/home/circle-mobile-7.svg") !important;
		background-size: 80% !important;
		background-position: 100% 88% !important;
	}

	.sections-group .background-circles.challenge-ai .circle:nth-child(6) {
		background-image: url("assets/images/home/circle-mobile-8.svg") !important;
		background-size: 90% !important;
		background-position: 0% 110% !important;
	}

	.sections-group .background-circles.testimonials .circle {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		pointer-events: none;
		background-repeat: no-repeat;
		z-index: 0;
	}

	.sections-group .background-circles.testimonials .circle:nth-child(1) {
		background-image: url("assets/images/home/circle-mobile-9.svg") !important;
		background-size: 65% !important;
		background-position: 0% 2% !important;
	}

	.sections-group .background-circles.testimonials .circle:nth-child(2) {
		background-image: url("assets/images/home/circle-mobile-10.svg") !important;
		background-size: 70% !important;
		background-position: 100% 62% !important;
	}

	.sections-group .background-circles.testimonials .circle:nth-child(3) {
		background-image: url("assets/images/home/circle-mobile-11.svg") !important;
		background-size: 100% !important;
		background-position: 0% 125% !important;
	}

	.sections-group .background-circles.testimonials .circle:nth-child(4) {
		background-image: none !important;
	}

	.hero-section .container {
		flex-direction: column;
		height: 100% !important;
	}

	.hero-section .container h2 {
		font-size: 4rem !important;
		line-height: 4rem !important;
		max-width: 220px !important;
	}

	.hero-section .container h2 .sliding-vertical {
		margin-left: -25px;
	}

	.hero-section .container h3 {
		padding-left: 0 !important;
		font-size: 2.2rem !important;
	}

	.hero-section .container h3 .sliding-vertical {
		margin-left: -4px;
	}

	.hero-section .container h3::before {
		display: none;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper {
		position: relative;
		height: 550px !important;
		width: 385px !important;
		margin: 0 auto;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .hero-thumbnail {
		width: 132px !important;
		height: 194px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img01 {
		left: 187px !important;
		top: 62px !important;
		width: 194px !important;
		height: 132px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img02 {
		top: 209px !important;
		left: 209px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img03 {
		left: 40px !important;
		top: 0 !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img04 {
		top: 356px !important;
		left: 62px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img05 {
		left: 0 !important;
		top: 209px !important;
		width: 194px !important;
		height: 132px !important;
	}

	.section.client-says {
		background-position: 10% 10% !important;
		background-size: 250% 150% !important;
	}

	.section.client-says .client-says-carousel::before {
		background: rgba(0, 0, 0, 0.6) !important;
	}

	.section.client-says .client-says-carousel .slick-list {
		z-index: 1000;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content {
		max-width: 550px !important;
		text-align: center;
		margin: 0 auto;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content p {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		text-align: center !important;
		max-width: 100% !important;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content p br {
		display: none;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content hr {
		width: 80%;
		margin: 50px auto !important;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content small {
		font-size: 1.25rem !important;
		text-align: center !important;
	}

	.section.challenge-outcome h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		max-width: 550px !important;
	}

	.section.challenge-outcome .row {
		flex-direction: column;
	}

	.section.challenge-outcome .row .column {
		margin: 20px 0 !important;
	}

	.section.challenge-outcome .row .column h3 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
	}

	.section.challenge-outcome .row .column p {
		font-size: 1rem !important;
	}

	.section.challenge-outcome .row .column.outcome img {
		margin-top: 60px !important;
	}

	.section.with-barker .container {
		flex-direction: column;
	}

	.section.with-barker .container h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		max-width: 550px !important;
		text-align: center !important;
		margin: 0 auto 50px !important;
	}

	.section.with-barker .container p {
		font-size: 1rem !important;
		line-height: 1.25rem !important;
		max-width: 550px !important;
		text-align: center;
		margin: 0 auto 50px !important;
	}

	.section.with-barker .container .with-barker-left .mobile-hint {
		display: block;
	}

	.section.with-barker .container .with-barker-right {
		display: flex;
		flex-direction: column;
	}

	.section.with-barker .container .with-barker-right .thumbnail {
		max-width: 100% !important;
		height: 100% !important;
		margin: 20px 0 !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner {
		height: 200px !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front,
	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back {
		display: flex;
		align-items: center;
		gap: 30px;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front svg,
	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back svg {
		flex: 50%;
		margin-bottom: 0 !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front p,
	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back p {
		flex: 50%;
		font-size: 1rem !important;
		line-height: 1.25rem !important;
		text-align: left !important;
		max-width: 100% !important;
		margin-bottom: 0 !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back {
		transform: rotateX(-180deg) !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail:first-child {
		margin-top: 0 !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail:last-child {
		margin-bottom: 0 !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail:hover .thumbnail-inner {
		transform: rotateX(-180deg) !important;
	}

	.section.with-barker .container .with-barker-right .active .thumbnail-inner {
		transform: rotateX(-180deg) !important;
	}

	.section.most-of-barker h2 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin-bottom: 40px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper {
		padding: 10px 0 !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card {
		min-height: 400px;
		background-size: 100% auto !important;
		background-position: top center !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 80px 30px 30px !important;
		max-width: 100% !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 1.75rem !important;
		line-height: 2.75rem !important;
		max-width: 270px !important;
		margin-bottom: 20px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-1 .feature-card .feature-content h3 {
		margin-bottom: 20px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-2 .feature-card .feature-content h3 {
		max-width: 270px !important;
	}

	.section.secure-process {
		background: #000;
	}

	.section.secure-process h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		text-align: center !important;
		max-width: 400px !important;
	}

	.section.secure-process h2 span {
		display: none;
	}

	.section.secure-process .mobile .demo .label .step-title {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
	}

	.section.secure-process .mobile .demo .label .step-description {
		font-size: 1rem !important;
		margin-bottom: 50px !important;
	}

	.section.our-clients .container h3 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
	}

	.section.our-clients .container .our-clients-carousel .carousel-item .carousel-content .carousel-details {
		padding: 20px 40px 55px !important;
	}

	.section.barkers-backer {
		min-height: unset !important;
		padding: 50px 0 30px !important;
	}

	.section.barkers-backer h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 30px !important;
	}

	.section.case-studies .container h3 {
		font-size: 2.25rem !important;
		line-height: 2.25rem !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-image img {
		max-height: 250px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details {
		padding: 20px 30px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details h3 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 20px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details p {
		margin-bottom: 20px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details .action-container {
		justify-content: start !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details .action-container .cta-with-arrow {
		display: inline-block !important;
	}

	.section.coming-soon {
		min-height: 100vh;
		padding: 130px 0 80px !important;
	}

	.section.coming-soon .container {
		padding: 0 30px !important;
	}

	.section.coming-soon::before {
		background-size: 90% auto !important;
		background-position: 50% 5% !important;
	}

	.section.coming-soon h2 {
		font-size: 2.25rem !important;
	}

	.section.coming-soon p {
		font-size: 1rem !important;
	}

	/**
    ** About Us Page
    **/
	.background-circles.about-us .circle:nth-child(1) {
		background-image: url("assets/images/about-us/circle-mobile-1.svg") !important;
		background-size: 50% !important;
		background-position: 100% 0% !important;
	}

	.background-circles.about-us .circle:nth-child(2) {
		background-image: url("assets/images/about-us/circle-mobile-2.svg") !important;
		background-size: 100% !important;
		background-position: 0% 15% !important;
	}

	.background-circles.about-us .circle:nth-child(3) {
		background-image: url("assets/images/about-us/circle-mobile-3.svg") !important;
		background-size: 100% !important;
		background-position: 0% 34% !important;
	}

	.background-circles.about-us .circle:nth-child(4) {
		background-image: url("assets/images/about-us/circle-mobile-4.svg") !important;
		background-size: 95% !important;
		background-position: 100% 51% !important;
	}

	.background-circles.about-us .circle:nth-child(5) {
		background-image: url("assets/images/about-us/circle-mobile-5.svg") !important;
		background-size: 98% !important;
		background-position: 0% 74% !important;
	}

	.background-circles.about-us .circle:nth-child(6) {
		background-image: url("assets/images/about-us/circle-mobile-6.svg") !important;
		background-size: 100% !important;
		background-position: 0% 90% !important;
	}

	.background-circles.about-us .circle:nth-child(7) {
		background-image: url("assets/images/about-us/circle-mobile-7.svg") !important;
		background-size: 60% !important;
		background-position: 100% 106% !important;
	}

	.abt-hero-section {
		padding: 120px 0 70px !important;
	}

	.abt-hero-section .container {
		flex-direction: column;
		height: 100% !important;
	}

	.abt-hero-section .hero-left {
		margin-bottom: 20px;
	}

	.abt-hero-section .hero-left h2 {
		font-size: 4rem !important;
		line-height: 4rem !important;
		margin-bottom: 20px !important;
	}

	.abt-hero-section .hero-left p {
		font-size: 1rem !important;
		margin-bottom: 20px !important;
	}

	.abt-hero-section .hero-right .hero-thumbnail-wrapper {
		position: relative;
		height: 500px !important;
		width: 100% !important;
	}

	.abt-hero-section .hero-right .hero-thumbnail-wrapper .hero-thumbnail {
		width: 55% !important;
		height: 55% !important;
	}

	.abt-hero-section .hero-right .hero-thumbnail-wrapper .img01 {
		top: 0;
		left: 0;
	}

	.abt-hero-section .hero-right .hero-thumbnail-wrapper .img02 {
		bottom: 0;
		right: 0;
	}

	.section.most-trusted h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
	}

	.section.most-trusted p {
		font-size: 1rem !important;
	}

	.section.most-trusted .row {
		flex-direction: column;
	}

	.section.most-trusted .row .column {
		margin: 10px 0 !important;
		min-height: 300px !important;
	}

	.section.most-trusted .row .column:first-child {
		margin-top: 0 !important;
	}

	.section.most-trusted .row .column:last-child {
		margin-bottom: 0 !important;
	}

	.section.borrowers-lenders h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin: 0 auto 30px !important;
	}

	.section.borrowers-lenders .row .column svg {
		max-height: 80px !important;
		max-width: 95px !important;
	}

	.section.borrowers-lenders .row .column h3 {
		font-size: 1.75rem !important;
		line-height: 1.75rem !important;
	}

	.section.borrowers-lenders .row .column p {
		font-size: 1rem !important;
	}

	.section.smarter-lending .row {
		flex-direction: column;
	}

	.section.smarter-lending .col-4,
	.section.smarter-lending .col-8,
	.section.smarter-lending .col-12 {
		max-width: 100%;
	}

	.section.smarter-lending h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin: 0 auto 40px !important;
		max-width: 500px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card {
		min-height: 500px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 60px 20px 20px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 1.5rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 10px !important;
		max-width: 300px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content p {
		font-size: 1rem !important;
	}

	.section.confidence {
		padding: 70px 0 !important;
	}

	.section.confidence .content-wrapper h2 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		max-width: 340px !important;
	}

	.section.confidence .content-wrapper p {
		text-align: center;
	}

	/**
    ** Case Studies Page
    **/
	.background-circles.case-studies-circles .circle:nth-child(1) {
		background-image: none !important;
	}

	.background-circles.case-studies-circles .circle:nth-child(2) {
		background-image: none !important;
	}

	.background-circles.case-studies-circles .circle:nth-child(3) {
		background-image: url("assets/images/case-studies/circle-mobile-5.svg") !important;
		background-size: 100% !important;
		background-position: 0% 15% !important;
	}

	.background-circles.case-studies-circles .circle:nth-child(4) {
		background-image: url("assets/images/case-studies/circle-mobile-4.svg") !important;
		background-size: 95% !important;
		background-position: 100% 69% !important;
	}

	.background-circles.case-studies-circles .circle:nth-child(5) {
		background-image: url("assets/images/case-studies/circle-mobile-3.svg") !important;
		background-size: 98% !important;
		background-position: 0% 115% !important;
	}

	.background-circles.case-studies-circles .circle:nth-child(6) {
		background-image: none !important;
	}

	.case-studies-hero-section .content-wrapper {
		max-width: 525px !important;
	}

	.case-studies-hero-section .content-wrapper h2 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
		margin-bottom: 30px !important;
	}

	.section.case-studies-list h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin: 0 auto 70px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-banner {
		height: 150px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content {
		margin: 60px 0 !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row {
		margin-bottom: 0 !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .title-wrapper .title {
		font-size: 1.5rem !important;
		line-height: 2rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .subtitle-wrapper .subtitle {
		font-size: 1.4rem !important;
		line-height: 1.9rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-primary {
		font-size: 1.4rem !important;
		line-height: 1.9rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-secondary {
		font-size: 1rem !important;
		line-height: 1.5rem !important;
	}

	/**
    ** Lenders Page
    **/
	.sections-group.group-1 .background-circles.lenders .circle:nth-child(1) {
		background-image: url("assets/images/lenders/circle-mobile-1.svg") !important;
		background-size: 60% !important;
		background-position: 100% 0% !important;
	}

	.sections-group.group-1 .background-circles.lenders .circle:nth-child(2) {
		background-image: url("assets/images/lenders/circle-mobile-2.svg") !important;
		background-size: 80% !important;
		background-position: 0% 67% !important;
	}

	.sections-group.group-1 .background-circles.lenders .circle:nth-child(3) {
		background-image: url("assets/images/lenders/circle-mobile-3.svg") !important;
		background-size: 85% !important;
		background-position: 100% 99% !important;
	}

	.sections-group.group-2 .background-circles.lenders .circle:nth-child(1) {
		background-image: url("assets/images/lenders/circle-mobile-4.svg") !important;
		background-size: 90% !important;
		background-position: 100% 2% !important;
	}

	.sections-group.group-2 .background-circles.lenders .circle:nth-child(2) {
		background-image: url("assets/images/lenders/circle-mobile-5.svg") !important;
		background-size: 80% !important;
		background-position: 0% 70% !important;
	}

	.sections-group.group-2 .background-circles.lenders .circle:nth-child(3) {
		background-image: url("assets/images/lenders/circle-mobile-6.svg") !important;
		background-size: 70% !important;
		background-position: 100% 123% !important;
	}

	.sections-group.group-2 .background-circles.lenders .circle:nth-child(4) {
		background-image: none !important;
	}

	.lenders-hero-section {
		padding: 120px 0 70px !important;
	}

	.lenders-hero-section .container {
		flex-direction: column;
		height: 100% !important;
	}

	.lenders-hero-section .hero-left {
		flex: 6;
	}

	.lenders-hero-section .hero-left h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
	}

	.lenders-hero-section .hero-left p {
		font-size: 1rem !important;
	}

	.lenders-hero-section .hero-right .hero-graph-wrapper {
		margin-top: 0 !important;
	}

	.section.ai-valuations h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
	}

	.section.ai-valuations .valuations-container {
		flex-direction: column;
	}

	.section.ai-valuations .valuations-container .valuations-left {
		padding: 30px 30px !important;
		text-align: center !important;
	}

	.section.ai-valuations .valuations-container .valuations-left h3 {
		font-size: 1.5rem !important;
		line-height: 1.75rem !important;
		max-width: 275px !important;
		text-align: center;
	}

	.section.ai-valuations .valuations-container .valuations-left p {
		text-align: center;
		font-size: 1rem !important;
	}

	.section.ai-valuations .valuations-container .valuations-left .cta-with-arrow {
		display: block !important;
		margin: 30px auto 0 !important;
	}

	.section.ai-valuations .valuations-container .valuations-right {
		padding: 20px !important;
	}

	.section.ai-valuations .valuations-container .valuations-right .assets-donut-legend-title {
		left: 15px !important;
		top: 15% !important;
	}

	.section.ai-valuations .valuations-container .valuations-right .assets-donut-wrapper {
		padding: 15px !important;
		border-radius: 30px;
		max-width: 100% !important;
		max-height: 300px;
	}

	.section.how-it-works h3 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		text-align: center !important;
	}

	.section.how-it-works p {
		font-size: 1rem !important;
		text-align: center !important;
	}

	.section.how-it-works h4 {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
		text-align: center !important;
		margin-bottom: 30px !important;
	}

	.section.how-it-works .asset-type-list {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper {
		width: 70px !important;
		height: 70px !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper .asset-type-image-wrapper {
		background-size: 70% 100% !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details {
		padding: 0 !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details p {
		font-size: 0.9rem !important;
		line-height: 1rem !important;
		text-align: left !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details h5 {
		font-size: 0.9rem !important;
		line-height: 1rem !important;
	}

	.section.portfolio-insights h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 30px !important;
	}

	.section.portfolio-insights .row {
		flex-direction: column;
	}

	.section.portfolio-insights .row .column {
		margin: 20px 0 !important;
	}

	.section.portfolio-insights .row .column .details-container {
		height: auto !important;
		padding: 25px 25px 25px !important;
	}

	.section.portfolio-insights .row .column .details-container p {
		font-size: 1rem !important;
		margin-bottom: 30px !important;
	}

	.section.portfolio-insights .row .column .details-container .cta-with-arrow {
		display: block !important;
	}

	.section.whats-in-it h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
	}

	.section.whats-in-it .categories-container .category-list {
		grid-template-columns: repeat(1, 1fr) !important;
		grid-template-rows: repeat(1, 1fr) !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item {
		padding: 30px !important;
		border-radius: 20px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-image {
		height: 90px !important;
		width: 90px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-details p {
		font-size: 1rem !important;
	}

	/**
    ** Borrowers Page
    **/
	.sections-group .background-circles.borrowers .circle:nth-child(1) {
		background-image: url("assets/images/borrowers/circle-mobile-1.svg") !important;
		background-size: 60% !important;
		background-position: 100% 0% !important;
	}

	.sections-group .background-circles.borrowers .circle:nth-child(2) {
		background-image: none !important;
	}

	.sections-group .background-circles.borrowers .circle:nth-child(3) {
		background-image: url("assets/images/borrowers/circle-mobile-3.svg") !important;
		background-size: 90% !important;
		background-position: 100% 70% !important;
	}

	.borrowers-hero-section {
		padding: 120px 0 70px !important;
	}

	.borrowers-hero-section .container {
		flex-direction: column;
	}

	.borrowers-hero-section .hero-left h2 {
		font-size: 2.25rem !important;
		line-height: 2.25rem !important;
		margin-bottom: 30px !important;
	}

	.borrowers-hero-section .hero-left p {
		font-size: 1rem !important;
		max-width: 100% !important;
		margin-bottom: 20px !important;
	}

	.borrowers-hero-section .hero-right .hero-image-wrapper {
		margin-top: 40px !important;
	}

	.section.borrowers-assets .container h2 {
		font-size: 2.25rem !important;
		margin-bottom: 30px !important;
	}

	.section.borrowers-assets .container .row {
		flex-direction: column;
	}

	.section.borrowers-assets .container .row .col-6 {
		max-width: 100% !important;
	}

	.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p {
		font-size: 1rem !important;
		max-width: 100% !important;
		text-align: center;
	}

	.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p:last-child {
		margin-bottom: 30px !important;
	}

	/**
    ** Contact Us Page
    **/
	.background-circles.contact-us .circle {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		pointer-events: none;
		background-repeat: no-repeat;
		z-index: 0;
	}

	.background-circles.contact-us .circle:nth-child(1) {
		background-image: url("assets/images/contact-us/circle-mobile-1.svg") !important;
		background-size: 50% !important;
		background-position: 100% 0% !important;
	}

	.background-circles.contact-us .circle:nth-child(2) {
		background-image: url("assets/images/contact-us/circle-mobile-2.svg") !important;
		background-size: 70% !important;
		background-position: 0% 70% !important;
	}

	.background-circles.contact-us .circle:nth-child(3) {
		background-image: url("assets/images/contact-us/circle-mobile-3.svg") !important;
		background-size: 80% !important;
		background-position: 50% 112% !important;
	}

	.contact-hero-section {
		padding: 120px 0 70px !important;
	}

	.contact-hero-section .container {
		flex-direction: column;
		height: 100% !important;
	}

	.contact-hero-section h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		max-width: 270px !important;
	}

	.contact-hero-section h2 br {
		display: none;
	}

	.contact-hero-section h3 {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
		max-width: 250px !important;
		margin-bottom: 20px !important;
	}

	.contact-hero-section p {
		font-size: 1rem !important;
	}

	.contact-hero-section .hero-right .contact-form {
		padding: 20px !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content h2 {
		font-size: 2.25rem !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content p {
		font-size: 1rem !important;
	}

	.section.any-questions .container {
		flex-direction: column;
	}

	.section.any-questions .any-questions-left h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
		text-align: center !important;
	}

	.section.any-questions .any-questions-left p {
		font-size: 1rem !important;
		text-align: center !important;
	}

	.section.any-questions .any-questions-right .questions-list .question-container .question {
		border-radius: 10px !important;
	}

	.section.any-questions .any-questions-right .questions-list .question-container .answer-container {
		border-bottom-left-radius: 10px !important;
		border-bottom-right-radius: 10px !important;
	}

	.section.any-questions .any-questions-right .questions-list .question-container.active .question {
		border-bottom-left-radius: 0 !important;
		border-bottom-right-radius: 0 !important;
	}

	/**
    ** Footer
    **/
	footer .upper-footer {
		flex-direction: column;
		padding: 50px 0 !important;
		gap: 50px;
	}

	footer .upper-footer h2 {
		font-size: 2.25rem !important;
		line-height: 2.5rem !important;
	}

	footer .upper-footer .btn-yellow {
		font-size: 1rem !important;
		line-height: 1.25rem !important;
		padding: 8px 30px !important;
		border-radius: 25px !important;
	}

	footer .lower-footer {
		flex-direction: column;
		align-items: start;
		padding: 50px 0;
	}

	footer .lower-footer .footer-logo {
		margin-bottom: 50px;
	}

	footer .lower-footer .footer-nav {
		width: 100%;
		padding: 0 !important;
	}

	footer .lower-footer .footer-nav ul li {
		font-size: 1rem !important;
	}

	/**
    ** Terms and Conditions / Privacy Policy
    **/
	.top-card {
		padding: 30px !important;
	}

	.top-card h3 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
		margin-bottom: 30px !important;
	}

	.top-card p {
		font-size: 1.2rem;
		line-height: 1.2rem;
		font-weight: 500;
		color: #9a9a9a;
		text-align: center;
	}

	.top-card .checklist {
		margin: 40px auto 0 !important;
	}

	.inner-contents {
		padding: 60px 20px !important;
	}

	.inner-contents .part {
		margin-bottom: 80px !important;
	}

	.inner-contents .part h3 {
		font-size: 2.25rem !important;
		line-height: 2.75rem !important;
	}

	.inner-contents .part h4 {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
	}

	.severability-and-waiver {
		padding: 20px !important;
	}

	.severability-and-waiver .inner-contents {
		padding: 50px 20px !important;
	}

	.severability-and-waiver .part h4 {
		font-size: 2rem;
		line-height: 2.5rem;
	}

	.severability-and-waiver .part:last-child {
		margin-bottom: 0 !important;
	}

	/**
    ** Error - 404 Page
    **/
	.sections-group .background-circles.error .circle:nth-child(1) {
		background-image: url("assets/images/home/circle-mobile-1.svg") !important;
		background-size: 60% !important;
		background-position: 100% 0% !important;
	}

	.sections-group .background-circles.error .circle:nth-child(2) {
		background-image: url("assets/images/home/circle-mobile-2.svg") !important;
		background-size: 100% !important;
		background-position: 0% 300% !important;
	}

	.sections-group .background-circles.error .circle:nth-child(3) {
		background-image: none !important;
	}

	.error-section .container {
		height: 100% !important;
	}

	.error-section h2 {
		font-size: 5rem !important;
		line-height: 5rem !important;
		margin-bottom: 10px !important;
	}

	.error-section h3 {
		font-size: 2rem !important;
		line-height: 2rem !important;
		margin-bottom: 20px !important;
	}

	.error-section p {
		font-size: 1rem !important;
		line-height: 1.5rem !important;
	}
}

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

	.mobile-navigation .mobile-nav-logo {
		margin-bottom: 2.5rem;
	}

	.mobile-navigation .menu-header-menu-container ul .menu-item {
		margin: 2rem 0;
	}

	.mobile-navigation .menu-header-menu-container ul .menu-item a {
		font-size: 2rem;
		line-height: 2rem;
	}

	.mobile-navigation.active {
		display: flex;
	}

	/**
    ** Home Page
    **/
	.hero-section .container {
		flex-direction: column;
		height: 100% !important;
	}

	.hero-section .container h2 {
		font-size: 3.5rem !important;
		line-height: 3.5rem !important;
		max-width: 185px !important;
	}

	.hero-section .container h2 .sliding-vertical {
		margin-left: -23px;
	}

	.hero-section .container h3 {
		padding-left: 0 !important;
		font-size: 2rem !important;
	}

	.hero-section .container h3 .sliding-vertical {
		margin-left: -5px;
	}

	.hero-section .container h3::before {
		display: none;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper {
		position: relative;
		height: 440px !important;
		width: 298px !important;
		margin: 0 auto;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .hero-thumbnail {
		width: 106px !important;
		height: 155px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img01 {
		left: 141px !important;
		top: 49px !important;
		height: 106px !important;
		width: 155px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img02 {
		top: 170px !important;
		left: 170px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img03 {
		left: 20px !important;
		top: 0 !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img04 {
		top: 291px !important;
		left: 49px !important;
	}

	.hero-section .hero-right .hero-thumbnail-wrapper .img05 {
		left: 0 !important;
		top: 170px !important;
		height: 106px !important;
		width: 155px !important;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content p {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content hr {
		margin: 40px auto 30px !important;
	}

	.section.client-says .client-says-carousel .slick-list .slick-track .carousel-item .carousel-content small {
		font-size: 1rem !important;
	}

	.section.client-says .client-says-carousel .slick-dots li {
		margin: 0 !important;
	}

	.section.client-says .client-says-carousel .slick-dots li button {
		width: 5px !important;
		height: 5px !important;
		border-radius: 5px !important;
	}

	.section.client-says .client-says-carousel .slick-dots .slick-active button {
		width: 20px !important;
	}

	.section.challenge-outcome h2 {
		font-size: 1.75em !important;
		line-height: 2rem !important;
		max-width: 550px !important;
	}

	.section.challenge-outcome .row {
		flex-direction: column;
	}

	.section.challenge-outcome .row .column {
		padding: 30px 30px 15px !important;
		margin: 20px 0 !important;
	}

	.section.challenge-outcome .row .column h3 {
		font-size: 1.5rem !important;
		line-height: 1.75rem !important;
		margin-bottom: 20px !important;
	}

	.section.challenge-outcome .row .column p {
		font-size: 1rem !important;
	}

	.section.challenge-outcome .row .column.outcome img {
		margin-top: 30px !important;
	}

	.section.with-barker .container {
		flex-direction: column;
	}

	.section.with-barker .container h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
		max-width: 550px !important;
		text-align: center !important;
		margin: 0 auto 30px !important;
	}

	.section.with-barker .container p {
		font-size: 1rem !important;
		line-height: 1.25rem !important;
		max-width: 550px !important;
		text-align: center;
		margin: 0 auto 30px !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail {
		margin: 10px 0 !important;
	}

	.section.with-barker .container .with-barker-right .thumbnail .thumbnail-inner {
		height: 170px !important;
	}

	.section.most-of-barker h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
		margin-bottom: 30px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper {
		padding: 10px 0 !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card {
		min-height: 350px;
		background-size: 100% auto !important;
		background-position: top center !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 80px 30px 30px !important;
		max-width: 100% !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 1.25rem !important;
		line-height: 2.25rem !important;
		max-width: 200px !important;
		margin-bottom: 20px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-1 .feature-card .feature-content h3 {
		margin-bottom: 20px !important;
	}

	.section.most-of-barker .features-grid .feature-card-wrapper.feature-2 .feature-card .feature-content h3 {
		max-width: 200px !important;
	}

	.section.secure-process h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
		max-width: 300px !important;
	}

	.section.secure-process .mobile .demo .label .step-title {
		font-size: 1rem !important;
		line-height: 1rem !important;
		margin-bottom: 20px !important;
	}

	.section.secure-process .mobile .demo .label .step-description {
		font-size: 1rem !important;
		margin-bottom: 40px !important;
	}

	.section.our-clients .container h3 {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
	}

	.section.our-clients .container .our-clients-carousel .carousel-content {
		padding: 0 0 200px;
	}

	.section.our-clients .container .our-clients-carousel .carousel-content .carousel-image::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 80%, black 100%) !important;
	}

	.section.our-clients .container .our-clients-carousel .carousel-content .carousel-details {
		padding: 10px 30px 40px !important;
	}

	.section.our-clients .container .our-clients-carousel .carousel-content .carousel-details p {
		line-height: 1.5rem !important;
	}

	.section.barkers-backer h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
	}

	.section.case-studies .container h3 {
		font-size: 2.25rem !important;
		line-height: 2.25rem !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-image img {
		max-height: 200px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details {
		padding: 20px 30px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details h3 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 20px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details p {
		margin-bottom: 20px !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details .action-container {
		justify-content: start !important;
	}

	.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details .action-container .cta-with-arrow {
		display: inline-block !important;
	}

	.section.coming-soon {
		min-height: 100vh;
		padding: 220px 0 70px !important;
	}

	.section.coming-soon .container {
		padding: 0 30px !important;
	}

	.section.coming-soon .popup .email-submit form p:last-child {
		margin-bottom: 0 !important;
	}

	.section.coming-soon::before {
		background-size: 90% auto !important;
		background-position: 50% 5% !important;
	}

	.section.coming-soon h2 {
		font-size: 1.75rem !important;
	}

	.section.coming-soon p {
		font-size: 1rem !important;
	}

	/**
    ** About Us Page
    **/
	.abt-hero-section .hero-left h2 {
		font-size: 3.5rem !important;
		line-height: 3.5rem !important;
	}

	.section.most-trusted {
		padding: 50px 0 !important;
	}

	.section.most-trusted h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
		margin-bottom: 30px !important;
	}

	.section.most-trusted p {
		font-size: 1rem !important;
		margin-bottom: 30px !important;
	}

	.section.most-trusted .row {
		flex-direction: column;
	}

	.section.most-trusted .row .column {
		margin: 10px 0 !important;
		min-height: 300px !important;
	}

	.section.most-trusted .row .column:first-child {
		margin-top: 0 !important;
	}

	.section.most-trusted .row .column:last-child {
		margin-bottom: 0 !important;
	}

	.section.borrowers-lenders h2 {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
		margin: 0 auto 20px !important;
	}

	.section.borrowers-lenders .row .column {
		padding: 30px 30px 40px !important;
	}

	.section.borrowers-lenders .row .column::after {
		bottom: 20px !important;
	}

	.section.borrowers-lenders .row .column h3 {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
	}

	.section.borrowers-lenders .row .column p {
		font-size: 1rem !important;
	}

	.section.smarter-lending .row {
		flex-direction: column;
	}

	.section.smarter-lending .col-4,
	.section.smarter-lending .col-8,
	.section.smarter-lending .col-12 {
		max-width: 100%;
	}

	.section.smarter-lending h2 {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
		margin: 0 auto 30px !important;
		max-width: 500px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card {
		min-height: 450px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content {
		padding: 60px 20px 20px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
		font-size: 1.5rem !important;
		line-height: 2.5rem !important;
		margin-bottom: 10px !important;
		max-width: 300px !important;
	}

	.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content p {
		font-size: 1rem !important;
	}

	.section.confidence .content-wrapper h2 {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
		max-width: 260px !important;
		margin-bottom: 20px !important;
	}

	.section.confidence .content-wrapper p {
		text-align: center;
	}

	/**
    ** Case Studies Page
    **/
	.case-studies-hero-section .content-wrapper {
		max-width: 525px !important;
	}

	.case-studies-hero-section .content-wrapper h2 {
		font-size: 2rem !important;
		line-height: 2.75rem !important;
		margin-bottom: 20px !important;
	}

	.section.case-studies-list h2 {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
		margin: 0 auto 70px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-banner {
		height: 130px !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content {
		margin: 50px 0 !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row {
		margin-bottom: 0 !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .title-wrapper .title {
		font-size: 1.5rem !important;
		line-height: 2rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .subtitle-wrapper .subtitle {
		font-size: 1.4rem !important;
		line-height: 1.9rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-primary {
		font-size: 1.4rem !important;
		line-height: 1.9rem !important;
	}

	.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-secondary {
		font-size: 1rem !important;
		line-height: 1.5rem !important;
	}

	/**
    ** Lenders Page
    **/
	.lenders-hero-section .hero-left h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
	}

	.section.ai-valuations {
		padding: 50px 0 !important;
	}

	.section.ai-valuations h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
		margin-bottom: 30px !important;
	}

	.section.ai-valuations .valuations-container .valuations-left h3 {
		font-size: 1.25rem !important;
		line-height: 1.5rem !important;
	}

	.section.ai-valuations .valuations-container .valuations-left .cta-with-arrow {
		display: block !important;
		margin: 20px auto 0 !important;
	}

	.section.ai-valuations .valuations-container .valuations-right {
		padding: 15px !important;
	}

	.section.ai-valuations .valuations-container .valuations-right .assets-donut-legend-title {
		top: 10% !important;
	}

	.section.ai-valuations .valuations-container .valuations-right .assets-donut-wrapper {
		padding: 15px !important;
		border-radius: 30px;
		max-width: 100% !important;
		max-height: 250px;
	}

	.section.how-it-works {
		padding: 50px 0 !important;
	}

	.section.how-it-works h3 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
	}

	.section.how-it-works h4 {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
		text-align: center !important;
		margin-bottom: 30px !important;
	}

	.section.how-it-works .asset-type-list {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper {
		width: 60px !important;
		height: 60px !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper .asset-type-image {
		background-size: 70% 100% !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details {
		padding: 0 !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details p {
		font-size: 0.8rem !important;
		line-height: 0.9rem !important;
		text-align: left !important;
		margin-bottom: 5px !important;
	}

	.section.how-it-works .asset-type-list .asset-type-container .asset-type-details h5 {
		font-size: 0.8rem !important;
		line-height: 0.9rem !important;
	}

	.section.portfolio-insights {
		padding: 50px 0 !important;
	}

	.section.portfolio-insights h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
		margin-bottom: 30px !important;
	}

	.section.portfolio-insights .row {
		flex-direction: column;
	}

	.section.portfolio-insights .row .column {
		margin: 20px 0 !important;
		height: 300px !important;
	}

	.section.portfolio-insights .row .column .img-container {
		height: 150px !important;
	}

	.section.portfolio-insights .row .column .details-container {
		height: auto !important;
		padding: 25px 25px 25px !important;
	}

	.section.portfolio-insights .row .column .details-container p {
		font-size: 1rem !important;
		margin-bottom: 30px !important;
	}

	.section.portfolio-insights .row .column .details-container .cta-with-arrow {
		display: block !important;
	}

	.section.whats-in-it {
		padding: 0 0 50px !important;
	}

	.section.whats-in-it h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
		margin-bottom: 30px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item {
		padding: 20px !important;
		border-radius: 20px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-image-wrapper {
		margin-right: 20px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-image-wrapper .category-image {
		height: 60px !important;
		width: 60px !important;
	}

	.section.whats-in-it .categories-container .category-list .category-item .category-details p {
		font-size: 1rem !important;
	}

	/**
    ** Borrowers Page
    **/
	.section.borrowers-assets .container h2 {
		font-size: 1.75rem !important;
		margin-bottom: 20px !important;
	}

	.section.borrowers-assets .container .row {
		flex-direction: column;
	}

	.section.borrowers-assets .container .row .col-6 {
		max-width: 100% !important;
	}

	.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p {
		font-size: 1rem !important;
		max-width: 100% !important;
		text-align: center;
	}

	.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p:last-child {
		margin-bottom: 30px !important;
	}

	/**
    ** Contact Us Page
    **/
	.contact-hero-section h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
	}

	.contact-hero-section h3 {
		font-size: 1.25rem !important;
		line-height: 1.25rem !important;
		max-width: 230px !important;
	}

	.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content h2 {
		font-size: 1.75rem !important;
	}

	.section.any-questions {
		padding: 50px 0 !important;
	}

	.section.any-questions .any-questions-left h2 {
		font-size: 1.75rem !important;
		line-height: 2rem !important;
		margin-bottom: 30px !important;
	}

	/**
    ** Terms and Conditions / Privacy Policy
    **/
	.inner-contents {
		padding: 50px 20px !important;
	}

	.inner-contents .part {
		margin-bottom: 60px !important;
	}

	.inner-contents .part h3 {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
	}

	.inner-contents .part h4 {
		font-size: 1.25rem !important;
		line-height: 1.75rem !important;
	}

	.severability-and-waiver .inner-contents {
		padding: 50px 0 !important;
	}

	.severability-and-waiver .part h4 {
		font-size: 2rem;
		line-height: 2.5rem;
		font-weight: 500;
		color: #ffd460;
		margin-bottom: 40px;
		text-align: left;
	}

	.severability-and-waiver .part p {
		font-size: 1rem;
		line-height: 1.5rem;
		color: #fff !important;
	}

	.severability-and-waiver .part:last-child {
		margin-bottom: 0;
	}
}

/**
** Contact Form 7 (WordPress)
**/
.wpcf7-response-output {
	display: none !important;
}

.wpcf7-not-valid-tip {
	display: none !important;
}

.cf7-validation p {
	font-size: 0.9rem !important;
	line-height: 0.9rem !important;
	color: #ffd460;
	margin-top: 20px;
	margin-bottom: 0;
}

#cf7-email-submit-response p {
	font-size: 0.9rem !important;
	line-height: 0.9rem !important;
	color: #ffd460;
	margin-top: 20px;
	margin-bottom: 0;
}

.sections-group .background-circles.error .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.sections-group .background-circles.error .circle:nth-child(1) {
	background-image: url("assets/images/home/circle-1.svg");
	background-size: 28%;
	background-position: 0% 0%;
}

.sections-group .background-circles.error .circle:nth-child(2) {
	background-image: url("assets/images/home/circle-2.svg");
	background-size: 43.5%;
	background-position: 100% 100%;
}

.sections-group .background-circles.error .circle:nth-child(3) {
	background-image: url("assets/images/home/circle-3.svg");
	background-size: 13%;
	background-position: 5% 93%;
}

.error-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 150px 0 100px;
	margin-top: -70px;
}

.error-section h2 {
	font-size: 8rem;
	line-height: 8rem;
	color: #ffd460;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}

.error-section h3 {
	font-size: 3rem;
	line-height: 3rem;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
	font-weight: 500;
}

.error-section p {
	font-size: 1.5rem;
	line-height: 2rem;
	text-align: center;
	max-width: 650px;
	margin: 0 auto;
}

.error-section p a {
	color: #ffd460;
}

.error-section p a:hover {
	text-decoration: underline;
}

.sections-group .background-circles.hero .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.sections-group .background-circles.hero .circle:nth-child(1) {
	background-image: url("assets/images/home/circle-1.svg");
	background-size: 28%;
	background-position: 0% 0%;
}

.sections-group .background-circles.hero .circle:nth-child(2) {
	background-image: url("assets/images/home/circle-2.svg");
	background-size: 43.5%;
	background-position: 100% 100%;
}

.sections-group .background-circles.hero .circle:nth-child(3) {
	background-image: url("assets/images/home/circle-3.svg");
	background-size: 13%;
	background-position: 5% 93%;
}

.sections-group .background-circles.challenge-ai .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.sections-group .background-circles.challenge-ai .circle:nth-child(1) {
	background-image: url("assets/images/home/circle-4.svg");
	background-size: 35%;
	background-position: 100% 4%;
}

.sections-group .background-circles.challenge-ai .circle:nth-child(2) {
	background-image: url("assets/images/home/circle-5.svg");
	background-size: 55%;
	background-position: 0 45%;
}

.sections-group .background-circles.challenge-ai .circle:nth-child(3) {
	background-image: url("assets/images/home/circle-6.svg");
	background-size: 15%;
	background-position: 93% 50%;
}

.sections-group .background-circles.challenge-ai .circle:nth-child(4) {
	background-image: url("assets/images/home/circle-7.svg");
	background-size: 56%;
	background-position: 100% 128%;
}

.sections-group .background-circles.testimonials .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.sections-group .background-circles.testimonials .circle:nth-child(1) {
	background-image: url("assets/images/home/circle-8.svg");
	background-size: 31%;
	background-position: 100% -20%;
}

.sections-group .background-circles.testimonials .circle:nth-child(2) {
	background-image: url("assets/images/home/circle-9.svg");
	background-size: 40%;
	background-position: 0 25%;
}

.sections-group .background-circles.testimonials .circle:nth-child(3) {
	background-image: url("assets/images/home/circle-10.svg");
	background-size: 50%;
	background-position: 100% 55%;
}

.sections-group .background-circles.testimonials .circle:nth-child(4) {
	background-image: url("assets/images/home/circle-11.svg");
	background-size: 80%;
	background-position: 50% 125%;
}

.hero-section {
	display: flex;
	align-items: center;
	min-height: 100vh;
	margin-top: -70px;
	padding: 150px 0 100px;
}

.hero-section h2 {
	font-size: 3.75rem;
	font-weight: 500;
	line-height: 3.75rem;
	color: #fff;
	margin-bottom: 10px;
}

.hero-section h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.hero-section h3 {
	position: relative;
	font-size: 2.25rem;
	margin-bottom: 20px;
	font-weight: 300;
	color: #fff;
	text-transform: lowercase;
	padding-left: 215px;
}

.hero-section h3::before {
	content: "";
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	left: 0;
	height: 2px;
	background: #ffd460;
	width: 190px;
}

.hero-section p {
	font-size: 1.2rem;
	margin-bottom: 80px;
	max-width: 475px;
}

.hero-section .container {
	display: flex;
	height: 600px;
}

.hero-section .hero-left {
	display: inline-block;
	flex: 4;
	align-content: center;
}

.hero-section .hero-right {
	position: relative;
	flex: 6;
	align-content: center;
}

.hero-section .hero-right .hero-thumbnail {
	width: 216px;
	height: 316px;
	border-radius: 30px;
	position: absolute;
	background-color: #d1ecf1;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.hero-section .hero-right .img01 {
	top: 280px;
	right: 473px;
}

.hero-section .hero-right .img02 {
	background-image: url("assets/images/home/0/img-02.jpg");
	bottom: 200px;
	right: 236px;
}

.hero-section .hero-right .img03 {
	background-image: url("assets/images/home/0/img-03.jpg");
	top: 420px;
	right: 236px;
}

.hero-section .hero-right .img04 {
	background-image: url("assets/images/home/0/img-04.jpg");
	top: -74px;
	right: 0;
}

.hero-section .hero-right .img05 {
	background-image: url("assets/images/home/0/img-05.jpg");
	top: 262px;
	right: 0;
}

.section {
	min-height: 100vh;
	padding: 100px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.section.client-says {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
}

.section.client-says .container {
	max-width: 1670px;
	z-index: 100;
}

.section .client-says-carousel {
	display: flex;
	justify-content: center;
	position: static;
}

.section .client-says-carousel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 30%, black 100%);
	pointer-events: none;
	z-index: 101;
}

.section .client-says-carousel .slick-track {
	display: flex;
	justify-content: center;
	align-items: center;
}

.section .client-says-carousel .carousel-item {
	flex: 1;
	display: flex;
	justify-content: end;
	align-items: center;
}

.section .client-says-carousel .carousel-item .carousel-content {
	flex: 100%;
	max-width: 530px;
}

.section .client-says-carousel .carousel-item p {
	font-size: 2rem;
	line-height: 2.25rem;
	color: #fff;
	font-weight: 500;
	max-width: 700px;
	transition: font-size 0.5s;
}

.section .client-says-carousel .carousel-item hr {
	display: block;
	height: 2px;
	border: 0;
	border-top: 2px solid #ffd460;
	margin: 40px 0;
	padding: 0;
	transition: margin 0.5s;
}

.section .client-says-carousel .carousel-item small {
	font-size: 1.2rem;
	font-style: italic;
}

.section .client-says-carousel .active-slide {
	justify-content: start;
	width: 100%;
}

.section .client-says-carousel .active-slide .carousel-content {
	max-width: unset;
}

.section .client-says-carousel .active-slide hr {
	margin: 50px 0;
}

.section .client-says-carousel .active-slide p {
	font-size: 3rem;
	line-height: 3.25rem;
	color: #fff;
	text-align: left;
	font-weight: 500;
}

.section .client-says-carousel .slick-dots {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 100px;
	z-index: 200;
}

.section.challenge-outcome {
	padding: 100px 0;
}

.section.challenge-outcome h2 {
	font-size: 3rem;
	line-height: 3.5rem;
	margin: 0 auto 90px;
	color: #fff;
	text-align: center;
	font-weight: 500;
	max-width: 760px;
}

.section.challenge-outcome .row {
	position: relative;
	z-index: 1;
}

.section.challenge-outcome .row .column {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 80px 80px 20px;
	margin: 20px 10px;
	border-radius: 30px;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.section.challenge-outcome .row .column h3 {
	font-size: 2.5rem;
	line-height: 2.5rem;
}

.section.challenge-outcome .row .column p {
	font-size: 1.2rem;
	margin: 40px 0 80px;
}

.section.challenge-outcome .row .column.challenge {
	margin-left: 0;
	background: #000;
	color: #fff;
}

.section.challenge-outcome .row .column.challenge p {
	color: #9a9a9a;
}

.section.challenge-outcome .row .column.outcome {
	margin-right: 0;
	background: #ffd460;
	color: #000;
}

.section.challenge-outcome .row .column.outcome img {
	margin-top: auto;
	margin-bottom: 20px;
}

.section.challenge-outcome h3 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 30px;
}

.section.challenge-outcome p {
	margin-bottom: 40px;
}

.section.challenge-outcome .graph {
	background: #5c5b5b;
	flex: 1;
}

.section.with-barker h2 {
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 500;
	color: #fff;
	max-width: 550px;
	margin-bottom: 40px;
}

.section.with-barker h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.with-barker p {
	font-size: 1.2rem;
	line-height: 1.75rem;
	max-width: 500px;
	margin-bottom: 40px;
}

.section.with-barker .container {
	display: flex;
}

.section.with-barker .with-barker-left {
	display: inline-block;
	flex: 45%;
	align-content: center;
}

.section.with-barker .with-barker-left .mobile-hint {
	display: none;
	color: #fff;
	text-align: center;
	font-size: 1rem;
	line-heigh: 1rem;
	margin-bottom: 20px;
}

.section.with-barker .with-barker-right {
	position: relative;
	flex: 55%;
	align-content: center;
	text-align: left;
}

.section.with-barker .with-barker-right .thumbnail {
	display: inline-block;
	max-width: 343px;
	width: 100%;
	height: 315px;
	margin: 10px;
	background-color: transparent;
}

.section.with-barker .with-barker-right .thumbnail .thumbnail-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: left;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front,
.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back {
	position: absolute;
	border-radius: 30px;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	padding: 30px;
}

.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front svg,
.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back svg {
	margin-bottom: 30px;
}

.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front p,
.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back p {
	margin: 0;
}

.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-front {
	background-color: #000;
}

.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back {
	background-color: #ffd460;
	transform: rotateY(-180deg);
}

.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back svg path {
	fill: #000;
}

.section.with-barker .with-barker-right .thumbnail .thumbnail-inner .thumbnail-back p {
	color: #000;
}

.section.with-barker .with-barker-right .thumbnail:nth-child(odd) {
	margin-left: 0;
}

.section.with-barker .with-barker-right .thumbnail:nth-child(even) {
	margin-right: 0;
}

.section.with-barker .with-barker-right .thumbnail:hover .thumbnail-inner {
	transform: rotateY(-180deg) rotate(5deg);
}

.section.with-barker .with-barker-right .active .thumbnail-inner {
	transform: rotateY(-180deg) rotate(5deg);
}

.section.most-of-barker .container {
	height: auto !important;
}

.section.most-of-barker h2 {
	font-size: 3rem;
	line-height: 3.5rem;
	color: #fff;
	text-align: center;
	font-weight: 500;
	margin-bottom: 60px;
}

.section.most-of-barker h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.most-of-barker .features-grid .feature-card-wrapper {
	height: 100%;
	padding: 10px;
}

.section.most-of-barker .features-grid .feature-card-wrapper .feature-card {
	position: relative;
	background: #000;
	border-radius: 30px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	background-repeat: no-repeat;
}

.section.most-of-barker .features-grid .feature-card-wrapper .feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 60%, black 100%);
	pointer-events: none;
}

.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content {
	position: relative;
	margin-top: auto;
	padding: 150px 40px 40px;
	color: #fff;
	max-width: 500px;
	z-index: 2;
}

.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
	font-size: 2.5rem;
	line-height: 3.5rem;
	font-weight: 500;
	margin-bottom: 12px;
}

.section.most-of-barker .features-grid .feature-card-wrapper .feature-card .feature-content p {
	font-size: 1rem;
	color: #bdbdbd;
}

.section.most-of-barker .features-grid .feature-card-wrapper.feature-1 .feature-card {
	background-size: 100% auto;
	background-position: 50% 0;
}

.section.most-of-barker .features-grid .feature-card-wrapper.feature-1 .feature-card::before {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 50%, black 100%);
}

.section.most-of-barker .features-grid .feature-card-wrapper.feature-1 .feature-card .feature-content h3 {
	margin-bottom: 60px;
}

.section.most-of-barker .features-grid .feature-card-wrapper.feature-2 .feature-card {
	background-size: 100%;
	background-position: 100% 15%;
}

.section.most-of-barker .features-grid .feature-card-wrapper.feature-2 .feature-card::before {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 80%, black 100%);
}

.section.most-of-barker .features-grid .feature-card-wrapper.feature-3 .feature-card {
	background-size: 100%;
	background-position: top;
}

.section.most-of-barker .features-grid .feature-card-wrapper.feature-4 .feature-card {
	background-size: 100%;
	background-position: top;
}

.section.most-of-barker .features-grid .left {
	padding-left: 0;
}

.section.most-of-barker .features-grid .right {
	padding-right: 0;
}

.section.most-of-barker .features-grid .lower .feature-card .feature-content h3 {
	font-size: 1.5rem;
	line-height: 2.5rem;
}

.section.secure-process {
	background: #000;
}

.section.secure-process h2 {
	font-size: 3rem;
	line-height: 3.5rem;
	margin: 0 auto 90px;
	color: #fff;
	text-align: left;
	font-weight: 500;
}

.section.secure-process h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.secure-process .desktop .wizard {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	margin: 0 auto;
	padding: 100px 20px 0;
	width: 100%;
}

.section.secure-process .desktop .wizard::before {
	content: "";
	position: absolute;
	top: 98px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #9a9a9a;
	z-index: 0;
	transition: background 0.3s ease;
}

.section.secure-process .desktop .wizard.step-1-selected::before {
	background: linear-gradient(90deg, #ffd460 0%, #9a9a9a 50%);
}

.section.secure-process .desktop .wizard.step-2-selected::before {
	background: linear-gradient(90deg, #ffd460 0%, #9a9a9a 75%);
}

.section.secure-process .desktop .wizard.step-3-selected::before {
	background: linear-gradient(90deg, #ffd460 0%, #9a9a9a 100%);
}

.section.secure-process .desktop .wizard.step-4-selected::before {
	background: linear-gradient(90deg, #ffd460 0%, #ffd460 100%);
}

.section.secure-process .desktop .wizard .step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	justify-content: flex-end;
	z-index: 1;
	cursor: pointer;
}

.section.secure-process .desktop .wizard .step .step-number {
	position: absolute;
	bottom: calc(100% + 10px);
	font-family: "Poppins", sans-serif;
	font-size: 1.3rem;
	line-height: 1.3rem;
	color: #606060;
	margin-bottom: 20px;
	transition: color 0.2s ease-out, font-size 0.2s ease;
}

.section.secure-process .desktop .wizard .step .step-dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #606060;
	margin-bottom: 16px;
	border: 2px solid transparent;
	transition: background 0.2s, border-color 0.2s;
	position: relative;
	top: -10px;
}

.section.secure-process .desktop .wizard .step .step-label {
	text-align: center;
	color: #606060;
	font-size: 1.3rem;
	line-height: 1.5rem;
	font-weight: 400;
	margin-top: 10px;
	transition: color 0.2s;
	max-width: 210px;
}

.section.secure-process .desktop .wizard .step.active .step-number {
	font-size: 3rem;
	line-height: 3rem;
	color: #ffd460;
}

.section.secure-process .desktop .wizard .step.active .step-dot {
	background: #ffd460;
	border-color: #ffd460;
}

.section.secure-process .desktop .wizard .step.active .step-label {
	color: #fff;
}

.section.secure-process .desktop .wizard .step.completed .step-number {
	color: #ffd460;
}

.section.secure-process .desktop .wizard .step.completed .step-dot {
	background: #ffd460;
	border-color: #ffd460;
}

.section.secure-process .desktop .demo {
	border-radius: 30px;
	background: #222;
	color: #fff;
	display: flex;
	margin: 50px 0;
	min-height: 300px;
	overflow: hidden;
}

.section.secure-process .desktop .demo .label {
	flex: 1;
	align-content: center;
	text-align: center;
	padding: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section.secure-process .desktop .demo .label p {
	text-align: left;
	max-width: 425px;
	margin: 0;
}

.section.secure-process .desktop .demo .animation {
	flex: 1;
	background: #ccc;
	border-radius: 0 30px 30px 0;
}

.section.secure-process .mobile {
	display: none;
}

.section.secure-process .mobile .demo {
	flex: 70%;
}

.section.secure-process .mobile .demo .label .step-title {
	font-size: 1.75rem;
	line-height: 1.75rem;
	color: #fff;
	font-weight: 400;
	text-align: left;
	margin-bottom: 30px;
}

.section.secure-process .mobile .demo .label .step-description {
	font-size: 1.5rem;
	text-align: left;
	margin-bottom: 70px;
}

.section.secure-process .mobile .demo .animation {
	border-radius: 30px;
	overflow: hidden;
}

.section.secure-process .mobile .wizard {
	flex: 30%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	position: relative;
	margin: 0 auto;
	padding: 100px 20px 0;
	width: 100%;
}

.section.secure-process .mobile .wizard::before {
	content: "";
	position: absolute;
	top: 100px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	background: #9a9a9a;
	z-index: 0;
	transition: background 0.3s ease;
}

.section.secure-process .mobile .wizard.step-1-selected::before {
	background: linear-gradient(180deg, #ffd460 0%, #9a9a9a 50%);
}

.section.secure-process .mobile .wizard.step-2-selected::before {
	background: linear-gradient(180deg, #ffd460 0%, #9a9a9a 75%);
}

.section.secure-process .mobile .wizard.step-3-selected::before {
	background: linear-gradient(180deg, #ffd460 0%, #9a9a9a 100%);
}

.section.secure-process .mobile .wizard.step-4-selected::before {
	background: linear-gradient(180deg, #ffd460 0%, #ffd460 100%);
}

.section.secure-process .mobile .wizard .step {
	position: relative;
	width: 40px;
	height: 40px;
	z-index: 1;
	cursor: pointer;
}

.section.secure-process .mobile .wizard .step .step-number {
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Poppins", sans-serif;
	font-size: 1.25rem;
	line-height: 1.25rem;
	color: #606060;
	transition: color 0.2s ease-out, font-size 0.2s ease;
}

.section.secure-process .mobile .wizard .step .step-dot {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #606060;
	border: 2px solid transparent;
	transition: background 0.2s, border-color 0.2s;
}

.section.secure-process .mobile .wizard .step.active .step-number {
	font-size: 1.5rem;
	line-height: 1.5rem;
	color: #ffd460;
}

.section.secure-process .mobile .wizard .step.active .step-dot {
	background: #ffd460;
	border-color: #ffd460;
}

.section.secure-process .mobile .wizard .step.completed .step-number {
	color: #ffd460;
}

.section.secure-process .mobile .wizard .step.completed .step-dot {
	background: #ffd460;
	border-color: #ffd460;
}

.section.our-clients {
	position: relative;
}

.section.our-clients .container {
	padding: 0;
	max-width: 100% !important;
}

.section.our-clients .container h3 {
	font-size: 3rem;
	line-height: 3.5rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 60px;
	text-align: center;
}

.section.our-clients .container .our-clients-carousel .carousel-item {
	position: relative;
	padding: 0 20px;
	filter: blur(6px);
	transition: filter 0.5s ease;
}

.section.our-clients .container .our-clients-carousel .carousel-item .carousel-content {
	border-radius: 30px;
	background: #000;
	flex: 100%;
	height: 100%;
	overflow: hidden;
	padding: 0 0 150px;
}

.section.our-clients .container .our-clients-carousel .carousel-item .carousel-content .carousel-image {
	position: relative;
	width: 100%;
}

.section.our-clients .container .our-clients-carousel .carousel-item .carousel-content .carousel-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, black 80%, black 100%);
	pointer-events: none;
}

.section.our-clients .container .our-clients-carousel .carousel-item .carousel-content .carousel-image img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.section.our-clients .container .our-clients-carousel .carousel-item .carousel-content .carousel-details {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	padding: 20px 50px 20px;
	min-height: 200px;
}

.section.our-clients .container .our-clients-carousel .carousel-item .carousel-content .carousel-details p {
	font-size: 1rem;
	line-height: 1.75rem;
	color: #fff;
	transition: font-size 0.5s;
	margin-bottom: 20px;
}

.section.our-clients .container .our-clients-carousel .carousel-item .carousel-content .carousel-details small {
	font-size: 1rem;
	font-style: italic;
}

.section.our-clients .container .our-clients-carousel .slick-active,
.section.our-clients .container .our-clients-carousel .slick-center {
	filter: unset !important;
}

.section.our-clients .container .our-clients-carousel .slick-list::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 80%, black 100%);
	z-index: 2;
	pointer-events: none;
}

.section.our-clients .container .our-clients-carousel .slick-list::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 80%, black 100%);
	z-index: 2;
	pointer-events: none;
}

.section.our-clients .container .our-clients-carousel .slick-track {
	display: flex !important;
}

.section.our-clients .container .our-clients-carousel .slick-slide {
	height: inherit !important;
}

.section.our-clients .container .our-clients-carousel .slick-dots {
	position: relative;
	left: 0;
	right: 0;
	margin: 0 auto;
	margin-top: 50px;
	z-index: 200;
}

.section.barkers-backer {
	background: #161616;
	min-height: 50vh;
}

.section.barkers-backer h2 {
	font-size: 3rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 60px;
	text-align: center;
}

.section.barkers-backer h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.barkers-backer .backer-logos {
	display: flex;
}

.section.barkers-backer .backer-logos .backer-logo-wrapper {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	min-height: 200px;
}

.section.barkers-backer .backer-logos .backer-logo-wrapper img {
	max-height: 100px;
}

.section.case-studies {
	position: relative;
}

.section.case-studies .container {
	padding: 0;
	max-width: 100% !important;
}

.section.case-studies .container h3 {
	font-size: 3rem;
	line-height: 3rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 100px;
	text-align: center;
}

.section.case-studies .container .case-studies-carousel .carousel-item {
	padding: 0 20px;
	transition: 0.25s transform ease-in;
	transform: translateX(50%) scale(0.8);
	padding-bottom: 50px;
}

.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content {
	display: flex;
	flex: 100%;
	height: 100%;
	overflow: hidden;
	min-height: 500px;
	border-radius: 30px;
	background: #000;
}

.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-image {
	flex: 40%;
	position: relative;
	overflow: hidden;
}

.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 60%;
	padding: 60px 100px;
	min-height: 100px;
}

.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details h3 {
	font-size: 2.5rem;
	line-height: 3rem;
	text-align: left;
	margin-bottom: 60px;
}

.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details h3 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details p {
	font-size: 1rem;
	line-height: 1.75rem;
	color: #9a9a9a;
	transition: font-size 0.5s;
	margin-bottom: 60px;
}

.section.case-studies .container .case-studies-carousel .carousel-item .carousel-content .carousel-details .action-container {
	display: flex;
	justify-content: end;
}

.section.case-studies .container .case-studies-carousel .carousel-item.slick-slide-prev {
	filter: blur(6px);
	transform: translateX(50%) scale(0.8);
}

.section.case-studies .container .case-studies-carousel .carousel-item.slick-slide-next {
	filter: blur(6px);
	transform: translateX(-50%) scale(0.8);
}

.section.case-studies .container .case-studies-carousel .carousel-item.slick-slide-prev.slick-active {
	transform: translateX(50%) scale(0.9);
}

.section.case-studies .container .case-studies-carousel .carousel-item.slick-slide-next.slick-active {
	transform: translateX(-50%) scale(0.9);
}

.section.case-studies .container .case-studies-carousel .carousel-item.slick-current {
	transform: scale(1);
}

.section.case-studies .container .case-studies-carousel .carousel-item.slick-current .carousel-content {
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.section.case-studies .container .case-studies-carousel .slick-slide {
	position: relative;
}

.section.case-studies .container .case-studies-carousel .slick-slide-prev {
	z-index: 1;
}

.section.case-studies .container .case-studies-carousel .slick-current {
	z-index: 3;
}

.section.case-studies .container .case-studies-carousel .slick-slide-next {
	z-index: 2;
}

.section.coming-soon {
	position: relative;
}

.section.coming-soon::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: 75% auto;
	background-position: 50% 80%;
	background-repeat: no-repeat;
	z-index: 0;
}

.section.coming-soon .container {
	display: flex;
	justify-content: center;
}

.section.coming-soon h2 {
	font-size: 2.5rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 30px;
}

.section.coming-soon h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.coming-soon p {
	font-size: 1.2rem;
	margin: 0 auto 30px;
	max-width: 470px;
}

.section.coming-soon .popup {
	position: relative;
	width: 600px;
	padding: 30px 40px;
	background: #000;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	z-index: 1;
	opacity: 1;
	transition: opacity 0.3s linear;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.section.coming-soon .popup .coming-soon-content {
	width: 100%;
}

.section.coming-soon .popup .email-submit {
	margin: 0 auto;
	max-width: 405px;
}

.section.coming-soon .popup .email-submit form p {
	display: flex;
	flex-direction: column;
	font-size: 1rem;
	margin: 0 !important;
}

.section.coming-soon .popup .email-submit form p br {
	display: none;
}

.section.coming-soon .popup .email-submit form .cf7-validation p {
	margin-bottom: 1rem !important;
}

.section.coming-soon .popup .email-submit form .cf7-email-submit-response p {
	margin-bottom: 0 !important;
}

.section.coming-soon .popup .email-submit form input {
	padding: 10px 25px;
	color: #ccc;
	background: #151515;
	border-radius: 30px;
	max-width: 100%;
	margin-bottom: 1rem;
}

.section.coming-soon .popup .email-submit form input:focus {
	outline: none;
	box-shadow: none;
}

.section.coming-soon .popup .email-submit form button[type="submit"] {
	background: #ffd460;
	border-radius: 30px;
	color: #000;
	font-size: 1rem;
	padding: 10px 40px;
	height: 100%;
	text-align: center;
	margin: 0 auto;
	cursor: pointer;
}

.section.coming-soon .popup .email-submit form button[type="submit"]:hover {
	background: #ffe08b;
}

.section.coming-soon .popup .thank-you-message {
	padding-top: 125px;
	position: relative;
}

.section.coming-soon .popup .thank-you-message p {
	margin-bottom: 0;
}

.section.coming-soon .popup .thank-you-message::before {
	content: "\2713";
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Poppins", sans-serif;
	font-size: 4rem;
	line-height: 4rem;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #ffd460;
}

.background-circles.about-us .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.background-circles.about-us .circle:nth-child(1) {
	background-image: url("assets/images/about-us/circle-1.svg");
	background-size: 18%;
	background-position: 0% 0%;
}

.background-circles.about-us .circle:nth-child(2) {
	background-image: url("assets/images/about-us/circle-2.svg");
	background-size: 47%;
	background-position: 100% 8%;
}

.background-circles.about-us .circle:nth-child(3) {
	background-image: url("assets/images/about-us/circle-3.svg");
	background-size: 12%;
	background-position: 8% 20%;
}

.background-circles.about-us .circle:nth-child(4) {
	background-image: url("assets/images/about-us/circle-4.svg");
	background-size: 37%;
	background-position: 0% 36%;
}

.background-circles.about-us .circle:nth-child(5) {
	background-image: url("assets/images/about-us/circle-5.svg");
	background-size: 28%;
	background-position: 100% 69%;
}

.background-circles.about-us .circle:nth-child(6) {
	background-image: url("assets/images/about-us/circle-6.svg");
	background-size: 10%;
	background-position: 0% 73%;
}

.background-circles.about-us .circle:nth-child(7) {
	background-image: url("assets/images/about-us/circle-7.svg");
	background-size: 40%;
	background-position: 2% 100%;
}

.abt-hero-section {
	min-height: 100vh;
	margin-top: -70px;
	display: flex;
	align-items: center;
	padding: 150px 0 100px;
}

.abt-hero-section h2 {
	font-size: 3.75rem;
	font-weight: 500;
	line-height: 3.75rem;
	color: #fff;
	margin-bottom: 50px;
}

.abt-hero-section h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.abt-hero-section p {
	font-size: 1.2rem;
	margin-bottom: 20px;
	max-width: 620px;
}

.abt-hero-section .container {
	display: flex;
	height: 600px;
}

.abt-hero-section .hero-left {
	display: inline-block;
	flex: 1;
	align-content: center;
}

.abt-hero-section .hero-right {
	position: relative;
	flex: 1;
	align-content: center;
}

.abt-hero-section .hero-right .hero-thumbnail {
	position: relative;
	width: 300px;
	height: 430px;
	border-radius: 30px;
	position: absolute;
	background-color: #d1ecf1;
	background-size: cover;
	background-position: 50% 50%;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.abt-hero-section .hero-right .img01 {
	z-index: 2;
	top: -70px;
	right: 280px;
}

.abt-hero-section .hero-right .img02 {
	z-index: 1;
	top: 250px;
	right: 0;
}

.section.most-trusted {
	padding: 100px 0;
}

.section.most-trusted .container {
	max-width: 1670px;
}

.section.most-trusted h2 {
	font-size: 3rem;
	line-height: 3rem;
	margin: 0 auto 90px;
	color: #fff;
	text-align: center;
	font-weight: 500;
	max-width: 970px;
}

.section.most-trusted h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.most-trusted p {
	font-size: 1.2rem;
	max-width: 680px;
	text-align: center;
	margin: 0 auto 80px;
}

.section.most-trusted .row {
	position: relative;
	z-index: 1;
}

.section.most-trusted .row .column {
	border-radius: 30px;
	background: #000;
	color: #fff;
	margin: 20px 10px;
	display: flex;
	flex-direction: column;
	min-height: 470px;
}

.section.most-trusted .row .column .img-container {
	position: relative;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	background-size: cover;
	height: 250px;
}

.section.most-trusted .row .column .img-container::before {
	content: "";
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
}

.section.most-trusted .row .column .details-container {
	padding: 25px;
	margin-top: 50px;
}

.section.most-trusted .row .column .details-container h3 {
	font-size: 2em;
	font-weight: 500;
	margin-bottom: 30px;
}

.section.most-trusted .row .column .details-container p {
	text-align: left;
	font-size: 1.2rem;
	color: #9a9a9a;
	margin: 0;
}

.section.most-trusted .row .column.delivering-trust .img-container {
	background-position: 50% 47%;
}

.section.most-trusted .row .column.growth-partner .img-container {
	background-position: 50% 50%;
}

.section.borrowers-lenders {
	padding: 100px 0;
}

.section.borrowers-lenders h2 {
	font-size: 3rem;
	line-height: 3.5rem;
	margin: 0 auto 90px;
	color: #fff;
	text-align: center;
	font-weight: 500;
	max-width: 800px;
}

.section.borrowers-lenders .row {
	position: relative;
	z-index: 1;
}

.section.borrowers-lenders .row .column {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 80px 80px 60px;
	margin: 20px 10px;
	border-radius: 30px;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.section.borrowers-lenders .row .column::after {
	content: "";
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 14px;
	height: 14px;
	background-size: 100% 100%;
	background-position: 100% 100%;
}

.section.borrowers-lenders .row .column svg {
	max-height: 145px;
	margin-bottom: 40px;
}

.section.borrowers-lenders .row .column h3 {
	font-size: 2.5rem;
	line-height: 2.5rem;
	margin-bottom: 40px;
}

.section.borrowers-lenders .row .column p {
	font-size: 1.2rem;
	margin: 0;
}

.section.borrowers-lenders .row .column.for-borrowers {
	margin-left: 0;
	background: #000;
	color: #fff;
}

.section.borrowers-lenders .row .column.for-borrowers::after {
	background-image: url("assets/images/cta-arrow-yellow.svg");
}

.section.borrowers-lenders .row .column.for-borrowers p {
	color: #9a9a9a;
}

.section.borrowers-lenders .row .column.for-lenders {
	margin-right: 0;
	background: #ffd460;
	color: #000;
}

.section.borrowers-lenders .row .column.for-lenders::after {
	background-image: url("assets/images/cta-arrow-black.svg");
}

.section.smarter-lending .container {
	height: auto !important;
}

.section.smarter-lending h2 {
	font-size: 3rem;
	line-height: 3.5rem;
	color: #fff;
	text-align: center;
	font-weight: 500;
	max-width: 540px;
	margin: 0 auto 60px;
}

.section.smarter-lending h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.smarter-lending .features-grid .feature-card-wrapper {
	height: 100%;
	padding: 10px;
}

.section.smarter-lending .features-grid .feature-card-wrapper .feature-card {
	position: relative;
	background: #000;
	border-radius: 30px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	background-repeat: no-repeat;
}

.section.smarter-lending .features-grid .feature-card-wrapper .feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 80%, black 100%);
}

.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content {
	position: relative;
	margin-top: auto;
	padding: 80px 40px 40px;
	color: #fff;
	z-index: 2;
}

.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content h3 {
	font-size: 2.5rem;
	line-height: 3.5rem;
	font-weight: 500;
	max-width: 400px;
	margin-bottom: 30px;
}

.section.smarter-lending .features-grid .feature-card-wrapper .feature-card .feature-content p {
	font-size: 1.2rem;
	color: #bdbdbd;
}

.section.smarter-lending .features-grid .feature-card-wrapper.feature-1 .feature-card {
	background-size: 168% 60%;
	background-position: 55% -19%;
}

.section.smarter-lending .features-grid .feature-card-wrapper.feature-1 .feature-card::before {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 50%, black 100%) !important;
}

.section.smarter-lending .features-grid .feature-card-wrapper.feature-2 .feature-card {
	background-size: 100%;
	background-position: 100% 100%;
}

.section.smarter-lending .features-grid .feature-card-wrapper.feature-3 .feature-card {
	background-size: 100%;
	background-position: 100% 47%;
}

.section.smarter-lending .features-grid .left {
	padding-left: 0;
}

.section.smarter-lending .features-grid .right {
	padding-right: 0;
}

.section.confidence {
	position: relative;
	min-height: unset;
	padding: 150px 0;
	background-size: auto 200%;
	background-position: 460px 85%;
	background-repeat: no-repeat;
}

.section.confidence::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(90deg, black 0%, black 30%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 1;
}

.section.confidence .container {
	height: auto !important;
}

.section.confidence .content-wrapper {
	position: relative;
	max-width: 590px;
	z-index: 2;
}

.section.confidence .content-wrapper h2 {
	font-size: 3rem;
	line-height: 3.5rem;
	color: #fff;
	text-align: left;
	font-weight: 500;
	margin-bottom: 60px;
}

.section.confidence .content-wrapper h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.confidence .content-wrapper p {
	font-size: 1.2rem;
}

.sections-group.group-1 .background-circles.lenders .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.sections-group.group-1 .background-circles.lenders .circle:nth-child(1) {
	background-image: url("assets/images/lenders/circle-1.svg");
	background-size: 10%;
	background-position: 0% 5%;
}

.sections-group.group-1 .background-circles.lenders .circle:nth-child(2) {
	background-image: url("assets/images/lenders/circle-2.svg");
	background-size: 38%;
	background-position: 100% 5%;
}

.sections-group.group-2 .background-circles.lenders .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.sections-group.group-2 .background-circles.lenders .circle:nth-child(1) {
	background-image: url("assets/images/lenders/circle-4.svg");
	background-size: 15%;
	background-position: 3% 0%;
}

.sections-group.group-2 .background-circles.lenders .circle:nth-child(2) {
	background-image: url("assets/images/lenders/circle-5.svg");
	background-size: 34%;
	background-position: 100% 34%;
}

.sections-group.group-2 .background-circles.lenders .circle:nth-child(3) {
	background-image: url("assets/images/lenders/circle-6.svg");
	background-size: 17%;
	background-position: 85% 83%;
}

.sections-group.group-2 .background-circles.lenders .circle:nth-child(4) {
	background-image: url("assets/images/lenders/circle-7.svg");
	background-size: 28%;
	background-position: 0% 119%;
}

.lenders-hero-section {
	display: flex;
	align-items: center;
	min-height: 100vh;
	margin-top: -70px;
	padding: 150px 0 100px;
}

.lenders-hero-section .container {
	display: flex;
}

.lenders-hero-section .hero-left {
	flex: 6;
}

.lenders-hero-section .hero-left h2 {
	font-size: 3.75rem;
	line-height: 4.75rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 60px;
}

.lenders-hero-section .hero-left h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.lenders-hero-section .hero-left p {
	font-size: 1.2rem;
	max-width: 635px;
	margin-bottom: 60px;
}

.lenders-hero-section .hero-right {
	flex: 4;
}

.lenders-hero-section .hero-right .hero-graph-wrapper {
	position: relative;
	padding-left: 30px;
	padding-bottom: 30px;
	border-radius: 30px;
	background-color: #151515;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.section.ai-valuations {
	padding: 100px 0 150px;
}

.section.ai-valuations h2 {
	font-size: 3rem;
	line-height: 3rem;
	margin: 0 auto 60px;
	color: #fff;
	text-align: center;
	font-weight: 500;
	max-width: 600px;
}

.section.ai-valuations h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.ai-valuations .valuations-container {
	display: flex;
	background: transparent;
	border-radius: 30px;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.section.ai-valuations .valuations-container .valuations-left {
	flex: 1;
	display: flex;
	align-items: start;
	justify-items: center;
	flex-direction: column;
	text-align: left;
	background-color: #151515;
	padding: 70px 50px 50px;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}

.section.ai-valuations .valuations-container .valuations-left h3 {
	font-size: 3rem;
	line-height: 3.5rem;
	color: #fff;
	font-weight: 500;
	max-width: 600px;
	margin-bottom: 20px;
}

.section.ai-valuations .valuations-container .valuations-left h3 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.ai-valuations .valuations-container .valuations-left p {
	font-size: 1.2rem;
	max-width: 530px;
	margin-bottom: 20px;
}

.section.ai-valuations .valuations-container .valuations-right {
	flex: 1;
	background-image: url("assets/images/lenders/1/img-0.svg");
	background-color: #d9d9d9;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section.ai-valuations .valuations-container .valuations-right .assets-donut-wrapper {
	position: relative;
	max-width: 400px;
	padding: 30px;
	background-color: #fff;
	border-radius: 30px;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.section.ai-valuations .valuations-container .valuations-right .assets-donut-wrapper .assets-donut-legend-title {
	font-size: 1.25rem;
	font-weight: 500;
	color: #222;
	position: absolute;
	left: 30px;
	top: 20%;
}

.section.how-it-works {
	background: #000;
	position: relative;
}

.section.how-it-works .background-circles.lenders .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
	background-image: url("assets/images/lenders/circle-3.svg");
	background-size: 23%;
	background-position: 100% 4%;
}

.section.how-it-works h3 {
	font-size: 3rem;
	line-height: 3.5rem;
	color: #fff;
	font-weight: 500;
	max-width: 600px;
	margin-bottom: 50px;
}

.section.how-it-works p {
	font-size: 1.2rem;
	max-width: 870px;
	margin-bottom: 100px;
}

.section.how-it-works p span {
	color: #ffd460;
}

.section.how-it-works h4 {
	font-size: 2.3rem;
	line-height: 2.3rem;
	color: #fff;
	font-weight: 500;
	max-width: 600px;
	margin-bottom: 50px;
}

.section.how-it-works .asset-type-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 15px;
	row-gap: 40px;
}

.section.how-it-works .asset-type-list .asset-type-container {
	display: flex;
}

.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100px;
	height: 100px;
	background-color: #d9d9d9;
	border-radius: 15px;
	margin-right: 15px;
}

.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper .asset-type-image {
	width: 100%;
	height: 100%;
	padding: 15px;
}

.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper .asset-type-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper.year-2027::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("assets/images/lenders/2/2027.svg");
	background-size: 100%;
	background-position: 100% 100%;
	background-repeat: no-repeat;
}

.section.how-it-works .asset-type-list .asset-type-container .asset-type-image-wrapper.year-2026::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("assets/images/lenders/2/2026.svg");
	background-size: 100%;
	background-position: 100% 100%;
	background-repeat: no-repeat;
}

.section.how-it-works .asset-type-list .asset-type-container .asset-type-details {
	flex: 2;
	padding: 0 10px;
}

.section.how-it-works .asset-type-list .asset-type-container .asset-type-details p {
	font-size: 1rem;
	margin-bottom: 10px;
}

.section.how-it-works .asset-type-list .asset-type-container .asset-type-details h5 {
	font-size: 1.2rem;
	font-weight: normal;
	color: #fff;
}

.section.portfolio-insights {
	padding: 100px 0 0;
}

.section.portfolio-insights h2 {
	font-size: 3rem;
	line-height: 3.75rem;
	margin: 0 auto 90px;
	color: #fff;
	text-align: center;
	font-weight: 500;
	max-width: 600px;
}

.section.portfolio-insights h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.portfolio-insights .row {
	position: relative;
	z-index: 1;
}

.section.portfolio-insights .row .column {
	border-radius: 30px;
	background: black;
	color: #fff;
	margin: 20px 10px;
	display: flex;
	flex-direction: column;
	height: 650px;
}

.section.portfolio-insights .row .column .img-container {
	position: relative;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	background-size: cover;
	background-position: 50% 50%;
	background-color: #fff;
	height: 380px;
}

.section.portfolio-insights .row .column .img-container::before {
	content: "";
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
}

.section.portfolio-insights .row .column .details-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 25px 45px;
	height: 240px;
}

.section.portfolio-insights .row .column .details-container p {
	text-align: left;
	font-size: 1.2rem;
	color: #9a9a9a;
	margin: 0;
}

.section.portfolio-insights .row .column .details-container .cta-with-arrow {
	text-align: right;
}

.section.portfolio-insights .row .column.health-check {
	margin-left: 0;
}

.section.portfolio-insights .row .column.health-check .img-container {
	background-size: 135%;
}

.section.portfolio-insights .row .column.receive-insights {
	margin-right: 0;
}

.section.portfolio-insights .row .column.receive-insights .img-container {
	background-size: cover;
}

.section.whats-in-it {
	min-height: 80vh;
}

.section.whats-in-it h2 {
	font-size: 3rem;
	line-height: 3rem;
	margin: 0 auto 90px;
	color: #fff;
	text-align: center;
	font-weight: 500;
	max-width: 600px;
}

.section.whats-in-it .categories-container {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.section.whats-in-it .categories-container .category-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 25px;
	max-width: 1000px;
}

.section.whats-in-it .categories-container .category-list .category-item {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffd460;
	color: #000;
	padding: 50px;
	border-radius: 30px;
}

.section.whats-in-it .categories-container .category-list .category-item .category-image-wrapper {
	margin-right: 30px;
}

.section.whats-in-it .categories-container .category-list .category-item .category-image-wrapper .category-image {
	height: 130px;
	width: 130px;
	background-size: auto 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.section.whats-in-it .categories-container .category-list .category-item .category-details p {
	font-size: 1.2rem;
	margin: 0;
}

.sections-group .background-circles.borrowers .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.sections-group .background-circles.borrowers .circle:nth-child(1) {
	background-image: url("assets/images/borrowers/circle-1.svg");
	background-size: 35%;
	background-position: 5% 0%;
}

.sections-group .background-circles.borrowers .circle:nth-child(2) {
	background-image: url("assets/images/borrowers/circle-2.svg");
	background-size: 22%;
	background-position: 10% 52%;
}

.sections-group .background-circles.borrowers .circle:nth-child(3) {
	background-image: url("assets/images/borrowers/circle-3.svg");
	background-size: 25%;
	background-position: 100% 83%;
}

.borrowers-hero-section {
	display: flex;
	align-items: center;
	min-height: 100vh;
	margin-top: -70px;
	padding: 150px 0 100px;
}

.borrowers-hero-section .container {
	display: flex;
	align-items: center;
	height: 100%;
}

.borrowers-hero-section .hero-left {
	flex: 50%;
}

.borrowers-hero-section .hero-left h2 {
	font-size: 3.75rem;
	font-weight: 500;
	line-height: 3.75rem;
	color: #fff;
	margin-bottom: 40px;
}

.borrowers-hero-section .hero-left h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.borrowers-hero-section .hero-left p {
	font-size: 1.2rem;
	line-height: 1.75rem;
	max-width: 85%;
	margin-bottom: 40px;
}

.borrowers-hero-section .hero-right {
	flex: 50%;
}

.section.our-network {
	position: relative;
}

.section.our-network .container {
	padding: 0;
	max-width: 100% !important;
}

.section.our-network .container .our-network-carousel .carousel-item {
	padding: 0 20px;
}

.section.our-network .container .our-network-carousel .carousel-item .carousel-content {
	border-radius: 30px;
	background: #000;
	flex: 100%;
	height: 100%;
	overflow: hidden;
}

.section.our-network .container .our-network-carousel .carousel-item .carousel-content .carousel-image {
	position: relative;
	width: 100%;
}

.section.our-network .container .our-network-carousel .carousel-item .carousel-content .carousel-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, black 80%, black 100%);
}

.section.our-network .container .our-network-carousel .carousel-item .carousel-content .carousel-image img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.section.our-network .container .our-network-carousel .carousel-item .carousel-content .carousel-details {
	padding: 20px 60px 40px;
	min-height: 100px;
}

.section.our-network .container .our-network-carousel .carousel-item .carousel-content .carousel-details h3 {
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 30px;
}

.section.our-network .container .our-network-carousel .carousel-item .carousel-content .carousel-details p {
	font-size: 1rem;
	line-height: 1.75rem;
	color: #fff;
	transition: font-size 0.5s;
	margin-bottom: 20px;
}

.section.our-network .container .our-network-carousel .slick-list::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 80%, black 100%);
	z-index: 2;
	pointer-events: none;
}

.section.our-network .container .our-network-carousel .slick-list::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 80%, black 100%);
	z-index: 2;
	pointer-events: none;
}

.section.our-network .container .our-network-carousel .slick-track {
	display: flex !important;
}

.section.our-network .container .our-network-carousel .slick-slide {
	height: inherit !important;
}

.section.our-network .container .our-network-carousel .slick-dots {
	position: relative;
	left: 0;
	right: 0;
	margin: 0 auto;
	margin-top: 50px;
	z-index: 200;
}

.section.borrowers-assets .container h2 {
	font-size: 3rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 60px;
	text-align: center;
}

.section.borrowers-assets .container h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.borrowers-assets .container .row {
	justify-content: center;
	align-items: center;
}

.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p {
	font-size: 1.2rem;
	max-width: 90%;
	margin-bottom: 20px;
}

.section.borrowers-assets .container .row .assets-left .assets-details-wrapper p:last-child {
	margin-bottom: 0;
}

.section.borrowers-assets .container .row .assets-right .assets-image-wrapper img {
	width: 100%;
	height: auto;
	border-radius: 30px;
}

.background-circles.case-studies-circles .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.background-circles.case-studies-circles .circle:nth-child(1) {
	background-image: url("assets/images/case-studies/circle-1.svg");
	background-size: 30%;
	background-position: 0% 0%;
}

.background-circles.case-studies-circles .circle:nth-child(2) {
	background-image: url("assets/images/case-studies/circle-2.svg");
	background-size: 50%;
	background-position: 100% 15%;
}

.background-circles.case-studies-circles .circle:nth-child(3) {
	background-image: url("assets/images/case-studies/circle-3.svg");
	background-size: 15%;
	background-position: 5% 45%;
}

.background-circles.case-studies-circles .circle:nth-child(4) {
	background-image: url("assets/images/case-studies/circle-4.svg");
	background-size: 40%;
	background-position: 100% 70%;
}

.background-circles.case-studies-circles .circle:nth-child(5) {
	background-image: url("assets/images/case-studies/circle-5.svg");
	background-size: 50%;
	background-position: 0% 100%;
}

.background-circles.case-studies-circles .circle:nth-child(6) {
	background-image: url("assets/images/case-studies/circle-6.svg");
	background-size: 50%;
	background-position: 100% 150%;
}

.case-studies-hero-section {
	position: relative;
	min-height: 100vh;
	margin-top: -70px;
	display: flex;
	align-items: center;
	padding: 150px 0 100px;
	background-size: cover;
	background-position: center;
}

.case-studies-hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(90deg, black 0%, black 30%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 0;
}

.case-studies-hero-section .container {
	height: auto !important;
}

.case-studies-hero-section .content-wrapper {
	position: relative;
	max-width: 595px;
	z-index: 2;
}

.case-studies-hero-section .content-wrapper h2 {
	font-size: 3.5rem;
	line-height: 4rem;
	color: #fff;
	text-align: left;
	font-weight: 500;
	margin-bottom: 60px;
}

.case-studies-hero-section .content-wrapper h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.case-studies-hero-section .content-wrapper p {
	font-size: 1.2rem;
}

.section.case-studies-list h2 {
	font-size: 3rem;
	line-height: 3.5rem;
	margin: 0 auto 90px;
	color: #fff;
	text-align: center;
	font-weight: 500;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-banner {
	width: 100%;
	height: 400px;
	border-radius: 30px;
	overflow: hidden;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content {
	margin: 100px 0;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row {
	margin-bottom: 80px;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .row .col-6:first-child {
	padding-right: 50px;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .title-wrapper .title {
	font-size: 2.5rem;
	line-height: 3rem;
	color: #fff;
	text-align: left;
	font-weight: 500;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .title-wrapper .title strong {
	color: #ffd460;
	font-weight: 500;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .subtitle-wrapper .subtitle {
	font-size: 1.5rem;
	line-height: 2rem;
	color: #fff;
	text-align: left;
	font-weight: 500;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .subtitle-wrapper .subtitle strong {
	color: #ffd460;
	font-weight: 500;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description,
.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-list {
	font-size: 1.2rem;
	margin-bottom: 30px;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description strong,
.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-list strong {
	color: #ffd460;
	font-weight: bold;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description:last-child,
.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-list:last-child {
	margin-bottom: 0;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis {
	margin-bottom: 30px;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-primary {
	font-size: 1.5rem;
	line-height: 2rem;
	color: #fff;
	text-align: left;
	font-weight: 500;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-primary strong {
	color: #ffd460;
	font-weight: 500;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-secondary {
	font-size: 1.3rem;
	line-height: 1.8rem;
	color: #fff;
	text-align: left;
	font-weight: 500;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-emphasis .emphasis-secondary strong {
	color: #ffd460;
	font-weight: 500;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-list {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-list li {
	position: relative;
	padding-left: 1em;
}

.section.case-studies-list .container .case-studies-wrapper .case-study-wrapper .case-study-content .description-wrapper .description-list li::before {
	content: "–";
	font-size: inherit;
	position: absolute;
	left: 0;
}

.background-circles.contact-us .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.background-circles.contact-us .circle:nth-child(1) {
	background-image: url("assets/images/contact-us/circle-1.svg");
	background-size: 30%;
	background-position: 0% 0%;
}

.background-circles.contact-us .circle:nth-child(2) {
	background-image: url("assets/images/contact-us/circle-2.svg");
	background-size: 50%;
	background-position: 100% 10%;
}

.background-circles.contact-us .circle:nth-child(3) {
	background-image: url("assets/images/contact-us/circle-3.svg");
	background-size: 15%;
	background-position: 5% 56%;
}

.contact-hero-section {
	min-height: 100vh;
	margin-top: -70px;
	display: flex;
	align-items: center;
	padding: 150px 0 100px;
}

.contact-hero-section h2 {
	font-size: 3.5rem;
	font-weight: 500;
	line-height: 3.5rem;
	color: #fff;
	margin-bottom: 20px;
}

.contact-hero-section h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.contact-hero-section h3 {
	font-size: 2.75rem;
	font-weight: 500;
	line-height: 2.75rem;
	color: #fff;
	margin-bottom: 50px;
}

.contact-hero-section p {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.contact-hero-section .container {
	display: flex;
}

.contact-hero-section .hero-left {
	flex: 1;
	display: inline-block;
	align-content: center;
}

.contact-hero-section .hero-right {
	flex: 1;
	display: flex;
	justify-content: end;
}

.contact-hero-section .hero-right .contact-form {
	position: relative;
	background: #000;
	padding: 2rem;
	border: 1px solid #333;
	border-radius: 1rem;
	max-width: 520px;
	width: 100%;
	font-family: Arial, sans-serif;
	color: #fff;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form p {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form p br {
	display: none;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form .user-type-row p {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 12px;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form .user-type-row p label {
	margin-bottom: 0;
	white-space: nowrap;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form .user-type-row p span {
	flex: 1;
	min-width: 0;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form .lender-services {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form label {
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	margin-right: 10px;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form select {
	appearance: none;
	cursor: pointer;
	background: #151515;
	border: none;
	border-radius: 2rem;
	padding: 0.5rem 1rem;
	color: #999;
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1.2em;
	width: 100%;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form input,
.contact-hero-section .hero-right .contact-form .contact-us-form-content form textarea {
	background: #151515;
	border: none;
	border-radius: 2rem;
	padding: 0.5rem 1rem;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	width: 100%;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form select {
	appearance: none;
	cursor: pointer;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form textarea {
	border-radius: 1rem;
	min-height: 100px;
	resize: none;
	width: 100%;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form .btn-wrapper {
	text-align: right;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form .btn-wrapper p {
	display: inline-block;
	margin-bottom: 0;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form .btn-wrapper p button[type="submit"] {
	display: inline-flex;
	align-items: center;
	color: #000;
	background: #ffd460;
	margin-top: 10px;
	padding: 5px 25px;
	border: none;
	border-radius: 2rem;
	cursor: pointer;
	transition: background 0.3s;
	font-size: 1rem;
}

.contact-hero-section .hero-right .contact-form .contact-us-form-content form .btn-wrapper p button[type="submit"]:hover {
	background: #ffe08b;
}

.contact-hero-section .hero-right .contact-form .thank-you-message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content {
	position: relative;
	padding-top: 130px;
	text-align: center;
}

.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content::before {
	content: "\2713";
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Poppins", sans-serif;
	font-size: 4rem;
	line-height: 4rem;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #ffd460;
}

.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content h2 {
	font-size: 2.5rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 30px;
}

.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.contact-hero-section .hero-right .contact-form .thank-you-message .thank-you-message-content p {
	font-size: 1.2rem;
	margin-bottom: 0;
	color: #9a9a9a;
	max-width: 470px;
}

.section.any-questions .container {
	display: flex;
	max-width: 1340px;
}

.section.any-questions .any-questions-left {
	flex: 1;
}

.section.any-questions .any-questions-left h2 {
	font-size: 3.75rem;
	font-weight: 500;
	line-height: 3.75rem;
	color: #fff;
	margin-bottom: 80px;
	text-align: left;
	max-width: 475px;
}

.section.any-questions .any-questions-left h2 strong {
	color: #ffd460;
	font-weight: 500;
}

.section.any-questions .any-questions-left p {
	font-size: 1.2rem;
	text-align: left;
	max-width: 470px;
}

.section.any-questions .any-questions-right {
	flex: 1;
}

.section.any-questions .any-questions-right .questions-list {
	margin: 25px 0;
}

.section.any-questions .any-questions-right .questions-list .question-container {
	font-weight: 500;
}

.section.any-questions .any-questions-right .questions-list .question-container .question {
	position: relative;
	font-size: 1rem;
	background-color: #000;
	color: #fff;
	cursor: pointer;
	padding: 8px 25px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	border-radius: 30px;
}

.section.any-questions .any-questions-right .questions-list .question-container .question::after {
	content: "\002B";
	color: white;
	font-weight: bold;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.section.any-questions .any-questions-right .questions-list .question-container .answer-container {
	background-color: #ffd460;
	max-height: 0;
	overflow: hidden;
	color: #9a9a9a;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}

.section.any-questions .any-questions-right .questions-list .question-container .answer-container .answer {
	padding: 25px;
	padding-top: 0;
}

.section.any-questions .any-questions-right .questions-list .question-container .answer-container .answer p {
	font-size: 1rem;
	border-top: 1px solid #000;
	padding-top: 25px;
	color: #000;
}

.section.any-questions .any-questions-right .questions-list .question-container.active .question {
	padding-top: 25px;
	background-color: #ffd460;
	color: #000;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.section.any-questions .any-questions-right .questions-list .question-container.active .question::after {
	content: "\2212";
	color: #000;
}

.section.any-questions .any-questions-right .questions-list .question-container.active .answer-container {
	max-height: fit-content;
}

.background-circles.terms-and-conditions-circles .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.background-circles.terms-and-conditions-circles .circle:nth-child(1) {
	background-image: url("assets/images/terms-and-conditions/circle-1.svg");
	background-size: 30%;
	background-position: 0% 0%;
}

.background-circles.terms-and-conditions-circles .circle:nth-child(2) {
	background-image: url("assets/images/terms-and-conditions/circle-2.svg");
	background-size: 50%;
	background-position: 100% 2%;
}

.background-circles.terms-and-conditions-circles .circle:nth-child(3) {
	background-image: url("assets/images/terms-and-conditions/circle-3.svg");
	background-size: 15%;
	background-position: 5% 10%;
}

.background-circles.terms-and-conditions-circles .circle:nth-child(4) {
	background-image: url("assets/images/terms-and-conditions/circle-4.svg");
	background-size: 40%;
	background-position: 100% 30%;
}

.background-circles.terms-and-conditions-circles .circle:nth-child(5) {
	background-image: url("assets/images/terms-and-conditions/circle-5.svg");
	background-size: 50%;
	background-position: 0% 45%;
}

.background-circles.terms-and-conditions-circles .circle:nth-child(6) {
	background-image: url("assets/images/terms-and-conditions/circle-6.svg");
	background-size: 50%;
	background-position: 100% 65%;
}

.background-circles.terms-and-conditions-circles .circle:nth-child(7) {
	background-image: url("assets/images/terms-and-conditions/circle-7.svg");
	background-size: 30%;
	background-position: 100% 90%;
}

.background-circles.terms-and-conditions-circles .circle:nth-child(8) {
	background-image: url("assets/images/terms-and-conditions/circle-8.svg");
	background-size: 40%;
	background-position: 0% 100%;
}

.terms-and-conditions-group {
	padding-bottom: 100px;
}

.section {
	flex-direction: column;
}

.section.terms-and-conditions,
.section.severability-and-waiver {
	height: auto;
	margin-top: -70px;
	min-height: unset;
}

.section.terms-and-conditions .container,
.section.severability-and-waiver .container {
	padding: 50px 20px;
}

.section.terms-and-conditions .top-card,
.section.severability-and-waiver .top-card {
	border-radius: 30px;
	background-color: #000;
	padding: 50px;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.section.terms-and-conditions .top-card h3,
.section.severability-and-waiver .top-card h3 {
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 500;
	color: #ffd460;
	margin-bottom: 40px;
	text-align: center;
}

.section.terms-and-conditions .top-card p,
.section.severability-and-waiver .top-card p {
	font-size: 1.2rem;
	line-height: 1.2rem;
	font-weight: 500;
	color: #9a9a9a;
	text-align: center;
}

.section.terms-and-conditions .top-card .checklist,
.section.severability-and-waiver .top-card .checklist {
	max-width: 1000px;
	margin: 90px auto 50px;
}

.section.terms-and-conditions .top-card .checklist .list .item,
.section.severability-and-waiver .top-card .checklist .list .item {
	position: relative;
	padding-left: 32px;
	color: #fff;
	margin: 2rem 0;
	list-style: none;
}

.section.terms-and-conditions .top-card .checklist .list .item::before,
.section.severability-and-waiver .top-card .checklist .list .item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	background-image: url("assets/images/barker-link-arrow.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

.section.terms-and-conditions .top-card .checklist .list .item:first-child,
.section.severability-and-waiver .top-card .checklist .list .item:first-child {
	margin-top: 0;
}

.section.terms-and-conditions .top-card .checklist .list .item:last-child,
.section.severability-and-waiver .top-card .checklist .list .item:last-child {
	margin-bottom: 0;
}

.section.terms-and-conditions .inner-contents,
.section.severability-and-waiver .inner-contents {
	padding: 100px 20px;
	max-width: calc(1340px - 400px) !important;
}

.section.terms-and-conditions .inner-contents .part,
.section.severability-and-waiver .inner-contents .part {
	margin-bottom: 100px;
}

.section.terms-and-conditions .inner-contents .part h3,
.section.severability-and-waiver .inner-contents .part h3 {
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 500;
	color: #ffd460;
	margin-bottom: 40px;
	text-align: left;
}

.section.terms-and-conditions .inner-contents .part p,
.section.severability-and-waiver .inner-contents .part p {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #9a9a9a;
	text-align: left;
	margin-bottom: 20px;
}

.section.terms-and-conditions .inner-contents .part .text-link,
.section.severability-and-waiver .inner-contents .part .text-link {
	color: #ffd460;
}

.section.terms-and-conditions .inner-contents .part .text-link:hover,
.section.severability-and-waiver .inner-contents .part .text-link:hover {
	text-decoration: underline;
}

.section.terms-and-conditions .inner-contents .part:last-child,
.section.severability-and-waiver .inner-contents .part:last-child {
	margin-bottom: 0;
}

.section.terms-and-conditions {
	padding-bottom: 0;
}

.section.severability-and-waiver {
	margin-top: 0;
	padding: 100px 0;
	background-color: #000;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.section.severability-and-waiver h3 {
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 40px;
	text-align: center;
}

.section.severability-and-waiver .inner-contents {
	padding: 0 20px;
}

.section.severability-and-waiver .part h4 {
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 500;
	color: #ffd460;
	margin-bottom: 40px;
	text-align: left;
}

.section.severability-and-waiver .part p {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #fff !important;
}

.section.severability-and-waiver .part:last-child {
	margin-bottom: 0;
}

.section.contact-us-card {
	min-height: unset;
	padding: 100px 0;
	background-color: #151515;
}

.section.contact-us-card h3 {
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 40px;
	text-align: center;
}

.section.contact-us-card p {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #fff !important;
	margin-bottom: 20px;
	text-align: center;
}

.section.contact-us-card p:last-child {
	margin-bottom: 0;
}

.section.contact-us-card .text-link {
	color: #ffd460;
}

.section.contact-us-card .text-link:hover {
	text-decoration: underline;
}

.background-circles.docs .circle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	z-index: 0;
}

.background-circles.docs .circle:nth-child(1) {
	background-image: url("assets/images/terms-and-conditions/circle-1.svg");
	background-size: 30%;
	background-position: 0% 0%;
}

.background-circles.docs .circle:nth-child(2) {
	background-image: url("assets/images/terms-and-conditions/circle-2.svg");
	background-size: 50%;
	background-position: 100% 2%;
}

.background-circles.docs .circle:nth-child(3) {
	background-image: url("assets/images/terms-and-conditions/circle-3.svg");
	background-size: 15%;
	background-position: 5% 13%;
}

.background-circles.docs .circle:nth-child(4) {
	background-image: url("assets/images/terms-and-conditions/circle-4.svg");
	background-size: 40%;
	background-position: 100% 35%;
}

.background-circles.docs .circle:nth-child(5) {
	background-image: url("assets/images/terms-and-conditions/circle-5.svg");
	background-size: 50%;
	background-position: 0% 60%;
}

.background-circles.docs .circle:nth-child(6) {
	background-image: url("assets/images/terms-and-conditions/circle-6.svg");
	background-size: 50%;
	background-position: 100% 95%;
}

.privacy-policy-group {
	padding-bottom: 100px;
}

.section {
	flex-direction: column;
}

.section.privacy-policy {
	height: auto;
	margin-top: -70px;
	min-height: unset;
}

.section.privacy-policy .container {
	padding: 50px 20px;
}

.section.privacy-policy .top-card {
	border-radius: 30px;
	background-color: #000;
	padding: 50px;
	box-shadow: 0 28px 23px -13px rgba(0, 0, 0, 0.9);
}

.section.privacy-policy .top-card h3 {
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 500;
	color: #ffd460;
	margin-bottom: 40px;
	text-align: center;
}

.section.privacy-policy .top-card p {
	font-size: 1.2rem;
	line-height: 1.2rem;
	font-weight: 500;
	color: #9a9a9a;
	text-align: center;
}

.section.privacy-policy .top-card .description {
	max-width: 1000px;
	margin: 50px auto 0;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #fff;
	text-align: left;
}

.section.privacy-policy .inner-contents {
	padding: 100px 20px;
	max-width: calc(1340px - 400px) !important;
}

.section.privacy-policy .inner-contents .part {
	margin-bottom: 100px;
}

.section.privacy-policy .inner-contents .part .inner-part {
	margin-bottom: 50px;
}

.section.privacy-policy .inner-contents .part .inner-part:last-child {
	margin-bottom: 0;
}

.section.privacy-policy .inner-contents .part .inner-part:last-child p {
	margin-bottom: 0;
}

.section.privacy-policy .inner-contents .part h3 {
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 500;
	color: #ffd460;
	margin-bottom: 40px;
	text-align: left;
}

.section.privacy-policy .inner-contents .part h4 {
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 20px;
	text-align: left;
}

.section.privacy-policy .inner-contents .part p {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #9a9a9a;
	text-align: left;
	margin-bottom: 20px;
}

.section.privacy-policy .inner-contents .part .text-link {
	color: #ffd460;
}

.section.privacy-policy .inner-contents .part .text-link:hover {
	text-decoration: underline;
}

.section.privacy-policy .inner-contents .part:last-child {
	margin-bottom: 0;
}

.section.privacy-policy {
	padding-bottom: 0;
}

.section.contact-us-card {
	min-height: unset;
	padding: 100px 0;
	background-color: #151515;
}

.section.contact-us-card h3 {
	font-size: 2.5rem;
	line-height: 3rem;
	font-weight: 500;
	color: #ffd460;
	margin-bottom: 40px;
	text-align: center;
}

.section.contact-us-card p {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #fff !important;
	margin: 0 auto 20px;
	max-width: 800px;
	text-align: center;
}

.section.contact-us-card p:last-child {
	margin-bottom: 0;
}

.section.contact-us-card .text-link {
	color: #ffd460;
}

.section.contact-us-card .text-link:hover {
	text-decoration: underline;
}

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

body {
	font-family: "Inter", sans-serif;
	background: #3f3f3f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}

.sections-group {
	position: relative;
	background-image: linear-gradient(90deg, #151515 0%, #3f3f3f 50%, #151515 100%);
}

.container {
	width: 100%;
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 20px;
}

.cta-with-arrow {
	position: relative;
	font-size: 1.2rem;
	line-height: 1.2rem;
	color: #fff;
	padding-right: 35px;
}

.cta-with-arrow::after {
	content: "";
	background-image: url(assets/images/barker-link-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.slick-arrow {
	position: absolute;
	width: 25px;
	height: 25px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
}

.slick-arrow::before {
	content: "";
	position: absolute;
	width: 25px;
	height: 25px;
	background-size: 100% 100%;
	background-position: 100% 100%;
	background-repeat: no-repeat;
}

.slick-arrow.slick-next {
	right: 0;
}

.slick-arrow.slick-next::before {
	right: 50px;
	background-image: url("assets/images/slider-arrow-right.svg");
}

.slick-arrow.slick-prev {
	left: 0;
}

.slick-arrow.slick-prev::before {
	left: 50px;
	background-image: url("assets/images/slider-arrow-left.svg");
}

.slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.carousel-dot {
	width: 9px;
	height: 9px;
	border-radius: 4px;
	background: #9a9a9a;
	opacity: 1;
	transition: opacity 0.2s, transform 0.2s, width 0.2s;
	cursor: pointer;
	border: none;
}

.slick-dots li {
	width: unset !important;
}

.slick-dots li .slick-wide-dot {
	width: 9px !important;
	height: 9px !important;
	background: #9a9a9a !important;
	border-radius: 9px;
	transition: width 0.3s ease;
}

.slick-dots li .slick-wide-dot::before {
	opacity: 0 !important;
}

.slick-dots li .slick-border-dot {
	width: 9px !important;
	height: 9px !important;
	background: transparent !important;
	border-radius: 9px;
	border: 1px solid #fff !important;
	transition: background 0.3s ease, border 0.3s ease;
}

.slick-dots li .slick-border-dot::before {
	opacity: 0 !important;
}

.slick-dots .slick-active .slick-wide-dot {
	width: 28px !important;
	background: #ffd460 !important;
}

.slick-dots .slick-active .slick-border-dot {
	background: #ffd460 !important;
	border: 1px solid #ffd460 !important;
}
