/** ==========================================================================
 * NASRI THEME STYLESHEET
 * ----------------------------------------------------------------------------
 * Organization Guide
 * 1.  Theme Tokens & Global Variables
 * 2.  WordPress Admin Bar Offsets
 * 3.  Core UI (Preloader, Buttons, Header, Navigation, Dropdowns)
 * 4.  Shared Components (Cards, Forms, Sliders, Footer)
 * 5.  Page / Template Sections (Hero, Listings, Single Property, FAQ, etc.)
 * 6.  Custom Block Styles (ACF block-specific styling)
 * 7.  Utility / Responsive Overrides
 * ========================================================================== */

/** -------------------------------------------------------------------------*
 *
 * 1) Theme Tokens & Global Variables
 *
 * --------------------------------------------------------------------------*/
:root {
	--nastri-plum: #A5005F;
	--nastri-vibrant-plum: #e5188f;
	--nastri-plum-dark: #222025;
	--nastri-teal: #008B9A;
	--nastri-teal-dark: #00515b;
    --nastri-light-teal: #AECCCF;

	--nastri-text: #222025;
	--nastri-text-muted: #4D4D4D;
	--nastri-text-soft: #787878;

	--nastri-bg: #F7F8FB;
    --nastri-background-2: #edeff5;
    --nastri-default-bg: #f6f8fc;
	--nastri-surface: #FFFFFF;
	--nastri-surface-alt: #F6F8FB;
	--nastri-border: #D9D9D9;
    --nastri-border-alt: #e6e8ea;
	--nastri-line: #D0D0D0;
	--nastri-slider-nav-gray: #8f959d;
	--nastri-slider-nav-gray-dark: #6f767d;
	--nastri-slider-nav-gray-soft: #d8dde3;
	--nastri-slider-nav-surface: #ffffff;

	--nastri-cta-bg: #142C3C;
	--nastri-footer-bg: #1C1D23;
	--nastri-footer-text: #F3F7FA;

	--nastri-accent: var(--nastri-teal);
	--nastri-accent-2: var(--nastri-plum);
	--nastri-heading: var(--nastri-plum-dark);

	--nastri-button-primary-bg: var(--nastri-plum);
	--nastri-button-primary-text: #FFFFFF;
	--nastri-button-secondary-bg: var(--nastri-teal);
	--nastri-button-secondary-text: #FFFFFF;

	--nastri-gradient-brand: linear-gradient(90deg, #008B9A 0%, #5E5F63 100%);
	--nastri-gradient-soft: linear-gradient(180deg, rgba(0,139,154,.05) 0%, rgba(0,139,154,.25) 100%);

    /* Layout & Sizing */
	--nastri-header-height: 77px;

	/* newVilla Colors */
	--newvilla-footer-gray: #B4B4B4;

	/* Map Nastri colors to newVilla theme variables */
	--color-white: #fff;
	--color-hover: var(--nastri-plum);
	--color-foreground: var(--nastri-plum-dark);
	--color-foreground-sub: var(--nastri-text-muted);
	--color-background: #fff;
	--color-background-2: var(--nastri-plum-dark);
	--color-background-4: var(--nastri-teal-dark);
	--color-border: var(--nastri-border);
}

body.admin-bar .header__sticky.sticky {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .header__sticky.sticky {
		top: 46px;
	}
}

/* Prevent extra top strip when logged in on small screens (WP admin bar mobile mode). */
@media screen and (max-width: 600px) {
	html {
		margin-top: 0 !important;
	}

	#wpadminbar {
		position: fixed !important;
		top: 0 !important;
	}

	body.admin-bar .header__sticky,
	body.admin-bar .header__sticky.sticky {
		top: 46px;
	}
}

.menu__arrowdown--icon {
	font-size: 12px;
	margin-left: 6px;
	position: relative;
	top: 1px;
	opacity: 0.7;
}

@media screen and (min-width: 767px) {
    .sticky {
        position: sticky;
        top: calc(var(--nastri-header-height) + 5rem);
        z-index: 10;
    }
}

/** -------------------------------------------------------------------------*
 *
 * Preloader
 *
 * --------------------------------------------------------------------------*/
#preloader::before {
    content: "";
    background: var(--nastri-default-bg);
}

#preloader::after {
    content: "";
    background: var(--nastri-default-bg);
}

#preloader .loader--border::before {
    background-color: var(--nastri-teal);
}

/** -------------------------------------------------------------------------*
 *
 * Buttons
 *
 * --------------------------------------------------------------------------*/
.solid__btn,
.add__listing--btn,
button,
.wp-element-button {
	background: var(--nastri-button-primary-bg);
	color: var(--nastri-button-primary-text);
	border-color: var(--nastri-button-primary-bg);
}

.solid__btn:hover,
.add__listing--btn:hover,
button:hover,
.wp-element-button:hover {
	background: #8b004f;
	border-color: #8b004f;
	color: #fff;
}

.nastri-btn--secondary,
.view__space--btn,
.details__btn {
	padding: 0 3rem;
	line-height: 5.5rem;
	height: 5.5rem;
	font-size: 1.6rem;
	letter-spacing: 0.2px;
	border: 0;
    border-radius: 1rem;
	background: var(--nastri-button-secondary-bg);
	color: var(--nastri-button-secondary-text);
}

.nastri-btn--secondary:hover,
.view__space--btn:hover,
.details__btn:hover {
	background: var(--nastri-teal-dark);
	color: #fff;
}

.nastri-border-btn {
	background: transparent;
	color: var(--nastri-text-muted);
	border: 1px solid var(--nastri-text-muted);
	padding: 0 2.5rem;
	line-height: 5.5rem;
	height: 5.5rem;
	font-size: 1.6rem;
	letter-spacing: 0.2px;
	border-radius: 1rem;
}

.nastri-border-btn:hover {
	background: var(--nastri-text-muted);
	color: #fff;
	border-color: var(--nastri-text-muted);
}

.price__filtering--btn {
    color: var(--nastri-text-muted);
}

.widget__price--filtering .price-input__field {
    position: relative;
}

.widget__price--filtering .price-input__prefix {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--nastri-text-muted);
    pointer-events: none;
    z-index: 2;
}

.widget__price--filtering .price-input__field input[type="number"] {
    padding-left: 2.6rem;
}

.nastri-anchor-target { scroll-margin-top: 120px; }

@media only screen and (max-width: 992px) {
    .about__style5--btn {
        margin-top: 5rem;
    }

    .about__style5--btn .solid__btn {
        max-width: 36rem;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

.listing__active-filter-heading {
    font-size: 1.5rem;
    font-weight: 800;
}

.listing__active-filter-chip {
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    color: var(--nastri-text-muted);
    background: var(--nastri-bg);
    border-radius: 10rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.listing__active-filter-chip:hover,
.listing__active-filter-chip:focus {
    background: var(--nastri-background-2);
    color: var(--nastri-text);
}

.listing__active-filter-chip-remove {
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.75;
}

/** -------------------------------------------------------------------------*
 *
 * Header & Navigation
 *
 * --------------------------------------------------------------------------*/
@media only screen and (min-width: 1366px) {
    .main__menu--items {
        margin-right: 4rem;
    }

	.main__menu--items:last-child {
		margin-right: 2rem;
	}
}

@media only screen and (min-width: 1600px) {
    .main__menu--items {
        margin-right: 4rem;
    }

	.main__menu--items:last-child {
		margin-right: 2rem;
	}
}

.main__logo--img {
	max-height: 5.5rem;
	width: auto;
}

@media only screen and (max-width: 991px) {
	.main__logo--img {
		max-height: 5.5rem;
	}
}

.sub__menu--link {
	line-height: 2rem;
}

/* Offcanvas menu cleanup */
.offcanvas__menu_item_wrapper {
	width: 100%;
}

.offcanvas__menu_toggle,
.offcanvas__menu_toggle:hover,
.offcanvas__menu_toggle:focus  {
	background: #fff;
	border: 0;
	padding: 0 10px;
	font-size: 28px;
	line-height: 1;
	color: inherit;
}

.offcanvas__sub_menu_toggle,
.offcanvas__sub_menu_toggle:hover,
.offcanvas__sub_menu_toggle:focus,
.offcanvas__sub_menu_toggle.active {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.offcanvas__sub_menu {
    transition: all 0.2s ease-out;
}

.side__menu--info__title {
    margin-bottom: 0;
}

/** -------------------------------------------------------------------------*
 *
 * Dropdowns & Arrows
 *
 * --------------------------------------------------------------------------*/
.menu__arrowdown--icon {
	font-size: 12px;
	margin-left: 6px;
	color: currentColor;
	opacity: .75;
}

/** -------------------------------------------------------------------------*
 *
 * Headings, Subtitles & Accent Text
 *
 * --------------------------------------------------------------------------*/
.section__heading--subtitle,
.subtitle__style,
.nastri-accent-text {
	color: var(--nastri-teal);
}

.section__heading--subtitle i {
    display: inline-block;
    margin-right: 0.6rem;
    vertical-align: middle;
}

.section__heading--title,
h1, h2, h3, h4, h5, h6 {
	color: var(--nastri-heading);
}

.blog__content--title {
    text-transform: uppercase;
}

.breadcrumb__title span {
    color: var(--nastri-teal);
}

.breadcrumb__menu--link:hover {
    color: var(--nastri-teal);
}

/** -------------------------------------------------------------------------*
 *
 * Cards, Widgets & Form Wrappers
 *
 * --------------------------------------------------------------------------*/
.property__card,
.listing__card,
.sidebar__widget,
.contact__form--wrapper,
.testimonial__items,
.service__items {
	background: var(--nastri-surface);
	border: 1px solid rgba(34,32,37,.06);
	box-shadow: 0 8px 24px rgba(34,32,37,.06);
	border-radius: 12px;
}

.contact__form {
    background: transparent;
}

/** -------------------------------------------------------------------------*
 *
 * Resource Sidebar Layout Block
 *
 * --------------------------------------------------------------------------*/
.resource-sidebar-layout__body {
    margin-bottom: 3.5rem;
}

.resource-sidebar-layout__child-content {
    margin-top: 4rem;
}

.resource-sidebar-layout__child-content > *:first-child {
    margin-top: 0;
}

.resource-sidebar-layout__child-content > * + * {
    margin-top: 4rem;
}

.resource-sidebar-layout__child-content .section--padding {
    padding-top: 0;
    padding-bottom: 0;
}

.resource-sidebar-layout__child-content .consult-cta-banner__section {
    padding-top: 0;
    padding-bottom: 0;
}

.resource-sidebar-layout__action {
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.resource-sidebar-layout__action--surface {
    min-height: 5.5rem;
    padding: 0 2rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    background: var(--nastri-surface-alt);
    color: var(--nastri-text);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.resource-sidebar-layout__action--surface:hover {
    background: #e7ebf5;
    color: var(--nastri-text);
}

.resource-sidebar-layout__sidebar .contact__form {
    background: var(--nastri-bg);
    border: 0;
}

.resource-sidebar-layout__sidebar--sticky {
    position: sticky;
    top: calc(var(--nastri-header-height) + 5rem);
    z-index: 10;
}

.resource-sidebar-layout__link {
    font-weight: 800;
}

.resource-sidebar-layout__child-content > section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.resource-sidebar-layout__child-content > section:last-child {
    margin-bottom: 0;
}

.resource-quick-links__heading,
.resource-icon-list__heading,
.resource-info-cards__heading,
.resource-feature-highlights__heading {
    margin-bottom: 1.6rem;
    color: var(--nastri-heading);
}

.resource-quick-links__body p,
.resource-icon-list__body p,
.resource-info-cards__body p,
.resource-feature-highlights__body p {
    margin-bottom: 1.8rem;
    color: var(--nastri-text-muted);
    line-height: 3rem;
}

.resource-quick-links__body p:last-child,
.resource-icon-list__body p:last-child,
.resource-info-cards__body p:last-child,
.resource-feature-highlights__body p:last-child {
    margin-bottom: 0;
}

.resource-quick-links__link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--nastri-text);
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
}

.resource-quick-links__link:hover {
    color: var(--nastri-plum);
}

.resource-icon-list__item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.resource-icon-list__item i {
    flex: 0 0 auto;
    margin-top: 0.2rem;
    font-size: 1.8rem;
}

.resource-icon-list__item--teal i {
    color: var(--nastri-teal);
}

.resource-icon-list__item--plum i {
    color: var(--nastri-plum);
}

.resource-icon-list__item--muted i {
    color: var(--nastri-text-muted);
}

.resource-icon-list__item .services__details--desc {
    margin: 0;
    font-weight: 600;
    line-height: 2.6rem;
}

.resource-info-cards__section .row {
    --bs-gutter-y: 2rem;
}

.resource-info-cards__card {
    align-items: flex-start;
    gap: 1.6rem;
    margin: 0;
}

.resource-info-cards__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    flex: 0 0 4.8rem;
    border: 1px solid rgba(0, 139, 154, 0.22);
    border-radius: 50%;
    color: var(--nastri-teal);
    background: var(--nastri-surface);
}

.resource-info-cards__icon i {
    font-size: 1.8rem;
    line-height: 1;
}

.resource-info-cards__content {
    width: auto;
}

.resource-info-cards__card-title {
    margin-bottom: 0.8rem;
    color: var(--nastri-text);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.4;
}

.resource-info-cards__card-description,
.resource-info-cards__card-description p {
    margin: 0;
    color: var(--nastri-text-muted);
    font-size: 1.4rem;
    line-height: 1.8;
}

.resource-feature-highlights__icon i {
    font-size: 2.4rem;
    line-height: 1;
}

.resource-feature-highlights__list {
    margin-top: 4.2rem;
}

.resource-feature-highlights__item {
    padding-right: 4.8rem;
    margin-right: 4.8rem;
}

.resource-feature-highlights__item--teal .resource-feature-highlights__icon {
    color: var(--nastri-teal);
}

.resource-feature-highlights__item--plum .resource-feature-highlights__icon {
    color: var(--nastri-plum);
}

.resource-feature-highlights__item--muted .resource-feature-highlights__icon {
    color: var(--nastri-text-muted);
}

@media only screen and (max-width: 767px) {
    .resource-sidebar-layout__child-content > section {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .resource-feature-highlights__item {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }
}

.resource-sidebar-layout__form .nf-form-fields-required {
    display: none;
}

.resource-sidebar-layout__form .nf-form-content {
    padding: 0;
}

.resource-sidebar-layout__form .nf-field-container {
    margin-bottom: 1.6rem;
}

.resource-sidebar-layout__form .nf-field-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.resource-sidebar-layout__form .nf-field-label label {
    margin: 0;
    color: var(--nastri-text);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.resource-sidebar-layout__form .ninja-forms-req-symbol {
    color: var(--nastri-plum);
}

.resource-sidebar-layout__form .nf-field-element input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.resource-sidebar-layout__form .nf-field-element select,
.resource-sidebar-layout__form .nf-field-element textarea {
    width: 100%;
    background: var(--color-white);
    border: 1px solid transparent;
    color: var(--nastri-text);
    border-radius: 8px;
    box-shadow: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.resource-sidebar-layout__form .nf-field-element input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.resource-sidebar-layout__form .nf-field-element select {
    min-height: 5.5rem;
    padding: 0 1.8rem;
}

.resource-sidebar-layout__form .nf-field-element textarea {
    min-height: 15rem;
    padding: 1.6rem 1.8rem;
    resize: vertical;
}

.resource-sidebar-layout__form .nf-field-element input::placeholder,
.resource-sidebar-layout__form .nf-field-element textarea::placeholder {
    color: var(--nastri-text-soft);
}

.resource-sidebar-layout__form .nf-field-element input:focus,
.resource-sidebar-layout__form .nf-field-element select:focus,
.resource-sidebar-layout__form .nf-field-element textarea:focus {
    background: var(--color-white);
    border-color: var(--nastri-teal);
    box-shadow: 0 0 0 3px rgba(0, 139, 154, 0.14);
    outline: none;
}

.resource-sidebar-layout__form .submit-wrap {
    margin-top: 0.8rem;
}

.resource-sidebar-layout__form .submit-wrap .nf-field-element {
    display: block;
}

.resource-sidebar-layout__form .submit-wrap input[type="submit"] {
    width: 100%;
    min-height: 5.5rem;
    padding: 0 3rem;
    border: 0;
    border-radius: 1rem;
    background: var(--nastri-button-primary-bg);
    color: var(--nastri-button-primary-text);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.resource-sidebar-layout__form .submit-wrap input[type="submit"]:hover,
.resource-sidebar-layout__form .submit-wrap input[type="submit"]:focus {
    background: #8b004f;
    color: #fff;
}

.resource-sidebar-layout__form .submit-wrap input[type="submit"]:disabled,
.resource-sidebar-layout__form .submit-wrap input[type="submit"][aria-disabled="true"] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.single-property__sidebar-form-card .nf-field-element input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]), 
.single-property__sidebar-form-card .nf-field-element select,
.single-property__sidebar-form-card .submit-wrap input[type="submit"]:focus,
.single-property__sidebar-form-card .nf-field-element textarea,
.single-property__sidebar-form-card .nf-field-element textarea:focus {
    background: var(--nastri-bg);
}

.resource-sidebar-layout__form .nf-error-msg,
.resource-sidebar-layout__form .nf-form-errors {
    color: var(--nastri-plum);
    font-size: 1.3rem;
    line-height: 1.5;
}

.resource-sidebar-layout__form .nf-error-wrap {
    margin-top: 0.7rem;
}

.resource-sidebar-layout__form .nf-fail .nf-field-element input,
.resource-sidebar-layout__form .nf-fail .nf-field-element textarea,
.resource-sidebar-layout__form .nf-fail .nf-field-element select {
    border-color: var(--nastri-plum);
    box-shadow: 0 0 0 3px rgba(165, 0, 95, 0.12);
}

.resource-sidebar-layout__form .nf-response-msg {
    margin-bottom: 1.6rem;
    padding: 1.4rem 1.6rem;
    border-radius: 0.8rem;
    background: rgba(0, 139, 154, 0.08);
    color: var(--nastri-teal-dark);
    font-size: 1.4rem;
    line-height: 1.6;
}

.resource-sidebar-layout__form .nf-form-hp,
.resource-sidebar-layout__form .nf-debug-msg,
.resource-sidebar-layout__form .nf-before-form,
.resource-sidebar-layout__form .nf-after-form {
    display: none;
}

/** -------------------------------------------------------------------------*
 *
 * Ninja Forms - General Contact Form (Form 5)
 *
 * --------------------------------------------------------------------------*/
#nf-form-5-cont .nf-form-title h2 {
    margin: 0 0 1.4rem;
    color: var(--nastri-text);
    font-size: clamp(2.8rem, 2.8vw, 3.8rem);
    line-height: 1.1;
}

#nf-form-5-cont .nf-form-fields-required {
    margin-bottom: 2rem;
    color: var(--nastri-text-muted);
    font-size: 1.5rem;
    line-height: 1.7;
}

#nf-form-5-cont .ninja-forms-req-symbol {
    color: var(--nastri-plum);
}

#nf-form-5-cont .nf-field-container {
    margin-bottom: 2rem;
}

#nf-form-5-cont .nf-form-layout form > div,
#nf-form-5-cont .nf-form-content nf-fields-wrap {
    display: block;
}

#nf-form-5-cont .nf-form-content nf-fields-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

#nf-form-5-cont .nf-form-content nf-field {
    display: contents;
}

#nf-form-5-cont .nf-form-content {
    display: flex;
    flex-wrap: wrap;
    --bs-gutter-x: 1.6rem;
    --bs-gutter-y: 0;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

#nf-form-5-cont .nf-field-container {
    width: 100%;
    margin-top: var(--bs-gutter-y);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    flex: 0 0 auto;
}

#nf-form-5-cont .nf-field-container.textarea-container,
#nf-form-5-cont .nf-field-container.submit-container,
#nf-form-5-cont .nf-field-container.address-container,
#nf-form-5-cont .nf-field-container.html-container {
    width: 100%;
}

#nf-form-5-cont .nf-field-label label {
    margin: 0 0 0.8rem;
    color: var(--nastri-text);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.nf-form-cont.nf-labels-as-placeholders .nf-field-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.nf-form-cont.nf-labels-as-placeholders .nf-field-element {
    position: relative;
}

.nf-form-cont.nf-labels-as-placeholders .nf-field-element .nastri-placeholder-overlay {
    position: absolute;
    left: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    color: #b6b8bf;
    font-size: 1.6rem;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.nf-form-cont.nf-labels-as-placeholders .nf-field-element textarea + .nastri-placeholder-overlay {
    top: 1.6rem;
    transform: none;
}

.nf-form-cont.nf-labels-as-placeholders .nf-field-element .nastri-required-star {
    color: var(--nastri-plum);
    margin-left: 0.25em;
}

.nf-form-cont.nf-labels-as-placeholders .nf-field-element.has-value .nastri-placeholder-overlay,
.nf-form-cont.nf-labels-as-placeholders .nf-field-element:focus-within .nastri-placeholder-overlay {
    opacity: 0;
}

.nf-form-cont.nf-labels-as-placeholders .nf-field-element input::placeholder,
.nf-form-cont.nf-labels-as-placeholders .nf-field-element textarea::placeholder {
    color: transparent !important;
}

#nf-form-5-cont .nf-field-element input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
#nf-form-5-cont .nf-field-element select,
#nf-form-5-cont .nf-field-element textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #dfe3ea;
    color: var(--nastri-text);
    border-radius: 0.8rem;
    box-shadow: none;
}

#nf-form-5-cont .nf-field-element input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
#nf-form-5-cont .nf-field-element select {
    min-height: 5.3rem;
    padding: 0 1.6rem;
}

#nf-form-5-cont .nf-field-element textarea {
    min-height: 18rem;
    padding: 1.6rem;
    resize: vertical;
}

#nf-form-5-cont .nf-field-element input::placeholder,
#nf-form-5-cont .nf-field-element textarea::placeholder {
    color: #b6b8bf;
}

#nf-form-5-cont .nf-field-element input:focus,
#nf-form-5-cont .nf-field-element select:focus,
#nf-form-5-cont .nf-field-element textarea:focus {
    background: #fff;
    border-color: var(--nastri-teal);
    box-shadow: 0 0 0 3px rgba(0, 139, 154, 0.12);
    outline: none;
}

#nf-form-5-cont .submit-wrap {
    margin-top: 0.8rem;
}

#nf-form-5-cont .submit-wrap input[type="submit"] {
    width: auto;
    min-width: 18rem;
    min-height: 5.3rem;
    padding: 0 3.2rem;
    border: 0;
    border-radius: 0.8rem;
    background: var(--nastri-button-primary-bg);
    color: var(--nastri-button-primary-text);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

#nf-form-5-cont .submit-wrap input[type="submit"]:hover,
#nf-form-5-cont .submit-wrap input[type="submit"]:focus {
    background: #8b004f;
    color: #fff;
}

#nf-form-5-cont .nf-error-msg,
#nf-form-5-cont .nf-form-errors {
    color: var(--nastri-plum);
    font-size: 1.3rem;
    line-height: 1.5;
}

#nf-form-5-cont .nf-error-wrap {
    margin-top: 0.7rem;
}

#nf-form-5-cont .nf-fail .nf-field-element input,
#nf-form-5-cont .nf-fail .nf-field-element textarea,
#nf-form-5-cont .nf-fail .nf-field-element select {
    border-color: var(--nastri-plum);
    box-shadow: 0 0 0 3px rgba(165, 0, 95, 0.12);
}

#nf-form-5-cont .nf-response-msg {
    margin-bottom: 2rem;
    padding: 1.4rem 1.6rem;
    border-radius: 0.8rem;
    color: var(--nastri-teal-dark);
    font-size: 1.4rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    #nf-form-5-cont .nf-field-container.col-md-6 {
        width: 50%;
    }
}

/** -------------------------------------------------------------------------*
 *
 * Inputs, Textareas & Selects
 *
 * --------------------------------------------------------------------------*/
input,
select,
textarea {
	background: var(--nastri-surface-alt);
	border: 1px solid transparent;
	color: var(--nastri-text);
	border-radius: 8px;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: transparent;
	box-shadow: 0;
}

/** -------------------------------------------------------------------------*
 *
 * CTA Bands, Banners & Buttons
 *
 * --------------------------------------------------------------------------*/
.nastri-cta-band,
.cta__banner,
.apply__cta,
.property__cta {
	background: var(--nastri-teal-dark);
	color: #fff;
	border-radius: 12px;
}

.nastri-cta-band .wp-element-button,
.cta__banner .wp-element-button {
	background: var(--nastri-plum);
	border-color: var(--nastri-plum);
}

.listing__tab--btn__field  {
    color: var(--nastri-text-muted);
    background-color: transparent;
}

.listing__tab--btn__field:hover, .listing__tab--btn__field.active {
    color: var(--nastri-teal);
    background-color: transparent;
}

/** -------------------------------------------------------------------------*
 *
 * Footer & Footer Links
 *
 * --------------------------------------------------------------------------*/
.site-footer,
.footer__section {
	background: var(--nastri-footer-bg);
	color: var(--nastri-footer-text);
}

.agents__consult--section {
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
}

.site-footer.footer--with-cta {
    padding-top: 120px;
}

.main__footer {
	padding: 8rem 0;
}

.site-footer a,
.footer__section a {
	color: rgba(255,255,255,.9);
}

.site-footer a:hover,
.footer__section a:hover {
	color: var(--nastri-teal);
}

.site-footer h4,
.footer__title {
	color: #fff;
}

/* Footer widget titles and menus */
.footer__widget--title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 24px;
	color: #fff;
}

.footer__widget--menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer__widget--menu__list {
	margin-bottom: 14px;
}

.footer__widget--menu__text {
	color: rgba(255,255,255,.88);
	text-decoration: none;
	transition: color .25s ease;
}

.footer__widget--menu__text:hover {
	color: var(--nastri-plum);
}

/* Footer contact block */
.footer__widget--info {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
}

.footer__widget--info_list {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
}

.footer__widget--info__icon {
	color: var(--nastri-plum);
	font-size: 24px;
	line-height: 1;
	margin-top: 3px;
}

.footer__widget--info__text {
	color: rgba(255,255,255,.95);
	text-decoration: none;
}

/* Footer social */
.footer__social {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	gap: 16px;
}

.footer__social--icon {
	color: rgba(255,255,255,.92);
	font-size: 1.5rem;
	text-decoration: none;
	transition: color .25s ease;
}

.footer__social--icon:hover {
	color: var(--nastri-plum);
}

/* Footer bottom */
.footer__bottom--menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer__bottom--menu__link,
.footer__bottom--menu a {
	color: rgba(255,255,255,.88);
	text-decoration: none;
}

.footer__bottom--menu__link:hover,
.footer__bottom--menu a:hover {
	color: var(--nastri-teal);
}

.footer__widget--info_list a {
	line-height: 2rem;
}

.copyright__content, .footer__bottom--menu li a {
    color: var(--newvilla-footer-gray);
}

.site-footer .footer__bottom--menu {
	gap: 0;
}

.site-footer .footer__bottom--menu li {
	margin-right: 0;
	padding: 0 1.5rem;
}

.site-footer .footer__bottom--menu li:first-child {
	padding-left: 0;
}

.site-footer .footer__bottom--menu li:last-child {
	padding-right: 0;
}

.site-footer .footer__bottom--menu li::before {
	right: 0;
}

.site-footer .footer__widget--title {
	position: relative;
}

.site-footer.is-mobile-footer .footer__widget.active {
	padding-bottom: 3rem;
}

.site-footer.is-mobile-footer .footer__widget.active .footer__widget--title__arrowdown--icon {
	transform: rotate(180deg);
}

.site-footer.is-mobile-footer .footer__widget--title__arrowdown--icon {
	display: block !important;
	position: absolute;
	right: 0;
	top: 38%;
	transition: 0.3s;
}

.site-footer.is-mobile-footer .footer__widget--button {
	display: block !important;
	position: absolute;
	z-index: 9;
	top: 0;
	left: 0;
	visibility: visible !important;
	width: 100%;
	height: 100%;
	border: 0;
	background-color: transparent;
	color: transparent;
}

.site-footer.is-mobile-footer .footer__widget--inner {
	display: block !important;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.25s ease;
}

.site-footer.is-mobile-footer .footer__widget.active .footer__widget--inner {
	opacity: 1;
}

@media (max-width: 1199px) {
	.nastri-footer-cta .agents__consult--thumb {
		max-width: 280px;
		right: 20px;
	}
}

@media (max-width: 991px) {
	.nastri-footer-cta .agents__consult--inner {
		padding: 42px 32px;
	}

	.nastri-footer-cta .agents__consult--thumb {
		position: static;
		margin-top: 30px;
		max-width: 260px;
	}
}

@media (max-width: 767px) {
	.nastri-footer-cta .agents__consult--title {
		font-size: 34px;
	}
}

.contact__information--aera {
	gap: 0;
	margin-bottom: 5rem;
	border-radius: 1.2rem;
	overflow: hidden;
}

.contact__information--email,
.contact__information--phone {
	flex: 1 1 50%;
	padding: 2.8rem 3.2rem;
	gap: 1.8rem;
}

.contact__information--email {
	background: var(--color-primary);
	color: var(--color-white);
}

.contact__information--email a,
.contact__information--phone a {
	color: inherit;
}

.contact__information--phone {
	background: #f7f3ee;
}

.contact__information--email__icon,
.contact__information--phone__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	font-size: 2.4rem;
	flex: 0 0 6rem;
}

.contact__information--email__icon {
	background: rgba(255,255,255,0.16);
}

.contact__information--phone__icon {
	background: rgba(0,0,0,0.06);
	color: var(--color-primary);
}

.contact__information--email__text,
.contact__information--phone__title,
.contact__information--phone__number {
	margin: 0;
}

.contact__information--phone__title {
	font-size: 1.8rem;
	margin-bottom: .4rem;
}

.contact__information--phone__number {
	font-size: 2rem;
	font-weight: 700;
}

.footer__widget--info__icon {
	font-size: 1.8rem;
	line-height: 1;
}

.footer__widget--title {
	font-size: 1.7rem;
	line-height: 2.4rem;
	position: relative;
	color: #fff;
	margin-bottom: 2.4rem;
}

.footer__widget--title__arrowdown--icon {
	display: none;
	position: absolute;
	right: 0;
	top: 38%;
	transition: 0.3s;
}

.footer__widget--button {
	display: none;
}

.newsletter__subscribe {
	margin-top: 2rem;
}

.newsletter__subscribe--form {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.newsletter__subscribe--form label {
	flex: 1 1 18rem;
}

.newsletter__subscribe--input {
	width: 100%;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.06);
	color: var(--color-white);
	padding: 1.4rem 1.6rem;
	border-radius: .6rem;
}

.newsletter__subscribe--button {
	border: 0;
	padding: 1.4rem 1.8rem;
	border-radius: .6rem;
	background: var(--color-primary);
	color: var(--color-white);
	font-weight: 700;
}

.footer__bottom .container {
	padding-top: 0;
	padding-bottom: 0;
}

@media only screen and (min-width: 768px) {
	.footer__widget--title {
		margin-bottom: 2rem;
		font-size: 1.8rem;
	}
}

@media only screen and (min-width: 992px) {
	.footer__widget--title {
		margin-bottom: 2.5rem;
	}
}

@media only screen and (min-width: 1200px) {
	.footer__widget--title {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 767px) {
	.footer__widget--title.about {
		display: block;
	}

	.footer__widget--title__arrowdown--icon {
		display: block;
	}

	.footer__widget--button {
		position: absolute;
		z-index: 9;
		top: 0;
		left: 0;
		visibility: visible;
		width: 100%;
		height: 100%;
		content: "";
		color: transparent;
		border: 0;
		background-color: transparent;
		display: block;
	}
}

@media only screen and (min-width: 768px) {
	.footer__widget--title.about {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.contact__information--aera {
		flex-direction: column;
	}

	.contact__information--email,
	.contact__information--phone {
		justify-content: flex-start !important;
	}
}

/** -------------------------------------------------------------------------*
 *
 * Home Hero Section & Search
 *
 * --------------------------------------------------------------------------*/
.hero__section--home {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: calc(100vh - var(--nastri-header-height));
	display: flex;
	align-items: flex-end;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 1) 100%
	);
	pointer-events: none;
	z-index: 1;
}

.hero__section--home .hero__section--inner,
.hero__section--home .hero__section--wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
}

@media only screen and (min-width: 1366px) {
    .hero__section--inner {
        padding: 10rem 0;
    }
}

.hero__search--filter {
    max-width: 600px;
    margin: 0 auto;
}

.hero__content--search-only {
	margin-bottom: 1.5rem;
}

.hero__search--nav {
	display: flex;
    position: relative;
	align-items: center;
	gap: 1.75rem; /* 👈 tweak this (try 1.75rem–2.25rem) */
	justify-content: flex-start; /* left align */
    padding-left: 4rem;
    margin-bottom: 1.5rem;
}

.hero__search--nav-item {
    font-size: 1.5rem;
	letter-spacing: 0.04em;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    background-color: transparent;
    border: 0;
    outline: 0;
    transition: color .25s ease;
}

.hero__search--nav-item.is-active,
.hero__search--nav-item:hover {
    position: relative;
    color: #fff;
    background: none;
}

.hero__search--nav-item::before {
    content: '';
    display: block;
    position: absolute;
    width: 0%;
    height: 10px;
    background: var(--nastri-light-teal);
    top: calc(100% + 9px);
    left: 50%;
    transform: translateX(-50%) scaleX(.5);
    border-radius: 100px;
    z-index: 0;
    opacity: 0;
    transition: opacity .33s ease, transform .33s ease;
}

.hero__search--nav-item.is-active::before {
    width: 100%;
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.hero__search--input-wrap {
    width: 100%;
	margin: 0 auto;
	display: flex;
    position: relative;
	align-items: center;
	background: #fff;
	border-radius: 999px;
	padding: 6px;
	overflow: hidden;
    z-index: 1;
}

.hero__search--icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-left: 1rem;
	color: #666;
}

.hero__search--input {
	flex: 1;
	border: 0;
	outline: 0;
	padding: 1rem 0.875rem;
	background: transparent;
}

.hero__search--button {
    min-width: 140px;
    background: var(--nastri-teal);
	border-radius: 999px;
	padding-inline: 2rem;
	white-space: nowrap;
}
.hero__search--button:hover {
    background: var(--nastri-teal-dark);
}

@media screen and (max-width: 798px) {
    .hero__search--nav-item {
        font-size: 1.25rem;
    }
}

/** -------------------------------------------------------------------------*
 *
 * Content Image Grid Block (About Gallery & Image) Styling 
 *
 * --------------------------------------------------------------------------*/
.about__gallery > .about__gallery--thumbnail:first-child {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about__gallery > .about__gallery--thumbnail:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__content--listing__icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 139, 154, 0.05);
}

.about__content--listing__icon .bi::before,
.about__content--listing__icon [class^="bi-"]::before,
.about__content--listing__icon [class*=" bi-"]::before {
    font-size: 24px;
    color: var(--nastri-teal);
    line-height: 1;
}

@media only screen and (min-width: 480px) {
    .about__content--listing__desc {
        font-size: 1.6rem;
        line-height: 2.75rem;
    }
}

/** -------------------------------------------------------------------------*
 *
 * Property Listings Grid Slider Block
 *
 * --------------------------------------------------------------------------*/
.featured__section {
    background-color: #f5f3fb;
    background-position: left center;
    background-repeat: no-repeat;
}

.featured__section .container-fluid {
    position: relative;
    z-index: 2;
}

.featured__card--price {
	color: var(--nastri-text-muted);
}

.featured__content--desc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured__content--desc svg {
    flex: 0 0 auto;
}

.featured__section .featured__content--desc svg,
.featured__section .featured__content--desc .bi-geo-alt-fill {
    color: var(--nastri-plum);
}

.featured__content--desc-text {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.listing__page--section .featured__content--top {
    align-items: flex-start !important;
    gap: 1.2rem;
}

.featured__section .featured__content--top {
    align-items: flex-start;
    gap: 1.2rem;
}

.featured__section .featured__card--title,
.featured__section .featured__card--title a,
.listing__page--section .featured__card--title,
.listing__page--section .featured__card--title a {
    min-width: 0;
    overflow: hidden;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
    padding-top: 0.25rem;
}

.featured__section .featured__card--title,
.listing__page--section .featured__card--title {
    flex: 1 1 auto;
}

.listing__page--section .featured__card--price {
    display: inline-block;
    flex: 0 1 42%;
    min-width: 0;
    margin-top: 0;
    overflow: hidden;
    white-space: nowrap;
    text-align: right;
    text-overflow: ellipsis;
    line-height: 1.35;
}

.featured__section .featured__card--price {
    display: inline-block;
    flex: 0 0 auto;
    min-width: max-content;
    margin-top: 0;
    margin-left: auto;
    white-space: nowrap;
    text-align: right;
    line-height: 1.35;
}

.featured__info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 1rem;
    margin-top: 1.25rem;
}

.featured__info--items {
    display: block;
    min-height: 4.8rem;
}

.featured__info--divider {
    flex: 0 0 auto;
    width: 1px;
    height: 2rem;
    background: rgba(0, 0, 0, 0.12);
    align-self: center;
}

.featured__info--items svg {
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 2.5rem;
    display: block;
}

.featured__info--meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1;
}

.featured__info--value {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    color: var(--nastri-text);
}

.featured__info--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--nastri-text-muted);
}

.featured__info--text {
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--nastri-text-muted);
    white-space: nowrap;
}

.listing__details--section {
    padding-top: 6rem;
}

.listing__details--content__step .featured__info {
    margin-top: 4.2rem;
    padding-bottom: 0;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.listing__details--content__step .featured__info--items {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 0;
    padding: 0 3.2rem 0 0;
    margin-right: 3.2rem;
    position: relative;
}

.listing__details--content__step .featured__info--items::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 3.6rem;
    background: rgba(0, 0, 0, 0.14);
    transform: translateY(-50%);
}

.listing__details--content__step .featured__info--items:last-child {
    margin-right: 0;
    padding-right: 0;
}

.listing__details--content__step .featured__info--items:last-child::before {
    display: none;
}

.listing__details--content__step .featured__info--items svg {
    width: 5rem;
    height: 5rem;
    flex: 0 0 5rem;
}

.listing__details--content__step .featured__info--items > svg {
    margin-right: 1.2rem;
    color: var(--nastri-text-muted);
}

.listing__details--content__step .featured__info--meta {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.listing__details--content__step .featured__info--value {
    display: inline;
    font-size: 1.5rem;
    line-height: 1;
}

.listing__details--content__step .featured__info--text {
    display: inline;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .listing__details--section {
        padding-top: 3rem;
    }

    .listing__details--content__step .featured__info {
        margin-top: 3rem;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 2rem;
        row-gap: 2rem;
        max-width: 100%;
    }

    .listing__details--content__step .featured__info--items {
        width: 100%;
        display: flex;
        align-items: center;
        min-width: 0;
        margin-right: 0;
        padding-right: 0;
    }

    .listing__details--content__step .featured__info--items::before {
        display: none;
    }

    .listing__details--content__step .featured__info--meta {
        min-width: 0;
        flex-wrap: wrap;
    }

    .listing__details--content__step .featured__info--text,
    .listing__details--content__step .featured__info--value {
        white-space: normal;
        word-break: break-word;
    }
}

/** -------------------------------------------------------------------------*
 *
 * Single Property Page
 *
 * --------------------------------------------------------------------------*/
.listing__hero--slider {
    position: relative;
}

.listing__hero--section {
    overflow: hidden;
}

.listing__hero--slider .single-property-gallery-swiper {
    overflow: visible;
    padding: 2rem 0;
    background: var(--nastri-bg);
    position: relative;
    z-index: 1;
}

.listing__hero--slider .single-property-gallery-swiper.is-single-slide .swiper-wrapper {
    justify-content: center;
}

.listing__hero--slider .single-property-gallery-swiper.is-single-slide .swiper-slide {
    --single-card-width: 92%;
    --single-card-gap: 10px;
    width: var(--single-card-width);
}

@media only screen and (min-width: 576px) {
    .listing__hero--slider .single-property-gallery-swiper.is-single-slide .swiper-slide {
        --single-card-width: 74%;
        --single-card-gap: 12px;
    }
}

@media only screen and (min-width: 768px) {
    .listing__hero--slider .single-property-gallery-swiper.is-single-slide .swiper-slide {
        --single-card-width: 56%;
        --single-card-gap: 14px;
    }
}

@media only screen and (min-width: 992px) {
    .listing__hero--slider .single-property-gallery-swiper.is-single-slide .swiper-slide {
        --single-card-width: 46%;
        --single-card-gap: 16px;
    }
}

@media only screen and (min-width: 1200px) {
    .listing__hero--slider .single-property-gallery-swiper.is-single-slide .swiper-slide {
        --single-card-width: 40%;
        --single-card-gap: 18px;
    }
}

.listing__hero--slider .single-property-gallery-swiper.is-single-slide ~ .single-property-gallery-nav {
    display: none;
}

.listing__hero--slider .single-property-gallery-swiper.is-single-slide::before,
.listing__hero--slider .single-property-gallery-swiper.is-single-slide::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--single-card-width, 40%);
    aspect-ratio: 5 / 3;
    border-radius: 1.6rem;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: -1;
}

.listing__hero--slider .single-property-gallery-swiper.is-single-slide::before {
    left: calc(50% - (var(--single-card-width, 40%) / 2) - var(--single-card-gap, 18px) - var(--single-card-width, 40%));
}

.listing__hero--slider .single-property-gallery-swiper.is-single-slide::after {
    left: calc(50% + (var(--single-card-width, 40%) / 2) + var(--single-card-gap, 18px));
}

.listing__hero--slider__items {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    border-radius: 1.6rem;
}

.listing__hero--slider__media {
    width: 100%;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.listing__hero--slider__items .single-property-gallery-lightbox {
    display: block;
    width: 100%;
    height: 100%;
}

.listing__small--hero__slider {
    display: none;
}

.single-property-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 6;
    transform: translateY(-50%);
    width: 4.8rem;
    height: 4.8rem;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 32, 56, 0.5);
    color: var(--color-white);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

.single-property-gallery-prev {
    left: 1.2rem;
}

.single-property-gallery-next {
    right: 1.2rem;
}

.single-property-gallery-nav:hover,
.single-property-gallery-nav:focus-visible {
    background: rgba(25, 32, 56, 1);
}

/* 4:3 aspect ratio for property slider thumbnails */
.listing__small--hero__slider--items {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 1rem; /* optional */
}

.listing__small--hero__slider--items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-property-swipe-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(3.2rem, 0, 0) scale(0.82);
    transform-origin: center center;
    will-change: transform, opacity;
}

.single-property-swipe-hint__inner {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    border-radius: 1rem;
    background: rgba(256, 256, 256, 0.1);
    color: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(8px);
}

.single-property-swipe-hint__icon {
    font-size: 3rem;
    line-height: 1;
}

.single-property-swipe-hint__label {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    /* text-transform: uppercase; */
}

.single-property-swipe-hint.is-active {
    animation: singlePropertySwipeHint 2.3s forwards;
}

@keyframes singlePropertySwipeHint {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translate3d(3.2rem, 0, 0) scale(0.82);
        animation-timing-function: cubic-bezier(0.22, 0.8, 0.2, 1);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) translate3d(3.2rem, 0, 0) scale(1);
    }
    16% {
        opacity: 1;
        transform: translate(-50%, -50%) translate3d(3.2rem, 0, 0) scale(1);
        animation-timing-function: cubic-bezier(0.18, 0.84, 0.28, 1);
    }
    62% {
        opacity: 0;
        transform: translate(-50%, -50%) translate3d(-4rem, 0, 0) scale(1);
        animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
    }
    69% {
        opacity: 0;
        transform: translate(-50%, -50%) translate3d(-4rem, 0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translate3d(-4rem, 0, 0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .single-property-swipe-hint.is-active {
        animation: none;
        opacity: 1;
    }
}

 .apartment__info--icon svg {
	width: 2rem;
	height: 2rem;
	display: block;
	color: currentColor;
}

.apartment__info--icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.admin__profile--thumbnail img,
.admin__profile--thumbnail__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
}

.admin__profile--social__icon {
	padding: 0.75rem;
	border: 1px solid var(--nastri-border);
}

.properties__amenities--mark__icon {
	width: 16px;
	font-size: 24px;
    color: var(--nastri-teal);
    line-height: 1;
}

@media only screen and (max-width: 575px) {
    .properties__amenities--wrapper {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap !important;
        gap: 2rem;
        width: 100%;
    }

    .properties__amenities--step {
        width: 100%;
        min-width: 0;
        flex: 1 1 100%;
        margin: 0;
        padding: 0;
    }

    .properties__amenities--list {
        width: 100%;
        min-width: 0;
    }
}

/* -------------------------------------------------------------------------
   Single Property - Stat Row
------------------------------------------------------------------------- */
.property-stats {
	margin-top: 3.2rem;
	padding: 0 0 2.6rem;
	border-bottom: 1px solid #d9d9d9;
}

.property-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
}

.property-stats__item {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 0 4rem;
	min-height: 13rem;
	position: relative;
}

.property-stats__item:first-child {
	padding-left: 0;
}

.property-stats__item:last-child {
	padding-right: 0;
}

.property-stats__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 12rem;
	background: #d6d6d6;
}

.property-stats__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 7.4rem;
	height: 7.4rem;
	flex: 0 0 7.4rem;
	color: #2f3f4a;
}

.property-stats__icon svg {
	display: block;
	width: 6rem;
	height: 6rem;
	stroke: currentColor;
}

.property-stats__text {
	display: inline-block;
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: 400;
	color: #4a4a4a;
	white-space: nowrap;
}

@media only screen and (max-width: 991px) {
	.property-stats__grid {
		grid-template-columns: 1fr;
	}

	.property-stats__item {
		padding: 2rem 0;
		min-height: auto;
	}

	.property-stats__item:not(:last-child)::after {
		top: auto;
		right: auto;
		left: 0;
		bottom: 0;
		transform: none;
		width: 100%;
		height: 1px;
	}
}

@media only screen and (max-width: 575px) {
	.property-stats__item {
		gap: 1.6rem;
	}

	.property-stats__icon {
		width: 5.6rem;
		height: 5.6rem;
		flex-basis: 5.6rem;
	}

	.property-stats__icon svg {
		width: 4.4rem;
		height: 4.4rem;
	}

	.property-stats__text {
		font-size: 2rem;
		white-space: normal;
	}
}

.listing__details--location__header .details__btn {
	padding: 0 5rem;
}

.listing__details--location__header--left {
    display: flex;
    align-items: center;
}

.listing__details--location__map {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1.2rem;
    overflow: hidden;
    position: relative;
}

.listing__details--location__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0;
}

.listing__details--location__text i {
    color: var(--nastri-plum);
}

.admin__profile--thumbnail {
    width: min(21rem, 60%);
    aspect-ratio: 1;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
}

.listing__small--hero__slider .swiper__nav--btn {
    background: var(--nastri-slider-nav-surface);
    color: var(--nastri-teal);
    border: 1px solid transparent;
    box-shadow: 0 8px 24px rgba(20, 29, 44, 0.08);
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.listing__small--hero__slider .swiper__nav--btn:not(.swiper-button-disabled):hover {
    background: var(--nastri-teal);
    color: var(--nastri-slider-nav-surface);
    border-color: var(--nastri-teal);
}

.listing__small--hero__slider .swiper__nav--btn.swiper-button-disabled {
    background: var(--nastri-slider-nav-surface);
    color: var(--nastri-slider-nav-gray-soft);
    border-color: transparent;
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.single-property-cta .call__action--inner {
    gap: 2rem;
	color: #fff;
	background-color: var(--nastri-cta-bg);
}

.single-property-cta .call__action--desc {
	max-width: 580px;
	margin: 1rem 0 0;
	color: #fff;
}

.global-call-to-action {
    margin-bottom: 5rem;
}

.global-call-to-action .call__action--inner {
    color: #fff;
}

.global-call-to-action .call__action--title,
.global-call-to-action .call__action--desc,
.global-call-to-action .call__action--desc p {
    color: #fff;
}

.global-call-to-action .call__action--desc p:last-child {
    margin-bottom: 0;
}

.global-call-to-action .call__action--btn.global-call-to-action__button--custom {
    background: var(--nastri-global-cta-button-bg, var(--nastri-button-primary-bg));
    border-color: var(--nastri-global-cta-button-border, var(--nastri-button-primary-bg));
    color: var(--nastri-global-cta-button-text, var(--nastri-button-primary-text));
}

.global-call-to-action .call__action--btn.global-call-to-action__button--custom:hover {
    opacity: 0.92;
    color: var(--nastri-global-cta-button-text, var(--nastri-button-primary-text));
}

.global-call-to-action .call__action--right {
    gap: 3rem;
}

.global-call-to-action .call__action--info {
    gap: 1.4rem;
    white-space: nowrap;
}

.global-call-to-action__phone-icon {
    flex: 0 0 auto;
    font-size: 3rem;
    line-height: 1;
    color: var(--nastri-plum);
}

.global-call-to-action .call__action--info__text {
    margin: 0;
}

.global-call-to-action .call__action--info__text span,
.global-call-to-action .call__action--info__text a {
    color: #fff;
}

.global-call-to-action .call__action--info__text span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.global-call-to-action .call__action--info__text a:hover {
    color: var(--nastri-light-teal);
}

.alert-contact-banner {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.alert-contact-banner .call__action--inner {
    gap: 3rem;
    padding: 4rem 4.5rem;
    color: #fff;
    background: var(--nastri-cta-bg);
    border: 1px solid rgba(20, 44, 60, 0.08);
    border-radius: 1.2rem;
}

.alert-contact-banner .call_action__left {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1 1 auto;
}

.alert-contact-banner__alert-icon {
    flex: 0 0 auto;
    font-size: 11.8rem;
    line-height: 1;
    color: #ffcc00;
}

.alert-contact-banner__content {
    max-width: 70rem;
}

.alert-contact-banner .call__action--title,
.alert-contact-banner .call__action--desc {
    color: #fff;
}

.alert-contact-banner .call__action--desc {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.alert-contact-banner__alert-list {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.5rem;
    line-height: 1.7;
}

.alert-contact-banner__alert-list i {
    margin-right: 0.8rem;
}

.alert-contact-banner .call__action--right {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1.8rem;
    flex: 0 0 auto;
}

.alert-contact-banner .call__action--info {
    gap: 1.4rem;
    white-space: nowrap;
}

.alert-contact-banner__contact-icon {
    flex: 0 0 auto;
    font-size: 3rem;
    line-height: 1;
}

.alert-contact-banner__contact-icon--call {
    color: #ffcc00;
}

.alert-contact-banner__contact-icon--message {
    color: var(--nastri-teal);
}

.alert-contact-banner .call__action--info__text span,
.alert-contact-banner .call__action--info__text a {
    color: #fff;
}

.alert-contact-banner .call__action--info__text a:hover {
    color: #ffcc00;
}

.split-content-form {
    padding-top: 3rem;
}

.split-content-form__thumbnail img {
    width: 100%;
    display: block;
    border-radius: 1.2rem;
}

.split-content-form__intro .section__heading--title {
    margin-bottom: 2.2rem;
}

.split-content-form__body p:last-child,
.split-content-form__notice-body p:last-child {
    margin-bottom: 0;
}

.split-content-form__step-title {
    position: relative;
    padding-left: 1.6rem;
}

.split-content-form__step-title::before {
    content: "";
    position: absolute;
    top: 0.15em;
    left: 0;
    width: 2px;
    height: 1em;
    background: var(--nastri-plum);
}

.split-content-form__amenities .properties__amenities--step {
    width: 100%;
}

.split-content-form__links-block .blog__content--title {
    margin-bottom: 2rem;
}

.split-content-form__form-shell {
    height: 100%;
}

.split-content-form__form-panel {
    padding: 4rem;
    background: var(--nastri-surface-alt);
    border-radius: 1.2rem;
}

.split-content-form__form-title {
    margin-bottom: 1.4rem;
    color: var(--nastri-text);
    font-size: clamp(2.8rem, 2.8vw, 3.8rem);
    line-height: 1.1;
}

.split-content-form__form-note {
    margin-bottom: 2.8rem;
    color: var(--nastri-text-muted);
    font-size: 1.5rem;
    line-height: 1.7;
}

.split-content-form__form-note p:last-child {
    margin-bottom: 0;
}

.split-content-form__form-note .ninja-forms-req-symbol {
    color: var(--nastri-plum);
}

.split-content-form__form .nf-form-content {
    padding: 0;
}

.split-content-form__form .nf-form-fields-required {
    display: none;
}

.split-content-form__form .nf-form-layout form > div,
.split-content-form__form .nf-form-content nf-fields-wrap {
    display: block;
}

.split-content-form__form .nf-form-content nf-fields-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.split-content-form__form .nf-form-content nf-field {
    display: contents;
}

.split-content-form__form .nf-form-content {
    display: flex;
    flex-wrap: wrap;
    --bs-gutter-x: 1.6rem;
    --bs-gutter-y: 0;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.split-content-form__form .nf-field-container {
    width: 100%;
    margin-bottom: 2rem;
    margin-top: var(--bs-gutter-y);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    flex: 0 0 auto;
}

.split-content-form__form .nf-field-container.html-container,
.split-content-form__form .nf-field-container.textarea-container,
.split-content-form__form .nf-field-container.submit-container,
.split-content-form__form .nf-field-container.hr-container,
.split-content-form__form .nf-field-container.address-container {
    width: 100%;
}

.split-content-form__form .nf-field-container.html-container {
    margin-top: 1rem;
    margin-bottom: 1.6rem;
}

.split-content-form__form .nf-field-container.html-container:first-child {
    margin-top: 0;
}

.split-content-form__form .nf-field-container.html-container .nf-field-label,
.split-content-form__form .nf-field-container.html-container .nf-after-field,
.split-content-form__form .nf-field-container.html-container .nf-input-limit,
.split-content-form__form .nf-field-container.html-container .nf-error-wrap {
    display: none !important;
}

.split-content-form__form .nf-field-container.html-container .nf-field-element p,
.split-content-form__form .nf-field-container.html-container .nf-field-element span {
    margin-top: 1rem;
    color: #c6c7cb !important;
    background: transparent !important;
    font-family: inherit !important;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
}

.split-content-form__form .nf-field-container.hr-container {
    display: none;
}

.split-content-form__form .nf-field-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.split-content-form__form .nf-field-element input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.split-content-form__form .nf-field-element select,
.split-content-form__form .nf-field-element textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #dfe3ea;
    color: var(--nastri-text);
    border-radius: 0.8rem;
    box-shadow: none;
}

.split-content-form__form .nf-field-element input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.split-content-form__form .nf-field-element select {
    min-height: 5.3rem;
    padding: 0 1.6rem;
}

.split-content-form__form .nf-field-element select {
    padding-right: 4.8rem;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23222025' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: calc(100% - 1.8rem) 50%;
    background-size: 1.4rem 0.8rem;
    background-repeat: no-repeat;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.split-content-form__form .nf-field-element select.is-placeholder {
    color: #b6b8bf;
}

.split-content-form__form .nf-field-element select.has-value,
.split-content-form__form .nf-field-element select option {
    color: var(--nastri-text);
}

.split-content-form__form .nf-field-element select option:first-child {
    color: #b6b8bf;
}

.split-content-form__form .nf-field-element textarea {
    min-height: 18rem;
    padding: 1.6rem;
    resize: vertical;
}

.split-content-form__form .nf-field-element input::placeholder,
.split-content-form__form .nf-field-element textarea::placeholder {
    color: #b6b8bf;
}

.split-content-form__form .nf-field-element input:focus,
.split-content-form__form .nf-field-element select:focus,
.split-content-form__form .nf-field-element textarea:focus {
    background: #fff;
    border-color: var(--nastri-teal);
    box-shadow: 0 0 0 3px rgba(0, 139, 154, 0.12);
    outline: none;
}

.split-content-form__form .nf-help {
    display: none;
}

.split-content-form__form .submit-wrap {
    margin-top: 0.8rem;
}

.split-content-form__form .submit-wrap .nf-field-element {
    display: block;
}

.split-content-form__form .submit-wrap input[type="submit"] {
    width: auto;
    min-width: 18rem;
    padding: 0 3.2rem;
    border: 0;
    border-radius: 0.8rem;
    background: var(--nastri-button-primary-bg);
    color: var(--nastri-button-primary-text);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.split-content-form__form .submit-wrap input[type="submit"]:hover,
.split-content-form__form .submit-wrap input[type="submit"]:focus {
    background: #8b004f;
    color: #fff;
}

.split-content-form__form .submit-wrap input[type="submit"]:disabled,
.split-content-form__form .submit-wrap input[type="submit"][aria-disabled="true"] {
    opacity: 0.6;
    cursor: not-allowed;
}

.split-content-form__form .nf-error-msg,
.split-content-form__form .nf-form-errors {
    color: var(--nastri-plum);
    font-size: 1.3rem;
    line-height: 1.5;
}

.split-content-form__form .nf-error-wrap {
    margin-top: 0.7rem;
}

.split-content-form__form .nf-fail .nf-field-element input,
.split-content-form__form .nf-fail .nf-field-element textarea,
.split-content-form__form .nf-fail .nf-field-element select {
    color: var(--nastri-text);
    border-color: var(--nastri-plum);
    box-shadow: 0 0 0 3px rgba(165, 0, 95, 0.12);
}

.split-content-form__form .nf-response-msg {
    margin-bottom: 2rem;
    padding: 1.4rem 1.6rem;
    border-radius: 0.8rem;
    background: rgba(0, 139, 154, 0.08);
    color: var(--nastri-teal-dark);
    font-size: 1.4rem;
    line-height: 1.6;
}

.content-form-showcase__details {
    gap: 3rem;
    align-items: flex-start !important;
    margin-bottom: 4rem;
}

.content-form-showcase__stat {
    flex: 0 0 auto;
}

.content-form-showcase__checklist {
    flex: 1 1 auto;
}

.content-form-showcase__checklist .living__details--content__list.about-feature__checklist-item {
    font-size: 1.5rem;
}

.content-form-showcase__checklist .living__details--content__list.about-feature__checklist-item span {
    font-size: 2.5rem;
    color: var(--nastri-teal);
}

.content-form-showcase__pagination.swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.2rem;
    width: 100%;
}

.content-form-showcase__pagination .swiper-pagination-bullet {
    margin: 0 !important;
}

.content-form-showcase__testimonials .testimonial__card {
    background: #fff;
    box-shadow: none !important;
    border: 1px solid var(--nastri-border-alt);
}

@media only screen and (min-width: 768px) {
    .split-content-form__form .nf-field-container.col-md-6 {
        width: 50%;
    }
    .split-content-form__form .nf-field-container.col-md-4 {
        width: 33.33%;
    }
}

@media only screen and (max-width: 768px) {
    .split-content-form__form .submit-wrap input[type="submit"] {
        width: 100%;
        max-width: 36rem;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 991px) {
    .resource-sidebar-layout__sidebar--sticky {
        position: static;
        top: auto;
    }

    .single-property-cta .call__action--content {
        align-self: center;
    }

    .single-property-cta .call__action--inner {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .single-property-cta .call__action--right {
        width: 100%;
        flex-flow: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .alert-contact-banner .call__action--inner {
        padding: 3rem;
        flex-direction: column;
        align-items: flex-start !important;
    }

    .alert-contact-banner .call_action__left {
        width: 100%;
        gap: 2rem;
        align-items: flex-start;
    }

    .split-content-form__form-panel {
        padding: 3rem;
    }

    .split-content-form__form .nf-field-container.col-md-6 {
        width: 100%;
    }

    .content-form-showcase__details {
        gap: 2.4rem;
    }
}

@media only screen and (max-width: 767px) {
    .alert-contact-banner {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    .alert-contact-banner .call__action--inner {
        padding: 2.6rem;
        gap: 2.4rem;
    }

    .alert-contact-banner .call_action__left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .alert-contact-banner__alert-icon {
        font-size: 7.2rem;
    }

    .alert-contact-banner__content {
        max-width: none;
    }

    .alert-contact-banner__alert-list {
        text-align: center;
    }

    .alert-contact-banner .call__action--right {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: stretch !important;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .alert-contact-banner .call__action--info {
        justify-content: center;
        min-width: 17rem;
        padding: 1.4rem 1.6rem;
        border-radius: 1rem;
        /* background: rgba(255, 255, 255, 0.06); */
    }

    .split-content-form {
        padding-top: 4rem;
    }

    .split-content-form__form-panel {
        padding: 2.4rem;
    }

    .content-form-showcase__details {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 2rem;
    }
}

.listing__details--video__thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.5rem; /* optional, matches your UI */
}

.listing__details--video__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/** -------------------------------------------------------------------------*
 *
 * Listings List Block
 *
 * --------------------------------------------------------------------------*/
.listing__featured--info__icon, .listing__featured--info__icon svg {
	width: 20px;
	height: 20px;
}

.property-listings__section {
    background-color: #ffffff;
}

.property-listings__section .section__heading--subtitle {
    color: var(--nastri-teal);
}

.property-listings__section .featured__card--list {
    align-items: stretch !important;
    padding: 1.9rem;
    border-radius: 1.4rem;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(34, 32, 37, 0.08);
    gap: 2.4rem;
}

.property-listings__section .listing__featured--thumbnail,
.listing__page--section .listing__featured--thumbnail {
    width: 100%;
    max-width: 18.4rem;
    flex: 0 0 18.4rem;
    display: flex;
}

.property-listings__section .featured__card--list,
.listing__page--section .featured__card--list {
    align-items: stretch !important;
    gap: 2.4rem;
}

.property-listings__section .listing__featured--thumbnail .media,
.property-listings__section .listing__featured--thumbnail .featured__thumbnail--link,
.listing__page--section .listing__featured--thumbnail .media,
.listing__page--section .listing__featured--thumbnail .featured__thumbnail--link {
    width: 100%;
    height: 100%;
    display: block;
}

.property-listings__section .listing__featured--thumbnail .featured__thumbnail--img,
.listing__page--section .listing__featured--thumbnail .featured__thumbnail--img {
    width: 100%;
    height: 100%;
    min-height: 17.8rem;
    object-fit: cover;
    border-radius: 1rem;
}

.property-listings__section .listing__featured--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
}

.property-listings__section .listing__featured--content,
.listing__page--section .listing__featured--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
}

.property-listings__section .featured__content--list__top,
.listing__page--section .featured__content--list__top {
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.2rem;
}

.featured__section .featured__card--title,
.property-listings__section .featured__card--title,
.listing__page--section .featured__card--title {
    font-size: 1.8rem;
    line-height: 1.35;
    color: var(--nastri-heading);
}

.featured__section .featured__card--price,
.property-listings__section .featured__card--price,
.listing__page--section .featured__card--price {
    display: inline-block;
    margin-top: 0;
    color: #4d4d4d;
    font-size: 1.7rem;
    line-height: 1.75;
    font-weight: 600;
}

.property-listings__section .featured__list--action,
.listing__page--section .featured__list--action {
    gap: 1rem;
}

.property-listings__section .featured__list--action > .featured__share--btn__list:first-child,
.listing__page--section .featured__list--action > .featured__share--btn__list:first-child {
    display: none;
}

.property-listings__section .featured__share--btn,
.listing__page--section .featured__share--btn {
    width: 3.8rem;
    height: 3.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    background: #f5f7fc;
    color: var(--nastri-heading);
}

.property-listings__section .featured__share--btn:hover,
.listing__page--section .featured__share--btn:hover {
    background: #e8edf6;
    color: var(--nastri-heading);
}

.property-listings__section .listing__featured--info,
.listing__page--section .listing__featured--info {
    padding: 1.4rem 0 1.1rem;
    margin-top: 0;
}

.property-listings__section .listing__featured--info__items,
.listing__page--section .listing__featured--info__items {
    gap: 0.8rem;
    margin-right: 1.6rem;
    padding-right: 1.6rem;
}

.property-listings__section .listing__featured--info__items::before,
.listing__page--section .listing__featured--info__items::before {
    background: #d8dbe3;
}

.property-listings__section .listing__featured--info__text,
.listing__page--section .listing__featured--info__text {
    color: #5b5b63;
    font-weight: 500;
    font-size: 1.5rem;
}

.property-listings__section .featured__content--desc.listing__style,
.listing__page--section .featured__content--desc.listing__style {
    padding-top: 1.1rem;
    border-top-color: #d8dbe3;
    color: #5b5b63;
}

.property-listings__section .featured__content--desc.listing__style svg,
.property-listings__section .featured__content--desc.listing__style .bi-geo-alt-fill,
.listing__page--section .featured__content--desc.listing__style svg,
.listing__page--section .featured__content--desc.listing__style .bi-geo-alt-fill {
    color: var(--nastri-plum);
}

.featured__content--desc i {
    color: var(--nastri-plum);
}

.property-listings__section .listing__details--btn,
.listing__page--section .listing__details--btn {
    min-width: 11rem;
    height: 4.4rem;
    line-height: 4.4rem;
    padding: 0 1.8rem;
    border-radius: 0.6rem;
    background: #bfe1e5;
    color: var(--nastri-teal);
    font-size: 1.5rem;
    font-weight: 600;
}

.property-listings__section .listing__details--btn:hover,
.listing__page--section .listing__details--btn:hover {
    background: var(--nastri-teal);
    color: #ffffff;
}

@media only screen and (min-width: 1200px) {
    .property-listings__section .featured__content--desc.listing__style,
    .listing__page--section .featured__content--desc.listing__style {
        padding-top: 1.1rem;
    }
}

.listing__page--section .page__pagination--wrapper {
    gap: 1rem;
    flex-wrap: wrap;
}

.listing__page--section .page__pagination--list {
    display: inline-flex;
}

.listing__page--section .page__pagination--wrapper .page-numbers {
    min-width: 4.6rem;
    height: 4.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.4rem;
    border-radius: 50%;
    border: 0.1rem solid #e4e7ef;
    background: #ffffff;
    color: var(--nastri-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.listing__page--section .page__pagination--wrapper .page-numbers:hover,
.listing__page--section .page__pagination--wrapper .page-numbers.current,
.listing__page--section .page__pagination--wrapper .page__pagination--link.active {
    background: var(--nastri-teal);
    border-color: var(--nastri-teal);
    color: #ffffff;
}

.listing__page--section .page__pagination--wrapper .page-numbers.prev,
.listing__page--section .page__pagination--wrapper .page-numbers.next {
    min-width: 5rem;
    padding: 0 1.2rem;
}

.listing__page--section .page__pagination--wrapper .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .property-listings__section .featured__card--list,
    .listing__page--section .featured__card--list {
        gap: 1.8rem;
        padding: 1.6rem;
    }

    .property-listings__section .listing__featured--thumbnail,
    .listing__page--section .listing__featured--thumbnail {
        max-width: none;
        flex-basis: auto;
        width: 100%;
    }

    .property-listings__section .listing__featured--thumbnail .featured__thumbnail--img,
    .listing__page--section .listing__featured--thumbnail .featured__thumbnail--img {
        min-height: 22rem;
    }

    .property-listings__section .listing__details--btn,
    .listing__page--section .listing__details--btn {
        width: 100%;
        max-width: 36rem;
        margin: 0 auto;
    }
}

/** -------------------------------------------------------------------------*
 *
 * Listings Sidebar
 *
 * --------------------------------------------------------------------------*/
.widget__thumbnail--subtitle svg {
    color: var(--nastri-light-teal);
}

/** -------------------------------------------------------------------------*
 *
 * Testimonials Slider
 *
 * --------------------------------------------------------------------------*/
.testimonials-slider__section .swiper-slide {
    height: auto;
}

.testimonials-slider__section .testimonial__card {
    height: 100%;
    min-height: 34rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.6rem 2.8rem 2.8rem;
    border-radius: 1.8rem;
    box-shadow: 0 18px 44px rgba(20, 29, 44, 0.10);
}

.testimonials-slider__section .testimonial__card--top {
    align-items: flex-start;
    margin-bottom: 1.8rem;
}

.testimonials-slider__section .testimonial__author--thumbnail {
    width: 6.4rem;
    height: 6.4rem;
    min-width: 6.4rem;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonials-slider__section .testimonial__author--thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonials-slider__section .testimonial__author--thumbnail.has-initials {
    overflow: hidden;
}

.testimonials-slider__section .testimonial__author--thumbnail.has-initials .testimonial__author--initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.testimonials-slider__section .testimonial__author--name {
    margin-bottom: 0.3rem;
}

.testimonials-slider__section .testimonial__author--subtitle {
    color: var(--nastri-plum);
    font-weight: 500;
}

.testimonials-slider__section .testimonial__icon {
    color: var(--nastri-vibrant-plum);
    flex-shrink: 0;
    line-height: 0;
}

.testimonials-slider__section .testimonial__icon svg {
    width: 6.1rem;
    height: auto;
    display: block;
}

.testimonials-slider__section .testimonial__desc {
    margin: 0;
    color: #343641;
    line-height: 1.95;
}

.testimonials-slider__section .swiper__nav--btn {
    background: var(--nastri-slider-nav-surface);
    color: var(--nastri-slider-nav-gray);
    border: 1px solid transparent;
    box-shadow: 0 8px 24px rgba(20, 29, 44, 0.08);
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.testimonials-slider__section .swiper__nav--btn:not(.swiper-button-disabled):hover {
    background: var(--nastri-slider-nav-gray);
    color: var(--nastri-slider-nav-surface);
    border-color: var(--nastri-slider-nav-gray);
}

.testimonials-slider__section .swiper__nav--btn.swiper-button-disabled {
    background: var(--nastri-slider-nav-surface);
    color: var(--nastri-slider-nav-gray-soft);
    border-color: transparent;
    opacity: 1;
    cursor: default;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(20, 29, 44, 0.05);
}

@media only screen and (max-width: 767px) {
    .testimonials-slider__section .testimonial__card {
        min-height: 0;
        padding: 2.2rem 2rem 2.4rem;
    }

    .testimonials-slider__section .testimonial__author--thumbnail {
        width: 5.8rem;
        height: 5.8rem;
        min-width: 5.8rem;
    }

    .testimonials-slider__section .testimonial__author--thumbnail.has-initials .testimonial__author--initial {
        font-size: 3rem;
    }
}

.guide-cards__section {
    background: #fff;
}

.guide-cards__section .section__heading {
    max-width: 76rem;
    margin-left: auto;
    margin-right: auto;
}

.guide-cards__section .section__heading--desc {
    max-width: 72rem;
    margin: 0 auto;
    color: var(--nastri-text-muted);
    font-size: 2rem;
    line-height: 1.6;
}

.guide-cards__box {
    min-height: 100%;
    padding: 4rem;
    box-shadow: 0 16px 44px rgba(34, 32, 37, 0.12);
}

.guide-cards__section .commercia__categories--box:hover {
    background: var(--nastri-surface);
    transform: translateY(-8px);
}

.guide-cards__section .commercia__categories--box:hover .commercia__categories--title {
    color: var(--nastri-heading);
}

.guide-cards__section .commercia__categories--box:hover .commercia__categories--desc {
    color: var(--nastri-text-muted);
}

.guide-cards__section .commercia__categories--box:hover .guide-cards__link {
    color: var(--nastri-heading);
}

.guide-cards__section .commercia__categories--box:hover .guide-cards__icon {
    background: var(--guide-card-icon-bg, rgba(0, 139, 154, 0.08));
    color: var(--guide-card-icon-color, var(--nastri-teal));
}

.guide-cards__icon {
    width: 8.8rem;
    height: 8.8rem;
    margin-bottom: 3.2rem;
    background: var(--guide-card-icon-bg, rgba(0, 139, 154, 0.08));
    color: var(--guide-card-icon-color, var(--nastri-teal));
}

.guide-cards__icon i {
    font-size: 3.5rem;
    line-height: 1;
}

.guide-cards__section .commercia__categories--title {
    margin-bottom: 2rem;
    color: var(--nastri-heading);
}

.guide-cards__desc {
    max-width: 31rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    color: var(--nastri-text-muted);
}

.guide-cards__desc p:last-child {
    margin-bottom: 0;
}

.guide-cards__link {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 3rem;
    color: var(--nastri-heading);
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.guide-cards__link:hover {
    color: var(--nastri-plum);
    transform: translateX(2px);
}

.guide-cards__link i {
    font-size: 1.4rem;
}

@media only screen and (max-width: 991px) {
    .guide-cards__section .categories__inner {
        justify-content: center;
    }

    .guide-cards__section .col-md-6,
    .guide-cards__section .col-sm-6 {
        width: 100%;
        max-width: 68rem;
        margin-left: auto;
        margin-right: auto;
    }

    /* .guide-cards__box {
        padding: 4.2rem 3rem 3.8rem;
    } */
}

@media only screen and (max-width: 767px) {
    .guide-cards__section .section__heading--title {
        font-size: 3.2rem;
    }

    .guide-cards__section .section__heading--desc {
        font-size: 1.7rem;
    }

    /* .guide-cards__box {
        padding: 3.6rem 2.4rem 3.2rem;
    } */

    .guide-cards__icon {
        width: 7.6rem;
        height: 7.6rem;
        margin-bottom: 2.6rem;
    }

    .guide-cards__icon i {
        font-size: 3rem;
    }
}

.cta-background__section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-background__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-background__section .container {
    position: relative;
    z-index: 2;
    width: 100%;
	padding: 5rem 0;
}

.cta-background__inner {
    min-height: var(--cta-section-min-height, 620px);
    display: flex;
    flex-direction: column;
    justify-content: var(--cta-content-justify, flex-start);
    padding: 0 6.6rem 8.8rem;
}

.cta-background__content {
    max-width: 72rem;
    color: #fff;
}

.cta-background__section .section__heading--subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-background__section .section__heading--subtitle i {
    color: var(--nastri-light-teal);
}

.cta-background__title {
    margin: 0 0 2.4rem;
    color: #fff;
    /* font-size: clamp(4.4rem, 5vw, 6.4rem); */
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 600px;
}

.cta-background__desc {
    max-width: 68rem;
    margin-bottom: 3.4rem;
    color: rgba(255, 255, 255, 0.94);
    font-size: 2rem;
    line-height: 1.65;
}

.cta-background__desc p {
    color: rgba(255, 255, 255, 0.94);
}

.cta-background__desc p:last-child {
    margin-bottom: 0;
}

.cta-background__button .nastri-btn--secondary {
    min-width: 27.6rem;
    justify-content: center;
    background: var(--nastri-teal);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.cta-background__button .nastri-btn--secondary:hover {
    background: var(--nastri-teal-dark);
}

@media only screen and (max-width: 991px) {
    .cta-background__inner {
        width: 100%;
        padding: 0 0 7.2rem;
    }

    .cta-background__content {
        max-width: 60rem;
    }

    /* .cta-background__title {
        font-size: 4.8rem;
    } */
}

@media only screen and (max-width: 767px) {
    .cta-background__inner {
        width: 100%;
        min-height: auto;
        padding: 0 2rem 5.8rem;
    }

    /* .cta-background__title {
        font-size: 3.6rem;
        max-width: 100%;
    } */

    .cta-background__desc {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .cta-background__button .nastri-btn--secondary {
        min-width: 0;
        width: 100%;
        max-width: 32rem;
        padding: 0 2.4rem;
    }
}

.contact-map__section {
    background: #fff;
}

.contact-map__wrapper {
    margin: 0;
}

.contact-map__desc p:last-child {
    margin-bottom: 0;
}

.contact-map__items {
    margin-bottom: 2.4rem;
}

.contact-map__section .contact__us--info__list {
    margin-bottom: 0.2rem;
    background: transparent;
    box-shadow: none;
    border: 0;
}

.contact-map__section .contact__us--info__list:hover {
    background: transparent;
    box-shadow: none;
}

.contact-map__section .contact__us--info__list:hover .contact__us--info__title,
.contact-map__section .contact__us--info__list:hover .contact__us--info__text,
.contact-map__section .contact__us--info__list:hover .contact__us--info__text a {
    color: inherit;
}

.contact-map__section .contact__us--info__list:hover .contact__us--info__icon {
    color: var(--nastri-plum);
}

.contact-map__section .contact__us--info__icon {
    background: transparent;
    color: var(--nastri-plum);
}

.contact-map__section .contact__us--info__icon svg {
    width: 5.2rem;
    height: 5.2rem;
}

.contact-map__section .contact__us--info__icon i {
    font-size: 5.2rem;
    line-height: 1;
}

.contact-map__section .contact__us--info__title {
    margin-bottom: 0.8rem;
}

.contact-map__section .contact__us--info__text,
.contact-map__section .contact__us--info__text p,
.contact-map__section .contact__us--info__text a {
    margin: 0;
    text-decoration: none;
}

.contact-map__item-link {
    display: inline-flex;
    margin-top: 0.5rem;
    color: var(--nastri-plum);
    font-weight: 600;
    text-decoration: none;
}

.contact-map__item-link:hover {
    color: var(--nastri-vibrant-plum);
}

.contact-map__button .nastri-btn--secondary {
    min-width: 24rem;
    justify-content: center;
}

.contact-map__map {
    overflow: hidden;
}

.contact-map__map iframe {
    min-height: var(--contact-map-height, 320px);
}

@media only screen and (min-width: 992px) {
    .contact__us--info__list {
        gap: 3rem;
        padding: 2.5rem 2.5rem 2.5rem 0;
    }
}

@media only screen and (max-width: 767px) {
    .contact-map__section .contact__us--info__icon svg,
    .contact-map__section .contact__us--info__icon i {
        width: 4.2rem;
        height: 4.2rem;
        font-size: 4.2rem;
    }

    .contact-map__button .nastri-btn--secondary {
        width: 100%;
        min-width: 0;
	    max-width: 32rem;
        display: block;
        margin: 0 auto;
    }
}

.consult-cta-banner__section .agents__consult--inner {
	text-align: center;
}

.consult-cta-banner__section .agents__consult__content {
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 90rem;
	text-align: center;
}

.consult-cta-banner__section .agents__consult--title,
.consult-cta-banner__section .agents__consult--desc,
.consult-cta-banner__section .agents__consult--desc p,
.consult-cta-banner__section .agents__consult--link {
	color: var(--color-white) !important;
}

.consult-cta-banner__section .agents__consult--desc {
	margin-bottom: 3.2rem;
	margin-left: auto;
    margin-right: auto;
    max-width: 680px;
}

.consult-cta-banner__section .agents__consult--link {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	margin-top: 0;
	text-decoration: none;
	transition: color 0.25s ease, transform 0.25s ease;
}

.consult-cta-banner__section .agents__consult--link:hover {
	color: var(--color-white) !important;
	text-decoration: none;
	transform: translateX(2px);
}

.trust-bar__section {
    position: relative;
    z-index: 3;
}

.trust-bar__section.agents__consult--section {
    margin-bottom: -10rem;
}

.trust-bar__section + .site-footer.footer--with-cta,
.trust-bar__section ~ .site-footer.footer--with-cta,
.trust-bar__section + .footer__section,
.trust-bar__section ~ .footer__section {
    padding-top: 22rem;
}

.trust-bar__inner.agents__consult--inner {
    overflow: hidden;
    padding: 5.6rem 5rem;
    color: var(--color-white);
    background: none;
    background-color: #4f9fa4;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.trust-bar__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background:
        radial-gradient(circle at 28% 46%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px 8px),
        radial-gradient(circle at 66% 50%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 8px);
    background-size: 8px 8px, 8px 8px;
}

.trust-bar__inner--no-pattern::before {
    display: none;
}

.trust-bar__items {
    position: relative;
    z-index: 1;
}

.trust-bar__item {
    gap: 2rem;
    color: var(--color-white);
}

.trust-bar__icon {
    width: 7.4rem;
    height: 7.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 7.4rem;
    border: 0.5rem solid rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 3.8rem;
    line-height: 1;
}

.trust-bar__text {
    color: var(--color-white);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
}

@media only screen and (max-width: 767px) {
    .resource-sidebar-layout__child-content {
        margin-top: 3rem;
    }

    .resource-sidebar-layout__child-content > * + * {
        margin-top: 3rem;
    }

	.consult-cta-banner__section .agents__consult__content {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.consult-cta-banner__section .agents__consult--desc {
		margin-bottom: 2.6rem;
	}

	.agents__consult--title {
		line-height: 4rem;
	}

    .trust-bar__inner.agents__consult--inner {
        padding: 3.6rem 2.4rem;
    }

    .trust-bar__section.agents__consult--section {
        margin-bottom: -10rem;
    }

    .trust-bar__section + .site-footer.footer--with-cta,
    .trust-bar__section ~ .site-footer.footer--with-cta,
    .trust-bar__section + .footer__section,
    .trust-bar__section ~ .footer__section {
        padding-top: 14rem;
    }

    .trust-bar__item {
        justify-content: flex-start !important;
    }

    .trust-bar__icon {
        width: 6.2rem;
        height: 6.2rem;
        flex-basis: 6.2rem;
        border-width: 0.4rem;
        font-size: 3rem;
    }

    .trust-bar__text {
        font-size: 2rem;
    }
}


.listing__featured--grid .featured__thumbnail .media,
.featured__section .featured__thumbnail .media {
  overflow: hidden;
  border-radius: 1rem;
}

.listing__featured--grid .featured__thumbnail--link,
.featured__section .featured__thumbnail--link {
  display: block;
}

.listing__featured--grid .featured__thumbnail--link::before {
    display: none;
}

.listing__featured--grid .featured__thumbnail--img,
.featured__section .featured__thumbnail--img {
  display: block;
  width: 100%;
  height: 21rem;
  object-fit: cover;
  object-position: center;
}

@media only screen and (max-width: 991px) {
  .listing__featured--grid .featured__thumbnail--img,
  .featured__section .featured__thumbnail--img {
    height: 26rem;
  }
}

@media only screen and (max-width: 767px) {
  .listing__featured--grid .featured__thumbnail--img,
  .featured__section .featured__thumbnail--img {
    height: 24rem;
  }
}

.listing__page--section .widget__search--form {
  display: block;
}

.listing__page--section .widget__catagories--label {
  text-decoration: none;
}

.listing__page--section .widget__catagories--form-types .widget__catagories__list--textonly {
  display: block;
  position: relative;
}

.listing__page--section .widget__catagories--form-types .widget__catagories--input,
.listing__page--section .widget__catagories--form-types .widget__catagories--checkmark {
  display: none;
}

.listing__page--section .widget__catagories--form-types .widget__catagories--label {
  display: inline-flex;
  width: 100%;
  cursor: pointer;
}

.listing__page--section .widget__catagories--form-types .widget__catagories--label.is-active {
  color: var(--color-hover);
  font-weight: 700;
}
.widget__filter--clear {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.widget__filter--clear:hover {
  color: var(--primary-color);
}

.widget__filter--clear:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 3px;
  border-radius: 0.4rem;
}

.story-intro__section .about__thumbnail--style4 {
  position: relative;
}

.story-intro__section .about__thumbnail--items {
  position: relative;
  width: 100%;
  height: 44rem;
  min-height: 44rem;
  overflow: hidden;
}

.story-intro__section .about__thumbnail--items img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.story-intro__section .bideo__play--icon {
  background: var(--nastri-default-bg);
  color: var(--nastri-teal);
}

.story-intro__section .bideo__play--icon:hover,
.story-intro__section .bideo__play--icon:focus {
  color: var(--color-white);
  background: var(--nastri-teal);
}

.story-intro__section .section__heading--subtitle {
  color: var(--nastri-teal);
}

.story-intro__section .section__heading--subtitle i,
.story-intro__section .section__heading--subtitle svg {
  color: currentColor;
}

.story-intro__section .section__heading--title {
  color: var(--nastri-heading);
  letter-spacing: 0;
}

.story-intro__section .section__heading--desc,
.story-intro__section .section__heading--desc p {
  color: var(--nastri-text-muted);
}

.story-intro__section .section__heading--desc p:last-child {
  margin-bottom: 0;
}

.story-intro__section .about__thumbnail--badge__style4 {
  background: var(--nastri-teal);
  bottom: 2rem;
}

.story-intro__section .about__thumbnail--badge__style4--count,
.story-intro__section .about__thumbnail--badge__style4--text {
  color: var(--nastri-button-primary-text);
}

.story-intro__section .solid__btn {
  background: var(--nastri-button-primary-bg);
  color: var(--nastri-button-primary-text);
  border-color: var(--nastri-button-primary-bg);
}

.story-intro__section .solid__btn:hover,
.story-intro__section .solid__btn:focus {
  background: var(--nastri-plum-dark);
  border-color: var(--nastri-plum-dark);
  color: var(--nastri-button-primary-text);
}

@media only screen and (max-width: 767px) {
  .story-intro__section .about__thumbnail--items {
    height: 30rem;
    min-height: 30rem;
  }

  .story-intro__section .about__thumbnail--items.two .bideo__play {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.about-feature__section {
  background: var(--color-white);
}

.about-feature__section .about__thumbnail {
  isolation: isolate;
}

.about-feature__section .about__thumbnail::before {
    content: "";
    position: absolute;
    left: 8rem;
    bottom: 4rem;
    width: 37rem;
    height: 37rem;
    border: 2px solid rgba(0, 139, 154, 0.35);
    border-radius: 0.7rem;
    z-index: -1;
}

.about-feature__section .about__thumbnail--list.one img {
  width: 409px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.about-feature__section .about__thumbnail--list.two img {
  width: 274px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.about-feature__eyebrow {
  color: var(--nastri-teal);
}

.about-feature__eyebrow svg,
.about-feature__checklist-item svg {
  color: currentColor;
}

.about-feature__title {
  max-width: 50rem;
  letter-spacing: 0;
}

.about-feature__body {
  max-width: 60rem;
}

.about-feature__feature-list {
  gap: 4.8rem;
}

.about-feature__feature-icon {
  width: 6rem;
  height: 6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 6rem;
  color: var(--nastri-teal);
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 1rem 2.4rem rgba(20, 29, 44, 0.13);
}

.about-feature__feature-icon i {
  font-size: 2.6rem;
  line-height: 1;
}

.about-feature__feature-title {
  color: var(--color-foreground);
}

.about-feature__stat-number {
  color: var(--nastri-plum);
}

.about-feature__checklist-item svg {
  color: var(--nastri-plum);
}

.living__details--content__list.about-feature__checklist-item {
    font-size: 1.55rem;
}

@media only screen and (max-width: 575px) {
  .about-feature__section .about__thumbnail {
    width: min(100%, 36rem);
    padding-bottom: 5rem;
  }

  .about-feature__section .about__thumbnail::before {
    left: 50%;
    bottom: 3rem;
    width: min(26rem, 66vw);
    height: min(27rem, 68vw);
    transform: translateX(-50%);
  }

  .about-feature__section .about__thumbnail--list.one img {
    width: min(34rem, 78vw);
  }

  .about-feature__section .about__thumbnail--list.two {
    max-width: none;
    right: 0;
  }

  .about-feature__section .about__thumbnail--list.two img {
    width: min(22rem, 52vw);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-feature__section .about__thumbnail::before {
    left: 5rem;
    bottom: 6rem;
    width: 29rem;
    height: 31rem;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  .about-feature__section .about__thumbnail::before {
    left: 50%;
    bottom: 3rem;
    width: 36rem;
    height: 36rem;
    transform: translateX(-50%);
  }
}

.services-cards__section {
  background: var(--color-white);
}

.services-cards__heading {
  max-width: 78rem;
  margin-left: auto;
  margin-right: auto;
}

.services-cards__eyebrow {
  color: var(--nastri-teal);
}

.services-cards__eyebrow i {
  margin-right: 0.6rem;
  font-size: 1.6rem;
  line-height: 1;
}

.services-cards__title {
  letter-spacing: 0;
}

.services-cards__intro {
  max-width: 62rem;
  margin-left: auto;
  margin-right: auto;
}

.services-cards__card.blog__items {
  height: 100%;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 0.8rem;
  box-shadow: 0 1.4rem 3.4rem rgba(20, 29, 44, 0.1);
}

.services-cards__thumbnail {
  overflow: hidden;
  border-radius: 0.8rem 0.8rem 0 0;
}

.services-cards__image {
  width: 100%;
  height: 15.2rem;
  display: block;
  object-fit: cover;
}

.services-cards__content.blog__content {
  padding: 2.4rem 2.4rem 3rem;
  box-shadow: none;
}

.services-cards__card-title.blog__title {
  margin-bottom: 1.1rem;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.services-cards__card-title a {
  color: inherit;
  text-decoration: none;
}

.services-cards__description.blog__desc {
  margin-bottom: 0;
  color: var(--color-foreground-sub);
  font-size: 1.6rem;
  line-height: 1.75;
}

.services-cards__link.blog__link--btn {
  margin-top: 1.8rem;
  color: var(--nastri-plum);
}

@media only screen and (max-width: 575px) {
  .services-cards__content.blog__content {
    padding: 2.2rem;
  }
}

.image-accordion__section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.image-accordion__heading {
  max-width: 78rem;
  margin-left: auto;
  margin-right: auto;
}

.image-accordion__eyebrow {
  color: var(--nastri-teal);
}

.image-accordion__eyebrow i {
  margin-right: 0.6rem;
  font-size: 1.6rem;
  line-height: 1;
}

.image-accordion__title {
  letter-spacing: 0;
}

.image-accordion__intro {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.image-accordion__section .image-accordion__panel {
  max-width: 129rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 0.8rem;
  box-shadow: 0 1.8rem 4rem rgba(20, 29, 44, 0.12);
}

.image-accordion__section .image-accordion__list-column,
.image-accordion__section .image-accordion__media-column {
  min-height: 100%;
}

.image-accordion__section .image-accordion__list.accordion {
  height: 100%;
  background: var(--color-white);
}

.image-accordion__section .image-accordion__item.accordion-item {
  background: var(--color-white);
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(34, 32, 37, 0.12);
}

.image-accordion__section .image-accordion__item.accordion-item:last-child {
  border-bottom: 0;
}

.image-accordion__section .image-accordion__item-heading {
  margin: 0;
}

.image-accordion__section .image-accordion__list .collapse:not(.show) {
  display: none;
}

.image-accordion__section .image-accordion__list .collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.25s ease;
}

.image-accordion__section .image-accordion__button {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  min-height: 8.8rem;
  display: block;
  padding: 2.35rem 4.4rem 2.35rem 4.5rem;
  color: var(--color-foreground);
  background: #f8f9fb;
  text-align: left;
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  cursor: pointer;
}

.image-accordion__section .image-accordion__button:not(.collapsed) {
  color: var(--color-foreground);
  background: var(--color-white);
}

.image-accordion__section .image-accordion__button:hover {
  color: var(--color-foreground);
}

.image-accordion__section .image-accordion__button:focus-visible {
  outline: 2px solid rgba(0, 139, 154, 0.35);
  outline-offset: -2px;
}

.image-accordion__section .image-accordion__body.accordion-body {
  padding: 0 4.5rem 3.6rem;
  background: var(--color-white);
  color: var(--color-foreground-sub);
  font-size: 1.55rem;
  line-height: 1.8;
}

.image-accordion__section .image-accordion__body p {
  margin-bottom: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.image-accordion__section .image-accordion__body > :last-child {
  margin-bottom: 0;
}

.image-accordion__section .image-accordion__media {
  position: relative;
  min-height: 51.8rem;
  height: 100%;
  overflow: hidden;
  background: #d9e4ea;
  border-left: 1px solid rgba(34, 32, 37, 0.06);
}

.image-accordion__section .image-accordion__image,
.image-accordion__section .image-accordion__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.18s ease, transform 0.32s ease;
}

.image-accordion__section .image-accordion__image.is-transitioning,
.image-accordion__section .image-accordion__media > img.is-transitioning {
  opacity: 0.22;
  transform: scale(1.015);
}

@media only screen and (max-width: 991px) {
  .image-accordion__section .image-accordion__panel {
    max-width: 72rem;
  }

  .image-accordion__section .image-accordion__list-column {
    order: 2;
  }

  .image-accordion__section .image-accordion__media-column {
    order: 1;
  }

  .image-accordion__section .image-accordion__media {
    min-height: 34rem;
    border-left: 0;
    border-top: 1px solid rgba(34, 32, 37, 0.06);
  }
}

@media only screen and (max-width: 575px) {
  .image-accordion__section .image-accordion__button {
    min-height: 7.2rem;
    padding: 2rem 2.2rem;
    font-size: 1.6rem;
  }

  .image-accordion__section .image-accordion__body.accordion-body {
    padding: 0 2.2rem 2.4rem;
    font-size: 1.5rem;
  }

  .image-accordion__section .image-accordion__media {
    min-height: 26rem;
  }
}

.term-cards-slider__section {
  background-color: #f7fbff;
  overflow: hidden;
}

.term-cards-slider__heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.term-cards-slider__eyebrow {
  align-items: center;
  color: #0e99b0;
  display: inline-flex;
  gap: 0.55rem;
}

.term-cards-slider__eyebrow i {
  font-size: 0.95rem;
}

.term-cards-slider__title {
  margin-bottom: 0.65rem;
}

.term-cards-slider__intro {
  color: #5f6674;
  margin: 0 auto;
}

.term-cards-slider__shell {
  position: relative;
}

.term-cards-slider__swiper {
  overflow: visible;
  padding-left: clamp(0, 14vw, 0);
}

.term-cards-slider__slide {
  height: auto;
  width: clamp(30rem, 24vw, 36rem);
}

.term-cards-slider__card.widget__thumbnail {
  display: block;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(16, 28, 50, 0.12);
  overflow: hidden;
  width: 100%;
}

.term-cards-slider__link.widget__thumbnail--link {
  color: inherit;
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 360 / 424;
}

.term-cards-slider__link.widget__thumbnail--link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(34, 32, 37, 0) 0%, rgba(34, 32, 37, 1) 100%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.term-cards-slider__media.widget__thumbnail--media {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
  width: 100%;
  border-radius: 1rem;
}

.term-cards-slider__link:hover .term-cards-slider__media,
.term-cards-slider__link:focus-visible .term-cards-slider__media {
  transform: scale(1.035);
}

.term-cards-slider__text.widget__thumbnail--text {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  right: 2rem;
  z-index: 9;
  color: #fff;
  display: block;
  padding: 0;
}

.term-cards-slider__card-title.widget__thumbnail--title {
  color: #fff;
  font-size: 2.2rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
}

.term-cards-slider__card-subtitle.widget__thumbnail--subtitle {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-white);
}

.term-cards-slider__card-subtitle svg {
  color: #aecccf;
  margin-left: 0.5rem;
}

.term-cards-slider__pagination {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.3rem;
  position: static;
  width: auto;
  line-height: 1;
  padding: 0 !important;
}

.term-cards-slider__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-border);
  opacity: 1;
  vertical-align: middle;
  transition: var(--transition);
  margin: 0 0.9rem !important;
  position: relative;
  border-radius: 50%;
}

.term-cards-slider__pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--color-hover);
  left: -6px;
  top: -6px;
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

.term-cards-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-hover);
}

.term-cards-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  .term-cards-slider__swiper {
    padding-left: 4rem;
  }

  .term-cards-slider__slide {
    width: 30rem;
  }

  .term-cards-slider__card-title.widget__thumbnail--title {
    font-size: 2rem;
    line-height: 2.7rem;
  }

  .term-cards-slider__card-subtitle.widget__thumbnail--subtitle {
    font-size: 1.55rem;
  }
}

@media only screen and (max-width: 767px) {
  .term-cards-slider__section {
    background-position: right bottom !important;
  }

  .term-cards-slider__swiper {
    padding-left: 0;
  }

  .term-cards-slider__slide {
    width: min(32rem, calc(100vw - 5.2rem));
  }

  .term-cards-slider__text.widget__thumbnail--text {
    bottom: 2.2rem;
    left: 1.6rem;
    right: 1.6rem;
  }

  .term-cards-slider__card-title.widget__thumbnail--title {
    font-size: 1.9rem;
    line-height: 2.4rem;
  }

  .term-cards-slider__card-subtitle.widget__thumbnail--subtitle {
    font-size: 1.45rem;
  }
}

.amenities__box:hover {
    background-color: var(--color-background);
}

.amenities__box:hover .amenities__count--number {
    color: var(--nastri-plum);
}

.amenities__box:hover .amenities__title {
    color: var(--nastri-text);
}

.amenities__icone {
    font-size: 2.5rem;
    color: var(--nastri-teal);
}

.numbered-icon-cards__section .amenities__icone,
.numbered-icon-cards__section .amenities__icone span,
.numbered-icon-cards__section .amenities__icone i,
.numbered-icon-cards__section .amenities__icone svg {
    color: var(--nastri-teal);
}

.split-slider-highlights__section {
    background-color: var(--nastri-default-bg);
    background-image: url("https://mediumturquoise-mandrill-305799.hostingersite.com/wp-content/uploads/2026/04/breadcrumb-bg-reversed-opt.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    overflow: visible;
    margin-bottom: 12rem;
}

.split-slider-highlights__section .hero__thumbnail--slider__items {
    height: 74rem;
}

.split-slider-highlights__section .hero__thumbnail--slider___media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.split-slider-highlights__section .hero__content--heading__subtitle i {
    margin-right: 0.5rem;
}

.split-slider-highlights__section .hero__content--heading__desc {
    max-width: 44rem;
}

.split-slider-highlights__section .hero__content--footer.style2 {
    margin-top: 2.5rem;
}

.split-slider-highlights__highlights {
    margin-top: 0;
    margin-bottom: -6.3rem;
    position: relative;
    z-index: 10;
}

.split-slider-highlights__card {
    background: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    gap: 2rem;
    min-height: 12.6rem;
    padding: 0.5rem 3rem;
}

.split-slider-highlights__icon {
    align-items: center;
    border: 1px solid rgba(0, 139, 154, 0.18);
    border-radius: 50%;
    color: var(--nastri-teal);
    display: inline-flex;
    flex: 0 0 6rem;
    font-size: 2.8rem;
    height: 6rem;
    justify-content: center;
    width: 6rem;
}

.split-slider-highlights__copy.blog__content {
    padding: 2.4rem 0;
    box-shadow: none;
}

@media only screen and (max-width: 1199px) {
    .split-slider-highlights__section {
        margin-bottom: 10rem;
    }

    .split-slider-highlights__section .hero__thumbnail--slider__items {
        height: 66rem;
    }
}

@media only screen and (max-width: 991px) {
    .split-slider-highlights__section {
        background-size: cover;
        margin-bottom: 8rem;
    }

    .split-slider-highlights__section .hero__thumbnail--slider__items {
        height: 54rem;
    }
}

@media only screen and (max-width: 767px) {
    .split-slider-highlights__section {
        margin-bottom: 0;
    }

    .split-slider-highlights__section .hero__thumbnail--slider__items {
        height: 40rem;
    }

    .split-slider-highlights__highlights {
        margin-top: 3rem;
        margin-bottom: 0;
    }

    .split-slider-highlights__card {
        min-height: 0;
        padding: 2rem 2.2rem;
    }
}

/** -------------------------------------------------------------------------*
 *
 * Agent Profile Highlight Block
 *
 * --------------------------------------------------------------------------*/
.agent-profile-highlight .section__heading {
    max-width: 78rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8rem;
}

.agent-profile-highlight .section__heading--desc {
    margin-left: auto;
    margin-right: auto;
}

.agent-profile-highlight .section__heading--subtitle:empty {
    display: none;
}

.agent-profile-highlight__item {
    position: relative;
    max-width: 129rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.agent-profile-highlight__item:not(:last-of-type) {
    margin-bottom: 8rem;
}

.agent-profile-highlight__media-wrap {
    position: relative;
    width: min(42rem, 100%);
    aspect-ratio: 1 / 1;
    margin: 0 auto 3.8rem;
    overflow: visible;
}

.agent-profile-highlight__image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.agent-profile-highlight__painted-border {
    position: absolute;
    inset: 0;
    left: -1rem;
    transform: scale(1.18);
    transform-origin: center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.agent-profile-highlight__item:nth-child(odd) .agent-profile-highlight__painted-border {
    transform: scale(1.18) rotate(45deg);
}

.agent-profile-highlight__painted-border img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.agent-profile-highlight__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50% !important;
    display: block;
    background: var(--nastri-surface-alt);
    border: 0;
}

.agent-profile-highlight__badge {
    position: absolute;
    left: 50%;
    bottom: -1.2rem;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    padding: 0.8rem 1.8rem;
    border-radius: 0.8rem;
    background: var(--nastri-teal);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    white-space: nowrap;
}

.agent-profile-highlight__content {
    padding-left: 5rem;
}

.agent-profile-highlight__name {
    color: var(--nastri-heading);
    font-size: clamp(2.6rem, 3vw, 3.2rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.agent-profile-highlight__role {
    color: var(--nastri-plum);
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 2rem;
}

.agent-profile-highlight__bio,
.agent-profile-highlight__bio p {
    color: var(--nastri-text);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.agent-profile-highlight__bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .agent-profile-highlight__item {
        row-gap: 2.4rem;
    }

    .agent-profile-highlight__item:not(:last-of-type) {
        margin-bottom: 6rem;
    }

    .agent-profile-highlight__content {
        padding-left: 0;
    }

    .agent-profile-highlight__media-wrap {
        width: min(34rem, 92vw);
        margin-bottom: 2.6rem;
    }

    .agent-profile-highlight__painted-border {
        transform: scale(1.2);
        opacity: 0.72;
    }
}

@media (max-width: 575px) {
    .agent-profile-highlight__media-wrap {
        margin-bottom: 2.2rem;
    }

    .agent-profile-highlight__painted-border {
        transform: scale(1.2);
        opacity: 0.62;
    }

    .agent-profile-highlight__badge {
        bottom: -0.6rem;
        padding: 0.7rem 1.4rem;
    }
}

.faq-section {
    padding-bottom: 0;
}

.faq-section__cards {
    margin-bottom: 3.5rem;
}

.faq-section__layout {
    row-gap: 2.4rem;
}

.faq-section__sidebar .widget__search--input__field {
    padding-right: 3.6rem;
}

.faq-section__form-card {
    background: var(--nastri-surface-alt);
    border: 0;
    box-shadow: none;
}

.faq-section__form-card .resource-sidebar-layout__form .nf-field-element input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.faq-section__form-card .resource-sidebar-layout__form .nf-field-element select,
.faq-section__form-card .resource-sidebar-layout__form .nf-field-element textarea {
    background: #ffffff;
    border-color: #ffffff;
}

.faq-section__group:not(:last-of-type) {
    margin-bottom: 10rem;
}

.faq-section__group-header {
    border-bottom: 1px solid var(--color-border);
}

.faq-section__group-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.faq-section__group-icon {
    margin-left: auto;
}

.faq-section__group .widget__title {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    border: 0;
}

.faq-section__term-desc {
    max-width: 56ch;
}

.faq-section__term-icon {
    width: 8rem;
    height: 8rem;
    flex: 0 0 8rem;
}

.faq-section__term-icon i {
    font-size: 4rem;
}

.faq-section__accordion .image-accordion__item {
    border-radius: 0.7rem;
    border: 1px solid rgba(34, 32, 37, 0.08);
    box-shadow: 0 8px 20px rgba(11, 20, 34, 0.05);
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.faq-section__accordion .image-accordion__button {
    background: #ffffff;
    min-height: 3.8rem;
    color: var(--nastri-dark);
    padding: 2rem;
    gap: 1rem;
    display: flex;
    align-items: center;
    text-align: left;
    border: 0;
}

.faq-section__accordion .image-accordion__button::after {
    display: none;
}

.faq-section__toggle-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--nastri-teal);
}

.faq-section__toggle-icons i {
    font-size: 3rem;
}

.faq-section__toggle-minus {
    display: none;
    color: var(--nastri-plum);
}

.faq-section__accordion .image-accordion__button:not(.collapsed) .faq-section__toggle-plus {
    display: none;
}

.faq-section__accordion .image-accordion__button:not(.collapsed) .faq-section__toggle-minus {
    display: inline-block;
}

.faq-section_call__action--container .call__action--inner {
    color: var(--nastri-text);
    background: var(--nastri-bg);
}

.faq-section__quick_links--accent_title {
    color: var(--nastri-teal);
}

.faq-section__heading-seperator {
    position: relative;
}

.faq-section__heading-seperator::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 3rem;
    top: -2.25rem;
    background-color: var(--nastri-border);
    display: block;
    /* border-right: 1px solid var(--nastri-text-muted); */
}

.faq-section_call__action--container .call__action--inner .guide-cards__link {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.faq-section__accordion .image-accordion__body.accordion-body {
    background: #ffffff;
    border-top: 1px solid rgba(34, 32, 37, 0.08);
    padding: 2.7rem;
}

.faq-section__accordion .image-accordion__body.accordion-body p {
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .faq-section__sidebar {
        margin-bottom: 2rem;
    }

    .faq-section__group-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .faq-section__group-icon {
        order: -1;
        margin-left: 0;
        margin-bottom: 1rem;
    }

    .faq-section__group-copy {
        padding-right: 0;
    }
}

.listing__filters-expander-button, .listing__filters-expander-button:focus, .listing__filters-expander-button:active {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    margin-bottom: 1rem;
	font-size: 1.6rem;
	letter-spacing: 0.2px;
    background: var(--color-white);
	color: var(--nastri-text-muted);
	border: 1px solid var(--color-border);
	border-radius: 1rem;
}

.listing__filters-expander-button:hover {
	color: var(--nastri-text-muted);
    background: var(--color-background-3);
    border: 1px solid var(--color-background-3);
}

.listing__filters-expander-button[aria-expanded=true] {
    margin-bottom: 0;
    color: var(--nastri-text-muted);
    background: var(--color-background-3);
    border: 1px solid var(--color-background-3);
}

.listing__filters-expander-button::after {
    content: "\f282";
    font-family: "bootstrap-icons";
    font-size: 1.2rem;
    transition: transform 0.25s ease;
}

.listing__filters-expander-button[aria-expanded="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.listing__filters-expander-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

@media only screen and (min-width: 768px) {
    #listingFilters {
        display: block !important;
        height: auto !important;
        visibility: visible !important;
    }
}

@media only screen and (max-width: 767px) {
    #listingFilters {
        margin-bottom: 2.4rem;
        padding: 1.5rem;
        border: 1px solid #eee;
        border-top: 0;
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
    }

    #listingFilters .listing__widget {
        margin-top: 1rem;
    }

    #listingFilters .listing__widget--inner {
        background: var(--nastri-bg);
    }
}

/** -------------------------------------------------------------------------*
 *
 * Nastri Container Styles
 *
 * --------------------------------------------------------------------------*/
.nastri-container {}

.nastri-container ul {
    margin-left: 4rem;
    margin-bottom: 2rem;
}

.nastri-container li {
    list-style: initial;
    line-height: 2.5rem;
}

.glightbox-mobile .goverlay {
    background: rgba(0, 0, 0, 0.9);
}

/* Single property lightbox: hide bottom description/title panel. */
.glightbox-container .gslide-description {
    display: none !important;
}

.glightbox-container .ginner-container.desc-bottom .gslide-media,
.glightbox-container .ginner-container.desc-top .gslide-media {
    margin: 0 auto !important;
}

/* Single property sidebar: force similar listing thumbs to 4:3. */
.main__content_wrapper .widget__featured--thumb__link {
    display: block;
    width: 12rem;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0.8rem;
}

.main__content_wrapper .widget__featured--media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 769px) {
    .goverlay {
        background: linear-gradient(360deg, var(--nastri-text), var(--nastri-plum-dark));
    }
}