:root {
    --font-family: "Manrope", Tahoma, sans-serif;
    --primary-color: hsla(202, 95%, 22%, 100%);
    --primary-color-hover: hsla(202, 95%, 22%, 85%);
    --secondary-color: hsla(219, 34%, 13%, 100%);
    --tertiary-color: hsla(219, 18%, 22%, 100%);
    --tertiary-color-hover: hsla(219, 18%, 22%, 70%);
    --primary-text-color: hsla(0, 0%, 0%, 100%);
    --secondary-text-color: hsla(203, 8%, 66%, 100%);
    --tertiary-text-color: hsla(0, 0%, 34%, 100%);
    --white-color: hsla(0, 0%, 100%, 100%);
    --gray-color: hsla(0, 0%, 97%, 100%);
    --darker-gray-color: hsla(0, 0%, 85%, 100%);
    --darker-gray-color-hover: hsla(0, 0%, 85%, 75%);
    --yellow-color: hsla(35, 84%, 62%, 100%);
    --red-color: hsla(350, 79%, 61%, 100%);
    --red-color-hover: hsla(350, 79%, 61%, 70%);
    --pink-color: hsla(311, 100%, 76%, 100%);
    --green-color: hsl(157.5, 64%, 50.98%, 100%);
    --blue-color: hsl(217.22, 91.22%, 59.8%, 100%);
    --primary-bg-color: hsla(0, 0%, 97%, 100%);
    --secondary-bg-color: hsla(216, 65%, 96%, 100%);
    --link: hsl(210, 100%, 40%);
    --light-blue-foreground: hsl(252, 15.15%, 93.53%, 100%);
    --glass-40: hsl(0, 0%, 100%, 40%);
}

.share-blog-btn svg,
.share-blog-btn svg *,
.share-property-btn svg,
.share-property-btn svg *,
.share-blog-btn span,
.share-blog-btn span *,
.share-property-btn span,
.share-property-btn span * {
  pointer-events: none !important;
}

/* main classes */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
blockquote,
pre,
code,
table,
th,
td,
label,
input,
textarea,
button,
select,
option {
    font-family: var(--font-family);
}
a:hover,
a:focus {
    color: var(--link);
    text-decoration-color: var(--primary-color);
}
a.td-none {
    text-decoration: none;
}
html {
    background-color: var(--base-color);
    margin: 0;
    padding: 0;
}
* svg {
    flex: 1 0 auto;
}

/* Utilities */
.text-xs {
    font-size: 12px;
}
.text-sm {
    font-size: 14px;
}
.text-base {
    font-size: 16px;
}
.text-lg {
    font-size: 18px;
}
.text-xl {
    font-size: 20px;
}
.text-2xl {
    font-size: 24px;
}
.text-3xl {
    font-size: 30px;
}
.font-thin {
    font-weight: 100;
}
.font-light {
    font-weight: 300;
}
.font-normal {
    font-weight: 400;
}
.font-medium {
    font-weight: 500;
}
.font-bold {
    font-weight: 700;
}
.font-extrabold {
    font-weight: 800;
}
.rounded-none {
    border-radius: 0px;
}
.rounded-sm {
    border-radius: 4px;
}
.rounded {
    border-radius: 6px;
}
.rounded-md {
    border-radius: 8px;
}
.rounded-lg {
    border-radius: 12px;
}
.rounded-xl {
    border-radius: 16px;
}
.rounded-2xl {
    border-radius: 20px;
}
.rounded-full {
    border-radius: 9999px;
}
.border {
    border: 1px solid var(--darker-gray-color);
}
.border-top {
    border-top: 1px solid var(--darker-gray-color);
}
.border-bottom {
    border-bottom: 1px solid var(--darker-gray-color);
}
.border-left {
    border-left: 1px solid var(--darker-gray-color);
}
.border-right {
    border-right: 1px solid var(--darker-gray-color);
}
.border-x {
    border-left: 1px solid var(--darker-gray-color);
    border-right: 1px solid var(--darker-gray-color);
}
.border-y {
    border-top: 1px solid var(--darker-gray-color);
    border-bottom: 1px solid var(--darker-gray-color);
}
.border-2 {
    border-width: 2px;
}
.border-4 {
    border-width: 4px;
}
.border-8 {
    border-width: 8px;
}
.p-0 {
    padding: 0px;
}
.p-1 {
    padding: 4px;
}
.p-2 {
    padding: 8px;
}
.p-3 {
    padding: 12px !important;
}
.p-4 {
    padding: 16px;
}
.p-5 {
    padding: 20px;
}
.pt-0 {
    padding-top: 0px;
}
.pt-1 {
    padding-top: 4px;
}
.pt-2 {
    padding-top: 8px;
}
.pt-3 {
    padding-top: 12px;
}
.pt-4 {
    padding-top: 16px;
}
.pt-5 {
    padding-top: 20px;
}
.pb-0 {
    padding-bottom: 0px;
}
.pb-1 {
    padding-bottom: 4px;
}
.pb-2 {
    padding-bottom: 8px;
}
.pb-3 {
    padding-bottom: 12px;
}
.pb-4 {
    padding-bottom: 16px;
}
.pb-5 {
    padding-bottom: 20px;
}
.pl-0 {
    padding-left: 0px;
}
.pl-1 {
    padding-left: 4px;
}
.pl-2 {
    padding-left: 8px;
}
.pl-3 {
    padding-left: 12px;
}
.pl-4 {
    padding-left: 16px;
}
.pl-5 {
    padding-left: 20px;
}
.pr-0 {
    padding-right: 0px;
}
.pr-1 {
    padding-right: 4px;
}
.pr-2 {
    padding-right: 8px;
}
.pr-3 {
    padding-right: 12px;
}
.pr-4 {
    padding-right: 16px;
}
.pr-5 {
    padding-right: 20px;
}
.m-0 {
    margin: 0px;
}
.m-1 {
    margin: 4px;
}
.m-2 {
    margin: 8px;
}
.m-3 {
    margin: 12px;
}
.m-4 {
    margin: 16px;
}
.m-5 {
    margin: 20px;
}
.mt-0 {
    margin-top: 0px;
}
.mt-1 {
    margin-top: 4px;
}
.mt-2 {
    margin-top: 8px;
}
.mt-3 {
    margin-top: 12px;
}
.mt-4 {
    margin-top: 16px;
}
.mt-5 {
    margin-top: 20px;
}
.mt-6 {
    margin-top: 30px;
}
.mb-0 {
    margin-bottom: 0px;
}
.mb-1 {
    margin-bottom: 4px;
}
.mb-2 {
    margin-bottom: 8px;
}
.mb-3 {
    margin-bottom: 12px;
}
.mb-4 {
    margin-bottom: 16px;
}
.mb-5 {
    margin-bottom: 20px;
}
.ml-0 {
    margin-left: 0px;
}
.ml-1 {
    margin-left: 4px;
}
.ml-2 {
    margin-left: 8px;
}
.ml-3 {
    margin-left: 12px;
}
.ml-4 {
    margin-left: 16px;
}
.ml-5 {
    margin-left: 20px;
}
.mr-0 {
    margin-right: 0px;
}
.mr-1 {
    margin-right: 4px;
}
.mr-2 {
    margin-right: 8px;
}
.mr-3 {
    margin-right: 12px;
}
.mr-4 {
    margin-right: 16px;
}
.mr-5 {
    margin-right: 20px;
}
.px-0 {
    padding-left: 0px;
    padding-right: 0px;
}
.px-1 {
    padding-left: 4px;
    padding-right: 4px;
}
.px-2 {
    padding-left: 8px;
    padding-right: 8px;
}
.px-3 {
    padding-left: 12px;
    padding-right: 12px;
}
.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}
.px-5 {
    padding-left: 20px;
    padding-right: 20px;
}
.mx-0 {
    margin-left: 0px;
    margin-right: 0px;
}
.mx-1 {
    margin-left: 4px;
    margin-right: 4px;
}
.mx-2 {
    margin-left: 8px;
    margin-right: 8px;
}
.mx-3 {
    margin-left: 12px;
    margin-right: 12px;
}
.mx-4 {
    margin-left: 16px;
    margin-right: 16px;
}
.mx-5 {
    margin-left: 20px;
    margin-right: 20px;
}
.py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
}
.py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
}
.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}
.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}
.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}
.py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}
.my-1 {
    margin-top: 4px;
    margin-bottom: 4px;
}
.my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
}
.my-3 {
    margin-top: 12px;
    margin-bottom: 12px;
}
.my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
}
.my-5 {
    margin-top: 20px;
    margin-bottom: 20px;
}.space-y-1 > * + * {
    margin-top: 0.25rem;
}
.space-y-2 > * + * {
    margin-top: 0.5rem;
}
.space-y-3 > * + * {
    margin-top: 0.75rem;
}
.space-y-4 > * + * {
    margin-top: 1rem;
}
.space-y-5 > * + * {
    margin-top: 1.25rem;
}
.space-y-6 > * + * {
    margin-top: 1.5rem;
}
.space-y-8 > * + * {
    margin-top: 2rem;
}
.space-y-10 > * + * {
    margin-top: 2.5rem;
}
.space-y-12 > * + * {
    margin-top: 3rem;
}
.space-y-16 > * + * {
    margin-top: 4rem;
}
.space-y-20 > * + * {
    margin-top: 5rem;
}
.space-x-1 > * + * {
    margin-left: 0.25rem;
}
.space-x-2 > * + * {
    margin-left: 0.5rem;
}
.space-x-3 > * + * {
    margin-left: 0.75rem;
}
.space-x-4 > * + * {
    margin-left: 1rem;
}
.space-x-5 > * + * {
    margin-left: 1.25rem;
}
.space-x-6 > * + * {
    margin-left: 1.5rem;
}
.space-x-8 > * + * {
    margin-left: 2rem;
}
.space-x-10 > * + * {
    margin-left: 2.5rem;
}
.space-x-12 > * + * {
    margin-left: 3rem;
}
.space-x-16 > * + * {
    margin-left: 4rem;
}
.space-x-20 > * + * {
    margin-left: 5rem;
}
.h-16 {
    height: 16px;
}
.h-18 {
    height: 18px;
}
.h-20 {
    height: 20px;
}
.h-30 {
    height: 30px;
}
.h-50 {
    height: 50px;
}
.w-16 {
    width: 16px;
}
.w-18 {
    width: 18px;
}
.w-20 {
    width: 20px;
}
.w-30 {
    width: 30px;
}
.w-50 {
    width: 50px;
}
.w-full {
    width: 100%;
}
.fill-none {
    fill: transparent !important;
}
.stroke-primary > path {
    stroke: var(--primary-color);
}
.content {
    background: var(--primary-bg-color);
}
.max-w-400 {
    max-width: 400px !important;
}
.min-h-250 {
    min-height: 250px;
}
.min-h-50 {
    min-height: 50px;
}
.uk-offcanvas {
    z-index: 9999;
}
hr {
    margin: 0px;
}
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}
.uk-notification-message {
    padding: 10px;
    background: var(--white-color);
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #32d296;
}
.uk-notification-message.uk-notification-message-danger {
    border: 1px solid #f0506e;
}
.uk-notification-message > div {
    display: flex;
    align-items: center;
}
.uk-notification-message > div .uk-icon {
    margin-right: 10px;
    margin-left: 5px;
}
.uk-notification-close {
    display: block;
    top: 15px;
}
.uk-notification-top-right {
    left: auto;
    right: 15px;
    top: 15px;
    z-index: 9999;
}
.gap-10 {
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.uk-checkbox {
    border-radius: 4px;
    margin-right: 8px;
}
.no-properties-message {
    text-align: center;
    width: 100%;
    padding-top: 20px;
}
.no-properties-message p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--yellow-color);
}
.uk-lightbox {
    z-index: 9999;
}
.uk-overlay-custom {
    background: hsl(0, 0%, 0%, 30%);
}
.bg-white {
    background-color: var(--white-color) !important;
}
.base-card {
    background-color: #fff;
    color: #666;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    gap: 5px;
}
.base-card .dot-nav-cst {
    position: absolute;
    bottom: 162px;
    right: 20px;
    z-index: 99;
    padding: 5px;
    background: var(--tertiary-color-hover);
    border-radius: 20px;
    gap: 5px;
}
.base-card .dot-nav-cst li {
    padding: 0px;
}
.base-card .dot-nav-cst li > * {
    background-color: var(--darker-gray-color);
}
.base-card .dot-nav-cst li.uk-active > * {
    background-color: var(--white-color);
    padding: 0px 10px;
    border-radius: 15px;
}
.button-nav-slide-1 {
    padding: 0px 20px 20px 20px;
}
.button-nav-slide-1 .uk-icon-link:hover,
.button-nav-slide-1 .uk-icon-link:focus {
    color: var(--primary-color);
}
.button-nav-slide-1 .uk-invisible {
    color: var(--darker-gray-color);
    visibility: visible !important;
}
.rounded-4 {
    border-radius: 4px;
}
.rounded-6 {
    border-radius: 6px;
}
.rounded-8 {
    border-radius: 8px;
}
.rounded-12 {
    border-radius: 12px;
}
.rounded-16 {
    border-radius: 16px;
}
.rounded-18 {
    border-radius: 18px;
}
.rounded-20 {
    border-radius: 20px;
}
.off-plan-title {
    font-size: 2rem;
    font-weight: 500;
}
@media (max-width: 639px) {
    .off-plan-title {
        font-size: 1.5rem;
        font-weight: 500;
    }
}
.match-height {
    height: 100%;
}

/* external source */
.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.noUi-target {
    position: relative;
}
.noUi-base,
.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.noUi-connects {
    overflow: hidden;
    z-index: 0;
}
.noUi-connect,
.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    transform-style: flat;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: 0;
    right: auto;
}
.noUi-vertical .noUi-origin {
    top: -100%;
    width: 0;
}
.noUi-horizontal .noUi-origin {
    height: 0;
}
.noUi-handle {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
}
.noUi-touch-area {
    height: 100%;
    width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
}
.noUi-state-drag * {
    cursor: inherit !important;
}
.noUi-horizontal {
    height: 2px;
}
.noUi-horizontal .noUi-handle {
    width: 20px;
    height: 20px;
    right: 0;
    top: -9px;
}
.noUi-horizontal .noUi-handle.noUi-handle-lower {
    right: -19px;
}
.noUi-vertical {
    width: 18px;
}
.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    right: -6px;
    bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: -17px;
    right: auto;
}
.noUi-target {
    background: var(--darker-gray-color);
    border-radius: 4px;
    border: none;
}
.noUi-connects {
    border-radius: 3px;
}
.noUi-connect {
    background: var(--primary-color);
}
.noUi-draggable {
    cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
    cursor: ns-resize;
}
.noUi-handle {
    border: 1px solid var(--white-color);
    border-radius: 100%;
    background: var(--primary-color);
    cursor: default;
}
.noUi-active {
    background: var(--primary-color-hover);
}
.noUi-handle:after {
    left: 17px;
}
.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px;
}
.noUi-vertical .noUi-handle:after {
    top: 17px;
}
[disabled] .noUi-connect {
    background: #b8b8b8;
}
[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
    cursor: not-allowed;
}
.noUi-pips,
.noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.noUi-pips {
    position: absolute;
    color: #999;
}
.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center;
}
.noUi-value-sub {
    color: #ccc;
    font-size: 10px;
}
.noUi-marker {
    position: absolute;
    background: #ccc;
}
.noUi-marker-sub {
    background: #aaa;
}
.noUi-marker-large {
    background: #aaa;
}
.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%;
}
.noUi-value-horizontal {
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
}
.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
}
.noUi-value-vertical {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
    width: 15px;
}
.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid var(--darker-gray-color);
    border-radius: 3px;
    background: var(--white-color);
    color: var(--primary-text-color);
    padding: 4px;
    text-align: center;
    white-space: nowrap;
    font-size: .9rem;
}
.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    left: auto;
    bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(0, -18px);
    transform: translate(0, -18px);
    top: auto;
    right: 28px;
}
.noUi-tooltip {
    display: none !important;
}
.noUi-handle:hover .noUi-tooltip,
.noUi-handle:focus .noUi-tooltip,
.noUi-handle:active .noUi-tooltip {
    display: block !important;
}
.gm-style-iw button[title="Close"] {
    display: none !important;
}
.gm-style .gm-style-iw-c,
.gm-style-iw-ch {
    padding: 0px !important;
}
.gm-style-iw-d {
    overflow: hidden !important;;
}
.gm-style img,
.gm-style svg,
.marker-popup .uk-overlay-custom {
    z-index: 1;
}
.gm-style .uk-close {
    color: var(--white-color);
}
.marker-popup {
    padding: 15px;
    max-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.marker-popup .uk-modal-close-default {
    color: var(--white-color);
    top: 10px;
    right: 10px;
}
.marker-popup .label-left {
    background: var(--primary-color);
    margin: 0px;
    color: var(--white-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 20px;
    text-align: center;
    border-radius: 20px;
    width: fit-content;
    z-index: 1;
    position: absolute;
    left: 10px;
    top: 10px;
}
.marker-popup path {
    stroke: var(--white-color)
}
.marker-popup .facilities {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.marker-popup .facilities > div {
    display: flex;
    align-items: center;
    gap: 5px;
}
.marker-popup .text {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--white-color);
    max-width: 500px;
    margin: 0px;
    text-transform: capitalize;
    z-index: 1;
}
.marker-popup span {
    font-weight: 500;
    color: var(--white-color);
}
.marker-popup .title {
    font-size: .85rem;
    font-weight: 600;
    color: var(--white-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 10px;
}
@media (min-width: 960px) {
    .marker-popup .title {
        margin-top: 100px;
    }
}
.sticky-left-compare-column {
    /* position: sticky;
    left: 0;
    z-index: 2;
    background-color: hsl(0deg 0% 96.86%);
    border-top: 1px solid var(--darker-gray-color); */
}
.primary-button {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.primary-button:hover {
    background: var(--primary-color-hover);
}
.secondary-button {
    background: var(--white-color);
    color: var(--primary-text-color);
    border-radius: 46px;
    padding: 11px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: 1px solid var(--primary-color);
}
.secondary-button:hover {
    background: var(--gray-color);
}
.scroll-direction-bottom {
    position: absolute;
    bottom: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: transparent;
}
.scroll-direction-bottom:hover,
.scroll-direction-bottom:focus,
.scroll-direction-bottom:active {
    transform: translateY(6px);
    color: transparent;
}

/*important sticky footer*/
html,
body {
    height: 100%;
}
#body-main {
    min-height: 100vh;
    margin-bottom: -542px;
    background: var(--primary-bg-color);
}
#body-main:after {
    content: "";
    display: block;
}
.footer-section,
#body-main:after {
    height: 542px;
}
@media (max-width: 1280px) {
    #body-main {
        min-height: auto;
        margin-bottom: 0;
    }
    .footer-section,
    #body-main:after {
        height: auto;
    }
}
/*important sticky footer*/

/* filter-search */
.filter-search > div:nth-child(1) {
    padding-right: 10px;
}
.filter-search > div:nth-child(2),
.filter-search > div:nth-child(3) {
    padding-right: 10px;
    border-left: 1px solid var(--darker-gray-color);
}
.filter-search .uk-select {
    height: 28px !important;
}
@media (max-width: 960px) {
    .filter-search > div:nth-child(1),
    .filter-search > div:nth-child(2),
    .filter-search > div:nth-child(3) {
        padding-right: 0px;
        border-left: none;
    }
}
#property-search-dropbar {
    padding: 20px 16px;
    border-radius: 16px;
    overflow: unset !important;
}
#property-search-dropbar .slider-range {
    padding: 10px 0;
}

/* navbar */
#navbar {
    background-color: var(--white-color);
    z-index: 9999;
}
#navbar .uk-logo img {
    height: 35px;
}
#navbar .uk-navbar-nav > li > a {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    text-transform: capitalize;
    min-height: 75px;
}
#navbar .uk-navbar-nav > li > a:hover {
    color: var(--primary-color);
}
#navbar .uk-navbar-nav > li.uk-active > a {
    color: var(--primary-color);
    font-weight: 500;
}
#navbar .uk-navbar-nav .uk-navbar-dropdown {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 5px;
}
#navbar .uk-navbar-nav .uk-navbar-dropdown ul li {
    padding: 10px 12px;
    line-height: 10px;
    border-radius: 10px;
}
#navbar .uk-navbar-nav .uk-navbar-dropdown ul li a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--secondary-text-color);
    text-transform: capitalize;
    line-height: 22px;
    padding: 0;
}
#navbar .uk-navbar-nav .uk-navbar-dropdown ul li.uk-active a {
    color: var(--primary-color);
    font-weight: 500;
}
#navbar .uk-navbar-nav .uk-navbar-dropdown ul li:hover {
    background-color: var(--gray-color);
}
#navbar .uk-navbar-nav .uk-navbar-dropdown ul li:hover a {
    color: var(--primary-color);
}
#navbar .wishlist-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2px 15px 1px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
}
#navbar .wishlist-button span {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    text-transform: capitalize;
}
#navbar .wishlist-button svg {
    color: var(--red-color);
}
#navbar .wishlist-button:hover {
    background: var(--primary-color);
}
#navbar .wishlist-button:hover span {
    color: var(--white-color);
}
#navbar .wishlist-button:hover svg path {
    fill: var(--red-color);
}
#navbar .uk-navbar-toggle {
    min-height: 75px;
}
#navbar .uk-navbar-container:not(.uk-navbar-transparent) {
    background: var(--white-color);
}
@media (max-width: 1199px) {
    #navbar .uk-logo img {
        height: 30px;
    }
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
}

/* offcanvas */
#my-offcanvas .menu-list {
    padding: 0 20px;
}
#my-offcanvas .menu-list .uk-accordion-title {
    font-size: 1rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    text-transform: capitalize;
    margin-bottom: 0px;
}
#my-offcanvas .menu-list li.uk-active a,
#my-offcanvas .menu-list li.uk-active a p {
    color: var(--primary-color);
    font-weight: 600;
}
#my-offcanvas .uk-offcanvas-bar {
    background: var(--white-color);
    padding: 0;
}
#my-offcanvas .logo-section {
    background: var(--secondary-bg-color);
    text-align: center;
    padding: 60px 40px;
    position: relative;
}
#my-offcanvas .logo-section img {
    height: 75px;
}
#my-offcanvas .uk-offcanvas-bar .uk-accordion-title.none::before,
#my-offcanvas .uk-offcanvas-bar .uk-open > .uk-accordion-title.none::before {
    background-image: none;
}
#my-offcanvas .uk-offcanvas-bar .uk-accordion-title.with-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.75 7C12.75 6.58579 12.4142 6.25 12 6.25C11.5858 6.25 11.25 6.58579 11.25 7H12.75ZM11.25 17C11.25 17.4142 11.5858 17.75 12 17.75C12.4142 17.75 12.75 17.4142 12.75 17H11.25ZM7 11.25C6.58579 11.25 6.25 11.5858 6.25 12C6.25 12.4142 6.58579 12.75 7 12.75V11.25ZM17 12.75C17.4142 12.75 17.75 12.4142 17.75 12C17.75 11.5858 17.4142 11.25 17 11.25V12.75ZM11.25 7V17H12.75V7H11.25ZM7 12.75H17V11.25H7V12.75Z' fill='%23252525'/%3E%3C/svg%3E");
}
#my-offcanvas
    .uk-offcanvas-bar
    .uk-open
    > .uk-accordion-title.with-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 11.25C6.58579 11.25 6.25 11.5858 6.25 12C6.25 12.4142 6.58579 12.75 7 12.75L7 11.25ZM17 12.75C17.4142 12.75 17.75 12.4142 17.75 12C17.75 11.5858 17.4142 11.25 17 11.25V12.75ZM7 12.75L17 12.75V11.25L7 11.25L7 12.75Z' fill='%23252525'/%3E%3C/svg%3E%0A");
}
#my-offcanvas .uk-offcanvas-close {
    height: 15px;
    width: 25px;
    background: var(--red-color);
    border-radius: 30px;
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    top: 15px;
    right: 15px;
    padding: 8px;
}
#my-offcanvas .uk-offcanvas-close:hover {
    background: var(--red-color-hover);
}
#my-offcanvas .uk-panel {
    min-height: 100%;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .uk-offcanvas-flip .uk-offcanvas-bar {
        right: -450px;
    }
    .uk-offcanvas-bar {
        left: -450px;
        width: 450px;
    }
}
@media (max-width: 639px) {
    .uk-offcanvas-flip .uk-offcanvas-bar {
        right: -100%;
    }
    .uk-offcanvas-bar {
        left: -100%;
        width: 100%;
    }
}

/* footer */
.footer-section {
    background-color: var(--secondary-color);
}
.footer-section .uk-container {
    padding-top: 10px;
}
.footer-section .desc-icon-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}
.footer-section .desc-icon {
    color: var(--white-color);
    display: flex;
    gap: 10px;
}
.footer-section .desc-icon p,
.footer-section .desc-icon a {
    color: var(--white-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}
.footer-section .desc-icon img,
.footer-section .desc-icon svg {
    flex-shrink: 0;
    flex: none;
}
.footer-section .desc-icon.top-icon {
    align-items: self-start;
}
.footer-section .desc-icon.top-icon svg {
    margin-top: 1.5px;
}
.footer-section .text {
    text-transform: capitalize;
    color: var(--secondary-text-color);
    margin: 0;
    font-size: 0.9rem;
}
.footer-section .copyright-container {
    display: flex;
}
.footer-section .copyright {
    font-weight: 400;
    font-size: 12px;
    padding: 20px 0;
}
.footer-section .logo-left {
    max-width: 300px;
}
.footer-section .title-container .title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white-color);
}
.footer-section .quick-link {
    margin: 0;
    padding-top: 15px;
}
.footer-section .quick-link li:nth-child(n + 2) {
    margin-top: 5px;
}
.footer-section .quick-link li a {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
}
.footer-section .quick-link li a:hover {
    color: var(--primary-color);
}
.footer-section .footer-top {
    margin-bottom: 16px;
}
.footer-section .footer-top .border-bottom {
    padding: 30px 0px;
}
.footer-section .footer-top .logo-footer {
    height: 50px;
}
.footer-section .footer-top .social {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-section .footer-top .social span {
    color: var(--white-color);
    font-size: 0.9rem;
}
.footer-section .footer-top .social .social-icon {
    display: flex;
    gap: 10px;
}
.footer-section .footer-top .social .social-icon a {
    color: white;
    width: 30px;
    height: 30px;
    background: var(--tertiary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}
.footer-section .footer-top .social .social-icon a:hover {
    background: var(--tertiary-color-hover);
}
.footer-section .footer-top .social .social-icon a svg {
    fill: transparent;
}
.to-top-btn {
    width: 30px;
    height: 30px;
    background: var(--tertiary-color);
    border: 1px solid var(--tertiary-color);
    position: fixed;
    bottom: 20px;
    right: 90px;
    z-index: -1;
    display: none;
    cursor: pointer;
    border-radius: 6px;
}
.to-top-btn svg {
    margin: 10px 7px;
    color: var(--white-color);
}
.to-top-btn:hover,
.to-top-btn:focus {
    background: var(--tertiary-color-hover);
}
.to-top-btn:hover svg {
    color: var(--white-color);
}
.show-btn {
    z-index: 1;
    display: block;
}
#wa_link {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
}
#wa_link img {
    width: 60px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .footer-section .footer-top {
        margin-bottom: 0;
    }
    .footer-section .footer-top .border-bottom {
        padding: 28px 0px;
        gap: 16px;
    }
    .footer-section .uk-grid + .uk-grid,
    .footer-section .uk-grid > .uk-grid-margin,
    .footer-section * + .uk-grid-margin {
        margin-top: 16px;
    }
    .footer-section .copyright-container {
        display: block;
        padding: 15px 0px;
    }
    .footer-section .copyright {
        padding: 5px 0;
    }
}
@media (max-width: 639px) {
}

/* title banner */
.title-banner {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
    border-radius: 12px;
    background-position: center;
    margin-top: 40px;
    background-size: cover;
}
.title-banner .title {
    margin: 0px;
    font-weight: 500;
    color: white;
    font-size: 30px;
}
.title-banner .uk-breadcrumb {
    margin-bottom: 0px;
}
.title-banner .uk-breadcrumb li a,
.title-banner .uk-breadcrumb li span {
    color: var(--white-color);
    font-size: 0.85rem;
    font-weight: 300;
}
.title-banner .uk-breadcrumb > :nth-child(n + 2):not(.uk-first-column)::before {
    margin: 0 12px;
    color: var(--white-color);
}
.title-banner.title-blog {
    position: relative;
    overflow: hidden;
}
.title-banner.title-blog > * {
    position: relative;
    z-index: 2;
}
.title-banner.title-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.title-banner.title-blog .title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
}
.title-banner.title-blog > p {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white-color);
    padding-top: 10px;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .title-banner {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 30px;
    }
}
@media (max-width: 639px) {
}

/* faq */
.faq {
    margin-top: 60px;
    margin-bottom: 60px !important;
    background: var(--white-color);
    border-radius: 20px;
}
.faq li {
    padding: 30px;
}
.faq li:not(:last-child) {
    border-bottom: 1px solid var(--gray-color);
}
.faq .uk-accordion-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-text-color);
    text-transform: capitalize;
}
.faq .uk-accordion-content {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--secondary-text-color);
}
.faq.uk-accordion > :nth-child(n + 2) {
    margin-top: 0;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .faq {
        margin-top: 40px;
        margin-bottom: 40px !important;
    }
    .faq .uk-accordion-title {
        font-size: 1.125rem;
    }
}
@media (max-width: 639px) {
}

/* privacy */
.privacy-policy {
    margin-top: 60px;
    margin-bottom: 60px !important;
}
.privacy-policy h2 {
    font-size: 1.825rem;
    font-weight: 600;
    color: var(--primary-text-color);
    text-transform: capitalize;
    margin-bottom: 0px;
}
.privacy-policy .date,
.privacy-policy .text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-color);
    text-transform: capitalize;
    margin: 0;
}
.privacy-policy .date span,
.privacy-policy .content li span {
    font-weight: 600;
}
.privacy-policy .subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-text-color);
    text-transform: capitalize;
    margin-bottom: 10px;
}
.privacy-policy .content {
    margin-top: 25px;
}
.privacy-policy .content ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.privacy-policy .content li {
    color: var(--primary-text-color);
    font-size: 0.95rem;
    font-weight: 300;
}
.privacy-policy .content p {
    margin-bottom: 0px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .privacy-policy {
        margin-top: 40px;
        margin-bottom: 40px !important;
    }
    .privacy-policy h2 {
        font-size: 1.725rem;
    }
    .privacy-policy .content ul {
        padding-left: 20px;
    }
}
@media (max-width: 639px) {
}

/* fieldset */
.rounded-field {
    padding: 0 15px;
    font-size: 0.85rem;
    border: 1px solid var(--darker-gray-color);
}
.rounded-field.transparent {
    background: transparent;
}
.rounded-field.h45 {
    height: 45px !important;
    border-radius: 45px;
}
.rounded-field.p15 {
    padding: 15px;
}
.rounded-field.bordered-select {
    border: 1px solid var(--darker-gray-color);
    font-size: .9rem;
    padding: 0 15px;
}
.rounded-field.uk-form-danger{
    border: 1px solid var(--red-color)!important;
}
.uk-select.bordered-select:not([multiple]):not([size]) {
    background-position: 98% 50%;
}
.uk-textarea.r-20 {
    border-radius: 20px;
}

/* contact */
.contact-cta {
    margin-bottom: 60px;
    background: var(--secondary-bg-color);
}
.contact-us {
    margin-top: 60px;
    margin-bottom: 60px !important;
}
.contact-us .text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin: 0px;
}
.contact-us h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--primary-text-color);
}
.contact-us .subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--primary-text-color);
}
.contact-us .contact-form .label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-text-color);
}
.contact-us .contact-button {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    width: 100%;
    border: none;
}
.contact-us .contact-button:hover {
    background: var(--primary-color-hover);
}
.contact-us .information-card {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 20px;
}
.contact-us .information-card > div {
    margin-top: 20px;
}
.mapouter {
    position: relative;
    text-align: right;
    width: 100%;
    height: 340px;
}
.gmap_canvas {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 340px;
}
.gmap_iframe {
    width: 100% !important;
    height: 340px !important;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .contact-us .information-card {
        padding: 20px;
        border-radius: 20px;
    }
    .contact-us .information-card > div {
        margin-top: 20px;
    }
    .contact-us {
        margin-top: 40px;
        margin-bottom: 40px !important;
    }
    .contact-cta {
        margin-bottom: 40px;
    }
}
@media (max-width: 639px) {
}

/* about us */
.about-us {
    margin-top: 60px;
    margin-bottom: 60px !important;
}
.about-us .title-container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}
.about-us .title-container p,
.about-us .uk-card-default .uk-card-body > p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--tertiary-text-color);
    max-width: 500px;
    margin: 0px;
}
.about-us .uk-card-default {
    box-shadow: none;
    border-radius: 15px;
}
.about-us .uk-card-default .uk-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.about-us .uk-card-default .img-1 {
    border-radius: 0px 0px 20px 20px;
}
.about-us .uk-card-default .img-2 {
    border-radius: 20px 20px 0px 0px;
}
.about-us .uk-card-default .img-3 {
    border-radius: 0px 20px 20px 0px;
}
.about-us .content {
    margin-top: 40px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .about-us {
        margin-top: 40px;
        margin-bottom: 40px !important;
    }
    .about-us .content {
        margin-top: 30px;
    }
    .about-us .uk-card-default .img-3 {
        border-radius: 20px 20px 0px 0px;
    }
    .about-us .title-container h2 {
        font-size: 1.625rem;
    }
}
@media (max-width: 639px) {
}

/* off plan */
.off-plan {
    margin-top: 60px;
    padding-bottom: 60px !important;
}
.off-plan .title-container h1 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}
.off-plan .title-container > p,
.off-plan .title-container > h1 > span {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin: 15px 0px;
}
.off-plan .title-container .label-off {
    display: flex;
    justify-content: center;
    background: white;
    width: fit-content;
    margin: 0 auto;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--primary-color);
}
.off-plan .title-container .label-off svg {
    fill: transparent !important;
    margin-bottom: 3px;
}
.off-plan .title-container .label-off > div {
    position: relative;
    padding: 5px 15px;
}
.off-plan .title-container .label-off > div:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}
.custom-card-1 {
    border-radius: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 60px;
    margin-bottom: 60px !important;
}
.custom-card-1 .image-right {
    border-radius: 16px 0px 0px 16px;
}
.custom-card-1 .image-left {
    border-radius: 0px 16px 16px 0px;
}
.off-plan .custom-card-1 .key-invesment {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.off-plan .custom-card-1 .key-invesment::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
}
.off-plan .custom-card-1 .key-invesment .subtitle {
    font-size: 1.15rem;
    font-weight: 700;
}
.off-plan .custom-card-1 .uk-card-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 8px;
}
.off-plan .custom-card-1 .text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--tertiary-text-color);
    max-width: 500px;
    margin: 0px;
}
.off-plan .custom-card-1 .subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    max-width: 800px;
    margin: 8px 0;
}
.off-plan .custom-card-1 .description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    max-width: 500px;
    margin: 0px;
    margin-left: -15px;
}
.off-plan .custom-card-1 .description svg {
    width: 35px;
    height: 35px;
    padding: 8px;
    background: var(--gray-color);
    border-radius: 50%;
    margin-right: 8px;
}
.off-plan .banner {
    padding-bottom: 60px;
}
.off-plan .banner .contain {
    object-fit: contain;
    background: var(--secondary-bg-color);
}
.off-plan .banner .navigation-slider {
    background: var(--primary-color);
    border-radius: 6px;
    padding: 10px 13px;
}
.off-plan .banner .navigation-slider > svg {
    width: 10px;
}
.off-plan .banner .banner-container {
    z-index: 9;
    position: relative;
    margin-bottom: 40px;
}
.off-plan .banner .banner-container .title {
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 5px;
}
.off-plan .banner .banner-container .text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white-color);
    max-width: 530px;
    margin: 0px;
}
.off-plan .contact-card {
    border-radius: 20px;
    overflow: hidden;
}
.off-plan .contact-card img {
    border-radius: 0px 20px 20px 0px;
}
.off-plan .logo-watermark {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 160px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .off-plan .title-container h1 {
        font-size: 1.725rem;
    }
    .off-plan .custom-card-1 .uk-card-title {
        font-size: 1.5rem;
    }
    .off-plan .custom-card-1 .key-invesment .subtitle {
        font-size: 1rem;
    }
    .off-plan {
        margin-top: 40px;
        padding-bottom: 40px !important;
    }
    .custom-card-1 {
        padding-bottom: 0px;
        margin-top: 30px;
        margin-bottom: 30px !important;
    }
    .custom-card-1 .image-right {
        border-radius: 0px;
    }
    .custom-card-1 .image-left {
        border-radius: 0px;
    }
    .off-plan .banner {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .off-plan .banner .banner-container .title {
        font-size: 1.25rem;
    }
    .off-plan .contact-card img {
        border-radius: 20px 20px 0px 0px;
    }
    .off-plan .contact-card .contact-us {
        margin-top: 0px;
        margin-bottom: 0px !important;
    }
}
@media (max-width: 639px) {
    .off-plan .title-container .label-off > div {
        position: relative;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 0.8rem;
    }
    .off-plan .banner {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

/* villa manage */
.spacing-container > :nth-child(n + 2) {
    margin-top: 40px;
}
.villa-manage {
    margin-top: 60px;
    margin-bottom: 60px !important;
}
.villa-manage .text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--tertiary-text-color);
    margin: 0px 0px 6px 0px;
}
.villa-manage .text span {
    font-weight: 600;
}
.villa-manage .subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tertiary-text-color);
    margin: 0 auto;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.villa-manage h3,
.villa-manage .subtitle-section {
    font-size: 2.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    max-width: 500px;
    text-transform: capitalize;
}
.villa-manage button {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 7px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
    margin-top: 30px;
}
.villa-manage button:hover {
    background: var(--primary-color-hover);
}
.villa-manage .image-container {
    border-radius: 20px 20px 0px 0px;
    margin-top: 20px;
    min-height: 200px;
}
.villa-manage .feature-card {
    padding: 15px 30px;
    background: white;
    border-radius: 20px;
    margin-top: 20px;
}
.villa-manage .feature-card h3 {
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--tertiary-text-color);
    margin-bottom: 10px;
}
.villa-manage .feature-card .text {
    color: var(--secondary-text-color);
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.villa-manage .feature-card .text svg {
    margin-bottom: 10px;
    fill: transparent;
    color: var(--primary-color);
    font-size: 1rem;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .villa-manage,
    .spacing-container > :nth-child(n + 2) {
        margin-top: 30px;
        margin-bottom: 30px !important;
    }
    .villa-manage h2 {
        font-size: 1.5rem;
    }
    .villa-manage button {
        margin-top: 20px;
    }
    .villa-manage .feature-card {
        padding: 10px 25px;
    }
}
@media (max-width: 639px) {
}

/* property card */
.property-card {
    border-radius: 16px;
    box-shadow: none;
    overflow: hidden;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}
.property-card:hover {
    transform: scale(1.01) translateZ(0);
}
.property-card .uk-card-media-top {
    position: relative;
}
.property-card.img-left img {
    border-radius: 16px 0px 0px 16px;
}
.property-card .category {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 5px;
}
.property-card .category p:first-child {
    background: var(--primary-color);
    margin: 0px;
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    text-align: center;
    border-radius: 20px;
    width: fit-content;
}
.property-card .category p:last-child {
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    background: hsl(0deg 0% 0% / 50%);
    text-align: center;
    border-radius: 20px;
    width: fit-content;
    margin: 0px;
}
.property-card .bottom-label-container {
    position: absolute;
    z-index: 9;
    bottom: 20px;
    left: 20px;
}
.property-card .bottom-label-container .label-status-property {
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    background: hsl(0deg 0% 0% / 50%);
    text-align: center;
    border-radius: 20px;
    width: fit-content;
    margin: 0px;
    text-transform: capitalize;
}
.property-card .bottom-label-container .label-status-property.label-published {
    background: var(--green-color)
}
.property-card .bottom-label-container .label-status-property.label-sold {
    background: var(--red-color)
}
.property-card .bottom-label-container .label-status-property.label-leased {
    background: var(--blue-color)
}
.property-card .bottom-label-container .label-status-property.label-unpublished {
    background: var(--yellow-color)
}
.property-card .star {
    position: absolute;
    z-index: 9;
    bottom: 20px;
    left: 20px;
    color: var(--yellow-color);
}
.property-card .uk-card-body {
    padding: 20px;
}
.property-card .uk-card-body .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.property-card .uk-card-body .btn-share {
    margin: 10px 0px;
    width: 35px;
    height: 35px;
    border: 1px solid var(--darker-gray-color);
    padding: 5px;
    cursor: pointer;
    background: var(--white-color);
    border-radius: 4px;
    color: var(--secondary-text-color);
}
.property-card .uk-card-body .btn-share:hover {
    background: var(--darker-gray-color);
}
.property-card .uk-card-body .btn-share:hover svg {
    fill: var(--primary-text-color);
    color: var(--primary-text-color);
}
.property-card .uk-card-body .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    max-width: 800px;
    margin: 8px 0;
    text-transform: capitalize;
}
.property-card .uk-card-body .price span,
.property-card .uk-card-body .text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    max-width: 500px;
    margin: 0px;
    text-transform: capitalize;
}
.property-card .uk-card-body .text span {
    font-weight: 600;
    color: var(--primary-text-color);
}
.property-card .uk-card-body .title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--primary-text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.property-card .uk-card-body .address {
    display: flex;
    gap: 5px;
    color: var(--secondary-text-color);
}
.property-card .uk-card-body .address > svg {
    margin-top: 2px;
    flex: none;
}
.property-card .uk-card-body .facilities {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-text-color);
    padding: 15px 0px;
    flex-wrap: wrap;
}
.property-card .uk-card-body .facilities > div {
    display: flex;
    gap: 7px;
}
.property-card .uk-card-body .action-button {
    display: flex;
    align-items: center;
    padding-top: 15px;
    gap: 15px;
}
.property-card .uk-card-body .action-button .view-button {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 8px 25px;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    border: none;
}
.property-card .uk-card-body .action-button .view-button:hover {
    background: var(--primary-color-hover);
}
.property-card .uk-card-body .action-button .view-button svg {
    fill: transparent;
}
.property-card .uk-card-body .action-button .remove-button {
    background: var(--darker-gray-color);
    color: var(--primary-text-color);
    border-radius: 46px;
    padding: 8px 25px;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    border: none;
}
.property-card .uk-card-body .action-button .remove-button:hover {
    background: var(--darker-gray-color-hover);
}
.property-card.small .uk-card-body {
    padding: 20px 15px;
    padding-bottom: 0px;
}
.property-card.small .uk-card-body .title {
    font-size: 1rem;
    text-transform: capitalize;
}
.property-card.small .uk-card-body .facilities {
    padding: 10px 0px;
}
.property-card.small .uk-card-body .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.property-card.small .uk-card-body .footer .btn-share {
    margin: 15px 0px;
    width: 35px;
    height: 35px;
    border: 1px solid var(--darker-gray-color);
    padding: 5px;
    cursor: pointer;
    background: var(--white-color);
    border-radius: 4px;
    color: var(--secondary-text-color);
}
.property-card.small .uk-card-body .footer .btn-share:hover {
    background: var(--darker-gray-color);
}
.property-card.small .uk-card-body .footer .btn-share:hover svg {
    fill: var(--primary-text-color);
    color: var(--primary-text-color);
}
.property-card.small .uk-card-body .price span,
.property-card.small .uk-card-body .text {
    font-size: 0.85rem;
    text-transform: capitalize;
}
.compare .property-card.small .uk-card-body .text {
    font-size: 0.75rem;
    white-space: nowrap;
}
.property-card.small .uk-card-body .price {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 1.1rem;
}
.property-card.small .uk-card-media-top .address {
    display: flex;
    gap: 5px;
    color: var(--secondary-text-color);
    position: absolute;
    bottom: 20px;
    background: hsl(0deg 0% 0% / 50%);
    margin: 0px 10px;
    padding: 0px 5px;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
}
.property-card.small .uk-card-media-top .address > svg {
    margin-top: 1px;
    color: var(--white-color);
}
.property-card.small .category {
    top: 15px;
    left: 10px;
}
.property-card.small .category p:first-child,
.property-card.small .category p:last-child {
    font-size: 0.7rem;
    text-transform: capitalize;
}
.property-card.small .bottom-label-container {
    bottom: 50px;
    left: 10px;
}
.property-card.small .bottom-label-container .label-status-property {
    font-size: 0.7rem;
}
.property-card.small .star {
    bottom: 50px;
    left: 10px;
}
.property-card.small .uk-card-media-top .price span,
.property-card.small .uk-card-media-top .text {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--white-color);
    margin: 0px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.property-card.small .wishlist {
    position: absolute;
    top: 15px;
    right: 10px;
    margin: 0px;
}
.property-card.small .wishlist span {
    color: var(--white-color);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 15px;
    background: hsl(311deg 100% 76% / 70%);
    text-align: center;
    border-radius: 20px;
    width: fit-content;
    margin: 0px;
    text-transform: capitalize;
}
.property-card.small .wishlist span.remove {
    background-color: hsl(350deg 79% 61% / 57%);
}
.property-card.small .wishlist button,
.property-card.small .wishlist button:disabled {
    all: unset;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
/* managed-vertical */
.property-card.small.managed .wishlist {
    bottom: 31px;
    margin-bottom: 0px !important;
    top: auto;
    right: 25px;
}
.property-card.small.managed .bottom-label-container .label-status-property {
    padding: 8px 24px;
    font-size: 0.75rem;
}
.property-card.small.managed .wishlist span {
    padding: 8px 24px;
    font-size: 0.75rem;
}
.property-card.small.managed .bottom-label-container {
    bottom: 25px;
    left: 25px;
}
.property-card.small.managed .property-head {
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    display: flex;
}
.property-card.small.managed .address,
.property-card.small.managed .property-head .title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.property-card.small.managed .property-head .title {
    font-size: 1.75rem;
}
.property-card.small.managed .property-head .price {
    font-size: 2.25rem;
    line-height: 50%;
}
.property-card.small.managed .property-head .price span {
    font-size: 1rem;
    color: var(--primary-color);
    margin-right: 4px;
    font-weight: 700;
}
.property-card.small.managed .property-head .unit-duration {
    color: var(--primary-color);
    white-space: nowrap;
    text-align: right;
}
.property-card.small.managed .uk-card-body .facilities {
    background: var(--secondary-bg-color);
    margin-top: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: 6px 30px;
    width: auto;
}
.property-card.small.managed .uk-card-body .scroll-facilities {
    overflow-x: hidden;
}
.property-card.small.managed .uk-card-body .facilities > div {
    display: block;
    color: hsl(0deg 0% 0% / 70%);
}
.property-card.small.managed .uk-card-body .facilities > div {
    display: block;
    color: hsl(0deg 0% 0% / 70%);
}
.property-card.small.managed .uk-card-body .facilities > div .text-number {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0px;
}
.property-card.small.managed .uk-card-body .facilities > div .text-number span {
    font-size: 1rem;
}
.property-card.small.managed .uk-card-body .facilities > div p {
    color: hsl(0deg 0% 0% / 70%);
}
.property-card.small.managed .uk-card-body {
    padding: 25px;
}
.property-card.small.managed .uk-card-body .button-action {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 10px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.property-card.small.managed .uk-card-body .button-action:hover {
    background: var(--primary-color-hover);
}
.managed-by-bright-banner {
    background: #A1CFEB;
    background: linear-gradient(333deg, rgba(161, 207, 235, 1) 0%, rgba(243, 247, 253, 1) 100%);
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 50px;
}
.managed-by-bright-banner h1 {
    font-size: 3rem;
    margin-bottom: 0px;
    color: var(--primary-text-color);
}
.managed-by-bright-banner span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}
.managed-by-bright-banner p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgb(0 0 0 / 50%);
    max-width: 530px;
    margin: 0px auto;
    margin-top: 20px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .property-card.img-left img {
        border-radius: 16px 16px 0px 0px;
    }
    .property-card .uk-card-body {
        padding: 16px;
    }
    .property-card .uk-card-body .title,
    .property-card .uk-card-body .price {
        font-size: 1rem;
    }
    .property-card .uk-card-body .price span,
    .property-card .uk-card-body .text {
        font-size: 0.8rem;
    }
    .property-card .uk-card-body .scroll-facilities {
        overflow-x: scroll;
    }
    .property-card .uk-card-body .facilities {
        flex-wrap: nowrap;
        width: max-content;
    }
}
@media (max-width: 639px) {
    .property-card.small.managed .property-head .price {
        font-size: 1.25rem;
        margin-bottom: 5px;
        line-height: 55%;
    }
    .property-card.small.managed .property-head .title {
        font-size: 1.25rem;
    }
}
@media (max-width: 479px) {
    .property-card.small.managed .bottom-label-container {
        bottom: 15px;
        left: 15px;
    }
    .property-card.small.managed .wishlist {
        bottom: 21px;
        right: 15px;
    }
    .property-card.small.managed .uk-card-body {
        padding: 15px;
    }
    .property-card.small.managed .uk-card-body .facilities > div .text-number {
        font-size: 1.5rem;
    }

    .property-card.small.managed .uk-card-body .facilities > div .text-number span {
        font-size: 0.875rem;
    }
    .managed-by-bright-banner h1 {
        font-size: 2.2rem;
    }
    .property-card.small.managed .uk-card-body .facilities {
        padding: 6px 20px;
    }
    .property-card.small .uk-card-body .price span,
    .property-card.small .uk-card-body .text {
        font-size: 0.75rem;
    }
}

/* wishlist */
.wishlist {
    margin-top: 60px;
    margin-bottom: 60px !important;
}
.wishlist .title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-text-color);
}
.wishlist .wishlist-item > div:nth-child(n + 2) {
    margin-top: 20px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .property-card .uk-card-body .action-button {
        flex-direction: column;
    }
    .property-card .uk-card-body .action-button button,
    .property-card .uk-card-body .action-button a {
        width: 100%;
    }
    .wishlist {
        margin-top: 40px;
        margin-bottom: 40px !important;
    }
    .property-card .uk-card-body .action-button form {
        width: 100%;
    }
}
@media (max-width: 639px) {
}

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 0.95rem;
}
.pagination .uk-pagination > li {
    width: 35px;
    height: 35px;
    background: var(--white-color);
    border: 1px solid var(--darker-gray-color);
    border-radius: 8px;
    color: var(--darker-gray-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .uk-pagination > li:nth-child(n + 2) {
    margin-left: 10px;
}
.pagination .uk-pagination > li.uk-active,
.pagination .uk-pagination > li:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}
.pagination .uk-pagination > .uk-active > *,
.pagination .uk-pagination > li:hover > * {
    color: var(--white-color);
}

/* blog */
.blog {
    margin-top: 40px;
    margin-bottom: 40px !important;
}
.blog .uk-card-default {
    box-shadow: none;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}
.blog .uk-card-default:hover {
    transform: scale(1.01) translateZ(0);
}
.blog .uk-card-default .uk-card-body {
    padding: 0;
}
.blog .title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-text-color);
}
.blog .blog-item .floating-date {
    position: absolute;
    top: 15px;
    left: 20px;
    background: var(--primary-color);
    margin: 0px;
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 20px;
    text-align: center;
    border-radius: 20px;
    width: fit-content;
}
.blog .blog-item .uk-card-body .author-category {
    margin-left: -15px;
    margin-top: 15px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog .blog-item .uk-card-body .author-category > span {
    position: relative;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    padding: 0px 15px;
}
.blog .blog-item .uk-card-body .author-category > span:first-child {
    font-weight: 600;
    color: var(--primary-text-color);
}
.blog .blog-item .uk-card-body .author-category > span:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}
.blog .blog-item .uk-card-body .uk-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 5px;
    margin-top: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog .blog-item .uk-card-body .description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog .blog-item .small-card .uk-card-body .uk-card-title {
    font-size: 1rem;
    font-weight: 500;
}
.blog .blog-item .small-card .uk-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-left: 15px;
}
.blog .blog-item img {
    border-radius: 16px;
}
.blog .blog-item .small-card {
    border-top: 1px solid var(--darker-gray-color);
    padding-top: 20px;
    padding-bottom: 5px;
    border-radius: 0;
    margin: 0;
}
.blog .blog-sidebar .form-search .search-field {
    position: relative;
}
.blog .blog-sidebar .form-search .search-field input {
    padding-left: 50px;
}
.blog .blog-sidebar .form-search .search-field span {
    position: absolute;
    top: 13px;
    left: 18px;
}
.blog .blog-sidebar .category-list {
}
.blog .blog-sidebar .category-list ul li {
    border-bottom: 1px solid var(--darker-gray-color);
}
.blog .blog-sidebar .category-list ul li:last-child {
    border-bottom: none;
}
.blog .blog-sidebar .category-list ul li > a:hover {
    text-decoration: none;
}
.blog .blog-sidebar .category-list ul li > a:hover > div p {
    color: var(--primary-color);
}
.blog .blog-sidebar .category-list ul li > a > div {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}
.blog .blog-sidebar .category-list ul li > a > div:first-child {
    padding-top: 10px;
}
.blog .blog-sidebar .category-list ul li p {
    margin: 0;
}
.blog .blog-sidebar .category-list ul li p:first-child {
    font-weight: 600;
    color: var(--primary-text-color);
}
.blog-detail .title-post {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-text-color);
}
.blog-detail .label-container {
    display: flex;
    width: fit-content;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--primary-color);
    gap: 10px;
    margin-bottom: 10px;
}
.blog-detail .label-container > div {
    display: flex;
    align-items: center;
}
.blog-detail .label-container > div > img,
.blog-detail .label-container > div > svg {
    flex-shrink: 0;
    width: auto;
}
.blog-detail .label-container > div:nth-child(1),
.blog-detail .label-container > div:nth-child(3) {
    white-space: nowrap;
    width: max-content;
    flex-shrink: 0;
}
.blog-detail .label-container > div:nth-child(2) {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-detail .label-container > div:nth-child(2) > img {
    margin-right: 10px;
}
.blog-detail .label-container svg {
    fill: transparent !important;
    margin-right: 10px;
    color: var(--darker-gray-color);
    flex: none;
}
.blog-detail .featured-image {
    margin: 20px 0px;
    border-radius: 16px;
}
.blog-detail .uk-article img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.blog-detail .uk-article em {
    color: currentColor;
}
.blog-detail .uk-article blockquote {
    font-style: italic;
    color: var(--primary-text-color);
    border-left: 4px solid var(--primary-color);
    padding: 10px 20px;
    margin: 20px 0;
    background: var(--darker-gray-color);
    position: relative;
    padding-top: 32px;
    font-size: 1rem;
}
.blog-detail .uk-article blockquote::before {
    content: "“";
    font-size: 40px;
    color: var(--primary-color);
    position: absolute;
    left: 10px;
    top: 5px;
}
.blog-detail .uk-article blockquote p {
    margin: 0;
    padding-left: 30px;
}
.blog-detail .uk-article .attachment__caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-bg-color);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--primary-text-color);
    margin-top: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: none;
}
.blog-detail .uk-article .attachment__name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}
.blog-detail .uk-article .attachment__size  {
    font-size: 12px;
    color: var(--secondary-text-color);
    white-space: nowrap;
}
.blog-detail .social {
    display: flex;
    justify-content: end;
    padding-top: 20px;
}
.blog-detail .social .item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.blog-detail .social .item > p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin: 0px;
}
.blog-detail .social .item .icons {
    display: flex;
    gap: 10px;
}
.blog-detail .social .item .icons > a > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--darker-gray-color);
    border-radius: 30px;
    color: var(--darker-gray-color);
    cursor: pointer;
}
.blog-detail .social .item .icons > a > div:hover {
    background: var(--darker-gray-color);
    color: var(--white-color);
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .blog .title {
        font-size: 1.25rem;
    }
}
@media (max-width: 639px) {
    .blog-detail .label-container {
        display: block;
    }
    .blog-detail .label-container > div:not(:last-child)::after {
        content: "";
    }
    .blog-detail .title-post {
        font-size: 1.75rem;
    }
    .blog-detail .label-container > div:nth-child(2) {
        display: flex;
    }
}
@media (max-width: 480px) {
    .blog-detail .title-post {
        font-size: clamp(1.3rem, 2vw, 1.65rem);
    }
}

/* compare */
.compare {
    margin-top: 40px;
    margin-bottom: 40px !important;
}
.compare .title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-text-color);
}
.compare .table-flow {
    overflow-y: auto;
}
.compare .table-flow > table {
    min-width: 1200px;
    width: max-content;
}
.compare .uk-table-divider th:not(:first-child),
.compare .uk-table-divider td:not(:first-child) {
    border-left: 1px solid var(--darker-gray-color);
}

.compare .uk-table-divider th:not(:last-child),
.compare .uk-table-divider td:not(:last-child) {
    border-right: 1px solid var(--darker-gray-color);
}
.compare .star {
    color: var(--yellow-color);
}
.compare .subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    max-width: 800px;
    margin: 8px 0;
}

/* property */
.property-search {
    background: var(--white-color);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 16px 0px;
}
.property-search .button-action {
    display: flex;
    gap: 10px;
    justify-content: end;
}
.property-search .button-action button > svg {
    fill: transparent;
}
.property-search .button-action .button-search {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.property-search .button-action .button-search:hover {
    background: var(--primary-color-hover);
}
.property-search .button-action .button-filter {
    background: transparent;
    color: var(--primary-text-color);
    border-radius: 46px;
    padding: 11px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: 1px solid var(--primary-color);
}
.property-search .action-button .button-filter:hover {
    background: var(--gray-color);
}
.property-search .label {
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    color: var(--secondary-text-color);
}
.property-search .label.primary {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-text-color);
    padding-bottom: 6px;
}
.property-search select {
    padding: 0;
    height: 25px;
    font-size: .95rem;
    font-weight: 600;
    border: none;
    color: var(--primary-text-color);
}
.property > div {
    height: 100%;
}
.property .map-container {
    height: 100%;
    min-height: 400px;
}
.property .map-container #map {
    height: 100%;
}
.property .title-list {
    font-weight: 700;
    color: var(--primary-text-color);
    margin-top: 30px;
    margin-bottom: 0px;
}
.property iframe {
    height: 100svh;
    height: calc(100svh - 171px);
}
@media (max-width: 1199px) {
    .property-search .button-action {
        justify-content: space-between;
        width: 100%;
    }
}
@media (max-width: 959px) {
    .property-search .button-action .button-filter,
    .property-search .button-action .button-search {
        font-size: 0.9rem;
    }
    .property-search .button-action .button-filter {
        padding: 10px 16px;
    }
    .property .map-container {
        padding-top: 20px;
        padding-bottom: 0px;
    }
    .property .title-list {
        margin-bottom: 30px;
    }
    .property .flex-first {
        order: -1;
    }
    .property {
        margin-bottom: 20px !important;
    }
}
@media (max-width: 639px) {
    .property-search {
        padding: 20px 0px;
    }
}
@media (min-width: 960px) {
    .prx-0 {
        padding-right: 0;
    }
    .property {
        height: 100svh;
        height: calc(100svh - 171px);
    }
    .property .list-property {
        height: 100svh;
        height: calc(100svh - 270px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-top: 15px;
        padding-right: 15px;
    }
}

/* banner home */
.banner-home {
    background-size: cover;
    background-position: center;
    min-height: 100svh;
    min-height: calc(100svh - 75px);
    z-index: 10;
    position: relative;
}
.banner-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.banner-home.cg::before {
    background: rgb(38, 62, 80, 0.5);
}
.banner-home > .uk-container {
    z-index: 1;
    position: relative;
}
.banner-home .content-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
    min-height: calc(100svh - 75px);
}
.banner-home .content-banner .text-content {
    margin-bottom: 80px;
}
.banner-home .content-banner .text-content .title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white-color);
    max-width: 1000px;
    margin: 0px auto 10px;
}
.banner-home .content-banner .text-content .description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white-color);
    max-width: 600px;
    margin: 0 auto;
}
.banner-home .content-banner .text-content .title-cg {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 4rem;
    font-weight: 600;
    max-width: 1200px;
    color: var(--white-color);
    margin: 0px auto 60px;
}
.banner-home .content-banner .text-content .title-cg span {
    font-size: 2.25rem;
    font-weight: 300;
}
.banner-home .content-banner .text-content .description-cg {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white-color);
    max-width: 540px;
    text-align: left;
}
.banner-home .property-search {
    padding: 14px 16px;
    border-radius: 80px;
    padding-left: 35px;
    text-align: left;
}
@media (max-width: 1199px) {
    .banner-home .content-banner .text-content .title {
        font-size: 1.6rem;
    }
    .banner-home .property-search {
        padding: 16px;
        border-radius: 16px;
    }
    .banner-home.cg .content-banner {
        padding: 0px 0px;
    }
    .banner-home .content-banner .text-content .title-cg {
        margin: 0px auto 40px;
    }
    .banner-home .content-banner {
        padding: 60px 0px;
    }
    .banner-home .content-banner .text-content {
        margin-bottom: 40px;
    }
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
    .banner-home .content-banner .text-content .title-cg {
        margin: 0px auto 20px;
    }
}

/* featured listing */
.featured-listing {
    padding-top: 80px;
    padding-bottom: 60px !important;
    background: var(--white-color);
}
.featured-listing .button-more {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 10px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.featured-listing .button-more:hover {
    background: var(--primary-color-hover);
}
.featured-listing .text-content {
    text-align: center;
}
.featured-listing .text-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-text-color);
    margin-top: 0;
    font-size: 1.825rem;
    text-transform: capitalize;
}
.featured-listing .text-content .subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.featured-listing .tab-wrapper {
    width: 100%;
    width: calc(100% - 103px);
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 30px;
    text-align: center;
}
.featured-listing .tab-type {
    display: inline-flex;
    gap: 15px;
    padding: 10px;
    text-align: center;
}
.featured-listing .tab-type span {
    background: var(--secondary-bg-color);
    margin: 0px;
    color: var(--tertiary-text-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 20px;
    text-align: center;
    border-radius: 20px;
}
.featured-listing .tab-type span.uk-active {
    background: var(--primary-color);
    color: var(--white-color);
}
.featured-listing .spacing-cta {
    margin-top: 50px;
}
@media (max-width: 959px) {
    .featured-listing .spacing-cta {
        margin-top: 50px;
    }
    .featured-listing {
        position: relative;
    }
    .featured-listing .tab-wrapper::before {
        content: 'Scroll →';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 1;
        background: var(--gray-color);
        color: var(--tertiary-text-color);
        font-size: 0.9rem;
        font-weight: 600;
        padding: 0px 20px;
        text-align: center;
        border-radius: 20px;
        margin: 5px 0;
    }
    .featured-listing .tab-wrapper {
        position: relative;
        padding-left: 103px;
    }
}

/* destination */
.destination {
    padding-top: 30px;
    padding-bottom: 60px !important;
    background: var(--white-color);
}
.destination .text-content {
    text-align: center;
    padding: 20px 0 10px 0;
}
.destination .text-content h1,
.destination .text-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-text-color);
    margin-top: 0;
    font-size: 1.825rem;
}
.destination .text-content .subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    max-width: 80%;
    margin: 0 auto 5px;
}
.destination .card-img {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
}
.destination .card-img.img-1 {
    overflow: hidden;
}
.destination .card-img.img-2 {
    overflow: hidden;
}
.destination .card-img.img-3 {
    overflow: hidden;
}
.destination .card-img.img-1::before,
.destination .card-img.img-2::before,
.destination .card-img.img-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.destination .card-img .card-content {
    margin-top: auto;
    z-index: 1;
}
.destination .card-img .card-content.off-plan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: max-content;
    min-height: 100%;
}
.destination .card-img .uk-card-title {
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
    font-size: 1.825rem;
}
.destination .card-img .text,
.destination .card-img p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white-color);
    margin: 10px 0px;
}
.destination .card-img .button-discover {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.destination .card-img .button-discover:hover {
    background: var(--primary-color-hover)
}
.destination .spacing-cta {
    margin-top: 50px;
}
.destination .button-more {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 10px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.destination .button-more:hover {
    background: var(--primary-color);
}
@media (max-width: 959px) {
    .destination .spacing-cta {
        margin-top: 50px;
    }
    .destination {
        padding-top: 0px;
    }
    .destination .text-content {
        padding: 0;
    }
}

/* testimonial */
.testimonial {
    padding-top: 80px;
    padding-bottom: 60px !important;
    background: var(--secondary-bg-color);
}
.testimonial .text-content {
    text-align: center;
}
.testimonial .text-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-text-color);
    margin-top: 0;
}
.testimonial .text-content .subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.testimonial .card-testimonial {
    padding: 20px;
    border-radius: 16px;
    background: white;
    height: calc(100% - 40px);
}
.testimonial .card-testimonial .mt-auto {
    margin-top: auto;
}
.testimonial .card-testimonial > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial .card-testimonial .icon {
    color: var(--primary-color);
    flex: none;
}
.testimonial .card-testimonial .icon.fill > path {
    color: transparent;
    fill: var(--primary-color);
}
.testimonial .card-testimonial .icon.stroke > path {
    color: transparent;
    stroke: var(--primary-color);
}
.testimonial .card-testimonial .text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--tertiary-text-color);
    text-transform: capitalize;
    min-height: 75px;
}
.testimonial .card-testimonial .uk-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-text-color);
    text-transform: capitalize;
}
.testimonial .card-testimonial .uk-text-meta {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--secondary-text-color);
    text-transform: capitalize;
    margin: 0px;
}
.testimonial .card-testimonial .star {
    color: var(--yellow-color);
    display: flex;
}
.testimonial .card-testimonial .star svg {
    flex: none;
}
.testimonial .card-testimonial .relative {
    position: relative;
}
.testimonial .card-testimonial .absolute {
    position: absolute;
}
.testimonial .card-testimonial .half-star {
    width: 8px;
    left: 8px;
    top: 0;
    background: var(--white-color);
    height: 100%;
}
.testimonial .uk-dotnav > .uk-active > * {
    background-color: var(--primary-color);
    border-color: transparent;
}
.testimonial .uk-dotnav > * > * {
    border: none;
    background: var(--darker-gray-color);
}
.testimonial .slider .uk-slidenav {
    background: var(--primary-color);
    padding: 10px 11px;
    border-radius: 8px;
    margin: 15px 0;
    margin-top: 40px;
}
.testimonial .slider .uk-slidenav svg {
    height: 16px;
}

/* subs */
.subs {
    padding-top: 100px;
    padding-bottom: 100px !important;
    background: var(--white-color);
}
.subs .text-content {
    text-align: center;
}
.subs .text-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-text-color);
    margin-top: 0;
}
.subs .text-content .subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.subs .label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-text-color);
}
.subs .subs-button {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    width: 100%;
    border: none;
    margin-top: 30px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .subs .subs-button {
        margin-top: 15px;
    }
    .subs {
        padding-top: 70px;
        padding-bottom: 70px !important;
    }
}
@media (max-width: 639px) {
}

/* featured blog */
.featured-blog {
    padding-top: 80px;
    padding-bottom: 60px !important;
    background: var(--secondary-bg-color);
}
.featured-blog .text-content {
    text-align: center;
}
.featured-blog .text-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-text-color);
    margin-top: 0;
}
.featured-blog .text-content .subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.featured-blog .button-more {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 10px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.featured-blog .button-more:hover {
    background: var(--primary-color);
}

/* detail property  */
.detail-property {
    padding-top: 40px;
    padding-bottom: 60px !important;
}
.detail-property .heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--darker-gray-color);
}
.detail-property .heading .title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-text-color);
    margin: 0;
}
.detail-property .heading .pricing {
    min-width: 250px;
}
.detail-property .heading .pricing p {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0;
}
.detail-property .heading .pricing span {
    font-size: .95rem;
    font-weight: 400;
    color: var(--secondary-text-color);
}
.detail-property .sub-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.detail-property .sub-heading .info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 100%;
}
.detail-property .sub-heading .info > div {
    max-width: 100%;
}
.detail-property .sub-heading .button-action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.detail-property .sub-heading .title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 0px;
}
.detail-property .sub-heading .facilities {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--tertiary-text-color);
    padding: 10px 0;
}
.detail-property .sub-heading .facilities > div {
    display: flex;
    gap: 10px;
}
.detail-property .sub-heading .address {
    display: flex;
    gap: 5px;
    color: var(--tertiary-text-color);
    justify-content: center;
    align-items: center;
    font-size: .875rem;
}
.detail-property .sub-heading .text {
    font-size: 0.875rem;
    text-transform: capitalize;
    margin: 0px;
}
.detail-property .btn-action {
    margin: 15px 0px;
    width: 35px;
    height: 35px;
    border: 1px solid var(--darker-gray-color);
    padding: 5px;
    cursor: pointer;
    background: var(--white-color);
    border-radius: 4px;
    color: var(--secondary-text-color);
}
.detail-property .btn-action:hover {
    background: var(--darker-gray-color);
}
.detail-property .btn-action:hover svg {
    fill: var(--primary-text-color);
    color: var(--primary-text-color);
}
.detail-property .btn-action.active {
    background: var(--red-color);
    border: 1px solid var(--red-color);
}
.detail-property .btn-action.active svg {
    fill: var(--white-color);
    color: var(--white-color);
    width: 16px;
}
.detail-property .gallery-images {
    padding: 10px 0px;
}
.detail-property .gallery-images .uk-border-rounded {
    border-radius: 15px;
}
.detail-property .gallery-images .uk-overlay-primary {
    background: rgb(34 34 34 / 50%) !important;
}
.detail-property .book-card .title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-text-color);
}
.detail-property .book-card {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 12px;
    background: var(--white-color);
}
.detail-property .book-card .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-text-color);
}
.detail-property .book-card .book-button {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.detail-property .book-card .book-button:hover {
    background: var(--primary-color-hover);
}
.detail-property .content {
    padding: 40px 0px;
}
.detail-property .content .subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin-bottom: 10px;
    margin-top: 20px;
}
.detail-property .content .description p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--tertiary-text-color);
    margin: 0 0 10px 0;
}
.detail-property .content .property-details .detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.detail-property .content .property-details .detail strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-text-color);
    min-width: 170px;
}
.detail-property .content .property-details .detail span {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--tertiary-text-color);
}
.detail-property .content .amenities {
    padding-bottom: 20px;
}
.detail-property .content .amenities .item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-property .content .amenities .item svg {
    fill: transparent;
    flex: none;
}
.detail-property .content .amenities .item p {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--primary-text-color);
    margin: 0px;
}
.detail-property .content .amenities .item.fill-none .uk-svg {
    fill: transparent;
}
.detail-property .content .mapouter {
    margin-top: 10px;
    border-radius: 15px;
    overflow: hidden;
}
.detail-property .uk-table th {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--tertiary-text-color);
    text-transform: capitalize;
}
.detail-property .uk-table td {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-text-color);
    text-transform: capitalize;
}
.detail-property .managed-heading {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.detail-property .managed-heading .title {
    font-size: 3rem;
    font-weight: 400;
}
.detail-property .managed-heading .content-right {
    max-width: 320px;
}
.detail-property .managed-heading .content-right .address {
    font-weight: 600;
    margin-bottom: 10px;
}
.detail-property .managed-heading .content-right .facilities {
    display: flex;
    gap: 24px;
    font-size: 0.875rem;
}
.detail-property .managed-heading .content-right .button-action {
    display: flex;
    gap: 20px;
}
.detail-property .managed-heading .content-right .button-action {
    display: flex;
    gap: 20px;
}
.detail-property .managed-heading .content-right .button-action .wishlist-button {
    background: var(--primary-color);
    margin: 0px;
    color: var(--white-color);
    font-size: 0.8rem;
    padding: 5px 15px;
    text-align: center;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid var(--primary-color);
}
.detail-property .managed-heading .content-right .button-action .wishlist-button:hover {
    background: var(--primary-color-hover);
    color: var(--white-color);
}
.detail-property .managed-heading .content-right .button-action .share-button {
    margin: 0px;
    border-radius: 35px;
    width: auto;
    padding: 5px 15px;
}
.detail-property .managed-heading .content-right .button-action .share-button:hover {
    color: var(--primary-text-color);
}
.detail-property .gallery-images.managed > div {
    border-radius: 16px;
    overflow: hidden;
}
.detail-property .gallery-images.managed > div .uk-cover-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.detail-property .gallery-images.managed > div .uk-cover-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%);
}
.detail-property .gallery-images.managed > div .uk-cover-container canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.detail-property .gallery-images.managed > div .uk-slidenav {
    background: var(--primary-color);
    padding: 10px 11px;
    border-radius: 8px;
    margin: 15px 0;
    margin-top: 40px;
}
.detail-property .gallery-images.managed > div .uk-slidenav svg {
    height: 16px;
    color: var(--white-color);
}
.detail-property .gallery-images.managed > div .uk-slidenav-previous {
    left: 25px;
}
.detail-property .gallery-images.managed > div .uk-slidenav-next {
    right: 25px;
}
.detail-property .gallery-images.managed .bottom-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}
.detail-property .gallery-images.managed .bottom-info .gallery-count {
    padding: 16px;
    border-radius: 16px;
    background: var(--white-color);
}
.detail-property .gallery-images.managed .bottom-info .uk-dotnav {
    padding: 10px 10px 10px 0;
    background: var(--white-color);
    border-radius: 30px;
}
.detail-property .gallery-images.managed .bottom-info .uk-dotnav li.uk-active a {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.detail-property .gallery-images.managed .bottom-info .uk-dotnav li a {
    background-color: var(--darker-gray-color);
    border-color: var(--darker-gray-color);
}
.detail-property .content.managed-description {
    background-color: var(--white-color);
}
.detail-property .content.managed-description .subtitle-2 {
    font-size: 0.9rem;
    font-weight: 600;
}
.detail-property .content.managed-description .property-details .detail {
    justify-content: left;
    padding: 12px 0;
    border-bottom: 1px solid var(--darker-gray-color);
}
.detail-property .content.managed-description .property-details .detail:first-child {
    padding-top: 0px;
}
.detail-property .content.managed-description .property-details .detail:last-child {
    border-bottom: 0px solid var(--darker-gray-color);
}
.detail-property .content.managed-description .property-details .detail span {
    min-width: 170px;
}
.detail-property .content.managed-description .amenities .item-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.detail-property .content.managed-description .amenities .item-container .item {
    background: var(--secondary-bg-color);
    padding: 8px 20px;
    border-radius: 46px;
}
.detail-property .content.managed-description .amenities .item-container .item p {
    white-space: nowrap;
}
.detail-property .content.managed-description .mapouter {
    margin-top: 0;
}
.detail-property .content.managed-description .mapouter,
.detail-property .content.managed-description .mapouter .gmap_canvas,
.detail-property .content.managed-description .mapouter .gmap_canvas .gmap_iframe {
    height: 100% !important;
    min-height: 340px;
}
.detail-property .property-detail-mt {
    margin-top: 0px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .detail-property .heading .pricing p {
        font-size: 1rem;
    }
    .detail-property .heading .pricing {
        min-width: 200px;
    }
    .detail-property .heading .title {
        font-size: 1.35rem;
    }
    .detail-property .sub-heading .info {
        flex-direction: column;
        align-items: baseline;
        gap: 0;
    }
    .detail-property {
        padding-bottom: 0px !important;
    }
    .detail-property .managed-heading .title {
        font-size: 3rem;
        margin-bottom: 16px;
    }
}
@media (max-width: 639px) {
    .detail-property .sub-heading {
        flex-direction: column;
        align-items: baseline;
        background: white;
        padding: 15px 15px 0 15px;
        border-radius: 20px;
        margin-top: 15px;
    }
    .detail-property .heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .detail-property .sub-heading .address {
        padding-top: 6px;
    }
    .detail-property {
        padding-top: 30px;
    }
    .detail-property .content {
        padding: 30px 0px;
    }
    .detail-property .sub-heading .scroll-facilities {
        overflow-x: scroll;
    }
    .detail-property .sub-heading .facilities {
        flex-wrap: nowrap;
        width: max-content;
    }
    .detail-property .uk-table-divider > tbody > tr:first-child {
        border-top: 0px;
    }
    .detail-property .uk-table td {
        padding-left: 0px;
        padding-right: 0px;
    }
    .detail-property .content .property-details > div > div:last-child {
        margin-top: 0px;
    }
    .detail-property .managed-heading {
        display: block;
    }
    .detail-property .managed-heading .content-right {
        max-width: 100%;
    }
    .detail-property .gallery-images.managed .bottom-info {
        padding: 16px;
    }
    .detail-property .gallery-images.managed > div .uk-slidenav-previous {
        left: 16px;
    }
    .detail-property .gallery-images.managed > div .uk-slidenav-next {
        right: 16px;
    }
    .detail-property .gallery-images.managed > div .uk-slidenav {
        margin-top: 0;
    }
    .detail-property .gallery-images.managed .bottom-info .gallery-count {
        padding: 4px 16px;
    }
    .detail-property .gallery-images.managed .bottom-info .uk-dotnav {
        display: none;
    }
    .detail-property .property-detail-mt {
        margin-top: 10px;
    }
}

.link-tree {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    background: var(--white-color);
    background-size: cover;
    padding: 30px 0px;
}
.link-tree .logo {
    width: 150px;
    margin-bottom: 40px
}
.link-tree .content {
    text-align: center;
    max-width: 340px;
    padding: 40px;
    width: 100%;
    min-height: 600px;
    background-color: hsla(0, 0%, 100%, 0.4);;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 20px
}
.link-tree .title {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--primary-text-color);
}

.link-tree .title.mt-30 {
    margin-top: 25px
}
.link-tree .description {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 30px;
    color: var(--primary-text-color)
}
.link-tree .link-to-home {
    color: var(--primary-text-color);
    background: var(--white-color);
    padding: 6px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px
}
.link-tree .link-to-home:hover {
    text-decoration: none
}
.link-tree .button-fill.uk-button {
    padding: 0 20px;
    width: 100%;
    border-radius: 6px;
    font-weight: 400;
    transition: transform .15s cubic-bezier(0,.2,.5,3) 0s
}
.link-tree .button-fill.uk-button:hover {
    transform: scale(1.02)
}
.link-tree .with-avatar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px !important;
}
.contact-cta .link-tree .with-avatar {
    flex-direction: column;
    padding: 16px !important;
    background: transparent;
    border: 0px solid transparent;
    gap: 4px;
}
.contact-cta .link-tree .with-avatar .text-section > span {
    color: var(--primary-text-color);
    font-size: 1rem !important;
    font-weight: 500;
}
.contact-cta .link-tree .with-avatar .avatar-icon {
    width: 140px;
    height: 140px;
    border-radius: 6px;
}
.contact-cta .link-tree .outer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.contact-cta .contact-cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.link-tree .with-avatar .avatar-icon {
    width: 30px;
    height: 30px;
    background: #97b0ad;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}
.link-tree .with-avatar .text-section {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.link-tree .with-avatar .text-section > span:first-child {
    height: 25px;
    display: flex;
    align-items: center;
}
.link-tree .with-avatar .text-section > span:last-child {
    height: 22px;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}
@media (max-width: 640px) {
    .link-tree .content {
        border-radius:0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .contact-cta .link-tree .uk-grid > div:last-child {
        margin-top: 20px;
    }
    .contact-cta .link-tree .with-avatar .avatar-icon {
        width: 120px;
        height: 120px;
    }
    .contact-cta .contact-cta-section {
        flex-direction: column;
    }
    .link-tree {
        padding: 0px;
    }
}
@media (min-width: 961px) {
    .contact-cta-section h2 {
        font-size: 2.75rem;
        max-width: 600px;
    }
}
.button-fill.uk-button {
    border-radius: 30px;
    line-height: 38px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    padding: 4px 30px;
    color: var(--white-color)
}
.button-fill:hover,.button-fill:focus,.button-fill:active {
    border: 1px solid var(--primary-color-hover);
    color: var(--white-color)
}
.team-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tertiary-text-color);
    margin: 10px 0px 2px 0px;
}
.team-position {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--tertiary-text-color);
    margin: 0px 0px 6px 0px;
}
.post-categories .item {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    border-bottom: 1px solid var(--darker-gray-color);
}
.post-categories .item p:first-child {
    font-weight: 600;
    color: var(--primary-text-color);
}
.post-categories .item p {
    margin: 0;
}
.radio-select-sales {
    padding-top: 8px;
}
.radio-select-sales .sales-option input {
    display: none;
}
.radio-select-sales .sales-option .sales-content {
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 48px;
    transition: border 0.3s ease;
    border-color: var(--darker-gray-color);
    cursor: pointer;
}
.radio-select-sales .sales-option input:checked + .sales-content {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white-color);
}
.marker-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.marker-container .pricing {
    padding: 2px 5px 2px 20px;
    background: var(--green-color);
    color: var(--white-color);
    margin-left: -25px;
    border-radius: 15px;
}

/* Exclusive villas */
.exclusive-villas {
    padding-top: 30px;
    padding-bottom: 60px !important;
    background: var(--white-color);
}
.exclusive-villas .button-more {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 10px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.exclusive-villas .button-more:hover {
    background: var(--primary-color-hover);
}
.exclusive-villas .text-content {
    text-align: center;
}
.exclusive-villas .text-content h2 {
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-text-color);
    margin-top: 0;
    font-size: 1.825rem;
    text-transform: capitalize;
}
.exclusive-villas .text-content .subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.exclusive-villas .section-cta {
    background: #A1CFEB;
    background: linear-gradient(333deg, rgba(161, 207, 235, 1) 0%, rgba(243, 247, 253, 1) 100%);
    border-radius: 16px;
    text-align: center;
    padding: 60px 60px 0 60px;
    position: relative;
    overflow: hidden;
}
.exclusive-villas .subtitle-cta {
    font-weight: 500;
    color: var(--primary-text-color);
    margin-top: 0;
    font-size: 2rem;
    text-transform: capitalize;
    margin-bottom: 60px;
    padding: 0 40px;
}
.exclusive-villas .button-more {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 10px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.exclusive-villas .button-more:hover {
    background: var(--primary-color-hover);
}
.exclusive-villas .cta-button-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
@media (max-width: 959px) {
    .exclusive-villas .section-cta {
        padding: 60px 16px 0 16px;
    }
}
@media (max-width: 639px) {
    .exclusive-villas .subtitle-cta {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    .exclusive-villas .section-cta {
        padding: 40px 0 0 0;
    }
}
@media (max-width: 360px) {
    .exclusive-villas .cta-button-center {
        bottom: 70px;
    }
}

/* not found */
.empty-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}
.empty-page .head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.empty-page .head .empty-page-logo {
    width: 30px;
}
.empty-page .head h1 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-text-color);
    margin: 0;
}
.empty-page .text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--tertiary-color);
    margin: 10px 0px 20px 0;
}
.empty-page .button-home {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 4px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: none;
}
.empty-page .button-home:hover {
    background: var(--primary-color-hover);
}
.empty-page .button-outline {
    background: transparent;
    color: var(--primary-text-color);
    border-radius: 46px;
    padding: 3px 30px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: 1px solid var(--primary-color);
}
.empty-page .button-outline:hover {
    background: var(--gray-color);
}
@media (max-width: 640px) {
    .m-highlight-p {
        padding-right: 60px;
    }
    .m-highlight {
        background: #0582ff;
        padding: 10px;
        color: white;
    }
}

.why-invest,
.master-plan,
.payment-plan,
.scenes-of-serenity {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--light-blue-foreground);
}
.why-invest .title {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 10px;
}
.why-invest .title span {
    font-weight: 600;
}
.why-invest .description {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 300;
}
.why-invest .why-item > div {
    border-radius: 16px;
}
.why-invest .why-item {
    border-radius: 16px;
}
.why-invest .why-item .why-btn {
    z-index: 9;
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: var(--white-color);
    color: var(--primary-text-color);
    border-radius: 46px;
    padding: 8px 24px;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    border: 1px solid var(--white-color);
}

@media (max-width: 1199px) {
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
    .why-invest,
    .master-plan,
    .payment-plan,
    .scenes-of-serenity {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.off-plan-pad {
    padding-top: 80px;
    padding-bottom: 80px;
}
.surounding-card .card-info {
    padding: 20px 20px 15px 20px;
}
.surounding-card .card-info .title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 6px;
}
.surounding-card .card-info .sub-title {
    font-size: 1rem;
    font-weight: 300;
    margin: 0px;
}
.surounding-card .card-info .desc-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-width: 0;
    width: 100%;
}
.surounding-card .card-info .desc-section p.sub-title {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    min-width: 0;
    text-overflow: ellipsis;
}
.surounding-card .card-info .desc-section a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--tertiary-text-color);
    white-space: nowrap;
    flex-shrink: 0;
}
.surounding-card .card-info .desc-section a:hover,
.surounding-card .card-info .desc-section a:focus {
    color: var(--primary-color);
}
.surounding-card .card-info .desc-section a span:first-child {
    white-space: nowrap;
}
.surounding-card .card-info .desc-section a span[uk-icon] {
    flex-shrink: 0;
}
.surounding-card .card-info .desc-section a:hover,
.surounding-card .card-info .desc-section a:focus {
    color: var(--primary-color);
}
.map-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    min-height: 350px;
    background-color: var(--primary-color);
    position: relative;
}
.map-bg > p {
    padding: 16px;
    margin: 20px;
    position: absolute;
    background: var(--glass-40);
    border-radius: 8px;
    bottom: 0px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    color: var(--primary-color);
}

@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .surounding-card .card-info .title {
        font-size: 1.125rem;
    }
    .surounding-card .card-info .sub-title {
        font-size: 0.975rem;
    }
    .map-bg > p {
        font-size: 0.625rem;
        margin: 16px;
    }
    .surounding-card .card-info .desc-section {
        align-items: end;
    }
}
@media (max-width: 639px) {
    .off-plan-pad {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

#master-plan-section {
    overflow-x: hidden;
}
.master-plan .slider-wrapper {
    max-width: 650px;
    margin: 0 auto;
}
.master-plan .slider-container {
    width: 100%;
    overflow: visible;
}
.master-plan .uk-slider-items {
    overflow: visible;
}
.master-plan .slider-container .uk-panel {
    border-radius: 16px;
    overflow: hidden;
}
.master-plan .slider-container .dot-nav {
    background: var(--white-color);
    width: fit-content;
    margin: 0 auto;
    padding: 5px;
    border-radius: 50px;
    margin-top: 0px !important;
}
.master-plan .slider-container .dot-nav > button {
    background: var(--white-color);
    color: var(--primary-text-color);
    border-radius: 46px;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    border: none;
}
.master-plan .slider-container .dot-nav > button.uk-active {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 46px;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    border: none;
}

@media (max-width: 1199px) {
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
    .master-plan .slider-container .dot-nav > button {
        border-radius: 37px;
        padding: 8px 14px;
    }
    .master-plan .slider-container .dot-nav > button.uk-active {
        border-radius: 37px;
        padding: 8px 14px;
    }
}
@media (max-width: 379px) {
    .master-plan .slider-container .dot-nav > button {
        padding: 8px 12px;
    }
    .master-plan .slider-container .dot-nav > button.uk-active {
        padding: 8px 12px;
    }
}

.payment-plan .payment-steps {
    gap: 32px;
    padding: 80px 0;
}
.payment-plan .step-item {
    text-align: center;
    position: relative;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.payment-plan .step-circle {
    width: 140px;
    height: 140px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-plan .step-circle span {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white-color);
}
.payment-plan .step-circle .label-number {
    display: none;
}
.payment-plan .step-label {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}
.payment-plan .step-line {
    flex: 1;
    border-bottom: 2px solid var(--primary-color);
    align-self: center;
    min-width: 60px;
}
.payment-plan .note {
    color: var(--primary-text-color);
    font-size: 0.95rem;
    font-weight: 300;
    text-align: center;
}
.payment-plan .note span {
    font-weight: 700;
}
.payment-plan .note a {
    color: var(--primary-color)
}
.payment-plan .note a:hover {
    color: var(--primary-color-hover);
    text-decoration: none;
}
.payment-plan .title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.payment-plan .title-container h2 {
    margin-bottom: 0px;
}

@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .payment-plan .payment-steps {
        justify-content: center;
        gap: 40px;
    }
    .payment-plan .step-line {
        display: none;
    }
    .payment-plan .step-circle .label-number {
        display: block;
        position: absolute;
        bottom: 40px;
        left: 10px;
        font-size: 1rem;
        background: var(--white-color);
        border-radius: 30px;
        width: 24px;
        color: var(--primary-text-color);
        font-weight: 400;
    }
    .payment-plan .step-circle span {
        font-size: 2rem;
    }
}
@media (max-width: 639px) {
    .payment-plan .step-circle {
        width: 110px;
        height: 110px;
    }
    .payment-plan .step-circle span {
        font-size: 1.75rem;
    }
    .payment-plan .payment-steps {
        gap: 32px;
        padding: 40px 0;
    }
    .payment-plan .title-container button {
        padding: 8px 20px;
    }
}
@media (max-width: 379px) {
}

.villa-management {
    padding: 80px 0;
}
.villa-management-title {
    font-size: 2.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.villa-management-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
}
.villa-management-description {
    font-size: 16px;
    color: var(--primary-text-color);
    line-height: 1.6;
}
.villa-management-note {
    font-size: 15px;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}
.villa-management-bold {
    font-weight: 700;
}

@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .villa-management-title {
        font-size: 36px;
    }
    .villa-management-button {
        margin-top: 12px;
        width: 100%;
    }
    .villa-management-note {
        background-color: var(--light-blue-foreground);;
        padding: 16px;
        border-radius: 20px 20px 0px 0px;
        padding-bottom: 36px;
        margin-bottom: -20px;
    }
}
@media (max-width: 639px) {
    .villa-management-title {
        font-size: 32px;
    }
    .villa-management-section {
        padding: 60px 0;
    }
}
@media (max-width: 379px) {
}

.services-section {
    position: relative;
}
.services-section .content-services {
    padding-top: 270px;
    padding-bottom: 25px;
}
.services-section .bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.services-section .uk-container {
    position: relative;
    z-index: 2;
}
.services-title {
    font-size: 1rem;
    color: var(--white-color);
    margin-bottom: 15px;
}
.service-card {
    background: var(--glass-40);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    min-height: 144px;
    color: #002742;
}
.service-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #002742;
}
.service-card p {
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1199px) {
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
    .service-card {
        min-height: 100px;
    }
}
@media (max-width: 379px) {
}

.roi p {
    color: var(--tertiary-text-color);
    margin-bottom: 12px;
    margin-top: 12px;
}
.roi-label {
    margin: 0px;
    font-weight: 600;
    color: var(--primary-color) !important;
}
.roi-selector {
    margin-top: 5px;
    margin-bottom: 16px;
}
.roi-outer-card {
    padding: 16px;
    border-radius: 16px;
    background: var(--light-blue-foreground);
}
.roi-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.roi-title-small {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--tertiary-text-color);
    margin-top: 14px;
}
.roi-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tertiary-text-color);
}
.roi-image-wrapper {
    height: 100%;
}
.roi-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.roi-icon {
    height: 28px;
    background: transparent;
    fill: transparent;
    color: var(--primary-color);
}

@media (max-width: 1199px) {
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
    .roi-title {
        font-size: 2rem;
    }
    .roi-card {
        padding: 18px;
    }
}
@media (max-width: 379px) {
}

.director-of-development .title-name {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 600;
}
.director-of-development .contact-card {
    background: linear-gradient(#F5F5F5, #FFFFFF);
    border-radius: 24px;
    width: 100%;
    max-width: 530px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    position: relative;
}
.director-of-development .anchor-glass {
    background: hsl(0deg 0% 37.94% / 40%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 20px;
    border-radius: 52px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    color: var(--white-color);
    font-size: 1.2rem;
    border: none;
}
.director-of-development .email-clip {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}
.director-of-development .email-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.director-of-development .email-spacing-mobile {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    line-height: 1.4;
    display: inline-block;
    max-width: 100%;
}

@media (max-width: 1199px) {
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
    .director-of-development .anchor-glass {
        font-size: 0.875rem;
    }
    .director-of-development .title-name {
        font-size: 2.25rem;
    }
}
@media (max-width: 379px) {
}

.toc-container {
    padding: 16px;
    padding-right: 22px;
    background: var(--secondary-bg-color);
    border-radius: 6px;
    padding-bottom: 6px;
}

.toc-container ul {
    padding-left: 0;
}

.toc-container ul ul {
    padding-left: 16px;
    font-size: 0.95em;
}

.toc-container li {
    margin-bottom: 6px;
    margin-left: 1rem;
    font-size: 0.95rem;
}

.toc-container a {
    text-decoration: none;
    color: var(--secondary-text-color);
}

.toc-container a:hover {
    color: var(--primary-text-color);
}

@media (max-width: 1199px) {
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
    .toc-container ul ul {
        padding-left: 0px;
    }

    .toc-container li {
        margin-left: 0px;
    }
}
@media (max-width: 379px) {
}
