@media only screen and (min-width: 1000px) {
    .container, body[data-header-format="left-header"] .container,
    .woocommerce-tabs .full-width-content .tab-container,
    .nectar-recent-posts-slider .flickity-page-dots,
    .post-area.standard-minimal.full-width-content .post .inner-wrap,
    .material #search-outer #search {
        padding: 0;
    }
}

@media only screen and (min-width: 320px) {
    .container,
    body[data-header-format="left-header"] .container,
    .woocommerce-tabs .full-width-content .tab-container,
    .nectar-recent-posts-slider .flickity-page-dots,
    .post-area.standard-minimal.full-width-content .post .inner-wrap,
    .material #search-outer #search {
        max-width: 1180px !important;
    }
}

@media only screen and (max-width: 1210px) {
    .container, body[data-header-format="left-header"] .container,
    .woocommerce-tabs .full-width-content .tab-container,
    .nectar-recent-posts-slider .flickity-page-dots,
    .post-area.standard-minimal.full-width-content .post .inner-wrap,
    .material #search-outer #search {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* GENERAL */

html {
    scroll-behavior: smooth;
}

:root {
    --nectar-accent-color: #DB1F26;
    --nectar-extra-color-1: #223F51;
    --main-font-family: "Open Sans", sans-serif;
}

.grecaptcha-badge {
    display: none;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--nectar-extra-color-1);
    border-bottom-color: var(--nectar-accent-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

/* TYPOGRAPHY */

.paragraph-small {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

/* BUTTONS */

body[data-button-style="slightly_rounded_shadow"] .container-wrap button[type="submit"]:hover,
body[data-button-style="slightly_rounded_shadow"] .container-wrap input[type="submit"]:hover {
    box-shadow: none !important;
}

body .btn {
    padding: 10px 18px !important;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent !important;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-family: var(--main-font-family);
    font-size: 14px !important;
    font-weight: 500 !important;
    min-width: 180px;
    transition: all 0.3s ease-in-out;
}

body .btn:hover {
    transform: none !important;
    cursor: pointer;
    opacity: 0.85;
}

body .btn-primary {
    border-color: var(--nectar-accent-color);
    background-color: var(--nectar-accent-color) !important;
    color: #fff;
}

body .btn-secondary {
    border-color: #e0e0e0;
    color: #818181;
}

body .btn-secondary:hover {
    border-color: var(--nectar-accent-color);
    background-color: var(--nectar-accent-color) !important;
    color: #fff;
    opacity: 1;
}

/* ANIMATIONS */

.fade-in {
    animation: fadeInAnimation 0.4s linear forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
} 

/* FOOTER */

.footer-main .widget_nav_menu ul {
    margin: 0;
}

.footer-main .widget_nav_menu ul li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-main .widget_nav_menu ul li a {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    color: white;
}

.footer-main .widget_nav_menu ul li a:hover {
    color: var(--nectar-accent-color);
}

.footer-area p {
    margin-bottom: 0;
}

.footer-area a {
    color: var(--nectar-extra-color-1);
    font-weight: 600;
}

.footer-area a:hover {
    color: #fff;
}

/* CONTACT FORM 7 */

.wpcf7-form label {
    margin-bottom: 6px;
    display: inline-block;
}

.wpcf7-form label:hover {
    cursor: pointer;
}

.wpcf7-form .wpcf7-not-valid-tip {
    box-shadow: none;
}

.wpcf7-form-control .wpcf7-list-item {
    margin-left: 0;
}

.wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label {
    display: inline-flex;
    position: relative;
}

.wpcf7-form-control .wpcf7-list-item input[type="checkbox"] {
    background-color: transparent !important;
    margin: 0 !important;
    appearance: none;
    width: 0 !important;
    height: 0 !important;
    outline: none !important;
    border: none !important;
    opacity: 0;
    position: absolute;
    left: -3000px;
}

.wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--nectar-accent-color);
    border-radius: 4px;
    margin-right: 8px;
}

.wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label::after {
    content: "";
    display: none;
    position: absolute;
    left: 6.5px;
    top: 2.5px;
    width: 5px;
    height: 10px;
    border: solid var(--nectar-accent-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label span {
    flex: 1;
    color: #383838;
}

.wpcf7-form-control .wpcf7-list-item input[type="checkbox"]:checked ~ .wpcf7-list-item-label::after {
    display: block;
}

.wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label:hover {
    cursor: pointer;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 14px;
    line-height: 20px;
    padding: 0.8em 1em;
    border: none;
}

.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	background-color: #FDFBD2;
}

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #DEFAF5;
}

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #DEFAF5;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	background-color: #FAE3E6;
}

.wpcf7 .submit-control p {
    display: flex;
    align-items: center;
    padding-bottom: 0;
}

.wpcf7 .submit-control button {
    padding: 18px 34px;
    width: 100%;
}

.wpcf7-spinner {
    background-color: var(--nectar-extra-color-1);
}

/* SOCIAL NETWORKS SHORTCODE */

.social-networks {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.social-networks .social-item {
    margin-left: 8px;
    margin-right: 8px;
}

.social-networks .social-item svg {
    fill: white;
    transition: all 0.3s ease-in-out;
}

.social-networks .social-item:hover svg {
    fill: var(--nectar-accent-color);
}

/* SINGLE PROPERTY */

.single-property .nectar-global-section.before-footer {
    padding-top: 0 !important;
}

.single-property .hero .tab-photos {
    background-color: #EDEDEB;
}

.single-property .hero .grid-photos {
    max-width: 1680px;
    margin: 0 auto;
    display: none;
    height: 620px;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: 1fr 1fr;
    grid-gap: 20px;
    gap: 20px;
}

.single-property .hero .img-holder {
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: rotate(0);
    border-radius: 8px;
}

.single-property .hero .img-holder.hide {
    display: none;
}

.single-property .hero .tab-photos .img-holder img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.single-property .hero .tab-photos .img-holder img:hover {
    transform: scale(1.15);
    cursor: pointer;
}

.single-property .hero .tab-photos .img-holder:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
}

.single-property .hero .tab-photos span.number-photos {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #f6f4f1;
    border-top-right-radius: 8px;
    display: flex;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #242424;
}

.single-property .hero .tab-photos .number-photos svg {
    width: 13px;
    margin-right: 6px;
}

.single-property .hero .tab-photos .swiper {
    width: 100%;
    height: 500px;
}

.single-property .hero .tab-photos .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-property .hero .tab-photos .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-property .hero .tab-photos .swiper .swiper-pagination {
    bottom: 30px !important;
}

.single-property .hero .tab-photos .swiper .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #fff !important; 
}

.single-property .hero .tab-photos .swiper .swiper-pagination-bullet-active {
    background: var(--nectar-accent-color) !important; 
}

.gslide-media {
    max-width: 80vw !important;
    margin: 0 auto;
}

.single-property .hero .tab-video {
    height: 500px;
    background-color: #EDEDEB;
}

.single-property .hero .tab-video .img-holder {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.single-property .hero .tab-video .img-holder img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.single-property .hero .tab-video .img-holder button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0 !important;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 5px rgba(0,0,0,.07);
}

.single-property .hero .tab-video .img-holder button:hover {
    cursor: pointer;
    transform: translate(-50%, -50%) scale(1.2);
    transform-origin: center center;
}

.single-property .hero .tab-video .img-holder button svg {
    max-width: 100px;
    max-height: 100px;
}

.single-property .hero .tab-floorplant {
    height: 500px;
    background-color: #EDEDEB;
}

.single-property .hero .tab-floorplant .img-holder {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.single-property .hero .tab-floorplant .img-holder img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.single-property .hero .tab-floorplant .img-holder:hover {
    cursor: pointer;
}

.single-property .hero .tab-floorplant .img-holder button {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 5px !important;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 5px rgba(0,0,0,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.single-property .hero .tab-floorplant .img-holder:hover button {
    cursor: pointer;
    color: var(--nectar-accent-color);
}

.single-property .hero .tab-map {
    height: 500px;
    background-color: #EDEDEB;
}

.single-property .hero .tab-map #map {
    width: 100%;
    height: 100%;
}

.single-property .hero .tab-buttons {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.single-property .hero .tab-buttons button {
    flex: 1 1;
    flex-direction: column;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    font-family: var(--main-font-family);
    font-weight: 500;
    color: var(--nectar-extra-color-1);
}

.single-property .hero .tab-buttons button.active,
.single-property .hero .tab-buttons button:hover {
    cursor: pointer;
    background-color: #EDEDEB;
}

.single-property .hero .tab-buttons button.active {
    color: var(--nectar-extra-color-1);
}

.single-property .hero .tab-buttons button svg {
    width: auto;
    height: 20px;
    margin-bottom: 10px;
}

.single-property .hero .tab-buttons button.active svg {
    color: var(--nectar-accent-color);
}

.single-property .single-content .vc_row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}

.single-property .single-content .vc_row .vc_col-xs-12 {
    padding: 0 15px;
}

.single-property .single-content .vc_row .vc_col-xs-12 > div:last-child {
    margin-bottom: 60px;
}

.property-price {
    margin-top: 60px;
}

.property-price .paragraph-small {
    padding-bottom: 0;
    font-size: 12px;
    line-height: 18px;
}

.property-price h2 {
    font-size: 42px;
    line-height: 48px;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--nectar-extra-color-1);
}

.property-price h2 span {
    font-size: 18px !important;
    line-height: 24px !important;
    color: var(--nectar-accent-color);
}

.property-price h1 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 0;
}

.property-price a,
.property-price p {
    display: inline-block;
    margin-top: 8px;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 20px;
}

.property-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 30px 0 60px 0;
    gap: 10px;
}

.property-list li.property-item p {
    padding-bottom: 0;
}

.property-list li.property-item b {
    color: var(--nectar-extra-color-1);
}

.property-list li.property-item {
    display: flex;
    align-items: center;
    background-color: #f6f4f1;
    border-radius: 4px;
    padding: 5px 15px;
    height: 50px;
    font-size: 14px;
    line-height: 20px;
}

.property-list li.property-item svg {
    width: 22px;
    margin-right: 7px;
    color: var(--nectar-extra-color-1);
}

.property-content h3.title-content {
    color: var(--nectar-extra-color-1);
    margin-bottom: 30px;
}

.property-content h1,
.property-content h2,
.property-content h3,
.property-content h4,
.property-content h5,
.property-content h6 {
    color: var(--nectar-extra-color-1);
}

.property-content h1 {
    font-size: 22px;
    line-height: 30px;
}

.property-content h2 {
    font-size: 20px;
    line-height: 28px;
}

.property-content h3:not(.title-content) {
    font-size: 18px;
    line-height: 26px;
}

.property-content h4 {
    font-size: 16px;
    line-height: 24px;
}

.property-content h5 {
    font-size: 15px;
    line-height: 23px;
}

.property-content h6 {
    font-size: 14px;
    line-height: 22px;
}

.property-details h3 {
    color: var(--nectar-extra-color-1);
    margin-top: 30px;
    margin-bottom: 15px;
}

.property-details ul.property-details-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.property-details .property-details-list li {
    list-style: none;
    display: flex;
    align-items: center;
    width: calc(33.333% - 10px);
}

.property-details .property-details-list li p {
    padding-bottom: 0;
}

.property-details .property-details-list li b {
    color: var(--nectar-extra-color-1);
}

.property-details .property-details-list img {
    margin-left: 5px;
}

.property-features {
    margin: 30px 0 0 0;
}

.property-features h3 {
    color: var(--nectar-extra-color-1);
    margin-bottom: 15px;
}

.property-features h6 {
    color: var(--nectar-extra-color-1);
    margin-bottom: 15px;
}

.property-features ul.property-features-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 15px 0;
    gap: 10px;
}

.property-features ul.property-features-list li {
    width: calc(33.333% - 10px);
    display: flex;
    align-items: flex-start;
}

.property-features ul.property-features-list li svg {
    width: 20px;
    height: auto;
    color: var(--nectar-accent-color);
    margin-right: 5px;
    margin-top: 3px;
}

.property-features ul.property-features-list li span {
    width: calc(100% - 25px);
}

.property-contact-form {
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    background-color: #fff;
    border-radius: 8px;
}

.property-contact-form h5 {
    color: var(--nectar-accent-color);
    margin-bottom: 20px;
}

.others-properties {
    background-color: #EDEDEA;
}

.others-properties .other-property-container {
    padding: 60px 0 80px 0;
}

.others-properties .tabs-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.others-properties .tabs-buttons button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0 !important;
    border-bottom: 2px solid transparent;
    font-family: var(--main-font-family);
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    opacity: 0.50;
    color: var(--nectar-extra-color-1);
}

.others-properties .tabs-buttons button:hover {
    cursor: pointer;
    opacity: 1;
}

.others-properties .tabs-buttons button.active {
    border-bottom-color: var(--nectar-accent-color);
    opacity: 1;
}

.others-properties .tab {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.others-properties .tab .property-grid-item {
    width: calc(100% - 10px);
}

@media only screen and (min-width: 1001px) {
    .single-property .hero .tab-photos .grid-photos {
        display: grid;
        padding: 60px;
    }

    .single-property .hero .tab-photos .swiper {
        display: none;
    }

    .single-property .hero .tab-video {
        padding: 60px;
        height: 620px;
    }

    .single-property .hero .tab-video .img-holder {
        border-radius: 8px;
    }

    .single-property .hero .tab-floorplant {
        padding: 60px;
        height: 620px;
    }

    .single-property .hero .tab-video .img-holder {
        border-radius: 8px;
    }

    .single-property .hero .tab-map {
        padding: 60px;
        height: 620px;
    }

    .single-property .hero .tab-video .img-holder #map {
        border-radius: 8px;
        overflow: hidden;
    }

    .others-properties .tab .property-grid-item {
        width: calc(33.333% - 10px);
    }

    .property-contact-form {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 1000px) {
    .others-properties .tab .property-grid-item {
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 768px) {
    .property-features ul.property-features-list li,
    .property-details .property-details-list li {
        width: calc(50% - 10px);
    }

    .others-properties .tab {
        gap: 0px;
    }

    .others-properties .tab .property-grid-item {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .others-properties .tabs-buttons button {
        font-size: 18px;
        line-height: 26px;
    }
    .property-features ul.property-features-list li,
    .property-details .property-details-list li {
        width: calc(100% - 10px);
    }
}

/* PROPERTY GRID ITEM */

.property-grid-item {
    display: flex;
    animation: fadeInAnimation 0.3s linear forwards;
}

.property-grid-item .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 5px rgba(0,0,0,.07);
    transition: all 0.3s ease-in-out;
}

.property-grid-item .wrapper:hover {
    box-shadow: 0 10px 10px 0 rgba(0,0,0,.1);
}

.property-grid-item .img-holder {
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: rotate(0);
    border-radius: 4px;
    height: 240px;
}

.property-grid-item .img-holder img {
    position: absolute;
    object-fit: cover;
    width: 100% !important;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.property-grid-item .wrapper:hover .img-holder img {
    transform: scale(1.15);
}

.property-grid-item .img-holder .status {
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 1;
    padding: 8px 10px;
    background-color: var(--nectar-extra-color-1);
    border-bottom-right-radius: 4px;
    font-size: 12px;
    line-height: 14px;
    color: white;
}

.property-grid-item .metadata {
    margin-top: 20px;
}

.property-grid-item .metadata span {
    font-size: 12px;
    line-height: 18px;
    color: #383838;
}

.property-grid-item .metadata h6 {
    font-size: 36px;
    font-weight: 800;
    line-height: 42px;
    color: var(--nectar-extra-color-1);
    margin-top: 0;
    margin-bottom: 0;
}

.property-grid-item .metadata h6 span {
    display: inline-block;
    margin-left: 5px;
    font-size: 16px;
    color: var(--nectar-extra-color-1);
}

.property-grid-item .metadata h4 {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--nectar-accent-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.property-grid-item .metadata ul {
    margin: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 10px;
}

.property-grid-item .metadata ul li {
    display: flex;
    align-items: center;
    background-color: #f6f4f1;
    border-radius: 4px;
    padding: 5px 15px;
    height: 50px;
    font-size: 14px;
    line-height: 20px;
    color: #383838;
}

.property-grid-item .metadata ul li svg {
    width: 22px;
    margin-right: 7px;
    color: var(--nectar-extra-color-1);
}

@media only screen and (max-width: 768px) {
    .property-grid-item .img-holder {
        height: 360px;
    }
}

@media only screen and (max-width: 520px) {
    .property-grid-item .img-holder {
        height: 240px;
    }
}

/* ARCHIVE PROPERTIES */

.archive-property .filters-heading h1 {
    color: var(--nectar-accent-color);
}

.archive-property .filters-heading p {
    color: #383838;
}

.archive-property #showFilters {
    margin-top: 30px;
}

.archive-property #showFilters button.btn {
    display: inline-flex;
    align-items: center;
    min-width: inherit !important;
}

.archive-property #showFilters svg {
    width: 20px;
    height: auto;
    margin-right: 5px;
}

.archive-property #showFilters svg.closeIcon {
    width: 14px;
}

.archive-property form#filterProperties {
    margin-top: 30px;
}

.archive-property form#filterProperties .wrapper {
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0,0,0,.07);
}

.archive-property form#filterProperties .columns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.archive-property form#filterProperties .columns > .column {
    flex: 0.333;
}

.archive-property form#filterProperties .type-property span.label,
.archive-property form#filterProperties .columns > .column span.label {
    font-size: 14px;
    line-height: 20px;
    font-family: var(--main-font-family);
}

.archive-property form#filterProperties .columns > .column:not(:first-child) span.label {
    margin-bottom: 10px;
    display: block;
    width: 100%;
}

.archive-property form#filterProperties .columns > .column:first-child {
    flex: 0.666;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.archive-property form#filterProperties .columns > .column:first-child > .column {
    flex: 0.50;
}

.archive-property form#filterProperties .columns > .column:first-child span.label {
    display: block;
    width: 100%;
    color: #383838 !important;
}

.archive-property form#filterProperties .fancy-select-wrap {
    padding-top: 0px;
}

.archive-property form#filterProperties .type-property {
    margin-top: 15px;
}

.archive-property form#filterProperties .type-property .type-property-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.archive-property form#filterProperties .type-property span.label {
    display: block;
    margin-bottom: 10px;
}

.archive-property form#filterProperties .type-property label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #818181;
    transition: all 0.3s ease-in-out;
}

.archive-property form#filterProperties .type-property label:hover {
    cursor: pointer;
}

.archive-property form#filterProperties .type-property input[type="checkbox"] {
    background-color: transparent !important;
    margin: 0 !important;
    appearance: none;
    width: 0 !important;
    height: 0 !important;
    outline: none !important;
    border: none !important;
    opacity: 0;
    position: absolute;
    left: -3000px;
}

.archive-property form#filterProperties .type-property input[type="checkbox"]:checked ~ span {
    background-color: var(--nectar-accent-color);
    color: #fff;
    border-color: var(--nectar-accent-color);
}

.archive-property form#filterProperties .form-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.archive-property .results {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.archive-property .results .order .fancy-select-wrap {
    padding-top: 0;
}

.archive-property .results strong {
    font-weight: 800;
    color: var(--nectar-extra-color-1);
}

.archive-property .results span {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}

.archive-property .loader-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.archive-property .load-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.archive-property .html-content {
    min-height: 25vh;
}

.archive-property .property-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.archive-property .property-grid-container .property-grid-item {
    flex: 0.333;
}

.archive-property .no-property-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.archive-property .no-property-found svg {
    color: var(--nectar-accent-color);
    margin-bottom: 15px;
}

.archive-property .no-property-found h5 {
    color: var(--nectar-extra-color-1);
    margin-bottom: 8px;
}

.archive-property .no-property-found p {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 0;
}

@media only screen and (max-width: 1000px) {
    .archive-property .property-grid-container .property-grid-item {
        flex: 0.50;
    }
}

@media only screen and (max-width: 768px) {
    .archive-property .property-grid-container .property-grid-item {
        flex: 1 100%;
    }
}

@media only screen and (max-width: 690px) {
    .archive-property form#filterProperties .columns > .column:first-child {
        flex: 1 100%;
    }

    .archive-property form#filterProperties .columns > .column {
        flex: 0.5;
    }

    .archive-property form#filterProperties .form-actions button {
        flex: 0.5;
    }
}

@media only screen and (max-width: 480px) {
    .archive-property form#filterProperties .columns > .column:first-child > .column,
    .archive-property form#filterProperties .columns > .column {
        flex: 1 100%;
    }

    .archive-property form#filterProperties .form-actions button {
        flex: 1 100%;
    }
}

/* HERO PROPERTY */

.hero-property {
    position: relative;
}

.hero-property .swiper {
    width: 100%;
    height: 500px;
}

.hero-property .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-property .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.hero-property .swiper-slide img {
    position: absolute;
    display: block;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.hero-property .swiper-slide .metadata {
    position: absolute;
    left: 50%;
    top: 250px;
    z-index: 4;
    width: 100%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    padding: 25px;
    text-align: center;
}

.hero-property .swiper-slide a {
    display: inline-block;
}

.hero-property .swiper-slide h5 {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
}

.hero-property .swiper-slide span {
    color: #fff;
    text-align: center;
    font-family: var(--main-font-family);
    font-size: 14px;
    line-height: 1em;
}

.hero-property h1 {
    width: 100%;
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 12;
    color: #fff;
    text-align: center;
}

.hero-property .container {
    margin-top: -85px;
    position: relative;
    z-index: 3;
}

.hero-property .container form {
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0,0,0,.07);
}

.hero-property .columns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-property .columns .column {
    flex: 0.25;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

.hero-property form .label {
    font-family: var(--main-font-family);
    font-size: 14px;
    line-height: 20px;
    display: block;
    color: #383838;
}

.hero-property form .fancy-select-wrap {
    padding-top: 0;

    margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
    .hero-property .columns .column {
        flex: 0.50 100%;
    }

    .hero-property form .btn {
        margin-top: 10px;
    }

    .hero-property .swiper-slide h5 {
        font-size: 16px;
        line-height: 22px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;  
        overflow: hidden;
    }

    .hero-property .swiper-slide span {
        font-size: 12px;
        line-height: 18px;
    }
}

/* GRID PROPERTY */

.grid-property > .wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: -7.5px;
}

.grid-property .wrapper .property-grid-item {
    width: 33.333%;
    padding: 7.5px;
}

.grid-property > .wrapper .no-property-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.grid-property > .wrapper .no-property-found svg {
    color: var(--nectar-accent-color);
    margin-bottom: 15px;
}

.grid-property > .wrapper .no-property-found h5 {
    color: var(--nectar-extra-color-1);
    margin-bottom: 8px;
}

.grid-property > .wrapper .no-property-found p {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 0;
}

@media only screen and (max-width: 1000px) {
    .grid-property .wrapper .property-grid-item {
        width: 50%;
    }
}

@media only screen and (max-width: 768px) {

    .grid-property .wrapper .property-grid-item .img-holder {
        height: 215px;
    }
}

@media only screen and (max-width: 690px) {
    .grid-property .wrapper .property-grid-item {
        width: 100%;
    }

    .grid-property .wrapper .property-grid-item .img-holder {
        height: 310px;
    }
}

/* CTA PHONE */

.cta-phone .wrapper {
    background-color: var(--nectar-accent-color);
    padding: 45px 0;
}

.cta-phone .container {
    display: flex;
}

.cta-phone .column {
    flex: 1 1 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cta-phone .column:last-child {
    flex: 1 1 200px;
    justify-content: flex-end;
}

.cta-phone .column svg {
    width: auto;
    height: 75px;
    color: #fff;
}

.cta-phone .column .text {
    padding-left: 20px;
}

.cta-phone .column .text span {
    display: block;
    font-family: var(--main-font-family);
    color: #fff
}

.cta-phone .column .text span.label {
    font-size: 24px;
    line-height: 32px;
}

.cta-phone .column .text span.title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 800;
}

.cta-phone .column .btn {
    background-color: #fff !important;
    text-align: center;
    border-radius: 4px;
}

@media only screen and (max-width: 690px) {
    .cta-phone .container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .cta-phone .column:last-child {
        flex: 1 1 100%;
        justify-content: center;
    }

    .cta-phone .column {
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .cta-phone .column {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-phone .column .text {
        padding-left: 0;
        text-align: center;
    }
}

/* FOOTER LASTEST PROPERTY */

.footer-lastest-property > .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-lastest-property .lastest-property-item {
    flex: 0.50 1 250px;
}

@media only screen and (max-width: 690px) {
    .footer-lastest-property .lastest-property-item {
        flex: 1 1 100%;
    }
}

/* LASTEST PROPERTY ITEM */

.lastest-property-item .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.lastest-property-item .img-holder {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    transform: rotate(0);
    border-radius: 4px;
}

.lastest-property-item .img-holder::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.lastest-property-item .img-holder img {
    position: absolute;
    object-fit: cover;
    width: 100% !important;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.lastest-property-item:hover  .img-holder img{
    transform: scale(1.15);
}

.lastest-property-item .img-holder .status {
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 1;
    padding: 8px 10px;
    background-color: var(--nectar-extra-color-1);
    border-bottom-right-radius: 4px;
    font-size: 12px;
    line-height: 14px;
    color: white;
}

.lastest-property-item .img-holder .metadata {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 3;
}

.lastest-property-item .img-holder .metadata span {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

.lastest-property-item .img-holder .metadata h6 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 800;
    margin: 0;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.lastest-property-item .img-holder .metadata h6 span {
    margin-left: 5px;
}

.lastest-property-item .img-holder .metadata h4 {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

@media only screen and (max-width: 690px) {
    .lastest-property-item .img-holder {
        height: 280px;
    }
}

/* CONTACT ITEM */

.contact-item > .wrapper {
    display: flex;
    align-items: center;
}

.contact-item .icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid var(--nectar-accent-color);
}

.contact-item .icon svg {
    width: 30px;
    height: 30px;
    color: var(--nectar-accent-color);
}

.contact-item .metadata {
    width: calc(100% - 80px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item .metadata span {
    display: block;
}

.contact-item .metadata .label {
    text-transform: uppercase;
    color: var(--nectar-extra-color-1);
    font-family: var(--main-font-family);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.contact-item .metadata .contact {
    font-family: var(--main-font-family);
    color: #383838;
}