:root {
	--content-default: #323232;
	--content-dark: #000;
	--content-highlight: #088bed;
	--content-inverted-bg: #323232;
	--content-inverted: #fff;
	--content-light-bg: #f0f9fb;
	--grey: #333;
	--grey-light: #6b6b6b;
	--grey-bg: #efefef;
	--grey-light-bg: #f7f7f7;
	--border: #929292;
	--blue-bg: #f1f7ff;
	--white: #fff;
	--section-bg: #f7f9fb;
	--error-color: #ff0000;
	--content-link-color: #088bed;
	--content-link-hover: #23334a;
	--content-font-size: 19px;
	--content-font: Roboto, sans-serif;
	--heading-font: Roboto, sans-serif;
	--heading-color: #323232;
	--h1-font-size: 28px;
	--h2-font-size: 24px;
	--h3-font-size: 20px;
	--content-button-text: #fff;
	--content-button-bg: #088bed;
	--content-button-hover-text: #fff;
	--content-button-hover-bg: #088bed;
	--banner-heading-color: #fff;
	--banner-heading-font-size: 42px;
	--banner-subheading-color: #fff;
	--banner-subheading-font-size: 22px;
	--banner-link-color: #fff;
	--banner-link-hover: #fff;
}

body {
	background: var(--white);
	color: var(--content-default);
	font-family: var(--content-font);
	font-size: var(--content-font-size);
}

.container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1300px;
	padding: 0 10px;
	width: 100%;
}

a {
	color: var(--content-link-color);
	text-decoration: none;
}
a:hover {
	color: var(--content-link-hover);
}

main {
	margin-bottom: 100px;
	margin-top: 50px;
}
@media (max-width: 576px) {
	main main {
		margin-bottom: 50px;
	}
}

.pre-header .phone,
.pre-header .email {
	background-size: 15px;
	padding-left: 25px;
}

.pre-header {
	background-color: var(--content-highlight);
	color: var(--white);
	font-size: 1.7rem;
	font-weight: bold;
}
.pre-header a {
	color: var(--white);
}
.pre-header .container {
	align-items: center;
	display: flex;
	min-height: 50px;
	padding: 10px;
	justify-content: space-between;
}
@media (max-width: 576px) {
	.pre-header .container {
		flex-direction: column;
		gap: 8px;
	}
}
.pre-header .email {
	background: url(../images/icon-email.svg) no-repeat center left;
}
.pre-header .phone {
	background: url(../images/icon-phone.svg) no-repeat center left;
}

header {
	min-height: 90px;
}
header .container {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
header .agent-info {
	align-items: center;
	display: flex;
	gap: 20px;
}
header .agent-name {
	line-height: 1;
	max-width: 250px;
}
header .agent-name h1 {
	font-size: 2.2rem;
	font-weight: bold;
	margin: 0;
}
header .agent-name span {
	display: block;
	font-size: 1.6rem;
	line-height: 1.2;
	word-break: break-word;
}

.login_btn {
	border: 2px solid var(--content-button-bg);
	border-radius: 5px;
	box-sizing: border-box;
	color: var(--content-button-bg);
	display: inline-block;
	padding: 20px;
	text-align: center;
	width: 180px;
}

@media (max-width: 1200px) {
	.login_btn {
		padding: 10px;
	}
}
@media (max-width: 992px) {
	.login_btn {
		font-size: 16px;
	}
}
@media (max-width: 768px) {
	.login_btn {
		display: none;
	}
}
.logo {
	border: 2px solid #000;
	border-radius: 50%;
	display: flex;
	height: 75px;
	overflow: hidden;
	width: 75px;
	min-width: 75px;
}
.logo img {
	align-self: center;
}

nav.nav-sec {
	display: none;
	width: 750px;
}
@media (max-width: 576px) {
	nav.nav-sec {
		width: auto;
	}
}
nav ul {
	margin: 0;
	padding: 0;
	text-align: center;
}
nav .nav-list > li {
	display: inline-block;
	padding: 0 10px;
}
nav .nav-list > li > a {
	border-bottom: 3px solid transparent;
	display: inline-block;
	padding: 33px 10px 30px;
}
nav .nav-list > li > a:hover {
	border-bottom: 3px solid var(--content-link-color);
}
nav a {
	color: var(--content-default);
	transition: color 0.3s ease;
}
nav li {
	list-style: none;
	padding: 0;
	position: relative;
}
nav li ul {
	display: none;
}
nav li:hover > ul {
	background-color: var(--white);
	border-top: 3px solid var(--content-link-color);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
	display: block;
	position: absolute;
	right: 0;
	text-align: left;
	top: 89px;
	z-index: 3;
}
nav li:hover > ul::before {
	border-bottom-color: var(--content-link-color);
	border-left-color: transparent;
	border-right-color: transparent;
	border-style: solid;
	border-top-color: transparent;
	border-width: 0 10px 10px;
	content: '';
	display: inline-block;
	height: 0;
	position: absolute;
	right: 25px;
	top: -10px;
	width: 0;
}
nav li:hover > ul li > ul {
	border-right: 3px solid var(--content-link-color);
	border-top: 1px solid #091d3e;
	right: 100%;
	top: -1px;
}
nav li:hover > ul li > ul::before {
	border-bottom-color: var(--content-link-color);
	border-left-color: transparent;
	border-right-color: transparent;
	border-style: solid;
	border-top-color: transparent;
	border-width: 5px 8.7px 5px 0;
	right: -1px;
	top: 15px;
}
nav .subnav li,
nav .nav-wrap li {
	border-bottom: 1px solid #091d3e;
	white-space: nowrap;
}
nav .subnav a,
nav .nav-wrap a {
	display: block;
	padding: 10px;
}
nav .subnav a:hover,
nav .nav-wrap a:hover {
	color: var(--content-link-color);
}
nav li.nav-wrap {
	background: url('../images/icon-arrow-down.svg') no-repeat center right;
	background-size: 15px;
}

.sub-header {
	background-color: #eff6fd;
	font-size: 2.2rem;
	font-weight: 500;
}
.sub-header .container {
	height: 75px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sub-header .agent-name span {
	font-size: 1.3rem;
	font-weight: 400;
}
.sub-header .tagline {
	font-weight: 400;
}

.breadcrumbs {
	background-color: var(--content-link-hover);
}
.breadcrumbs .container {
	align-items: center;
	color: var(--white);
	display: flex;
	font-size: 2.2rem;
	font-weight: bold;
	height: 85px;
}
@media (max-width: 992px) {
	.breadcrumbs .container {
		font-size: 1.6rem;
		height: 50px;
	}
}
@media (max-width: 576px) {
	.breadcrumbs .container {
		height: auto;
		padding-top: 8px;
		padding-bottom: 8px;
	}
}
.breadcrumbs .breadcrumb .on::after {
	content: '/';
	display: inline-block;
	padding: 0 5px 0 10px;
}
.breadcrumbs .breadcrumb a:hover {
	color: var(--content-inverted);
}
.breadcrumbs .breadcrumb li {
	line-height: 1.5;
}

.banner {
	color: var(--content-inverted);
	position: relative;
}
.banner .banner-container {
	bottom: 0;
	display: flex;
	gap: 155px;
	justify-content: flex-end;
	left: calc(50% - 650px);
	position: absolute;
	max-width: 1300px;
	width: 100%;
	z-index: 2;
}
@media (max-width: 1200px) {
	.banner .banner-container {
		max-width: 96%;
		left: 2%;
		gap: 60px;
		bottom: auto;
		top: 0;
		padding-top: 75px !important;
	}
}
@media (max-width: 992px) {
	.banner .banner-container {
		flex-direction: column;
		padding-top: 45px !important;
		gap: 40px;
	}
}
.banner .banner-heading {
	flex: 1;
}
.banner .banner-heading h1 {
	color: var(--banner-heading-color);
	font-size: 6.4rem;
	line-height: 1.2;
	margin-top: 0;
	padding-bottom: 15px;
	position: relative;
}
@media (max-width: 1200px) {
	.banner .banner-heading h1 {
		font-size: 5rem;
	}
}
@media (max-width: 992px) {
	.banner .banner-heading h1 {
		font-size: 4rem;
	}
}
@media (max-width: 768px) {
	.banner .banner-heading h1 {
		font-size: 3rem;
	}
}
@media (max-width: 576px) {
	.banner .banner-heading h1 {
		font-size: 2.5rem;
	}
}
.banner .banner-heading h1::after {
	background-color: var(--content-link-color);
	bottom: 0px;
	content: '';
	height: 8px;
	left: 0;
	position: absolute;
	width: 171px;
}
.banner .banner-heading p {
	color: var(--banner-subheading-color);
	font-size: 2.5rem;
	line-height: 1.5;
}
@media (max-width: 1200px) {
	.banner .banner-heading p {
		font-size: 2.25rem;
	}
}
@media (max-width: 992px) {
	.banner .banner-heading p {
		font-size: 2rem;
	}
}
@media (max-width: 768px) {
	.banner .banner-heading p {
		font-size: 1.75rem;
	}
}
.banner .agent-info-block {
	display: flex;
	font-size: 1.5rem;
	margin-bottom: 35px;
}
.banner .agent-info {
	display: flex;
	flex-direction: column;
	width: 70%;
	word-break: break-all;
}
.banner .agent-info a {
	color: var(--content-inverted);
}
.banner .agent-info .phone {
	background: url(../images/icon-phone.svg) no-repeat center left;
	background-size: 12px;
	display: block;
	padding-left: 20px;
}
.banner .agent-info .email {
	background: url('../images/icon-email.svg') no-repeat center left;
	background-size: 15px;
	display: block;
	padding-left: 20px;
}
.banner .agent-img img {
	margin-right: 20px;
	width: 100px;
}
.banner .agent-designation {
	line-height: 1.5;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.banner .agent-name {
	color: var(--content-link-color);
	font-size: 2.2rem;
	font-weight: 500;
	margin-bottom: 15px;
	word-break: break-word;
}
.banner label:not(#human-error).error {
	display: none !important;
}
@media (max-width: 768px) {
	.banner label {
		font-size: 1.5rem;
	}
}
.banner .input-checkbox-field {
	margin-bottom: 0;
}
.banner .btn {
	margin-top: 20px;
}
.banner .input-field {
	background: var(--white);
	border: 2px solid var(--content-link-color);
	border-radius: 0;
	margin-bottom: 10px;
	padding: 10px;
	width: 100%;
}
.banner .input-field:focus {
	border: 2px solid var(--content-link-color) !important;
	box-shadow: none;
}
.banner .input-field.error {
	border: 2px solid var(--error-color) !important;
}
.banner .height-100 {
	object-fit: cover;
	width: 100%;
}

#banner-one-slider-wrap {
	height: 760px;
	overflow: hidden;
	position: relative;
	width: 100%;
}
@media (max-width: 992px) {
	#banner-one-slider-wrap {
		height: 980px;
	}
}
@media (max-width: 576px) {
	#banner-one-slider-wrap {
		height: 1040px;
	}
}
#banner-one-slider-wrap::after {
	background-color: rgba(0, 0, 0, 0.5);
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.homepagesearch-bar {
	border: 2px solid var(--content-button-bg);
	border-radius: 5px;
	padding: 16px;
	width: 70%;
}
@media (max-width: 576px) {
	.homepagesearch-bar {
		width: 100%;
	}
}
.homepagesearch-bar:focus {
	border: 2px solid var(--content-button-bg);
}

.agent-contact {
	background: rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
	flex: 1;
	max-width: 425px;
	padding: 25px;
}
.agent-contact h2 {
	font-size: 2.5rem;
	margin-bottom: 30px;
	margin-top: 0;
	padding-bottom: 20px;
	position: relative;
	text-transform: uppercase;
}
@media (max-width: 576px) {
	.agent-contact h2 {
		font-size: 2.25rem;
		margin-bottom: 20px;
		padding-bottom: 15px;
	}
}
.agent-contact h2::after {
	background: var(--content-link-color);
	bottom: 0;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	width: 75px;
}
.agent-contact p {
	font-size: 1.3rem;
	margin-bottom: 48px;
	margin-top: 25px;
}

footer {
	background-color: #091d3e;
	color: var(--white);
	font-size: 1.7rem;
	padding: 115px 0 75px 0;
}
@media (max-width: 992px) {
	footer {
		padding: 75px 0;
	}
}
footer .container {
	display: flex;
}
@media (max-width: 992px) {
	footer .container {
		flex-direction: column;
	}
}
footer .agent-info-block {
	width: 420px;
}
@media (max-width: 992px) {
	footer .agent-info-block {
		width: 100%;
	}
}
footer .agent-name {
	width: 70%;
}
footer .agent-name h1 {
	font-size: 2.6rem;
	margin: 0;
}
footer .agent-name span {
	display: block;
	line-height: 1.25;
	word-break: break-all;
}
footer .content {
	flex: 1;
}
footer .content p {
	line-height: 1.6;
}
footer h3 {
	font-size: 2.2rem;
	margin-bottom: 35px;
}
footer .agent-info {
	align-items: center;
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}
footer .logo {
	border-color: var(--white);
}
footer .agency-name {
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}
footer .tagline {
	margin-bottom: 30px;
}
footer .agent-phone {
	background: url(../images/icon-phone.svg) no-repeat center left;
	background-size: 12px;
	color: var(--white);
	display: inline-block;
	margin-bottom: 10px;
	padding-left: 25px;
}
footer .agent-email {
	background: url(../images/icon-email.svg) no-repeat center left;
	background-size: 15px;
	color: var(--white);
	padding-left: 25px;
}
footer a {
	color: var(--white);
}
footer .social-list {
	display: flex;
	gap: 20px;
	list-style: none;
	padding: 0;
}
footer .social-list a {
	display: block;
	height: 45px;
	width: 45px;
}
footer .social-list a img {
	display: none;
}
footer .social-list .social-facebook a {
	background: url(/templates/template_1/bttns/facebook.svg) no-repeat center;
}
footer .social-list .social-twitter a {
	background: url(/templates/template_1/bttns/twitter.svg) no-repeat center;
}
footer .social-list .social-bluesky a {
	background: url(/templates/template_1/bttns/bluesky.png) no-repeat center;
}
footer .social-list .social-linktree a {
	background: url(/templates/template_1/bttns/linktree.png) no-repeat center;
}
footer .social-list .social-custom-share a {
	background: url(/templates/template_1/bttns/share.svg) no-repeat center;
}
footer .row {
	margin-top: 50px;
}
footer .brokerage {
	align-items: center;
	display: flex;
	width: 420px;
}
@media (max-width: 992px) {
	footer .brokerage {
		width: 100%;
		flex-direction: column;
		margin-bottom: 20px;
	}
}
footer .footer-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 75px;
}
@media (max-width: 1200px) {
	footer .footer-icons {
		gap: 20px;
	}
}
@media (max-width: 992px) {
	footer .footer-icons {
		gap: 20px;
		align-items: center;
		justify-content: center;
	}
}
footer .img-box {
	align-items: center;
	background-color: var(--white);
	border-radius: 10px;
	display: flex;
	height: 105px;
	justify-content: center;
	width: 165px;
}
footer .img-box img {
	max-height: 85px;
}
footer .brokerage-info {
	font-size: 1.5rem;
	line-height: 1.75;
	margin-left: 15px;
}
footer .brokerage-info span {
	display: block;
}

.sub-footer {
	background-color: #081832;
}
.sub-footer .container {
	align-items: center;
	color: var(--white);
	display: flex;
	font-size: 1.5rem;
	height: 80px;
	justify-content: space-between;
}
@media (max-width: 1200px) {
	.sub-footer .container {
		height: auto;
		flex-direction: column;
		gap: 8px;
	}
}
@media (max-width: 1200px) {
	.sub-footer p {
		margin-bottom: 0;
	}
}
@media (max-width: 992px) {
	.sub-footer p {
		text-align: center;
	}
}
.sub-footer a:hover {
	color: var(--white);
}
.sub-footer ul {
	display: flex;
	list-style: none;
}
.sub-footer ul li:not(:last-child):after {
	content: '|';
	display: inline-block;
	padding: 0 10px;
}
@media (max-width: 1200px) {
	.sub-footer ul {
		margin-top: 0;
	}
}
@media (max-width: 992px) {
	.sub-footer ul {
		gap: 8px;
		padding-bottom: 20px;
		padding-left: 0;
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}
}

.footercopy,
.brokeridxlink,
.switch-to-mobile-container {
	display: none;
}

.footercopy {
	display: block !important;
}

.promo_form,
#contact_form,
.the_contact_form,
.the_contact_form.pop-up.contact_form,
.contact_form,
.detailform.pop-up,
.detail-submit-offer-popup {
	background-color: var(--section-bg);
	border-radius: 15px;
}

@media (max-width: 992px) {
	#register-popup {
		width: 100%;
		height: 95vh;
		left: 0;
		margin-left: 0;
		overflow-x: scroll;
	}
	.popHead {
		font-size: 2rem;
	}
	.popup_left {
		display: flex;
		flex-direction: column;
	}
	.register_help,
	.register_fields,
	.popupform input[type='email'],
	.popupform input[type='password'],
	.popupform input[type='tel'],
	.popupform input[type='text'],
	.popupform input[type='submit'] {
		width: 100%;
	}
}
.cta-block {
	display: flex;
	flex-wrap: wrap;
	gap: 250px;
	justify-content: center;
	margin-bottom: 100px;
	margin-top: 90px;
}
@media (max-width: 992px) {
	.cta-block {
		gap: 70px;
		margin-top: 70px;
		margin-bottom: 70px;
	}
}
.cta-block .cta {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.cta-block .cta span {
	border-radius: 50%;
	display: flex;
	height: 230px;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
	width: 230px;
}
.cta-block .cta span img {
	max-height: 120px;
}
.cta-block .cta .btn {
	font-weight: 500;
}
.cta-block .cta-blue span {
	background: #e6f3fd;
}
.cta-block .cta-brown span {
	background: #faf3eb;
}
.cta-block .cta-brown .btn {
	background: #cc893b;
}
.cta-block .cta-green span {
	background: #f4f9e5;
}
.cta-block .cta-green .btn {
	background: #91c600;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
input[type='number'] {
	border-radius: 8px;
	box-sizing: border-box;
	padding: 10px;
}
input[type='submit']:focus,
input[type='button']:focus {
	border: 0 !important;
}
input[type='submit']:hover {
	background: var(--content-button-hover-bg);
	color: var(--content-button-hover-text);
}

select,
textarea {
	border-radius: 8px;
	box-sizing: border-box;
	padding: 10px;
}

.btn,
.login_button,
.promo_form.contact_form input[type='submit'].submit,
#contact_form.contact_form input[type='submit'].submit,
.the_contact_form.contact_form input[type='submit'].submit,
.contact_form input[type='submit'].submit,
.the_contact_form.pop-up input[type='submit'].submit,
.detailform.pop-up input[type='submit'].submit,
.the_contact_form input[type='submit'].submit,
.agent_link a,
.top_buttons a,
.testimonials-page-request .testimonial-form-link,
.delete-button,
.btn_align_right .custom-btn {
	background: var(--content-button-bg);
	border: none;
	border-radius: 5px;
	color: var(--content-button-text);
	display: inline-block;
	font-size: 1.7rem;
	padding: 10px 20px;
	position: relative;
}
.btn:hover,
.login_button:hover,
.promo_form.contact_form input[type='submit'].submit:hover,
#contact_form.contact_form input[type='submit'].submit:hover,
.the_contact_form.contact_form input[type='submit'].submit:hover,
.contact_form input[type='submit'].submit:hover,
.the_contact_form.pop-up input[type='submit'].submit:hover,
.detailform.pop-up input[type='submit'].submit:hover,
.the_contact_form input[type='submit'].submit:hover,
.agent_link a:hover,
.top_buttons a:hover,
.testimonials-page-request .testimonial-form-link:hover,
.delete-button:hover,
.btn_align_right .custom-btn:hover {
	background: var(--content-button-hover-bg);
	color: var(--content-button-hover-text);
}

.delete-button:hover {
	color: var(--content-button-text);
}

.btn,
.agent_link a,
.top_buttons a,
.testimonials-page-request .testimonial-form-link {
	padding: 20px;
}

.promo_form.contact_form input[type='submit'].submit,
#contact_form.contact_form input[type='submit'].submit,
.the_contact_form.contact_form input[type='submit'].submit,
.contact_form input[type='submit'].submit,
.the_contact_form.pop-up input[type='submit'].submit,
.detailform.pop-up input[type='submit'].submit,
.the_contact_form input[type='submit'].submit {
	font-weight: 400;
	height: auto;
	text-transform: none;
}

.testimonial_form input[type='text'],
.testimonial_form input[type='email'],
.testimonial_form input[type='phone'],
.testimonial_form input[type='tel'],
.testimonial_form input[type='password'],
.testimonial_form select {
	height: auto;
	padding: 10px;
}

.btn {
	padding-right: 100px;
}
.btn:after {
	background: rgba(255, 255, 255, 0.3) url(../images/double-arrow-white.svg)
		no-repeat center;
	background-size: 10px;
	border-radius: 5px;
	content: '';
	height: 43px;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 43px;
}

.mtg_row .btn {
	padding-right: 20px;
}

form li {
	margin-bottom: 15px;
}

.error {
	font-size: 1.2rem;
	font-style: italic;
	margin-top: 2px;
	padding-left: 5px;
}

.testimonials-block {
	background-color: var(--section-bg);
	padding-bottom: 170px;
	padding-top: 170px;
}
@media (max-width: 1200px) {
	.testimonials-block {
		padding-bottom: 140px;
		padding-top: 140px;
	}
}
@media (max-width: 992px) {
	.testimonials-block {
		padding-bottom: 110px;
		padding-top: 110px;
	}
}
@media (max-width: 768px) {
	.testimonials-block {
		padding-bottom: 70px;
		padding-top: 70px;
	}
}
@media (max-width: 576px) {
	.testimonials-block {
		padding-bottom: 40px;
		padding-top: 40px;
	}
}
.testimonials-block .container {
	display: flex;
	justify-content: space-between;
}
@media (max-width: 992px) {
	.testimonials-block .container {
		flex-direction: column;
	}
}
.testimonials-block .testimonial-list-container .owl-stage-outer {
	overflow: hidden;
}
.testimonials-block .testimonial-list-container .owl-item {
	float: left;
}

.block-left {
	width: 425px;
}
@media (max-width: 992px) {
	.block-left {
		width: 100%;
	}
}
.block-left .sub-title {
	color: var(--content-link-color);
	font-size: 2.2rem;
	font-weight: bold;
}
.block-left h1 {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-size: 5.5rem;
	font-weight: bold;
	padding-bottom: 20px;
	position: relative;
}
@media (max-width: 1200px) {
	.block-left h1 {
		font-size: 5rem;
	}
}
@media (max-width: 992px) {
	.block-left h1 {
		font-size: 4rem;
	}
}
@media (max-width: 576px) {
	.block-left h1 {
		font-size: 3rem;
	}
}
.block-left h1::after {
	background-color: var(--content-link-color);
	bottom: 0;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	width: 170px;
}

.block-right .testimonial-list-container {
	background-color: var(--white);
	box-sizing: border-box;
	padding: 40px;
	text-align: left;
	width: 635px;
}
@media (max-width: 992px) {
	.block-right .testimonial-list-container {
		width: 100%;
		padding: 10px;
	}
}
.block-right .testimonial {
	background: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
}
.block-right .testimonial .testimonial_title {
	color: #091d3e;
	float: none;
	font-size: 2.3rem;
	font-weight: bold;
	margin-bottom: 5px;
	text-align: left;
}
.block-right .testimonial .testimonial_date {
	color: var(--content-link-color);
	text-align: left;
}
.block-right .testimonial_body {
	margin-top: 20px;
}
.block-right .owl-dots {
	display: none;
}

.carousel-nav {
	display: flex;
	gap: 20px;
	margin-top: 75px;
}
@media (max-width: 992px) {
	.carousel-nav {
		margin-top: 45px;
	}
}
.carousel-nav button {
	background-color: var(--content-button-bg);
	border: 0;
	color: var(--content-button-text);
	font-size: 4rem;
	height: 57px;
	overflow: hidden;
	transform: rotate(180deg);
	width: 57px;
}
@media (max-width: 992px) {
	.carousel-nav button {
		font-size: 3rem;
		height: 45px;
		width: 45px;
	}
}
.carousel-nav button span {
	background: url(../images/double-arrow-white.svg) no-repeat center;
	background-size: 10px;
	display: block;
	text-indent: -100px;
}
.carousel-nav button.owl-prev span {
	transform: rotate(180deg);
}
.carousel-nav button.disabled {
	background-color: var(--white);
	cursor: default;
}
.carousel-nav button.disabled span {
	background-image: url(../images/double-arrow-dark.svg);
}

.fplist {
	background-color: var(--section-bg);
	padding-bottom: 120px;
	padding-top: 85px;
	text-align: center;
}

.property-listings {
	background-color: var(--section-bg);
	padding-bottom: 120px;
	padding-top: 85px;
}
@media (max-width: 1200px) {
	.property-listings {
		padding-bottom: 70px;
		padding-top: 70px;
	}
}
@media (max-width: 992px) {
	.property-listings {
		padding-bottom: 50px;
		padding-top: 50px;
	}
}
@media (max-width: 768px) {
	.property-listings {
		padding-bottom: 30px;
		padding-top: 30px;
	}
}
.property-listings h2 {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-size: 5.5rem;
	margin-bottom: 100px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}
@media (max-width: 1200px) {
	.property-listings h2 {
		font-size: 5rem;
		margin-bottom: 70px;
		margin-top: 0;
	}
}
@media (max-width: 992px) {
	.property-listings h2 {
		font-size: 4rem;
		margin-bottom: 50px;
	}
}
.property-listings h2::after {
	background-color: var(--content-link-color);
	bottom: 0;
	content: '';
	height: 5px;
	left: calc(50% - 85px);
	position: absolute;
	width: 170px;
}
.property-listings .card-view {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: space-between;
	margin-bottom: 60px;
}

.card-view > a {
	background-color: var(--content-inverted);
	border: 1px solid #dbe1e6;
	border-radius: 0 0 15px 15px;
	flex: 0 0 calc(33% - 15px);
	text-align: center;
}
@media (max-width: 992px) {
	.card-view > a {
		flex: 0 0 calc(50% - 15px);
	}
}
@media (max-width: 768px) {
	.card-view > a {
		flex: 0 0 100%;
	}
}
.card-view .property-price {
	border-top: 1px solid #767d86;
	color: #767d86;
	display: inline-block;
	float: none;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.75;
	margin-bottom: 10px;
	padding: 0 10px;
}

.property-details {
	margin-bottom: 30px;
}

.property img {
	border-bottom: 2px solid #fac921;
	height: 290px;
	margin-bottom: 10px;
	object-fit: cover;
	width: 100%;
}
.property h3 {
	font-size: 2.2rem;
	margin-bottom: 5px;
	margin-top: 0;
	text-transform: uppercase;
}
.property h3 span {
	color: var(--grey-light);
	display: block;
	margin-bottom: 10px;
	text-transform: none;
}

.view-all {
	display: block;
	text-align: center;
}
.view-all .btn {
	background: transparent;
	border: 2px solid var(--content-button-bg);
	border-radius: 0;
	color: var(--content-button-bg);
	font-size: 2.1rem;
	font-weight: 500;
	padding: 20px 70px 20px 40px;
}
.view-all .btn::after {
	background: transparent url(../images/double-arrow-blue.svg) no-repeat
		center;
	background-size: 10px;
	height: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
	font-size: var(--h2-font-size);
}

.notice .subhead,
.menu-title,
.subdivision-list-title,
.condominium-list-title,
.fplist-title,
.search-title,
.featured_listings_header,
.detail-image-title,
.detail-streetview-title,
.detail-features-title,
.detail-comment-title,
.detail-mapview-title,
.detail-column-title,
.detail-contact-title,
.detail-social-title,
.social-title,
.comment_title,
.subhead_agentlist,
.sd_addressbar,
.column-title,
.blog-title,
.testimonial_subtitle,
.agent_listings_header,
.mtg_title,
.refine-title,
.buyer_agent_comm_title {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-size: var(--h2-font-size);
}

.page-title,
.accessibility-statement-title {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-size: var(--h2-font-size);
	margin-bottom: 25px;
	padding-bottom: 10px;
	position: relative;
}
.page-title::after,
.accessibility-statement-title::after {
	background-color: var(--content-highlight);
	bottom: 0;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	width: 150px;
}

.subhead_title h2,
.subhead_title h1,
.blog-title,
.comment_title,
.mtg_title,
.subhead_agentlist,
.board_title,
.liked-list-title,
.accessibility-statement-subtitle {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-size: var(--h3-font-size);
	margin-bottom: 10px;
	padding-bottom: 5px;
	position: relative;
}
.subhead_title h2::after,
.subhead_title h1::after,
.blog-title::after,
.comment_title::after,
.mtg_title::after,
.subhead_agentlist::after,
.board_title::after,
.liked-list-title::after,
.accessibility-statement-subtitle::after {
	background-color: var(--content-highlight);
	bottom: 0;
	content: '';
	height: 3px;
	left: 0;
	position: absolute;
	width: 150px;
}

.liked-list-title {
	font-weight: bold;
}
.liked-list-title::after {
	left: calc(50% - 75px);
}

.subhead_agentlist {
	display: inline-block;
	margin-bottom: 20px;
}

.board_title {
	display: inline-block;
	font-weight: bold;
	margin-bottom: 20px;
}

.agent-cta {
	background-color: var(--content-highlight);
	color: var(--white);
}
.agent-cta .container {
	display: flex;
	min-height: 240px;
	gap: 110px;
	justify-content: flex-end;
	position: relative;
}
@media (max-width: 992px) {
	.agent-cta .container {
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
		padding: 20px;
	}
}
.agent-cta .agent-img {
	align-self: center;
	max-height: 300px;
	max-width: 300px;
}

.agent-cta-txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 530px;
}
.agent-cta-txt a {
	color: var(--white);
}
.agent-cta-txt h2 {
	font-size: 3.3rem;
	margin-bottom: 20px;
	margin-top: 0;
}
.agent-cta-txt p {
	font-size: 2rem;
	letter-spacing: 0.075em;
	margin: 0;
}

.agent-cta-contact {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.agent-cta-contact .btn {
	background: var(--content-button-text);
	color: var(--content-button-bg);
}
.agent-cta-contact .btn::after {
	background: var(--content-button-bg) url(../images/double-arrow-white.svg)
		no-repeat center;
	background-size: 10px;
}

.agent-cta-phone {
	color: var(--content-inverted);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 55px;
	position: relative;
}
.agent-cta-phone::before {
	background: url(../images/icon-phone.svg) no-repeat top left;
	content: '';
	height: 61px;
	left: 0;
	position: absolute;
	top: 2px;
	width: 56px;
}
.agent-cta-phone span {
	color: var(--content-inverted);
	font-weight: 700;
}
.agent-cta-phone .agent-phone {
	color: var(--content-inverted);
	display: block;
	font-size: 3.3rem;
	font-weight: 500;
	margin-bottom: 25px;
}
/*# sourceMappingURL=home.css.map */
