/**
 * ===========================================================================
 * 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;
}

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;
	color: var(--color-primary);
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

input:focus {
	outline: none;
	border: none;
}

ul li {
	list-style-type: none;
}

ul {
	/* list-style-position: inside; */
	list-style-position: outside;
	/* Bullet text se bahar rahega */
	padding-left: 20px;
	/* Bullet aur text ke beech ki jagah */
	margin-left: 0;
}

.color-primary {
	color: var(--color-primary);
}

.color-secondary {
	color: var(--color-secondary);
}

.font-base {
	font-family: var(--font-base);
}

.font-secondary {
	font-family: var(--font-secondary);
}

.equal-cols>* {
	flex: 1 1 0%;
}

/* --- Layout shells (no external grid framework) --- */
.section {
	width: 100%;
	position: relative;
}

.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-x-md {
	padding-left: var(--container-padding-x-md);
	padding-right: var(--container-padding-x-md);
}

.container-padding-y-md {
	padding-top: var(--container-padding-y-md);
	padding-bottom: var(--container-padding-y-md);
}

.container-padding-x-sm {
	padding-left: var(--container-padding-x-sm);
	padding-right: var(--container-padding-x-sm);
}

.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-y);
}

.container-padding-top {
	padding-top: var(--container-padding-y);
}

.container-padding-top-md {
	padding-top: var(--container-padding-y-md);
}

.bg-primary {
	background: var(--color-primary);
}

.bg-secondary {
	background: var(--color-secondary);
}

.bg-accent {
	background: var(--color-accent);
}

.bg-primary-light {
	background: var(--color-primary-light);
}

.bg-accent-light {
	background: var(--color-accent-light);
}

.bg-white {
	background: var(--color-white);
}

.bg-black {
	background: var(--color-black);
}

.color-muted {
	color: var(--color-muted);
}

.color-white {
	color: var(--color-white);
}

.color-primary-ultra-light {
	color: var(--color-primary-ultra-light);
}

.color-accent {
	color: var(--color-accent);
}

.color-accent-light {
	color: var(--color-accent-light);
}

.color-white-70 {
	color: var(--color-white-70);
}

.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: 186px;
	max-height: 40px;
}

.brand-logo {
	max-height: 40px;
}

.primary-heading {
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-medium);
}

.desktop-show {
	display: block;
}

.desktop-hide {
	display: none;
}

.mobile-show {
	display: none;
}

.mobile-hide {
	display: block;
}

.btn {
	display: inline-block;
	padding: 17px var(--space-xl);
	border-radius: var(--border-radius-xxs);
	text-decoration: none;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-secondary);
	color: var(--color-white);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	letter-spacing: 1.4px;
	border: 1px solid var(--color-white);
	line-height: 20px;
}

.btn-outline-dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-secondary);
	color: var(--color-primary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	letter-spacing: 1.4px;
	line-height: 20px;
	background: transparent;
	border: 1px solid var(--color-primary);
	text-transform: uppercase;
}


.btn-dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-secondary);
	color: var(--color-white);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	letter-spacing: 1.4px;
	line-height: 20px;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	text-transform: uppercase;
}

.header-section {
	backdrop-filter: blur(4px);
	background: black;
}

.header-container-wrap {
	position: sticky;
	top: 0;
	z-index: 999;
}

.mobile-menu-column {
	/* max-height: 36px; */
}

/* Scroll state */
.header-section.header-transparent {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(0px);
}

.header-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.header-nav-item {
	padding: var(--space-sm) 10px;
}

.header-nav-link {
	display: block;
	font-family: var(--font-base);
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-sm);
	line-height: var(--line-height-sm);
	letter-spacing: 1.4px;
	color: var(--color-white);
}

.header-nav-item.active {
	border-bottom: 1px solid var(--color-white);
}

.header-nav-phone {
	font-family: var(--font-base);
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-sm);
	line-height: var(--line-height-sm);
	letter-spacing: 1.4px;
	color: var(--color-white);
}


.home-hero-wrap {
	/* Full-screen hero that stays within viewport */
	height: 95svh;
	overflow: hidden;

	/* Simple layering: image + content share same grid cell */
	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.5) 30%,
			rgba(0, 0, 0, 0.7) 100%);
	backdrop-filter: blur(4px);
	z-index: 1;
	pointer-events: none;
}

.home-hero-image-wrap img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.home-hero-title {
	font-family: var(--font-base);
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-5xl);
	line-height: 1;
	color: var(--color-white);
	text-align: center;
}

.home-hero-subtitle {
	max-width: 600px;
	margin: 0 auto;
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-bold);
	font-size: var(--font-size-lg);
	line-height: var(--line-height-fixed-md);
	letter-spacing: 0.6px;
	text-align: center;
	color: var(--color-white);
	vertical-align: middle;
}

/* ---------- Home stats strip ---------- */
.home-stats-item {
	max-width: 180px;
}

.home-stats-value {
	padding: 7px 0;
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-2xl);
	line-height: 100%;
	color: var(--color-white);
}

.home-stats-label {
	font-family: var(--font-base);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-light);
	line-height: var(--line-height-sm);
	letter-spacing: 0.14em;
	color: var(--color-white-70);
}

.philosophy-content {
	max-width: 61rem;
	margin: 0 auto;
}

.section-subtitle {
	font-size: var(--font-size-sm);
	line-height: 20px;
	letter-spacing: 4.2px;
	text-transform: uppercase;
}

.btn-read-story {
	font-size: var(--font-size-sm);
}

/* Large light headline (Helvetica Light via --font-secondary + weight 300) */
.philosophy-title {
	font-family: var(--font-base);
	font-weight: var(--font-weight-ultra-light);
	font-size: var(--font-size-3xl);
	line-height: var(--line-height-xs);
	color: var(--color-primary);
}

/* -----------------------
   ACCESSIBILITY
   ----------------------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.featured-properties-title {
	font-family: var(--font-base);
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-2xl);
	line-height: 100%;
	letter-spacing: -0.5px;
	color: var(--color-white);
}

.property-type-switch-wrap {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.property-type-switch {
	display: inline-block;
	margin: 0 auto;
	border-bottom: 1px solid rgba(231, 226, 218, 1);
}

.property-type-switch-item {
	cursor: pointer;
	font-size: var(--font-size-sm);
	line-height: var(--line-height-sm);
	padding: 12px 24px;
	color: #ffffff52;
}

.property-type-switch-item.active {
	color: var(--color-white);
	border-bottom: 2px solid var(--color-white);
	font-weight: var(--font-weight-medium);
}

.featured-property-type-wrap {
	display: none;
}

.featured-property-type-wrap.active {
	display: block;
}

/* Services (home): one heading hook + column strip */
.services-intro-heading {
	font-size: var(--font-size-3xl);
	line-height: 1;
	letter-spacing: -1.5px;
}

.services-intro-heading span:first-child {
	font-family: var(--font-base);
	font-weight: var(--font-weight-normal);
	color: var(--color-primary);
}

.services-intro-heading span:last-child {
	font-family: var(--font-base);
	font-weight: var(--font-weight-normal);
	font-style: italic;
	color: var(--color-secondary);
}

.services-strip>.d-flex {
	padding: var(--space-xl);
}

.services-strip>.d-flex+.d-flex {
	border-left: 1px solid var(--color-gray-100);
}

.services-icon {
	display: block;
	width: var(--icon-size-md);
	height: var(--icon-size-md);
	flex-shrink: 0;
	object-fit: contain;
}

.services-strip h3 {
	font-family: var(--font-base);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-lg);
	line-height: var(--line-height-sm);
	color: var(--color-primary);
}

.services-strip>.d-flex>p.color-muted {
	font-size: var(--font-size-sm);
}

.learn-more-btn {
	font-size: var(--font-size-xs);
}

/* Home team (banner + static thumb strip; carousel hooks later) */
.home-team-banner {
	min-height: min(70vh, 36rem);
}

.home-team-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
}

.home-team-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.team-lower-wrap {
	min-height: 400px;
	position: relative;
	z-index: 1;
}

.home-team-title {
	font-family: var(--font-base);
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-2xl);
	line-height: var(--line-height-xs);
}

.home-team-name {
	font-family: var(--font-base);
	font-weight: var(--font-weight-light);
	font-size: 40px;
	line-height: var(--line-height-xs);
}

.home-team-role {
	font-family: var(--font-base);
	font-size: 32px;
	font-weight: var(--font-weight-light);
	line-height: var(--line-height-xs);
}

.team-portait-detial-wrap {
	position: relative;
	top: 16vh;
}

.home-team-portrait {
	display: block;
	width: 100%;
	max-width: min(100%, 24rem);
	height: auto;
	max-height: min(80vh);
	object-fit: contain;
	box-sizing: border-box;
	filter: grayscale(1);
}

/* Name + portrait row: second column grows; portrait centered in that band */
.team-lower-wrap>.profile-wrap {
	display: flex;
	align-items: center;
	gap: 12vw;
	width: 100%;
}

.team-portrait-wrap {
	height: 60vh;
	display: flex;
	align-items: end;
	position: relative;
	justify-self: center;
	width: 100%;
	max-width: min(100%, 24rem);
}

.home-team-thumb-wrap {
	max-width: 1072px;
	margin: 0 auto;
}

.home-team-thumb-wrap-item {
	box-sizing: border-box;
	width: var(--team-thumb-size);
	height: var(--team-thumb-size);
	flex-shrink: 0;
	overflow: hidden;
	display: flex;
	align-items: end;
	justify-content: center;
	background-color: #61616352;
}

.home-team-thumb {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1);
}

.home-team-thumb-wrap-item.is-active {
	border: 1px solid var(--color-white);
}

.home-team-thumb-carousel {
	position: relative;
}

.home-team-thumb-carousel .owl-nav {
	position: absolute;
	top: 50%;
	left: -7vw;
	width: calc(100% + 10vw);

	transform: translateY(-50%);

	display: flex;
	justify-content: space-between;
	align-items: center;

	pointer-events: none;
}

.home-team-thumb-carousel .owl-nav button {
	width: 40px;
	height: 40px;

	display: flex !important;
	align-items: center;
	justify-content: center;

	pointer-events: all;
}


.property-card {
	max-width: 400px;
}
.property-card .property-card-image img{
	transition: var(--transition-fast);
}
.property-card:hover .property-card-image img
{
	transform: scale(1.1);
} 
.property-card-image
{
	max-height: 280px;
	overflow: hidden;
}
.property-card-price {
	font-family: var(--font-base);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-xl);
	line-height: 100%;
	letter-spacing: 0%;
}

.property-card-location {
	font-family: var(--font-base);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-base);
	line-height: 100%;
	letter-spacing: 0%;
}

.property-specs p {
	font-family: var(--font-base);
	font-weight: var(--font-weight-normal);
	font-size: 13px;
	line-height: 100%;
	letter-spacing: 0%;
}
.pagination-item{
	border: 1px solid var(--color-black);
	color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	width: 32px;
	border-radius:4px;
}

.pagination-item.active,.pagination-item:hover{
	cursor: pointer;
	background-color: var(--color-black);
	color: var(--color-white);
}
.pagination-item .prev-button, .pagination-item .next-button
{
	display: flex;
}
.pagination-item img
{
	filter: brightness(0);
	max-height: 18px;
}
.pagination-item .next-button img
{
	transform: scaleX(-1);
}
.property-filter-sub-wrap
{
	display: flex;
	gap: 32px;
}

.property-filter-sub-wrap .first-child
{
	width: 67%;
}
.property-filter-sub-wrap .second-child
{
	/* flex: 2;/  */
	width: 33%;
}
/* Parent ko relative rakho taki toggle iske hisab se align ho */
.search-container {
    position: relative;
    width: 100%;
}

/* Toggle Button ko input ke upar left mein set karo */
.property-toggle {
    position: absolute;
    right: 1%;
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
	transform: translateY(-120%);
    z-index: 10; /* Taki input ke upar rahe */
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
}
.property-search-icon
{
	position:absolute;
	top: 0;
	filter: brightness(0);
	top: 33%;
    height: 16px;
    width: 16px;
    left: 2%;
}

/* Hide Radio Buttons */
.property-toggle input[type="radio"] {
    display: none;
}

/* Label/Text Styling */
.property-toggle label {
    padding: 5px 12px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.5px;
    cursor: pointer;
    z-index: 2;
    color: rgba(102, 102, 102, 0.32);
    transition: color 0.3s;
}

/* Brown Background Logic */
.property-toggle::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: var(--color-secondary); /* Image wala brown color */
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Jab For Rent select ho toh background slide ho */
.property-toggle:has(#forRent:checked)::before {
    left: 50%;
}

/* Text color change on select */
.property-toggle input:checked + label {
    color: #fff;
}
/* style Property-list start */
.properties-grid {
	align-items: stretch;
}

.property-list-market-heading {
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-3xl);
	line-height: 60px;
	letter-spacing: 0%;
}

.property-list-market-content {
	max-width: 1040px;
	margin: 0 auto;
	font-size: var(--font-size-md);
	line-height: 28px;
	letter-spacing: 0%;
	color: var(--color-white-70);
}

.property-list-mid-wrap {
	margin: 0 auto;
	max-width: 730px;
}

.section-full-bg-image-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.section-full-bg-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.section-full-bg-image-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	/* overlay */
	z-index: 1;
}

.similar-property-title {
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
}

/* style Property-list end */

/* style form fields start */

.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.215rem;
}

.form-input {
	width: 100%;
	font-family: var(--font-secondary);
	padding: 15px var(--space-md);
	background-color: rgba(242, 242, 242, 1);
	border: 1px solid rgba(242, 242, 242, 1);
	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;
}

.apply-form-bottom-text {
	font-size: var(--font-size-sm);
	line-height: 20px;
	letter-spacing: 4.2px;
	text-transform: uppercase;
	color: rgba(97, 97, 99, 1);
}

/* style form fields end */

/* Why us + testimonial (home, two columns + divider) */
.why-testimonial-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: start;
}

.why-testimonial-col--left {
	padding-right: var(--space-3xl);
}

.why-testimonial-col--right {
	padding-left: var(--space-3xl);
	border-left: 1px solid var(--color-gray-100);
}

.why-testimonial-eyebrow {
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.06em;
}

.why-testimonial-lead {
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-lg);
	line-height: 1.1;
	color: var(--color-primary-ultra-light);
}

.why-testimonial-list {
	list-style: none;
}

.why-testimonial-list li {
	position: relative;
	padding-left: 2rem;
	line-height: 1.3;
	margin-bottom: var(--space-md);
}

.why-testimonial-list li:last-child {
	margin-bottom: 0;
}

.why-testimonial-list li::before {
	content: url(../images/svg/plus.svg);
	position: absolute;
	left: 0;
	right: 10px;
	height: 24px;
	color: var(--color-gray-100);
}

.why-testimonial-list li {
	font-size: 18px;
}

#why-testimonials.section {
	border-bottom: 1px solid var(--color-gray-100);
}

.why-testimonial-label {
	letter-spacing: 4.2px;
	font-size: var(--font-size-sm);
	line-height: 20px;
}

.why-testimonial-quote {
	max-width: 31rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 36px;
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-md);
}

.why-testimonial-author {
	font-weight: var(--font-weight-normal);
	font-size: 18px;
}

.why-testimonial-google {
	display: block;
	flex-shrink: 0;
}

.author-industry {
	line-height: 20px;
	font-size: var(--font-size-sm);
}

.home-testimonial-carousel {
	max-width: 40vw;
	margin: 0 auto;
}

/* Container jo nav aur dots dono ko hold karega */
.home-testimonial-carousel {
	position: relative;
}

/* Dots ka container center mein rakho */
.home-testimonial-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) */
.home-testimonial-carousel .owl-nav {
	display: flex;
	justify-content: space-between;
}

/* Common style dono buttons ke liye */
.home-testimonial-carousel .owl-nav button {
	position: absolute;
	/* top: 50%; */
	transform: translateY(32px);
	width: 45px;
	height: 45px;
	border: 1px solid #00000033 !important;
	background: var(--color-white) !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

/* Right Arrow ko dots ke right mein chipkao */
.home-testimonial-carousel .owl-nav .owl-prev {

	right: 60%;
	/* Dots container ke bahar right side */
}

/* Right Arrow ko dots ke right mein chipkao */
.home-testimonial-carousel .owl-nav .owl-next {
	left: 60%;
	/* Dots container ke bahar right side */
}

/* SVG icons black fix */
.home-testimonial-carousel .owl-nav button img {
	width: 8px !important;
	filter: brightness(0);
}

/* Active Dot logic (Capsule shape) */
.home-testimonial-carousel .owl-dots .owl-dot span {
	width: 8px;
	height: 8px;
	margin: 0 5px;
	background: var(--color-gray-100);
	display: block;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.home-testimonial-carousel .owl-dots .owl-dot.active span {
	width: 25px;
	border-radius: 10px;
	background: var(--color-primary-ultra-light);
}

.property-services-stories-section-title {
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-3xl);
	line-height: 60px;
	letter-spacing: -1.5px;
	color: var(--color-primary);
}

.property-services-stories-card-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.stories-card {
	gap: 54px;
}

/* Follow Instagram (home) */
.follow-insta-section {
	background-color: #f2f3f5;
}

.follow-insta-eyebrow {
	letter-spacing: 0.08em;
}

.follow-insta-handle {
	font-family: var(--font-base);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-xl);
	line-height: var(--line-height-xs);
}

.follow-insta-cta {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	text-decoration: none;
	letter-spacing: 0.06em;
}

.follow-insta-cta:hover {
	opacity: 0.8;
}

.follow-insta-cta-icon {
	flex-shrink: 0;
}

.follow-insta-card {
	border-radius: var(--border-radius-base);
	overflow: hidden;
	background-color: #555;
}

.follow-insta-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Home closing CTA: 1) .home-cta-arc = circle arc, 2) .home-cta-content = text */
.home-cta-section {
	position: relative;
	overflow: hidden;
	background-color: var(--color-black);
}

.home-cta-content {
	padding-top: 134px;
	padding-bottom: 134px;
}

.home-cta-arc {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 0;
	width: min(220vw, 2800px);
	aspect-ratio: 1;
	border-radius: 50%;
	transform: translate3d(-50%, 0%, 0);
	pointer-events: none;
	background: linear-gradient(to bottom,
			var(--color-black) 40%,
			var(--color-black) 78%,
			var(--color-secondary) 100%);
}

.home-cta-title {
	font-family: var(--font-base);
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-3xl);
	line-height: var(--line-height-xs);
}

.home-cta-lead {
	letter-spacing: 1px;
	font-size: var(--font-size-md);
	max-width: 53rem;
	margin-left: auto;
	margin-right: auto;
	font-weight: var(--font-weight-light);
}

/* ---------- Footer (same naming pattern as agent-extra-denise-white) ---------- */
.footer {
	background-color: var(--color-black);
	color: var(--color-white);
}

.footer-inner {
	padding-top: var(--footer-padding-top);
	padding-bottom: var(--footer-padding-bottom);
}

.footer a {
	color: #ffffffb3;
	text-decoration: none;
}

.footer-first-col-wrap {
	max-width: 367px;
}

.footer a:hover {
	opacity: 0.85;
}

.footer-brand-wordmark {
	text-decoration: none;
}

.footer-brand-name {
	display: block;
	font-family: var(--font-base);
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-xs);
	color: var(--color-white);
	text-transform: lowercase;
}

.footer-brand-tagline {
	display: block;
	font-family: var(--font-base);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: var(--line-height-sm);
	color: var(--color-white);
	text-transform: lowercase;
}

.footer-brand-text {
	font-size: var(--font-size-sm);
	line-height: var(--line-height-md);
}

.footer-social-link {
	display: inline-flex;
	color: var(--color-white);
	line-height: 1;
}

.footer-newsletter-heading {
	font-size: var(--font-size-sm);
	line-height: var(--line-height-sm);
	letter-spacing: 0.12em;
	color: var(--color-white);
	text-transform: uppercase;
}

.footer-newsletter-form {
	max-width: 100%;
	border: 1px solid var(--color-gray-500);
	border-radius: var(--border-radius-xxs);
	overflow: hidden;
}

.footer-newsletter-input {
	flex: 1 1 auto;
	min-width: 0;
	padding: var(--space-sm) var(--space-md);
	font-family: var(--font-base);
	font-size: var(--font-size-sm);
	line-height: var(--line-height-sm);
	color: var(--color-white);
	background-color: var(--color-black);
	border: none;
}

.footer-newsletter-input::placeholder {
	color: var(--color-muted);
}

.footer-newsletter-btn {
	flex: 0 0 3rem;
	min-width: 3rem;
	padding: 0;
	font-family: var(--font-base);
	font-size: var(--font-size-md);
	line-height: 1;
	color: var(--color-white);
	background-color: var(--color-gray-900);
	border: none;
	cursor: pointer;
}

.footer-col-title {
	font-family: var(--font-heading);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	line-height: var(--line-height-sm);
	letter-spacing: 0.1em;
	color: var(--color-white);
	text-transform: uppercase;
}
.footer-option-wrap
{
	padding-left: 0px;
}
.footer-option-wrap li
{
	display: flex;
}
.footer-nav-link {
	font-family: var(--font-secondary);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	line-height: var(--line-height-md);
	letter-spacing: 0.06em;
	color: var(--color-white);
	text-transform: uppercase;
}

.footer-contact-address {
	font-size: var(--font-size-sm);
	line-height: var(--line-height-md);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffffb3;
}

.footer-contact-email {
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.footer-legal {
	padding-top: var(--space-xl);
	padding-bottom: var(--space-lg);
}

.footer .footer-legal-link {
	font-size: var(--font-size-sm);
	line-height: var(--line-height-md);
	text-decoration: none;
	color: var(--color-muted);
}

.footer .footer-legal-link:hover {
	color: var(--color-white);
	opacity: 1;
}

.footer-bottom {
	margin-top: var(--space-md);
}

.footer-bottom-text {
	font-size: var(--font-size-xxs);
	line-height: var(--line-height-sm);
}

.footer-site-by {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

/* policy page style starts */
.policy-hero-title {
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-light);
	line-height: 100%;
	letter-spacing: -1.5px;
}

.policy-hero-subtitle {
	font-family: var(--font-heading);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	line-height: 20px;
	letter-spacing: 4.2px;
}

.policy-hero-paragraph {
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-light);
	line-height: 29px;
	letter-spacing: 1px;
}

.policy-detail-content-wrap p {
	line-height: 130%;
}

/* policy page style ends */

/* style page property details start */
.property-banner-wrap {
	width: 100%;
	height: auto;
}

.property-banner-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-banner-left-wrap {
	width: 100%;
	height: auto;
}

.property-banner-left-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.view-btn {
	min-width: 172px;
}

.badge-primary {
	padding: 0px 15px;
	border-radius: 50px;
	background: var(--color-primary);
	border: none;
	font-weight: var(--font-weight-normal);
	width: fit-content;
	height: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.badge-secondary {
	font-size: 13px;
}

.family-home-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-normal);
	line-height: 60px;
	letter-spacing: -1.5px;
}

.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;
}

.bedroom-type-badge {
	font-family: var(--font-base);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	line-height: 100%;
	letter-spacing: 0%;
}

.property-price {
	font-family: var(--font-base);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-ultra-light);
	line-height: 120%;
	letter-spacing: 0%;
}

.property-detail-media-content {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0%;
}

.property-details-description {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-normal);
	line-height: 100%;
	letter-spacing: 0%;
}

.property-details-description-content {
	font-family: var(--font-base);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 130%;
	letter-spacing: 0%;

}

.property-details-description-content li {
	list-style-type: disc;
}

.property-detail-enquiry {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0%;
}

/* style page property details end */

/* style page selling start */
.full-width-banner-wrap {
	width: 100%;
}

.full-width-banner-wrap img {
	display: block;
	width: 100%;
	height: auto;
}

.page-title-icon-wrap {
	display: flex;
}

.page-title-icon-wrap .page-title-icon {
	height: 80px;
	width: 80px;
	padding: 10px;
}

.property-service-title-wrap {
	max-width: 500px;
	width: 100%;
}

.property-services-title {
	font-family: var(--font-secondary);
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-2xl);
	line-height: 110.1%;
	letter-spacing: 0px;
}

.feature-detail-card-wrap {
	display: flex;
	flex-direction: column;
	gap: 200px;
	margin-top: 32px;
}
.feature-detail-card
{
	background-color: rgba(255, 255, 255, 0.5); 
	backdrop-filter: blur(0.5px); 
}

.feature-details-card-title-wrap {
	display: inline-block;
	box-shadow: 
    0px 16px 35px 0px rgba(0, 0, 0, 0.1),
    0px 63px 63px 0px rgba(0, 0, 0, 0.09),
    0px 143px 86px 0px rgba(0, 0, 0, 0.05),
    0px 254px 102px 0px rgba(0, 0, 0, 0.01),
    1px 397px 111px 0px rgba(0, 0, 0, 0);

	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	background-color: var(--color-white);
	z-index: 1;
}
.feature-details-card-title {
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-2xl);
	line-height: 120%;
	letter-spacing: -0.6px;
	padding: 24px 32px;
	color: var(--color-secondary);
}

.feature-detail-card-content-wrap {
	border-radius: 16px;
	position: relative;
	z-index: 2;
	box-shadow:
		0px 40px 87px 0px #0000001A,
		0px 159px 159px 0px #00000017,
		0px 357px 214px 0px #0000000D,
		1px 634px 250px 0px #00000003,
		1px 991px 250px 0px #00000000;
	padding: 24px;
}

.section-letting-page .feature-detail-card:first-child .feature-detail-card-content-wrap {
    border-top-left-radius: 0px;
}
.section-letting-page .feature-detail-card:last-child .feature-detail-card-content-wrap {
    border-top-right-radius: 0px;
}

.section-letting-page .feature-detail-card:nth-child(1) .feature-details-card-title-wrap {
    margin-left: 0vw;
}
.section-letting-page .feature-detail-card:nth-child(2) .feature-details-card-title-wrap {
    margin-left: 14vw;
}
.section-letting-page .feature-detail-card:nth-child(3) .feature-details-card-title-wrap {
    margin-left: 28vw;
}
.section-letting-page .feature-detail-card:nth-child(4) {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
}
.property-services-content {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-ultra-light);
	line-height: 110%;
	letter-spacing: 0%;
}

.selling-card-wrap {
	padding: 24px 24px;
}

.property-services-card-logo {
	height: 48px;
	width: 48px;
}

.property-services-card-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	line-height: 32px;
	letter-spacing: -0.6px;
}

.property-services-card-content {
	font-family: var(--font-heading);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-light);
	line-height: 22.75px;
	letter-spacing: 0px;
}

.property-services-card-image-wrap {
	width: 100%;
	max-width: 50%;
	max-height: 269px;
}

.property-services-card-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-services-philosophy-heading {
	font-family: var(--font-heading);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-ultra-light);
	letter-spacing: 0px;
	margin: 0;
	margin-top: 20px;
	margin-bottom: 60px;
}

.property-services-card-subtitle {
	font-family: var(--font-base);
	font-weight: var(--font-weight-ultra-light);
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 3.6px;
}

.selling-card-subtitle {
	font-family: var(--font-heading);
	font-size: var(--font-size-xs);
	line-height: 16px;
	letter-spacing: 3.6px;
}

.property-services-benifit-title {
	font-family: var(--font-base);
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-light);
	line-height: 1;
	letter-spacing: -0.6px;
	color: var(--color-primary-ultra-light);
}

.property-services-benifit-content {
	font-family: var(--font-heading);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0%;
	color: var(--color-primary-ultra-light);
}

.property-services-selling-benifit-image-wrap {
	width: 100%;
	max-width: 479px;
	height: 217px;
}

.property-services-selling-benifit-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-services-instruction-content {
	font-family: var(--font-base);
	font-weight: var(--font-weight-light);
	font-size: var(--font-size-lg);
	line-height: 1.2;
	letter-spacing: 0px;
	color: #FFFFFFA3;
}

.property-services-instruction-heading {
	font-family: var(--font-base);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-lg);
	line-height: 1.1;
	letter-spacing: -0.5px;
}

.property-services-instruction-image-wrap {
	font-family: var(--font-headings);
	font-weight: var(--font-weight-ultra-light);
	font-size: var(--font-size-3xl);
	line-height: 120%;
	letter-spacing: 0%;
}

.property-services-philosophy-card {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 16px;
	width: 100%;
}

.property-services-philosophy-card p {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	text-align: center;
	margin: 0;
	letter-spacing: 0%;
}

.property-services-type-eyebrow {
	font-family: var(--font-base);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-normal);
	line-height: 16%;
	text-align: center;
	margin: 0;
	letter-spacing: 3.6px;
}

.property-services-benifit-image-wrap img {
	min-width: 479px;
}

/* style page selling end */

/* style page retainer pitch deck start */
.page-title-heading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-light);
	line-height: 60px;
	letter-spacing: -1.5px;
}

.page-title-content {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-light);
	line-height: 120%;
	letter-spacing: 0%;
}

.page-features-subtitle {
	font-family: var(--font-base);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-normal);
	line-height: 16px;
	letter-spacing: 3.6px;
}

.page-features-title {
	font-family: var(--font-secondary);
	font-size: var(--font-size-3xl);
	line-height: 60px;
	letter-spacing: 1.5px;
}

.page-features-card-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-ultra-light);
	line-height: 120%;
	letter-spacing: 0%;
}

.page-features-card-subheading {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0%;
}

.page-features-card-content {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-ultra-light);
	line-height: 120%;
	letter-spacing: 0%;
}

.case-study-card-wrap {
	border: 1px solid #00000066;
	padding: 32px;
}

.case-study-image-wrap {
	max-width: 1248px;
	width: 100%;
	height: 100%;
}

.case-study-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.case-study-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0%;
}

.case-study-list li {
	list-style-type: disc;
}

.case-study-logo {
	height: 64px;
	width: 64px;
	display: flex;
	align-items: center;
}

.case-study-content {
	font-family: var(--font-base);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	line-height: 20px;
	letter-spacing: 1.4px;
}

.case-wrap-elem-start {
	max-width: 273px;
}

.case-wrap-elem-mid {
	width: 446px;
}

.case-wrap-elem-end {
	max-width: 273px;
}

.case-title-devider {
	margin: 24px 0px;
	background-color: rgba(97, 97, 99, 0.4);
	height: 1px;
}

/*  sticky title + sticky cards (normal page scroll) */
@media (min-width: 1024px) {
	.section-animated-card-wrap .page-features-title-wrap {
		z-index: 20;
		background-color: var(--color-white);
	}

	.page-features-title-wrap-sticky {
		top: 130px;
		position: sticky;
	}

	.page-features-title-wrap-sticky-padding {
		padding: 130px 0px 32px 0px;
		top: 0px;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card {
		position: sticky;
		top: 250px;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(1) {
		z-index: 1;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(2) {
		z-index: 2;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(3) {
		z-index: 3;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(4) {
		z-index: 4;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(5) {
		z-index: 5;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(6) {
		z-index: 6;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(7) {
		z-index: 7;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(8) {
		z-index: 9;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(9) {
		z-index: 9;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(10) {
		z-index: 10;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(11) {
		z-index: 11;
	}

	.section-animated-card-wrap .feature-detail-card-wrap>.feature-detail-card:nth-child(12) {
		z-index: 12;
	}

	.section-animated-card-wrap .feature-detail-card-wrap .feature-detail-card:not(:first-child) .feature-detail-card-content-wrap {
		box-shadow: none;
	}
}

/* style page retainer pitch deck end */

/* style vacancies start */
.vacancy-card-content {
	font-family: var(--font-base);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-normal);
	line-height: 130%;
	letter-spacing: 0%;
}

.vacancy-card-subtitle {
	font-family: var(--font-base);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 130%;
	letter-spacing: 0%;
}

.vacancy-card-logo {
	width: 32px;
	height: 32px;
}

.vacancy-card-subtitle-wrap {
	max-width: 480px;
	width: 1005;
}

.vacancy-card-title {
	font-family: var(--font-base);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-bold);
	line-height: 130%;
	letter-spacing: 0%;
}

.vacancy-card-responsibilty {
	padding: 16px;
}

.vacancy-list {
	padding-left: 20px;
}

.vacancy-list li {
	list-style-type: disc;
}

.page-register-image-wrap img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.page-register-heading,
.recruitment-enquiry-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-ultra-light);
	line-height: 120%;
	letter-spacing: 0%;
}

.recruitment-enquiry-subheading {
	font-family: var(--font-base);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	line-height: 20px;
	letter-spacing: 4.2px;
}

.page-register-subheading {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-light);
	line-height: 120%;
	letter-spacing: 0%;
}

.recruitment-enquiry-content {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-light);
	line-height: 120%;
	letter-spacing: 0%;
	max-width: 778px;
}

.privacy-enquiry-content {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-light);
	line-height: 120%;
	letter-spacing: 0%;
}

.recruitment-enquiry-logo {
	height: 40px;
	width: 40px;
}

/* style vacancies end */

/* style page letting start */
.letting-card-content {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0%;
}

.letting-services-card-subheading {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-ultra-light);
	line-height: 130%;
	letter-spacing: 0%;
}

.management-pathway-card-wrap {
	border: 1px solid #ffffff52;
	padding: 16px;
	min-width: 500px;
	border-radius: 8px;

}

.management-pathway-card-title {
	font-family: var(--font-base);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-light);
	line-height: 100%;
	letter-spacing: -0.5px;
}

.management-pathway-card-subtitle {
	font-family: var(--font-base);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-ultra-light);
	line-height: 120%;
	letter-spacing: 0%;
}

.management-pathway-card-content {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	line-height: 100%;
	letter-spacing: 0px
}

.letting-service-card-wrap {
	border: 1px solid var(--color-secondary);
	border-radius: 16px;
	padding: 24px;
}

.letting-services-card-image-wrap {
	width: 100%;
	max-width: 576px;
	height: 269px;
}

.letting-services-card-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.letting-services-card-heading {
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-light);
	line-height: 110%;
	letter-spacing: 0px
}

.letting-services-card-content {
	font-size: var(--font-size-lg);
	line-height: 120%;
	letter-spacing: 0px
}

/* style page letting end */

/* style page team start */
.team-title-heading {
	font-family: var(--font-secondary);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-light);
	line-height: 60px;
	letter-spacing: -1.5px;
}

.team-title-content {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-light);
	line-height: 120%;
	letter-spacing: 0%;
}

.team-structure-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-ultra-light);
	line-height: 120%;
	letter-spacing: 0px;
}

.team-structure-heading {
	font-family: var(--font-base);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-ultra-light);
	line-height: 120%;
	letter-spacing: 0%;
}

.team-structure-subheading {
	font-family: var(--font-base);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0%;
}

.contact-services {
	font-family: var(--font-base);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-normal);
	line-height: 120%;
	letter-spacing: 0%;
}

.contact-time {
	font-size: var(--font-size-lg);
}

.icon-wrapper-sm {
	height: 32px;
	width: 32px;
	display: inline-flex;
	justify-content: center;
}

.icon-wrapper {
	height: 40px;
	width: 40px;
	display: inline-flex;
	justify-content: center;
	padding: 5px;
}

.icon-wrapper-lg {
	height: 48px;
	width: 48px;
	display: inline-flex;
	justify-content: center;
	padding: 5px;
}

.contact-accept-me-tag {
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-normal);
	letter-spacing: 1.4px;
	color: var(--color-primary-ultra-light);
}

.custom-checkbox {
	display: flex;
	align-items: start;
	gap: 16px;
	cursor: pointer;
	position: relative;
}

.custom-checkbox input {
	display: none;
}

.custom-checkbox .checkmark {
	margin-top: 5px;

	display: inline-flex;

	width: 26px;
	height: 26px;

	border: 2px solid var(--color-primary);
	border-radius: 1px;

	align-items: center;
	justify-content: center;

	flex-shrink: 0;
}

/* Checked state */
.custom-checkbox input:checked+.checkmark {
	/* border-color: var(); */
}

.custom-checkbox input:checked+.checkmark::after {
	content: '✔';
	background: transparent;
}

/* style page team end */