/**
 * ===========================================================================
 * THEME STYLES (PRIMARY DESIGN AUTHORITY)
 * ===========================================================================
 *
 * - style.css: desktop-first components and layout.
 * - media.css: adapts the same intent for smaller screens; no separate “framework”.
 * - Layout is owned here—not a third-party grid bundle.
 *
 * Discipline: tokens in variables.css; use `rem` for
 * spacing/typography where appropriate.
 * ===========================================================================
 */

/* -----------------------
   GLOBAL BASE
   ----------------------- */
@import 'font.css';
@import 'variables.css';
@import 'utils.css';

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-base);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: var(--line-height-base);
	background-color: var(--color-white);
	color: var(--color-primary);
}

/* 
::-webkit-scrollbar-track {
	background-color: var(--theme_color_primary);
	border-left: 1px solid var(--theme_color_primary);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--theme_color_primary);
}

::-webkit-scrollbar-thumb {
	background: var(--theme_color_accent);
} */

/* ::selection {
	color: var(--color-secondary);
	background-color: var(--color-white);
	filter: invert(1);
} */

p {
	line-height: var(--line-height-base);
	margin-bottom: 0px;
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-base);
	color: var(--color-primary);
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

input:focus {
	outline: none;
}

ul li {
	list-style: none;
}

button {
	border: none;
}

.color-primary {
	color: var(--color-primary);
}

.color-secondary {
	color: var(--color-secondary);
}

.font-primary {
	font-family: var(--font-primary);
}

.font-secondary {
	font-family: var(--font-secondary);
}

.equal-cols>* {
	flex: 1 1 0%;
}

/* --- Layout shells (no external grid framework) --- */
.section {
	width: 100%;
}

.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	position: relative;
}

.container-full {
	padding-left: 0;
	padding-right: 0;
}

.container-padding-x {
	padding-left: var(--container-padding-x);
	padding-right: var(--container-padding-x);
}

.container-padding-y {
	padding-top: var(--container-padding-y);
	padding-bottom: var(--container-padding-y);
}

.container-padding-y-md {
	padding-top: var(--container-padding-y-md);
	padding-bottom: var(--container-padding-y-md);
}

.container-padding-y-sm {
	padding-top: var(--container-padding-y-sm);
	padding-bottom: var(--container-padding-y-sm);
}

.container-padding-x-header {
	padding-left: var(--header-padding-x);
	padding-right: var(--header-padding-x);
}

.container-padding-y-header {
	padding-top: var(--header-padding-y);
	padding-bottom: var(--header-padding-y);
}

.container-padding-bottom {
	padding-bottom: var(--container-padding-bottom);
}

.container-padding-top {
	padding-top: var(--container-padding-y);
}

.bg-primary {
	background-color: var(--color-primary);
}

.bg-secondary {
	background-color: var(--color-secondary);
}

.bg-secondary-light {
	background-color: var(--color-secondary-light);
}

.bg-secondary-ultra-light {
	background-color: var(--color-secondary-ultra-light);
}

.bg-accent {
	background-color: var(--color-accent);
}

.bg-ink-white {
	background-color: var(--color-white);
}

.bg-light-muted {
	background-color: var(--color-light-muted);
}

.color-muted {
	color: var(--color-muted);
}

.color-white {
	color: var(--color-white);
}

.color-black {
	color: var(--color-black);
}

.color-gradient-primary {
	background: var(--color-gradient-primary);

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	background-clip: text;
	color: transparent;
}

.line-height-xs {
	line-height: var(--line-height-xs);
}

.line-height-sm {
	line-height: var(--line-height-sm);
}

.line-height-base {
	line-height: var(--line-height-base);
}

.line-height-md {
	line-height: var(--line-height-md);
}

.line-height-lg {
	line-height: var(--line-height-lg);
}

.brand-logo-img {
	max-width: 100px;
}

.primary-heading {
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-medium);
}

.desktop-show {
	display: block;
}

.desktop-hide {
	display: none;
}

.desktop-height {
	height: 439px;
}

.btn {
	display: inline-block;
	padding: 14px var(--space-lg);
	border-radius: var(--border-radius-xxs);
	text-decoration: none;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	justify-content: center;
	font-family: var(--font-secondary);
	background: var(--color-gradient-primary);
	color: var(--color-primary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
}

.btn-primary-gray {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	justify-content: center;
	font-family: var(--font-secondary);
	background: #a69e6f3d;
	color: var(--color-primary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
}

.btn-primary-bordered {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	justify-content: center;
	font-family: var(--font-secondary);
	background: var(--color-gradient-primary);
	border: 2px solid var(--color-black);
	color: var(--color-primary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	padding: 0px 80px;
}

.sell-btn-primary {
	height: 56px;
}

.btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-icon img {
	height: 24px;
	width: 24px;
}

.btn-secondary-bordered {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-base) var(--space-md);
	background: var(--color-white);
	border: 1px solid var(--color-primary);
	border-radius: var(--border-radius-xxs);
	color: var(--color-primary);
	font-size: var(--font-size-base);
	line-height: 28px;
	text-decoration: none;
}

.btn-sell-secondary-bordered {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-base) var(--space-md);
	background: var(--color-primary);
	border: 1px solid var(--color-white);
	border-radius: var(--border-radius-xxs);
	font-size: var(--font-size-base);
	line-height: 28px;
	text-decoration: none;
}

/* CTA: solid primary + bordered variant (same sizing, reusable) */
.btn-cta-primary-bordered {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: 14px var(--space-2xl);
	font-size: var(--font-size-base);
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	border-radius: var(--border-radius-xxs);
	text-decoration: none;
	box-sizing: border-box;
	background: transparent;
	color: var(--color-secondary);
	border: 2px solid var(--color-secondary);
	background-color: rgba(26, 26, 26, 0.64);
	;
}

.home-banner-btn {
	min-width: 236px;
}

.btn-cta-primary-bordered .btn-cta-icon {
	color: var(--color-secondary);
}

.header-nav-link {
	font-family: var(--font-secondary);
	font-size: 24px;
	font-weight: var(--font-weight-normal);
	line-height: var(--line-height-fixed-base);

}

.menu-option-wrap {
	margin-right: 12vw;
}

.header-menu-toggle {
	background: transparent;
	border: none;
	cursor: pointer;
	transition: opacity var(--transition-fast);
}

.header-menu-toggle:hover {
	opacity: 0.7;
}

.header-menu-toggle .hamburger-menu-toggle-img {
	display: block;
	width: 20.04px;
	height: 28px;
	filter: brightness(0) invert(1);
}

/* menu overlay start */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--z-index-modal);
	display: none;
	overflow-y: auto;
	border: 16px solid var(--color-white);
}

.menu-overlay.menu-overlay-active {
	display: block;
}

.menu-modal-wrap {
	width: 100%;
	height: 100%;
	background: var(--color-primary);
	opacity: 1;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.menu-modal {
	background: var(--color-primary);
	opacity: 1;
	margin: 0 auto;
	padding: 32px 16px 48px 16px;
	position: relative;
}

.menu-modal-header {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 8vh;
	position: relative;
}

.menu-modal-close-wrap {
	position: absolute;
	right: 5%;
	top: 16%;
	transform: translateY(-50%);
}

.menu-modal-title-wrap {
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-modal-title-wrap .menu-modal-brand-logo-img,
.footer-brand-logo {
	width: 186px;
	max-height: 76px;
}

.menu-modal-close-wrap .menu-modal-close-button-img {
	width: 25px;
	height: 25px;
	object-fit: contain;
	object-position: center;
}

.menu-modal-close {
	background: transparent;
	border: none;
	color: var(--color-white);
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity var(--transition-fast);
}

.menu-modal-close:hover {
	opacity: 0.7;
}

.menu-modal-content {
	max-width: 1440px;
	color: var(--color-white);
	padding: 0px 4em;
}

.menu-modal-columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	justify-content: between;
	margin-bottom: 3rem;
}

.menu-column {
	max-width: 251px;
}

.menu-column-title {
	color: var(--color-white);
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-bold);
	font-size: var(--font-size-base);
	line-height: 139%;
	letter-spacing: 8%;
	text-transform: uppercase;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--color-white);
}

.menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-list li {
	margin-bottom: 5.85px;
}

.menu-link {
	color: #F8F3F3;
	font-family: var(--font-base);
	font-weight: var(--font-weight-medium);
	font-style: normal;
	font-size: var(--font-size-base);
	line-height: var(--line-height-fixed-base);
	letter-spacing: 0%;
	/* transition: color, font-weight var(--theme_transition_fast); */
}

.menu-link:hover {
	color: var(--color-secondary);
	font-weight: var(--font-weight-bold);
}

.menu-modal-social {
	text-align: center;
	margin-top: 3rem;
}

.menu-social-title {
	color: var(--color-white);
	font-size: 22px;
	margin-bottom: 1rem;
	font-family: var(--font-secondary);
	line-height: var(--line-height-fixed-base);
	letter-spacing: 0px;
	word-spacing: 1.44px;
}

.menu-social-title-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu-social-icon-wrap {
	display: flex;
	justify-content: center;
}

.menu-social-icons {
	display: flex;
	justify-content: center;
	gap: 1.6rem;
	line-height: 100%;
}

.menu-social-icon-img {
	width: 24px;
	height: 24px;
}

.menu-social-icon:hover {
	opacity: 0.7;
}

/* menu overlay end */

/* Reusable gradient-text utilities (use anywhere) */
.text-gradient {
	background: var(--text-gradient, var(--color-gradient-primary));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.sub-header-wrap {
	background: #0e0f26;
}

.sub-header-wrap li {
	display: flex;
}

.icon-wrap {
	height: 24px;
	width: 24px;
	display: flex;
	align-items: center;
}

.sub-header-wrap li a .icon-wrap {
	height: 16px;
	width: 16px;
}
.sub-header-wrap li a {
	font-size: var(--font-size-sm);
	line-height: 24px;
	gap: 8px;
}

.home-hero-wrap {
	/* Full-screen hero that stays within viewport */
	height: 100vh;
	height: 100svh;
	overflow: hidden;

	/* Simple layering: image + content share same grid cell */
	display: grid;
	place-items: center;
	position: relative;
}

.home-hero-wrap-new-home {
	height: 80vh;
	overflow: hidden;
	display: grid;
	place-items: center;
	position: relative;
}
.home-hero-content-wrap {
	max-width: 932px;
	margin: 0 auto;
	z-index: 2;
	grid-area: 1 / 1;
}

.home-hero-image-wrap {
	height: 100%;
	width: 100%;
	overflow: hidden;
	grid-area: 1 / 1;
	z-index: 0;
	position: relative;
}

/* Gradient overlay on top of hero image */
.home-hero-image-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0.6) 0%,
			rgba(0, 0, 0, 0.4) 50%,
			rgba(0, 0, 0, 0.7) 100%);
	z-index: 1;
	pointer-events: none;
}

.home-hero-image-wrap img,
.home-hero-image-wrap video {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.home-hero-title {
	/* font-family: var(--font-secondary); */
	font-weight: var(--font-weight-semibold);
	font-size: var(--font-size-4xl);
	line-height: 1;
	text-align: center;
	/* letter-spacing: -1.5px; */

}

.home-hero-subtitle {
	max-width: 600px;
	margin: 0 auto;
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-md);
	line-height: var(--line-height-fixed-md);
	letter-spacing: 0%;
	text-align: center;
	color: #FCFAF8E5;
	vertical-align: middle;
}

.section-title {
	font-family: var(--font-heading);
	font-weight: var(--font-weight-semibold);
	font-size: var(--font-size-2xl);
	line-height: 1.2085;
	letter-spacing: -0.9px;
	position: relative;
	display: inline-block;
}

.home-local-experties-wrap {
	max-width: 768px;
	margin: 0 auto;
}

.card-detail-time-wrap {
	padding: 4px 8px;
	border-radius: 4px;
	font-family: var(--font-secondary);
	background-color: #A69E6F29;
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-sm);
	line-height: 150%;
	letter-spacing: 0%;
}

/* ---------- Properties worth (valuation cards) ---------- */
.properties-worth-card {
	min-height: 350px;
	display: flex;
	flex-direction: column;
	height: 100%;
	max-width: 500px;
	padding: var(--space-xl);
	background: var(--color-primary);
	border-radius: var(--border-radius-md);
}

.properties-worth-card-icon {
	flex-shrink: 0;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: var(--color-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.properties-worth-card-icon img {
	display: block;
	width: 29px;
	height: 29px;
}

.properties-worth-card-title {
	font-family: var(--font-heading);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	color: var(--color-white);
	line-height: var(--line-height-xs);
}

.properties-worth-card-tagline {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	color: #FCFAF899;
	line-height: var(--line-height-md);
}

.properties-worth-card-desc {
	flex: 1 1 auto;
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	line-height: var(--line-height-md);
	color: #FCFAF8B2;
}

.properties-worth-card-input {
	width: 100%;
	padding: 15px 20px;
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	line-height: var(--line-height-md);
	color: #FCFAF880;
	background: #FCFAF81A;
	border: 1px solid #FCFAF833;
	border-radius: var(--border-radius-xs);
	box-sizing: border-box;
}

.properties-worth-card-input:focus {
	border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ---------- Our Property Services ---------- */
.property-services-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.property-services-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 140px;
	max-width: 230px;
	text-align: center;
	border: 1px solid #A69E6F52;
	box-sizing: border-box;
	border-radius: var(--border-radius-xs);
}

.property-services-card-text {
	font-family: var(--font-heading);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: var(--line-height-xs);
}

/* ---------- Reviews ---------- */
.reviews-card {
	padding: var(--space-lg);
	background: var(--color-accent);
	border: 1px solid rgba(24, 25, 63, 0.1);
	border-radius: var(--border-radius-sm);
	box-sizing: border-box;
}

.reviews-avatar {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: #a89f6b4d;
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-semibold);
}

.reviews-google-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-white);
	border: 1px solid rgba(24, 25, 63, 0.12);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-bold);
	line-height: 1;
	color: var(--color-primary);
}

.cta-intro {
	max-width: 740px;
	margin: 0;
	color: #fcfaf8cc;
}

.cta-home-btn {
	min-width: 250px;
}

.home-follow-side-sub-title {
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-semibold);
}

/* ---------- property cards ---------- */
.properties-grid {
	align-items: stretch;
}

.property-card {
	background: var(--color-white);
	box-shadow: 0px 8px 30px -8px #1D30291A;
	border-radius: var(--border-radius-xs);
	overflow: hidden;
	box-sizing: border-box;
	min-width: 0;
}

.property-card-image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	flex-shrink: 0;
}

.property-card-image img {
	width: 100%;
	height: 100%;
	min-height: 300px;
	object-fit: cover;
	display: block;
}

.property-card-body {
	padding: 20px;
}

.property-card-body img {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	display: block;
}

.property-card-location {
	font-family: var(--font-secondary);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	line-height: var(--line-height-sm);
	color: var(--color-muted);
	flex: 1 1 auto;
	min-width: 0;
	text-align: left;
}

.property-card-price {
	font-family: var(--font-secondary);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-semibold);
	line-height: 32px;
	color: var(--color-primary);
	margin: 0;
	flex-shrink: 0;
	text-align: right;
}

.property-card-specs {
	font-size: var(--font-size-xs);
	line-height: var(--line-height-fixed-sm);
}

/* ---------- Follow Our Journey ---------- */
.follow-journey-ig {
	flex-shrink: 0;
	display: block;
	;
}

.follow-journey-photo {
	min-width: 0;
	aspect-ratio: 3 / 2;
}

.follow-journey-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Footer ---------- */
.footer-inner {
	padding-top: var(--footer-padding-top);
	padding-bottom: var(--footer-padding-bottom);
}

.footer a {
	/* color: var(--color-white); */
	text-decoration: none;
}

.footer a:hover {
	opacity: 0.85;
}

.footer-about {
	font-size: var(--font-size-xs);
	color: #fcfaf8b3;
}

.footer-brand-logo {
	display: block;
	max-width: 220px;
	height: auto;
}

.footer-brand-text {
	line-height: var(--line-height-md);
	opacity: 0.92;
}

.footer-social-link {
	display: inline-flex;
	color: var(--color-white);
	line-height: 1;
}

.footer-col-title {
	font-family: var(--font-heading);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	color: var(--color-secondary);
	line-height: var(--line-height-sm);
}

.footer-icon {
	flex-shrink: 0;
	color: var(--color-white);
	margin-top: 2px;
}

.footer-icon-img {
	display: block;
	filter: brightness(0) invert(1);
	opacity: 0.92;
}

.footer-nav-link {
	font-family: var(--font-secondary);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-normal);
	line-height: 20px;
	color: #FCFAF8CC;
}

.footer-partners {
	padding-top: var(--space-3xl);
}

.footer-partner-logo {
	display: block;
	max-height: 94px;
	width: auto;
	object-fit: contain;
}

.footer-bottom {
	margin-top: var(--space-5xl);
}

.footer-bottom-text {
	font-size: var(--font-size-xs);
	color: rgba(252, 250, 248, 0.6);
	line-height: var(--line-height-sm);
}

.footer-site-by {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.footer-done-by-item {
	font-size: 17px;
}

/* blog-list-style-start */
.blog-list-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-semibold);
}

.blog-list-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 1.6;
}

.card-paragraph-blog-list {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
}

.card-detail {
	border: 1px solid var(--color-primary);
	border-top: none;
	border-radius: 0 0 4px 4px;
}

.card-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.card-detail {
	padding: 16px 16px;
}

.article-badge {
	display: inline-block;
	border-radius: 20px;
	padding: 4px 12px;
	color: var(--color-accent);
	background-color: var(--color-primary);
	width: fit-content;
}

.card-heading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-semibold);
	line-height: 32px;
}

.card-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
}

.card-team-member {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
}

/* blog-list-style-end */
/* blog-details-start */
.blog-image-wrap {
	height: 648px;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.blog-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
}

.article-subheading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-normal);
}

.article-line {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
}

.blog-heading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
}

.blog-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	margin-top: 8px;
	line-height: 150%;
	letter-spacing: 0%;
}

/* blog-detail-style-end*/


/* derbyshire style start */
.coverage-area-banner {
	height: 528px;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.coverage-area-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.coverage-area-title-subheading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0px;
}

.coverage-area-title-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	letter-spacing: 0;
}

.coverage-area-card-image {
	overflow: hidden;
	position: relative;
}

.coverage-area-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.coverage-area-card-subheading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: -0.9px;
}

.coverage-area-card-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0%;
}

.coverage-area-benifit-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}

.coverage-area-benifit-title-wrap {
	margin-bottom: 64px;
}

.coverage-area-benifit-subheading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: var(--line-height-xs);
	letter-spacing: 0;
}

.coverage-area-benifit-content {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	letter-spacing: 0;
}

.explore-subheading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}

.coverage-area-gallery .explore-image img {
	cursor: pointer;
}

.relocating-subheading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}


.accordion-card-wrap {
	background-color: var(--color-accent);
	padding: 16px;
	cursor: pointer;
	border-radius: 2px;
	border: 1px solid #ece9df;
}

.accordion-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}

.accordion-question .arrow {
	transform: rotate(180deg);
	transition: transform 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform-origin: 50% 50%;
}

.accordion-question .arrow img {
	display: block;
}

.accordion-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	line-height: 130%;
	letter-spacing: 0;
}

.accordion-card-wrap.active .accordion-answer {
	max-height: 200px;
}

.accordion-card-wrap.active .arrow {
	transform: rotate(0deg);
}

.coverage-area-footer-card-left {
	max-width: 600px;
	width: 465px;
}

.coverage-area-footer-card-right {
	max-width: 600px;
	width: 440px;
}
.let-benefit-body-wrap {
	padding: 0px 0px 22px 0px;
}

.coverage-area-footer-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}

.coverage-area-footer-paragraph-right {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	letter-spacing: 0;
}

.coverage-area-footer-card-btn {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	letter-spacing: 0;
	padding: 13px 16px;
	border: 2px solid var(--color-primary);
	display: block;
	max-width: 440px;
	width: 100%;
	text-align: center;

}

.coverage-area-benifit-content-wrap {
	padding-top: 40px;
	background-color: var(--color-white);
	min-height: 300px;
}

.coverage-area-key-benifit>div:nth-child(1) .coverage-area-content-icon {
	margin-left: 0;
}

.coverage-area-key-benifit>div:nth-child(2) .coverage-area-content-icon {
	margin-left: 120px;
}

.coverage-area-key-benifit>div:nth-child(3) .coverage-area-content-icon {
	margin-left: 240px;
}

.coverage-area-key-benifit>div:nth-child(4) .coverage-area-content-icon {
	margin-left: 360px;
}

.coverage-area-key-benifit>div:nth-child(5) .coverage-area-content-icon {
	margin-left: 480px;
}

.coverage-area-key-benifit>div:nth-child(6) .coverage-area-content-icon {
	margin-left: 600px;
}

.coverage-area-key-benifit>div:nth-child(7) .coverage-area-content-icon {
	margin-left: 720px;
}

.coverage-area-key-benifit>div:nth-child(8) .coverage-area-content-icon {
	margin-left: 840px;
}

.coverage-area-key-benifit>div:nth-child(9) .coverage-area-content-icon {
	margin-left: 960px;
}


/* Coverage area (Derbyshire): sticky title + sticky cards (normal page scroll) */
@media (min-width: 1024px) {
	.coverage-area-section .coverage-area-benifit-title-wrap {
		position: sticky;
		top: 0px;
		z-index: 20;
		padding: 32px 0px;
		background-color: var(--color-white);
	}

	.coverage-area-section .coverage-area-key-benifit>.coverage-area-benifit {
		position: sticky;
		top: 200px;
	}

	.coverage-area-section .coverage-area-key-benifit>.coverage-area-benifit:nth-child(1) {
		z-index: 1;
	}

	.coverage-area-section .coverage-area-key-benifit>.coverage-area-benifit:nth-child(2) {
		z-index: 2;
	}

	.coverage-area-section .coverage-area-key-benifit>.coverage-area-benifit:nth-child(3) {
		z-index: 3;
	}

	.coverage-area-section .coverage-area-key-benifit>.coverage-area-benifit:nth-child(4) {
		z-index: 4;
	}

	.coverage-area-section .coverage-area-key-benifit>.coverage-area-benifit:nth-child(5) {
		z-index: 5;
	}

	.coverage-area-section .coverage-area-key-benifit>.coverage-area-benifit:nth-child(6) {
		z-index: 6;
	}

	.coverage-area-section .coverage-area-key-benifit>.coverage-area-benifit:nth-child(7) {
		z-index: 7;
	}

	.coverage-area-section .coverage-area-key-benifit>.coverage-area-benifit:nth-child(8) {
		z-index: 8;
	}
}

/* style end */

/* blog_let_us style start */
.blog-top-wrap {
	padding-top: 49px;
	padding-bottom: 49px;
}

.blog-top-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	letter-spacing: 0;
}

.image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.card-subheading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0;
}

.card-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}

.service-card-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}

.card-detail-content {
	border-radius: 4px;
	border: 1px solid #a69e6f52;
	padding: 15px;
}

.card-detail-heading {
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
}

.card-detail-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}

.property-card-count {
	font-family: var(--font-secondary);
	font-size: 72px;
	line-height: 120%;
	letter-spacing: -1.5px;
}

.property-detail-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}

.blog-property-card {
	margin-bottom: 237px;
}

.property-card-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: var(--line-height-xs);
	letter-spacing: 0;
}

.property-card-content {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	letter-spacing: 0;
}

.section-proud-member {
	background-color: #0F2243;
}

.guide-content h2 {
	font-family: var(--font-heading);
	font-weight: var(--font-weight-semibold);
	font-size: var(--font-size-2xl);
	line-height: 120%;
	letter-spacing: -0.9px;
	margin: 0;
}

.guide-content p {
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-base);
	line-height: 150%;
	letter-spacing: 0%;
	margin: 0;
}

/* style blog_let_us end */

/* style auction start */
.card-paragraph-auction {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0%;
}

.auction-card-wrap {
	padding-left: 124px;
	padding-right: 124px;
}

.auction-card {
	padding: 32px;
	border-radius: 16px;
	box-sizing: border-box;
	width: 100%;

}

.auction-card-circle {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.auction-count {
	font-family: var(--font-base);
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	letter-spacing: -0.9px;
	margin-top: -15px;
}

.auction-card-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0px;
}

.auction-card-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0px;
	color: #fcfaf8b3;
}

/* style auction end */

/* style about start */
.about-banner {
	max-width: 100%;
	width: 100%;
	overflow: hidden;
}

.about-banner img {
	max-width: 100%;
	width: 100%;
	height: 475px;
	object-fit: cover;
	display: block;
}

.about-card {
	max-width: 768px;
	height: auto;
}

.about-section-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}

.about-card-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0;
}

.about-card-subheading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-semibold);
	line-height: 32px;
	letter-spacing: 0;
}

/* .expert-team-big-image{
	max-width: 180px;
	height: 100%;
	border-radius: 4.26px;
	overflow: hidden;
} */

.expert-team-image-wrap {
	height: 150px;
	width: 86px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
}

.expert-team-image-wrap.active {
	height: 180px;
	width: 180px;
	border: 2.5px solid var(--color-secondary);
}

.expert-team-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(100%);
}

.about-card-image {
	max-width: 338px;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.about-card-image img {
	width: 100%;
	height: 338px;
	object-fit: cover;
	display: block;
	filter: grayscale(100%);
}

.about-card-feedback {
	max-width: 601px;
	width: 100%;
	height: 574px;
	border-radius: 16px;
	overflow: hidden;
}
.about-card-feedback img{
	width: 100%;
	height: 100%;
}

.about-card-feedback-content {
	max-width: 650px;
	width: 100%;
	/* height: 574px; */
	border-radius: 16px;
	overflow: hidden;
	padding: 32px 96px;
}

.client-feedback-content {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	letter-spacing: 0;
	padding: 32px 0px;
}

.review-section .btn-sell-secondary-bordered {
	min-width: 168px;
}

.review-carousel {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
}

.review-carousel .owl-stage-outer {
	overflow: hidden;
}

/* Dots ka container center mein rakho */
.review-carousel .owl-dots {
	display: flex !important;
	justify-content: center;
	align-items: center;
	position: relative;
	/* Arrows ke liye base */
	margin-top: 50px;
	/* Dots aur carousel ke beech gap */
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

/* Nav Wrapper (Buttons ka group) */
.review-carousel .owl-nav {
	position: absolute;
	top: 35%;
	left: -5vw;
	width: 133%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
}

/* Common style dono buttons ke liye */
.review-carousel .owl-nav button {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--color-white) !important;
	background: transparent;
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 10;
	pointer-events: auto;
	cursor: pointer;
}

/* Right Arrow ko dots ke right mein chipkao */
.review-carousel .owl-nav .owl-prev {
	left: 0%;
}

/* Right Arrow ko dots ke right mein chipkao */
.review-carousel .owl-nav .owl-next {
	right: 0%;
}

/* SVG icons black fix */
.review-carousel .owl-nav button img {
	width: 8px !important;
}

/* Active Dot logic (Capsule shape) */
.review-carousel .owl-dots .owl-dot span {
	width: 16px;
	height: 16px;
	margin: 0 5px;
	background: var(--color-white);
	display: block;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.review-carousel .owl-dots .owl-dot.active span {
	/* width: 25px; */
	border-radius: 10px;
	background: var(--color-secondary);
}

.review-carousel .owl-nav .owl-next img {
	transform: scaleX(-1);
}

/* Client say carousel dots (mobile; see media.css for layout) */
.client-say-carousel .owl-dots .owl-dot span,
.follow-journey-carousel .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	margin: 0 6px;
	background: var(--color-secondary-light);
	border-radius: 50%;
	display: block;
	transition: all 0.3s ease;
}

.client-say-carousel .owl-dots .owl-dot.active span,
.follow-journey-carousel .owl-dots .owl-dot.active span {
	background: var(--color-gradient-primary);
}

/* Nav Wrapper (Buttons ka group) */
.client-say-carousel .owl-nav,
.follow-journey-carousel .owl-nav {
	position: absolute;
	top: 50%;
	left: -4vw;
	width: calc(100% + 8vw);
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	z-index: 2;
}

/* Common style dono buttons ke liye */
.client-say-carousel .owl-nav button,
.follow-journey-carousel .owl-nav button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(24, 24, 63, 1) !important;
	background: transparent;
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 10;
	pointer-events: auto;
	cursor: pointer;
}

/* Right Arrow ko dots ke right mein chipkao */
.client-say-carousel .owl-nav .owl-prev,
.follow-journey-carousel .owl-nav .owl-prev {
	left: 0%;
}

/* Right Arrow ko dots ke right mein chipkao */
.client-say-carousel .owl-nav .owl-next,
.follow-journey-carousel .owl-nav .owl-next {
	right: 0%;
}

.client-say-carousel .owl-nav .owl-next img,
.follow-journey-carousel .owl-nav .owl-next img {
	transform: scaleX(-1);
}

/* SVG icons black fix */
.client-say-carousel .owl-nav button img,
.follow-journey-carousel .owl-nav button img {
	width: 8px !important;
	filter: brightness(0);
}

/* style about end */

/* style coverage-area-list start */
.coverage-area-card {
	border-radius: 4px;
	border: 1px solid var(--color-muted);
	padding: 16px;
}

.coverage-area-card img {
	max-width: 592px;
	width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
}

/*style coverage-area-list end  */

/* style property_card start */
.property-list-banner-wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
}

.property-list-banner-image-left {
	width: 70%;
	flex: 0 0 70%;
}

.property-list-banner-image-right {
	width: 30%;
	flex: 0 0 30%;
}

.property-list-banner-thumb-grid {
	height: 100%;
	grid-template-rows: repeat(2, 1fr);
}

.property-list-image-wrap {
	height: 100%;
	overflow: hidden;
}

.property-list-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.property-banner-gallery .property-banner-slide {
	position: relative;
}

.property-banner-gallery .property-banner-slide img {
	cursor: pointer;
}

.property-banner-slide-view-all .property-banner-view-all {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: rgba(0, 0, 0, 0.45);
	color: var(--color-white);
	cursor: pointer;
	font-size: var(--font-size-base);
}

.gallery-overlay {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	max-height: 100dvh;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	display: flex;
	align-items: stretch;
	justify-content: center;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.gallery-overlay.gallery-overlay-active {
	opacity: 1;
	visibility: visible;
}

.gallery-wrap {
	width: 100%;
	height: 100%;
	max-height: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: var(--container-padding-x);
	padding-right: var(--container-padding-x);
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	justify-content: center;
	background: var(--color-white);
	overflow: hidden;
}

.gallery-modal {
	width: 100%;
	height: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 0;
}

.gallery-header {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 16px 0;
}

.gallery-close {
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
}

.gallery-close img {
	width: 22px;
	height: 22px;
	display: block;
	filter: brightness(0);
	opacity: 0.4;
}

.gallery-main-wrap {
	position: relative;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

.gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	border: 1px solid var(--color-gray-100);
	background: var(--color-white);
	cursor: pointer;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.gallery-arrow img {
	width: 8px;
	display: block;
	filter: brightness(0);
}

.gallery-prev img {
	transform: rotate(0deg);
}

.gallery-next img {
	transform: rotate(180deg);
}

.gallery-prev {
	left: 0;
}

.gallery-next {
	right: 0;
}

.gallery-main-center {
	position: absolute;
	left: 56px;
	right: 56px;
	top: 0;
	bottom: 0;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-main-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

.gallery-thumbs {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 16px 0;
	overflow-x: auto;
	overflow-y: hidden;
	height: 88px;
	box-sizing: border-box;
}

.gallery-thumb {
	flex-shrink: 0;
	height: 56px;
	width: auto;
	padding: 0;
	border: 2px solid transparent;
	background: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-thumb.gallery-thumb-active {
	border-color: var(--color-secondary);
}

.gallery-thumb img {
	height: 100%;
	width: auto;
	object-fit: contain;
	display: block;
}

.property-detail-carousel-wrap {
	position: relative;
}

.property-detail-slide img {
	display: block;
	width: 100%;
	max-height: 439px;
	object-fit: cover;
}

.property-detail-carousel .owl-nav button {
	pointer-events: auto;
	cursor: pointer;
}

.property-detail-carousel .owl-nav .owl-next img {
	transform: scaleX(-1);
}

.family-home-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-semibold);
	line-height: 120%;
	letter-spacing: 0px;
}

.family-home-badge {
	padding: 12px 24px;
	border-radius: 50px;
	background: var(--color-primary);
	border: none;
	font-weight: var(--font-weight-semibold);
	width: fit-content;
	height: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.property-heading-badge-wrap {
	align-items: center;
	gap: 24px;
}

.property-heading-badge-wrap .property-detail-title-heading {
	flex: 1;
	min-width: 0;
}

.family-home-badge-heading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-semibold);
	line-height: 32px;
	letter-spacing: 0px;
}

.family-home-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	letter-spacing: 0px;
}

.family-home-subheading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: -0.9px;
}

.family-home-address {
	font-family: var(--font-secondary);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-light);
	line-height: 120%;
	letter-spacing: 0px;
}

.bedroom-type-badge {
	padding: 12px 16px;
	border-radius: 50px;
	background: var(--color-white);
	border: 1px solid var(--color-secondary);
	font-weight: var(--font-weight-normal);
	font-family: var(--font-secondary);
	line-height: 28px;
	letter-spacing: 0%;
	width: fit-content;
	height: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.about-property-list-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0px;
}

.about-property-list-subheading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-semibold);
	line-height: 32px;
	letter-spacing: 0px;
}

.about-property-list-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0px;
}

.property-list-features-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0px;
}

.property-list-features-heading {
	min-width: 358px;
}

.property-list-features-type-badge {
	padding: 4px 16px;
	border-radius: 50px;
	background: var(--color-white);
	border: 2px solid var(--color-secondary);
	font-weight: var(--font-weight-normal);
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	line-height: 150%;
	letter-spacing: 0%;
	width: fit-content;
	height: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.property-list-media-section-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0px;
}

.property-list-media-section-image img {
	width: 100%;
	height: 229px;
	object-fit: cover;
	display: block;
}

.property-gallery-trigger {
	cursor: pointer;
}

.property-list-media-type {
	font-family: var(--font-secondary);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-semibold);
	line-height: 32px;
	letter-spacing: 0px;
}

.property-list-location-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-semibold);
	line-height: 120%;
	letter-spacing: -0.9px;
}

.property-list-location-section-image {
	max-width: 1280px;
	width: 100%;
	height: 627px;
	border-radius: 8px;
	overflow: hidden;
}

.property-list-location-section-image iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.property-list-location-section-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pagination-item {
	font-family: var(--font-secondary);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	width: 36px;
	border-radius: 50%;
}

.client-say-carousel .owl-stage,
.follow-journey-carousel .owl-stage {
	display: flex;
	flex-direction: row;
}

.client-say-carousel .owl-item,
.follow-journey-carousel .owl-item {
	display: flex;
	flex: 1 0 auto;
}

.review-name {
	line-height: 26px;
}

.review-time {
	font-size: 12px;
	line-height: 16px;
}

.pagination-item.active,
.pagination-item:hover {
	cursor: pointer;
	background-color: var(--color-secondary);
}

.property-list-filters {
	width: 100%;
	max-width: 100%;
}

.property-list-filters .form-field {
	flex: 1 1 0;
	min-width: 0;
}

.property-list-filters .select2-container {
	width: 100% !important;
	max-width: 100%;
}

.property-list-filters .select2-selection__rendered {
	max-width: 100%;
}

/* style property-list end */

/*  style sell-with us start */
.card-paragraph-sell {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	letter-spacing: 0%;
}

.selling-package-card {
	border-radius: 16px 16px 0 0;
	padding: 16px 24px;
	min-width: 0;
	height: 141px;
	border-bottom: 1px solid var(--color-secondary);
	cursor: pointer;
}

.marketing-solution-card-wrap {
	max-width: 705px;
}

.selling-package-card-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0px;
	max-width: 674px;
	width: 100%;
	min-height: 76px;
}

.selling-package-card-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0px;
	max-width: 350px;
	width: 100%;
	min-height: 56px;
}
.selling-package-card.active {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}
.selling-package-card.active .selling-package-card-heading {
	color: var(--color-white);
}
.selling-package-card.active .selling-package-card-paragraph {
	color: var(--color-secondary);
}

.marketing-solution-card-heading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-semibold);
	line-height: 32px;
	letter-spacing: 0px;
}

.marketing-solution-card-paragraph {
	font-family: var(--font-secondary);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 150%;
	letter-spacing: 0px;
}

.additonal-pakage-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0px;
}

.additonal-package-card {
	border-radius: 8px;
	border: 1px solid var(--color-secondary);
	padding: 15px;
	max-width: 402px;
	width: 100%;
	box-sizing: border-box;
}

.additonal-package-photography {
	font-family: var(--font-secondary);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 28px;
	letter-spacing: 0px;
}

.additonal-package-price {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	line-height: 21px;
	letter-spacing: 0px;
}

.additonal-package-paragraph {
	font-family: var(--font-secondary);
	font-size: 12px;
	font-weight: var(--font-weight-medium);
	line-height: 16px;
	letter-spacing: 0px;
}

/* style sell with us end */

/* style valuation start */
.valuation-banner img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.valuation-subtitle {
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0%;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.215rem;
}

.form-label {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	color: var(--color-primary);
	margin-bottom: 0px;
	line-height: var(--line-height-md);
	text-align: left;
	letter-spacing: 0.003em;
}

.form-input {
	width: 100%;
	/* height: 37px; */
	font-family: var(--font-secondary);
	padding: 15px var(--space-md);
	background: var(--color-white);
	border: 1px solid var(--color-secondary);
	color: var(--color-primary);
	font-size: var(--font-size-base);
	box-sizing: border-box;
}

.form-input::placeholder {
	font-size: var(--font-size-base);
	color: var(--color-muted);
}

.form-input:focus {
	outline: none;
	border: 1px solid var(--color-secondary);
}

.form-textarea {
	min-height: 160px;
	resize: vertical;
}

/* style valuation end */
/* cookies policy start */
.policy-title h2 {
	font-family: var(--font-heading);
	font-weight: var(--font-weight-semibold);
	font-size: var(--font-size-2xl);
	line-height: 120%;
	letter-spacing: -0.9px;
}

.policy-intro h2 {
	font-family: var(--font-heading);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-xl);
	line-height: 120%;
	letter-spacing: 0px;
	color: var(--color-black);
}

.policy-intro p {
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-md);
	line-height: 28px;
	letter-spacing: 0px;
}

/* cookies policy end */
/* style contact start */
.contact-subheading {
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-xl);
	line-height: 120%;
	letter-spacing: 0%;
}

/* style contact end */

/* new hone style start */

.new-home-hero-content-wrap {
	max-width: 1280px;
	margin: 0 auto;
	z-index: 2;
	grid-area: 1 / 1;
}

.new-home-image-wrap {
	max-width: 1280px;
	width: 100%;
}

.new-home-image-content {
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-md);
	line-height: 28px;
	letter-spacing: 0%;
}

.new-home-card-wrap {
	padding-left: 48px;
}

.newhome-footer-paragraph {
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-md);
	line-height: 28px;
	letter-spacing: 0%;
}

.new-home-search{
	background-color: #f7f7f7;
	padding: 16px 32px;
	border-radius: 8px;
	width: 547px;
	border: none;
}
.new-home-search::placeholder{
	color:var(--color-muted);
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-medium);
	font-size: var(--font-size-sm);
	line-height: 130%;
	letter-spacing: 0%;
}

/* new home style end */

/* page investment style start */
.investment-card {
	padding: 16px;
	background-color: var(--color-white);
	width: 410px;
	height: 200px;
}

.investment-denise-subheading {
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-lg);
	line-height: 32px;
	letter-spacing: 0%;
}

.investment-contact-wrap {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
}

.investment-contact-row {
	width: 100%;
}

.investment-contact-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.investment-contact-icon img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.investment-contact {
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-xl);
	line-height: 130%;
	letter-spacing: 0;
	flex: 1;
	min-width: 0;
	text-align: left;
}

.investment-contact-copy {
	flex-shrink: 0;
	margin-left: auto;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	line-height: 0;
	align-self: flex-start;
}

.investment-contact-copy img {
	display: block;
	width: 24px;
	height: 24px;
}

/* page investment style end */