:root {
    --Primary: rgb(185, 150, 85);
    --White: rgb(255, 255, 255);
    --Black: rgb(0, 0, 0);
    --Sub: rgb(135, 135, 135)
}

@font-face {
    font-family: 'CormorantGaramond-Regular';
    src: url('fonts/CormorantGaramond-Regular.ttf');
}

@font-face {
    font-family: 'Jost-Light';
    src: url('fonts/Jost-Light.ttf');
}

@font-face {
    font-family: 'Jost-Regular';
    src: url('fonts/Jost-Regular.ttf');
}

@font-face {
    font-family: 'Jost-SemiBold';
    src: url('fonts/Jost-SemiBold.ttf');
}

@font-face {
    font-family: 'Jost-Bold';
    src: url('fonts/Jost-Bold.ttf');
}

body {
    font-family: 'Jost-Regular';
    font-size: 1rem;
    color: var(--Black)
}

html,
body {
    height: 100%;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    color: var(--Primary);
    transition: all .25s ease-in-out;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    margin: 0;
    font-family: 'Jost-Bold';
    font-weight: normal;
    line-height: 1.5
}

h1,
.h1 {
    font-size: 1.5rem;
    line-height: 1.35
}

h2,
.h2 {
    font-size: 1.35rem;
    line-height: 1.35
}

h3,
.h3 {
    font-size: 1.25rem;
    line-height: 1.35
}

h4,
.h4 {
    font-size: 1.15rem;
    line-height: 1.35
}

h5,
.h5 {
    font-size: 1.10rem;
    line-height: 1.35
}

h6,
.h6 {
    font-size: 1rem;
    line-height: 1.35
}

figure {
    margin: 0
}

button:focus,
button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.zo-input p,
.zo-textarea p {
    margin: 0
}

.zo-input input,
.zo-input.z-black input {
    width: 100%;
    height: 55px;
    padding: 0 10px;
    border: 1px solid rgb(240, 240, 240)
}

.zo-input.zo-black input {
    border: 1px solid var(--Black)
}

.zo-textarea textarea,
.zo-textarea.z-black textarea {
    width: 100%;
    height: 150px;
    padding: 15px 10px 10px;
    border: 1px solid rgb(240, 240, 240);
    resize: none
}

.zo-textarea.zo-black textarea {
    border: 1px solid var(--Black)
}

.zo-input input:focus,
.zo-textarea textarea:focus {
    border-color: var(--Primary);
    outline: 0
}

.zo-input button,
.zo-input input[type='button'],
.zo-input input[type='submit'] {
    background: var(--Primary);
    color: var(--White);
    border: 1px solid var(--Primary)
}

.zo-input .zo-center button,
.zo-input .zo-center input[type='button'],
.zo-input .zo-center input[type='submit'] {
    display: table;
    margin: 10px auto 0;
    padding: 7.5px 30px
}

.zo-input button:hover,
.zo-input input[type='button']:hover,
.zo-input input[type='submit']:hover {
    opacity: .90
}

.zo-checkbox {
    margin: 5px 0;
    position: relative
}

.zo-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer
}

.zo-checkbox label:before {
    content: '';
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--White);
    border: 1px solid rgb(130, 130, 130)
}

.zo-checkbox input:checked+label:before {
    content: '\F012C';
    font-family: 'Material Design Icons';
    background: var(--Primary);
    border-color: var(--Primary)
}

.zo-checkbox input {
    display: none
}

.zo-title-section {
    margin: 0 0 15px;
    text-align: center
}

.zo-title-section span {
    display: block;
    margin: 0 0 10px;
    color: var(--Primary);
    font-size: .90rem;
    text-transform: uppercase
}

.zo-title-section strong {
    display: block;
    margin: 0 0 15px;
    font-family: 'CormorantGaramond-Regular';
    font-size: 2rem;
    line-height: 1
}

.zo-title-section p {
    margin: 15px 0 0
}

@media (max-width: 1140px) {

    .zo-title-section strong {
        font-size: 1.5rem
    }
}

/*
.zo-more {
    text-align: center
}

.zo-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    padding: 15px 45px;
    color: var(--Primary);
    border: 1px solid var(--Primary)
}

.zo-more a:hover {
    background: var(--Primary);
    color: var(--White)
}*/

.zo-signin-section .zo-input button {
    width: 100%;
    padding: 10px;
    margin: 10px 0 0;
}

.zo-signin-section .zo-message {
    margin: 10px 0 0;
    text-align: center
}

.zo-offcanvas-section .zo-offcanvas {
    width: 100%;
    border: 0
}

.zo-offcanvas-section .zo-offcanvas img {
    max-width: 100px
}

.zo-offcanvas-section nav ul li {
    width: 100%;
    display: inline-block;
    position: relative
}

.zo-offcanvas-section nav ul li a {
    display: block;
    padding: 10px;
    position: relative;
    color: rgb(35, 35, 35)
}

.zo-offcanvas-section nav ul li ul {
    display: none;
    margin: 15px 0;
    padding: 0 0 0 15px;
    position: relative;
    font-size: .95rem
}

.zo-offcanvas-section nav ul li ul:before {
    content: '';
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 10px;
    background: var(--Primary-Color);
    border-radius: 300px
}

.zo-offcanvas-section nav ul li.zo-dropdown>a:before {
    content: '\F0140';
    position: absolute;
    top: 10px;
    right: 0;
    font-family: 'Material Design Icons';
    font-size: 1.5rem;
    line-height: 1
}

.zo-offcanvas-section nav ul li.zo-dropdown a:hover:before {
    color: var(--Primary)
}

.zo-offcanvas-section nav ul li a:hover,
.zo-offcanvas-section nav ul li a.zo-active {
    color: var(--Primary)
}

.zo-offcanvas-section nav ul li ul li {
    width: 100%;
    padding: 0
}

.zo-offcanvas-section nav ul li ul li a {
    color: rgb(85, 85, 85);
    border-bottom: 1px solid rgba(230, 230, 230, .5)
}

.zo-offcanvas-section nav ul li ul li:last-child a {
    border-bottom: 0
}

.zo-header-section {
    width: 100%;
    display: inline-block;
    padding: 15px 0;
    position: relative;
    background: var(--White);
    z-index: 25
}

.zo-header-section .zo-brand a {
    display: block
}

.zo-header-section .zo-brand a img {
    max-width: 90px
}

.zo-header-section .zo-menu nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px
}

.zo-header-section .zo-menu nav ul ul {
    gap: 0
}

.zo-header-section .zo-menu nav ul li {
    display: inline-block;
    position: relative
}

.zo-header-section .zo-menu nav ul li.zo-dropdown {
    padding: 0 15px 0 0
}

.zo-header-section .zo-menu nav ul li.zo-dropdown:before {
    content: '\F0140';
    position: absolute;
    top: 10px;
    right: 0;
    font-family: 'Material Design Icons'
}

.zo-header-section .zo-menu nav ul li a {
    display: block;
    padding: 5px 10px;
    color: var(--Black)
}

.zo-header-section .zo-menu nav ul li a:hover {
    color: var(--Primary)
}

.zo-header-section .zo-menu nav ul li .zo-row {
    min-width: 520px;
    display: flex;
    padding: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--White);
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgb(0, 0, 0)
}

.zo-header-section .zo-menu nav ul li:hover>.zo-row {
    opacity: 1;
    visibility: visible
}

.zo-header-section .zo-menu nav ul li .zo-row strong {
    display: block;
    margin: 0 0 5px;
    padding: 0 10px
}

.zo-header-section .zo-menu nav ul li ul li {
    width: 100%;
    padding: 0 2.5px;
    border-bottom: 1px solid rgba(220, 220, 220, .5)
}

.zo-header-section .zo-menu nav ul li ul li:last-child {
    border-bottom: 0
}

.zo-header-section .zo-menu nav ul li ul li a:hover {
    background: var(--Black);
    color: var(--White)
}

.zo-header-section .zo-menu nav ul li a.zo-profile {
    padding: 10px 20px;
    background: var(--Black);
    color: var(--White);
    cursor: pointer;
    transition: all .25s ease-in-out
}

.zo-header-section .zo-menu nav ul li a.zo-profile:hover {
    opacity: .90
}

.zo-header-section .zo-menu nav ul li a.zo-exit {
    font-size: 1.5rem;
    color: var(--Black)
}

.zo-header-section .zo-menu nav ul li a.zo-exit:hover {
    color: var(--Primary)
}

.zo-header-section .zo-responsive {
    float: right;
    display: none;
    cursor: pointer
}

.zo-header-section .zo-responsive:hover {
    opacity: .75;
}


@media (max-width: 1100px) {

    .zo-header-section .zo-menu {
        display: none
    }

    .zo-header-section .zo-responsive {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        background: var(--Black);
        color: var(--White)
    }
}

.zo-search-section {
    padding: 60px 0 0;
    position: relative;
    z-index: 15
}

.zo-search-section input,
.zo-search-section select {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    background: var(--White);
    color: rgb(130, 130, 130);
    border: 1px solid rgb(130, 130, 130)
}

.zo-search-section input:focus,
.zo-search-section select:focus {
    border-color: var(--Primary);
    outline: 0
}

.zo-search-section .zo-fields {
    display: flex;
    gap: 5px
}

.zo-search-section .zo-fields .zo-address {
    width: 35.5%;
    position: relative
}

.zo-search-section .zo-fields .zo-field {
    width: 10.5%
}

.zo-search-section .zo-dropdown-section {
    position: relative
}

.zo-search-section .zo-dropdown-section .zo-label {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    background: var(--White);
    color: rgb(130, 130, 130);
    border: 1px solid rgb(130, 130, 130)
}

.zo-search-section .zo-dropdown-section .zo-dropdown {
    width: 100%;
    display: none;
    margin: 5px 0;
    padding: 10px;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--White);
    border: 1px solid rgb(130, 130, 130);
    z-index: 15
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-active {
    display: block
}

.zo-search-section .zo-dropdown-section .zo-dropdown hr {
    border-color: rgb(240, 240, 240);
    opacity: 1
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-status {
    width: 250px
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-price {
    width: 325px
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type {
    width: 555.75px
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li {
    width: 25%;
    display: inline-block;
    padding: 2.5px;
    position: relative;
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li input {
    display: none
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li label {
    width: 100%;
    padding: 10px 0;
    position: relative;
    background: var(--White);
    text-align: center;
    border: 1px solid rgb(240, 240, 240);
    cursor: pointer
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li input:checked+label {
    background: rgb(245, 245, 245)
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li label img {
    display: block;
    margin: auto
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li label span {
    display: block;
    padding: 5px 0 0;
    font-size: .875rem
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li label:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms {
    width: 325px
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms .zo-title {
    display: block;
    margin: 0 0 10px
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms ul {
    display: flex;
    align-items: center;
    justify-content: center
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms ul li {
    width: 100%;
    display: inline-block;
    position: relative;
    border-left: 1px solid rgb(240, 240, 240)
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms ul li:first-child {
    border-left: 0
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms ul li input {
    display: none
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms ul li label {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
    cursor: pointer
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms ul li label:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(255, 255, 255);
    color: rgb(25, 25, 25)
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms ul li label span {
    width: 100%;
    display: block;
    position: relative;
    text-align: center
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms ul li input:checked+label:before {
    content: '';
    background: var(--Primary);
    color: var(--White)
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms ul li input:checked+label span {
    color: var(--White)
}

@media (max-width: 990px) {

    .zo-search-section .zo-dropdown-section .zo-dropdown.zo-type,
    .zo-search-section .zo-dropdown-section .zo-dropdown.zo-price,
    .zo-search-section .zo-dropdown-section .zo-dropdown.zo-rooms,
    .zo-search-section .zo-dropdown-section .zo-dropdown.zo-status {
        width: 100%;
    }
}

.zo-search-section .zo-filters {
    width: 10.5%
}

.zo-search-section .zo-filters button {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background: var(--White);
    color: rgb(130, 130, 130);
    border: 1px solid rgb(130, 130, 130)
}

.zo-search-section .zo-filters button img {
    width: 20px
}

.zo-search-section .zo-search {
    width: 10%
}

.zo-search-section .zo-search button {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    background: var(--Primary);
    color: var(--White);
    border: 1px solid var(--Primary)
}

.zo-search-section .zo-search button:hover {
    opacity: .90
}

.zo-search-section .zo-save {
    width: 10%
}

.zo-search-section .zo-save button {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    background: var(--White);
    color: var(--Primary);
    border: 1px solid var(--Primary)
}

.zo-search-section .zo-save button:hover {
    background: var(--Primary);
    color: var(--White)
}

@media (max-width: 990px) {

    .zo-search-section .zo-fields {
        flex-wrap: wrap
    }

    .zo-search-section .zo-save,
    .zo-search-section .zo-search,
    .zo-search-section .zo-filters,
    .zo-search-section .zo-fields .zo-field,
    .zo-search-section .zo-fields .zo-address {
        width: 100%
    }

    .zo-search-section .zo-filters button {
        justify-content: center;
        gap: 5px
    }
}

.zo-filters-section .zo-offcanvas {
    width: 750px
}

.zo-filters-section .zo-offcanvas .zo-label {
    display: flex;
    padding: 0 0 1.5px;
    position: relative
}

.zo-filters-section .zo-offcanvas .zo-label:before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    top: 10px;
    right: 0;
    background: rgb(235, 235, 235)
}

.zo-filters-section .zo-offcanvas .zo-label span {
    padding: 0 10px 0 0;
    position: relative;
    font-family: 'Jost-SemiBold';
    background: var(--White)
}

.zo-filters-section .zo-offcanvas .zo-field {
    margin: 0 0 10px;
    position: relative
}

.zo-filters-section .zo-offcanvas .zo-field input,
.zo-filters-section .zo-offcanvas .zo-field select {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    background: var(--White);
    color: rgb(130, 130, 130);
    border: 1px solid rgb(130, 130, 130)
}

.zo-filters-section .zo-offcanvas .zo-field input:focus,
.zo-filters-section .zo-offcanvas .zo-field select:focus {
    outline: 0;
    border-color: var(--Primary)
}

.zo-filters-section .zo-offcanvas .zo-fields {
    width: 100%;
    display: flex;
    gap: 25px;
    position: relative
}

.zo-filters-section .zo-offcanvas .zo-fields:before {
    content: 'to';
    margin: auto;
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    text-align: center
}

.zo-filters-section .zo-offcanvas .zo-fields .zo-field {
    width: 50%
}

.zo-filters-section .zo-offcanvas .zo-more {
    display: table;
    margin: 10px auto;
    padding: 3.5px 10px;
    font-size: .90rem;
    background: var(--White);
    color: var(--Primary);
    border: 1px solid var(--Primary)
}

.zo-filters-section .zo-offcanvas .zo-more:hover {
    background: var(--Primary);
    color: var(--White)
}

.zo-filters-section .zo-filters {
    padding: 0 0 60px
}

.zo-filters-section .zo-filters .zo-search {
    width: 100%;
    margin: 0 0 0 -15px;
    padding: 15px 0 15px 15px;
    position: fixed;
    bottom: 0;
    background: rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgb(200, 200, 200, .25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px)
}

.zo-filters-section .zo-filters .zo-search button {
    width: 150px;
    height: 45px;
    padding: 0 10px;
    background: var(--Primary);
    color: var(--White);
    border: 1px solid var(--Primary)
}

.zo-filters-section .zo-filters .zo-search button:hover {
    opacity: .90
}

.zo-select-filters-section {
    width: 100%;
    margin: 15px 0 0
}

.zo-select-filters-section .zo-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px
}

.zo-select-filters-section .zo-filters span {
    padding: 5px 10px;
    font-size: .875rem;
    background: rgb(240, 240, 240)
}

.zo-select-filters-section .zo-filters button {
    padding: 0;
    background: transparent;
    border: 0;
    color: #4a5568;
    cursor: pointer;
    line-height: 1
}

.zo-select-filters-section .zo-filters button:hover {
    background: transparent;
    color: var(--lmls-primary, var(--Primary))
}

.zo-map-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    background: rgb(250, 250, 250)
}

.zo-map-section .zo-controls {
    max-width: 150px;
    padding: 3.5px 5px;
    position: absolute;
    top: 60px;
    right: 10px;
    background: var(--White);
    box-shadow: rgba(0, 0, 0, 0.25) 0 1.5px 5px -1.5px;
    z-index: 15
}

.zo-map-section .zo-controls button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: auto;
    margin: 3px 0;
    padding: 8px 12px;
    background: var(--White);
    color: var(--lmls-primary, var(--Primary));
    border: 1px solid var(--lmls-primary, var(--Primary));
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s, color .15s, border-color .15s
}

.zo-map-section .zo-controls button.zo-active,
.zo-map-section .zo-controls button:hover {
    background: var(--lmls-primary, var(--Primary));
    color: var(--White);
    border-color: var(--lmls-primary, var(--Primary))
}

.zo-map-section .zo-map {
    width: 100%;
    height: 550px
}

.zo-properties-section .zo-sort {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 15px
}

.zo-properties-section .zo-sort select {
    height: 45px;
    padding: 0 10px;
    background: var(--White);
    color: rgb(130, 130, 130);
    border: 1px solid rgb(130, 130, 130);
}

.zo-properties-section .zo-title {
    display: block;
    margin: 0 0 15px;
    font-size: 1.25rem
}

.zo-properties-section .zo-property {
    width: 100%;
    display: inline-block;
    margin: 0 0 25px;
    position: relative
}

.zo-properties-section .zo-property figure {
    position: relative
}

.zo-properties-section .zo-property .zo-like {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    color: var(--White);
    cursor: pointer;
    z-index: 15
}

.zo-properties-section .zo-property .zo-like div {
    border-width: 2px
}

.zo-properties-section .zo-property .zo-like i {
    display: flex
}

.zo-properties-section .zo-property figure .zo-tags {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 10px;
    right: 10px
}

.zo-properties-section .zo-property figure span {
    padding: 2.5px 7.5px;
    font-size: .875rem;
    background: var(--Primary);
    color: var(--White)
}

.zo-properties-section .zo-property figure img {
    width: 100%;
    height: 250px;
    margin: 0 0 10px;
    object-fit: cover
}

.zo-properties-section .zo-property .zo-content .zo-price {
    font-size: 1.25rem;
    color: var(--Primary)
}

.zo-properties-section .zo-property .zo-content h2 {
    margin: 2.5px 0;
    font-family: 'Jost-Regular';
    font-size: 1.25rem;
    color: var(--Black)
}

.zo-properties-section .zo-property .zo-content .zo-sub {
    display: block;
    margin: 0 0 2.5px;
    color: var(--Sub)
}

.zo-properties-section .zo-property .zo-content .zo-type {
    display: block;
    margin: 0 0 10px;
    font-size: .90rem;
    color: var(--Sub)
}

.zo-properties-section .zo-property .zo-content ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    color: var(--Sub)
}

.zo-properties-section .zo-property .zo-content ul li {
    display: flex;
    align-items: center;
    gap: 5px
}

.zo-pagination-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0
}

.zo-pagination-section a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Black)
}

.zo-pagination-section a.prev,
.zo-pagination-section a.next {
    width: 65px
}

.zo-pagination-section a:hover {
    background: rgb(245, 245, 245)
}

.zo-pagination-section span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.zo-pagination-section span.current {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Primary);
    color: var(--White)
}

.zo-property-section {
    padding: 30px 0 0
}

.zo-property-section .zo-info {
    margin: 30px 0 15px
}

.zo-property-section .zo-info h1 {
    display: flex;
    gap: 2.5px;
    margin: 5px 0;
    font-family: 'Jost-Regular';
    font-size: 1.25rem
}

.zo-property-section .zo-info .zo-price {
    font-family: 'Jost-Bold';
    font-size: 1.5rem
}

.zo-property-section .zo-info .zo-details ul {
    display: flex;
    gap: 15px
}

.zo-property-section .zo-info .zo-details ul li {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    gap: 2.5px;
    color: var(--Sub);
    border: 1px solid rgb(240, 240, 240)
}

.zo-property-section .zo-info .zo-details ul li img {
    width: 20px;
    margin: 0 2.5px 0 0
}

.zo-property-section .zo-info .zo-actions {
    margin: 30px 0 0
}

.zo-property-section .zo-info .zo-actions ul {
    display: flex;
    justify-content: flex-end;
    gap: 5px
}

.zo-property-section .zo-info .zo-actions ul li {
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5px;
    font-size: .95rem;
    color: var(--Sub);
    transition: all .25s ease-in-out;
    cursor: pointer
}

.zo-property-section .zo-info .zo-actions ul li a {
    width: 100%;
    display: block;
    color: var(--Sub)
}

.zo-property-section .zo-info .zo-actions ul li div {
    width: 100%;
    display: block;
    padding: 7.5px 0;
    text-align: center;
    border: 1px solid rgb(240, 240, 240)
}

.zo-property-section .zo-info .zo-actions ul li div div {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 5px 0 0;
    padding: 0;
    position: relative;
    top: -1.5px;
    border-width: 1px;
    border-right-color: var(--Primary)
}

.zo-property-section .zo-info .zo-actions ul li div.zo-added {
    background: rgb(235, 235, 235)
}

.zo-property-section .zo-info .zo-actions ul li:hover {
    background: rgb(240, 240, 240)
}


.zo-property-section .zo-info .zo-actions-1 {
    margin: 30px 0 0
}

.zo-property-section .zo-info .zo-actions-1 ul {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    font-size: 1.10rem
}

.zo-property-section .zo-info .zo-actions-1 ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5px;
    color: var(--Black);
    transition: all .25s ease-in-out;
    cursor: pointer
}

.zo-property-section .zo-info .zo-actions-2 {
    margin: 30px 0 0
}

.zo-property-section .zo-info .zo-actions-2 ul {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    font-size: 1.10rem
}

.zo-property-section .zo-info .zo-actions-2 ul li {
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5px;
    color: var(--Black);
    transition: all .25s ease-in-out;
    cursor: pointer
}

.zo-property-section .zo-info .zo-actions-2 ul li div {
    width: 100%;
    display: block;
    padding: 7.5px 0;
    color: var(--Primary);
    text-align: center;
    border: 1px solid var(--Primary);
}

.zo-property-section .zo-info .zo-actions-3 {
    margin: 30px 0 0
}

.zo-property-section .zo-info .zo-actions-3 ul {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    font-size: 1.10rem
}

.zo-property-section .zo-info .zo-actions-3 ul li {
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5px;
    color: var(--Black);
    transition: all .25s ease-in-out;
    cursor: pointer
}

.zo-property-section .zo-info .zo-actions-3 ul li div {
    width: 100%;
    display: block;
    padding: 7.5px 0;
    background: var(--Primary);
    color: var(--White);
    text-align: center;
    border: 1px solid var(--Primary);
}

.zo-share-section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px
}

.zo-share-section ul li {
    display: inline-block
}

.zo-share-section ul li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    background: var(--Primary);
    color: var(--White);
    border-radius: 50%
}

@media (max-width: 990px) {

    .zo-property-section .zo-info .zo-details ul {
        flex-wrap: wrap;
        gap: 0;
        padding: 10px 0
    }

    .zo-property-section .zo-info .zo-details ul li {
        width: 50%;
        border: 0
    }

    .zo-property-section .zo-info h1 img {
        display: none
    }
}

@media (max-width: 990px) {

    .zo-property-section .zo-info .zo-actions {
        margin: 30px 0 0
    }
}

@media (max-width: 575px) {

    .zo-property-section .zo-info .zo-details ul li {
        width: 100%;
        justify-content: flex-start;
    }

    .zo-property-section .zo-info .zo-actions ul {
        flex-wrap: wrap
    }

    .zo-property-section .zo-info .zo-actions ul li {
        width: 100%
    }
}

.zo-property-section .zo-gallery-section {
    width: 100%
}

.zo-property-section .zo-gallery-section figure {
    position: relative
}

.zo-property-section .zo-gallery-section .zo-main figure img {
    width: 100%;
    height: 415px;
    object-fit: cover
}

.zo-property-section .zo-gallery-section .zo-thumbnail figure img {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.zo-property-section .zo-gallery-section figure div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 1.25rem;
    background: rgba(185, 150, 85, .5);
    color: rgb(255, 255, 255);
    cursor: pointer
}

.zo-lightbox-section .zo-image figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.zo-property-section .zo-description-section {
    width: 100%;
    display: inline-block;
    margin: 30px 0 60px;
    padding: 30px 0;
    background: rgb(245, 245, 240);
    background: lightgrey
}

.zo-property-section .zo-description-section strong {
    display: block;
    margin: 0 0 15px;
    padding: 0 0 15px;
    font-family: 'CormorantGaramond-Regular';
    font-size: 2.5rem;
    line-height: 1;
    text-align: center
}

.zo-property-section .zo-description-section p {
    margin: 0 0 5px
}

@media (max-width: 990px) {

    .zo-property-section .zo-description-section {
        padding: 30px 0
    }

    .zo-property-section .zo-description-section strong {
        font-size: 2rem
    }
}

@media (max-width: 757px) {

    .zo-property-section .zo-gallery-section .zo-main figure img {
        height: 200px
    }
}

.zo-property-section .zo-video-section {
    position: relative
}

.zo-property-section .zo-video-section span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    font-size: 2rem;
    transform: translateY(-50%);
    background: rgb(185, 150, 85);
    color: rgb(255, 255, 255)
}

.zo-property-section .zo-features strong {
    font-family: 'CormorantGaramond-Regular';
    font-size: 2.5rem;
}

.zo-property-section .zo-features ul {
    display: flex;
    gap: 15px;
    text-align: center
}

.zo-property-section .zo-features ul li {
    width: 20%;
    display: inline-block
}

.zo-property-section .zo-features ul li span {
    display: block;
    padding: 0 0 5px;
    color: var(--Primary)
}

.zo-property-section .zo-features ul li div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--Sub)
}

.zo-property-section .zo-features ul li div small {
    font-size: 1rem
}

@media (max-width: 757px) {

    .zo-property-section .zo-features ul {
        flex-wrap: wrap;
        gap: 0;
        text-align: left
    }

    .zo-property-section .zo-features ul li {
        width: 50%;
        padding: 0 0 10px;
    }

    .zo-property-section .zo-features ul li div {
        justify-content: flex-start
    }
}

@media (max-width: 300px) {

    .zo-property-section .zo-features ul li {
        width: 100%
    }
}

.zo-property-section .zo-section {
    width: 100%;
    display: inline-block;
    padding: 15px 0
}

.zo-property-section .zo-section .zo-title {
    margin: 0 0 15px;
    position: relative
}

.zo-property-section .zo-section .zo-title:before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    top: 15px;
    left: 0;
    background: var(--Primary);
}

.zo-property-section .zo-section .zo-title strong {
    display: inline-block;
    padding: 0 15px 0 0;
    position: relative;
    font-size: 1.25rem;
    background: var(--White);
    color: var(--Primary);
}

.zo-property-section .zo-section ul li {
    width: 100%;
    display: inline-block
}

@media (max-width: 990px) {

    .zo-property-section .zo-section ul {
        margin: 0 0 5px
    }
}

.zo-property-section .zo-section ul li .zo-field {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgb(240, 240, 240)
}

.zo-property-section .zo-section ul li .zo-field span {
    color: var(--Sub);
}

.zo-property-section .zo-section ul li .zo-field strong {
    font-family: 'Jost-SemiBold';
    text-align: right
}

.zo-property-section .zo-section ul li .zo-field a {
    color: var(--Black)
}

@media (max-width: 757px) {

    .zo-property-section .zo-section ul {
        margin: 0
    }

    .zo-property-section .zo-section ul li {
        width: 100%;
        padding: 0
    }
}

@media (max-width: 575px) {

    .zo-property-section .zo-section ul li .zo-field {
        flex-wrap: wrap
    }

    .zo-property-section .zo-section ul li .zo-field span {
        width: 100%
    }

    .zo-property-section .zo-section ul li .zo-field strong {
        text-align: left
    }
}

.zo-property-section .zo-section dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: relative
}

.zo-property-section .zo-section dl dt {
    width: 30%;
    display: block;
    margin: 0;
    padding: 5px 0;
    color: var(--Sub);
    font-weight: normal;
    text-align: left;
    border-bottom: 1px solid rgb(240, 240, 240)
}

.zo-property-section .zo-section dl dd {
    width: 70%;
    display: block;
    margin: 0;
    padding: 5px 0;
    font-family: 'Jost-Regular';
    text-align: right;
    border-bottom: 1px solid rgb(240, 240, 240)
}

@media (max-width: 375px) {

    .zo-property-section .zo-section dl dt,
    .zo-property-section .zo-section dl dd {
        width: 100%;
        text-align: left
    }
}

.zo-property-section .zo-map .zo-iframe {
    width: 100%;
    display: inline-block
}

.zo-property-section .zo-contact {
    width: 100%;
    display: inline-block;
    padding: 60px 0
}

@media (max-width: 990px) {

    .zo-property-section .zo-contact .zo-title strong {
        font-size: 2rem
    }
}

.zo-property-section .zo-update {
    width: 100%;
    display: inline-block;
    padding: 30px 0;
    font-size: 1.25rem;
    text-align: right
}

.zo-property-section .zo-update p {
    margin: 2.5px 0;
    font-family: 'Jost-Light'
}

.zo-property-section .zo-office {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px
}

.zo-property-section .zo-office strong {
    display: block
}

.zo-property-section .zo-office ul {
    color: rgb(115, 115, 115)
}

.zo-property-section .zo-office ul li {
    display: flex;
    gap: 5px;
    padding: 5px 0
}

.zo-property-section .zo-office ul li:first-child {
    flex-wrap: wrap
}

.zo-property-section .zo-office ul li:first-child strong {
    display: block
}

.zo-property-section .zo-office ul li a {
    color: rgb(115, 115, 115)
}

.zo-property-section .zo-office figure img {
    display: block
}

.zo-footer-section {
    width: 100%;
    display: inline-block;
    padding: 60px 0 30px;
    background: var(--Black);
    color: var(--White)
}

.zo-footer-section .zo-newsletter strong {
    font-size: 1.15rem
}

.zo-footer-section .zo-newsletter p {
    margin: 10px 0;
    padding: 0 0 10px
}

.zo-footer-section .zo-newsletter form {
    position: relative
}

.zo-footer-section .zo-newsletter form p {
    margin: 0;
    padding: 0
}

.zo-footer-section .zo-newsletter form input {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    background: transparent;
    color: var(--White);
    border: 1px solid var(--White)
}

.zo-footer-section .zo-newsletter form input::placeholder {
    color: var(--White)
}

.zo-footer-section .zo-newsletter form input:focus {
    outline: 0
}

.zo-footer-section .zo-newsletter form input[type='submit'] {
    width: 120px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--Black);
    color: var(--White);
    border: 1px solid var(--White)
}

.zo-footer-section .zo-newsletter form input[type='submit']:hover {
    background: var(--Black)
}

.zo-footer-section .zo-about p {
    display: block;
    margin: 15px 0;
    font-size: .90rem
}

.zo-footer-section .zo-about ul {
    display: flex;
    gap: 15px
}

.zo-footer-section .zo-about ul li {
    display: inline-block
}

.zo-footer-section .zo-about ul li a {
    font-size: 1.5rem;
    color: var(--White)
}

.zo-footer-section .zo-info strong {
    font-size: 1.15rem
}

.zo-footer-section .zo-info ul li {
    width: 100%;
    display: inline-block;
    padding: 10px 0
}

.zo-footer-section .zo-info ul li a,
.zo-footer-section .zo-info ul li .zo-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--White)
}

.zo-footer-section .zo-menu {
    margin: 0 0 15px
}

.zo-footer-section .zo-menu strong {
    display: block;
    margin: 0 0 5px;
    position: relative;
    font-size: 1.15rem
}

.zo-footer-section .zo-menu strong:before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    top: 15px;
    right: 0;
    background: rgb(255, 255, 255, .15)
}

.zo-footer-section .zo-menu strong span {
    display: inline-block;
    padding: 0 15px 0 0;
    position: relative;
    background: var(--Black)
}

.zo-footer-section .zo-menu ul li {
    width: 100%;
    display: inline-block
}

.zo-footer-section .zo-menu ul li a {
    display: block;
    padding: 2.5px 0 0 10px;
    position: relative;
    color: var(--White)
}

.zo-footer-section .zo-menu ul li a:before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 10px;
    left: 0;
    background: var(--Primary);
    border-radius: 50%
}

.zo-footer-section .zo-menu ul li a:hover {
    color: var(--Primary)
}

.zo-footer-section .zo-disclaimer {
    width: 100%;
    display: inline-block;
    padding: 30px 0;
    font-size: .75rem
}

.zo-footer-section .zo-disclaimer .zo-content {
    display: flex;
    gap: 5px;
    text-align: justify
}

.zo-footer-section .zo-disclaimer .zo-content img {
    max-width: 75px
}

.zo-footer-section .zo-disclaimer .zo-content p {
    margin: 0;
}

.zo-footer-section .zo-disclaimer .zo-text {
    text-align: justify
}

.zo-footer-section .zo-copyright {
    width: 100%;
    display: inline-block;
    padding: 30px 0 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.25)
}

.zo-footer-section .zo-copyright p {
    margin: 0 0 5px
}

@media (max-width: 990px) {

    .zo-footer-section .zo-menu {
        margin: 15px 0
    }

    .zo-footer-section .zo-copyright {
        margin: 30px 0 0
    }
}

@media (max-width: 757px) {

    .zo-footer-section .zo-info {
        padding: 15px 0
    }

    .zo-footer-section .zo-info ul li {
        padding: 5px 0
    }

    .zo-footer-section .zo-disclaimer {
        padding: 30px 0 0
    }

    .zo-footer-section .zo-disclaimer .zo-content {
        flex-direction: column
    }
}

@media (max-width: 575px) {

    .zo-footer-section .zo-newsletter form input[type='submit'] {
        width: 100%;
        margin: 5px 0 0;
        position: relative
    }
}

.zo-posts-section .zo-post {
    width: 100%;
    display: inline-block;
    margin: 0 0 25px;
    color: var(--Black)
}

.zo-posts-section .zo-post figure {
    margin: 0 0 10px
}

.zo-posts-section .zo-post figure img {
    width: 100%;
    height: 250px;
    object-fit: cover
}

.zo-posts-section .zo-post h2 {
    margin: 0 0 5px;
    font-family: 'Jost-SemiBold';
    font-size: 1.125rem
}

.zo-posts-section .zo-post ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.zo-posts-section .zo-post ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--Sub);
    font-size: 0.90rem
}

.zo-special-posts-section {
    width: 100%;
    display: inline-block;
    padding: 0 0 90px
}

.zo-special-posts-section .zo-post {
    width: 100%;
    display: block;
    background: linear-gradient(0, rgba(0, 0, 0, .5), rgba(0, 0, 0, .15) 80%);
    color: var(--White)
}

.zo-special-posts-section .zo-post figure {
    position: relative
}

.zo-special-posts-section .zo-post figure:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%)
}

.zo-special-posts-section .zo-post figure .zo-thumbnail img {
    width: 100%;
    height: 450px;
    object-fit: cover
}

.zo-special-posts-section .zo-post figure .zo-content {
    width: 100%;
    padding: 15px 15px 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 15
}

.zo-special-posts-section .zo-post figure .zo-content h2 {
    font-size: 1.25rem
}

.zo-special-posts-section .zo-post figure .zo-content p {
    margin: 5px 0
}

.zo-special-posts-section .zo-post figure .zo-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 5px 0 0
}

.zo-special-posts-section .zo-post figure .zo-content ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.90rem;
    color: var(--Sub)
}

.zo-special-posts-section .splide__pagination {
    bottom: -25px
}

.zo-special-posts-section .splide__pagination .splide__pagination__page.is-active {
    background: var(--Primary)
}

.zo-special-posts-section .splide__arrow {
    width: 60px;
    height: 60px;
    background: rgb(255, 255, 255)
}

.zo-latest-posts-section {
    width: 100%;
    display: inline-block;
    margin: 90px 0 0;
    padding: 0 0 90px
}

.zo-latest-posts-section .zo-post {
    width: 100%;
    display: block;
    background: linear-gradient(0, rgba(0, 0, 0, .5), rgba(0, 0, 0, .15) 80%);
    color: var(--White)
}

.zo-latest-posts-section .zo-post figure {
    position: relative
}

.zo-latest-posts-section .zo-post figure:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%)
}

.zo-latest-posts-section .zo-post figure .zo-thumbnail img {
    width: 100%;
    height: 375px;
    object-fit: cover
}

.zo-latest-posts-section .zo-post figure .zo-content {
    width: 100%;
    padding: 10px 15px 15px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 15
}

.zo-latest-posts-section .zo-post figure .zo-content h2 {
    position: relative;
    font-size: 1.25rem
}

.zo-latest-posts-section .zo-post figure .zo-content p {
    margin: 5px 0;
    position: relative;
    font-size: .90rem;
    line-height: 1.25
}

.zo-latest-posts-section .zo-post figure .zo-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative
}

.zo-latest-posts-section .zo-post figure .zo-content ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--Sub);
    font-size: 0.90rem
}

.zo-post-section {
    width: 100%;
    display: inline-block;
    margin: 30px 0 60px
}

.zo-post-section .container {
    max-width: 1100px;
    margin: auto
}

.zo-post-section ol,
.zo-post-section ul {
    margin: 0 0 15px;
    padding: 0 0 0 15px;
}

.zo-post-section h1,
.zo-post-section h2,
.zo-post-section h3,
.zo-post-section h4,
.zo-post-section h5,
.zo-post-section h6 {
    margin: 0 0 10px
}

.zo-post-section .zo-thumbnail img {
    width: 100%;
    height: 500px;
    object-fit: cover
}

.zo-post-section img {
    display: block;
    margin: 0 auto 15px
}

.zo-post-section .zo-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin: 30px 0 0
}

.zo-post-section .zo-tags a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    font-size: .90rem;
    background: rgb(0, 0, 0, .025);
    color: var(--Black);
    border: 1px solid var(--Black);
    border-radius: 300px
}

.zo-post-section .zo-tags a:hover {
    background: rgb(0, 0, 0, .10)
}

.zo-hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url(../img/review-cover.png) no-repeat;
    background-size: cover
}

.zo-hero-section .zo-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    color: var(--White)
}

.zo-hero-section .zo-content h1 {
    font-family: 'CormorantGaramond-Regular';
    font-size: 5.625rem;
    line-height: 1.25
}

.zo-hero-section .zo-content p {
    max-width: 795px;
    margin: 0 auto;
    font-size: 1.25rem;
    text-align: center
}

@media (max-width: 1140px) {

    .zo-hero-section {
        height: 50vh
    }

    .zo-hero-section .zo-content h1 {
        font-size: 2.5rem
    }
}

.zo-review-section {
    width: 100%;
    display: inline-block;
}

.zo-review-section .zo-review {
    width: 100%;
    display: inline-block;
    padding: 15px;
    border: 1px solid rgb(240, 240, 240)
}

.zo-review-section .zo-review strong {
    display: block;
    margin: 15px 0 0;
    padding: 0 0 5px
}

.zo-review-section .zo-review .zo-stars {
    display: flex;
    justify-content: flex-end;
    gap: 2.5px;
    font-size: 1.5rem;
    color: var(--Primary)
}

.zo-review-section .zo-review.zo-avatar .zo-stars {
    justify-content: center
}

.zo-review-section .zo-review p {
    margin: 0
}

.zo-colleagues-section .zo-colleague {
    text-align: center;
}

.zo-colleagues-section .zo-colleague img {
    margin: 0 0 15px
}

.zo-colleagues-section .zo-colleague strong {
    display: block;
    font-size: 1.15rem
}

.zo-colleagues-section .zo-colleague span {
    display: block;
    margin: 0 0 10px;
    color: var(--Sub)
}

.zo-colleagues-section .zo-colleague ul {
    display: flex;
    justify-content: center;
    gap: 15px
}

.zo-colleagues-section .zo-colleague ul li {
    display: inline-block
}

.zo-colleagues-section .zo-colleague ul li a {
    display: block;
    font-size: 1.5rem
}

.zo-outline a {
    padding: 15px 30px
}

.zo-about-section .zo-thumbnail img {
    position: relative;
    box-shadow: 0 10px 20px -5px rgb(0, 0, 0, .25)
}

.zo-about-section .zo-thumbnail:before {
    content: '';
    width: 300px;
    height: 510px;
    margin: 0 auto;
    position: absolute;
    top: -60px;
    right: 0;
    left: 0;
    background: var(--Primary);
}

@media (max-width: 1200px) {

    .zo-about-section .zo-thumbnail:before {
        display: none
    }
}

.wpcf7-spinner {
    display: none
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    margin: 2.5px 0 0;
    padding: 0;
    color: rgb(255, 185, 0);
    border: 0
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    margin: 2.5px 0 0;
    padding: 0;
    color: rgb(220, 50, 50);
    border: 0
}

.wpcf7-not-valid-tip {
    margin: 2.5px 0 0
}

.zo-profile-section {
    width: 100%;
    display: inline-block;
    padding: 30px 0
}

.zo-profile-section nav {
    margin: 0 0 30px;
    text-align: center
}

.zo-profile-section nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.zo-profile-section nav ul li {
    display: inline-block
}

.zo-profile-section nav ul li button {
    width: 150px;
    padding: 35px 0;
    background: rgba(185, 150, 85, .05);
    color: var(--Primary);
    border: 1px solid var(--Primary);
    transition: all .25s ease-in-out;
    transform: scale(0.95)
}

.zo-profile-section nav ul li button i {
    font-size: 2.25rem;
}

.zo-profile-section nav ul li button span {
    display: block;
    padding: 10px 0 0;
    text-transform: uppercase
}

.zo-profile-section nav ul li button.active {
    background: var(--Primary);
    color: var(--White);
    transform: scale(1)
}

.zo-profile-section .zo-form .zo-input {
    position: relative
}

.zo-profile-section .zo-form .zo-input input {
    padding: 0 10px 0 35px;
    background: rgb(250, 250, 250);
    color: rgb(135, 135, 135)
}

.zo-profile-section .zo-form .zo-input input[readonly] {
    pointer-events: none
}

.zo-profile-section .zo-form .zo-input i {
    display: flex;
    font-size: 1.25rem;
    position: absolute;
    top: 20px;
    left: 10px;
    line-height: 0.75;
    color: rgb(135, 135, 135)
}

.zo-profile-section .zo-form .zo-input button {
    width: 125px;
    height: 45px
}

.zo-profile-section .zo-form .zo-input button div {
    width: 15px;
    height: 15px;
    border-width: 2px
}

.zo-profile-section .zo-properties-section .zo-property button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--Primary);
    color: var(--White);
    border: 0;
    border-radius: 50%;
    z-index: 15
}

.zo-profile-section .zo-properties-section .zo-property button i {
    display: flex;
    line-height: 1
}

.zo-profile-section .zo-properties-section .zo-property button div {
    width: 15px;
    height: 15px;
    border-width: 2px
}

.zo-profile-section .zo-properties-section .zo-property figure img {
    height: 175px
}

.zo-profile-section .zo-table {
    width: 100%;
    padding: 5px;
    border: 1px solid rgb(240, 240, 240);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.zo-profile-section .zo-table table {
    width: 100%
}

.zo-profile-section .zo-table table thead tr th {
    padding: 10px;
    font-family: 'Jost-Bold';
    font-size: .90rem;
    background: rgb(235, 235, 235);
    color: rgb(45, 45, 45);
    text-align: center
}

.zo-profile-section .zo-table table tbody tr td {
    padding: 10px;
    border-bottom: 1px solid rgb(240, 240, 240);
    text-align: center
}

.zo-profile-section .zo-table table tbody tr:last-child td {
    border-bottom: 0
}

.zo-profile-section .zo-table table tbody tr td .zo-parameters {
    font-family: 'Jost-Light';
    color: rgb(100, 100, 100)
}

.zo-profile-section .zo-table table tbody tr td .zo-parameters strong {
    font-family: 'Jost-Regular';
    text-transform: capitalize
}

.zo-profile-section .zo-table table tbody tr td .zo-actions ul {
    display: flex;
    align-items: center;
    gap: 5px
}

.zo-profile-section .zo-table table tbody tr td .zo-actions ul li {
    display: inline-block
}

.zo-profile-section .zo-table table tbody tr td .zo-actions ul li button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5px 10px;
    font-size: .90rem;
    background: transparent;
    color: var(--Primary);
    border: 1px solid var(--Primary)
}

.zo-profile-section .zo-table table tbody tr td .zo-actions ul li button:hover {
    background: var(--Primary);
    color: var(--White)
}

.zo-profile-section .zo-table table tbody tr td .zo-actions ul li button div {
    width: 10px;
    height: 10px;
    margin: 0 0 0 5px;
    border-width: 1px
}

@media (max-width: 990px) {

    .zo-profile-section nav ul {
        flex-wrap: wrap;
        gap: 5px
    }

    .zo-profile-section nav ul li {
        width: 100%
    }

    .zo-profile-section nav ul li button {
        width: 100%;
        padding: 5px;
        transform: scale(1)
    }

    .zo-profile-section .zo-properties-section .zo-property button {
        top: 10px;
        left: 10px
    }

    .zo-profile-section .zo-table table thead tr th {
        display: none
    }

    .zo-profile-section .zo-table table tbody tr td {
        width: 100%;
        display: block
    }

    .zo-profile-section .zo-table table tbody tr td .zo-parameters ul li {
        width: 100%;
        padding: 0
    }

    .zo-profile-section .zo-table table tbody tr td .zo-parameters ul li span {
        display: block
    }
}

.zo-search-address-section {
    width: 650px;
    position: relative
}

.zo-search-address-section input {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    background: var(--White);
    border: 0
}

.zo-search-address-section input:focus {
    outline: 0
}

.zo-search-address-section button {
    width: 150px;
    height: 45px;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--Primary);
    color: var(--White);
    border: 0;
    text-transform: uppercase
}

.zo-search-address-section button:hover {
    background: rgb(195, 160, 95)
}

@media (max-width: 650px) {

    .zo-search-address-section {
        width: 100%
    }

    .zo-search-address-section button {
        width: 100%;
        margin: 5px 0;
        position: relative
    }
}

.modal-content {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.tooltip {
    font-family: 'Jost-Regular';
}

.tooltip-inner {
    padding: 5px 10px;
    border-radius: 0
}

.form-check-input {
    cursor: pointer
}

.form-check-input:checked {
    background-color: var(--Primary);
    border-color: var(--Primary)
}

.form-check-input:focus {
    border-color: rgba(185, 150, 85, .5);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(185, 150, 85, .25)
}

.ui-autocomplete.ui-widget.ui-widget-content.ui-menu {
    max-height: 450px;
    margin: 5px 0 0;
    font-family: 'Jost-Regular';
    font-size: .95rem;
    color: var(--Black);
    overflow-y: scroll;
    overflow-x: hidden;
    border: 1px solid rgb(130, 130, 130);
    z-index: 9999 !important
}

.ui-autocomplete.ui-widget.ui-widget-content.ui-menu .ui-autocomplete-category.ui-menu-item {
    padding: 2.5px 5px;
    font-family: 'Jost-Bold';
    font-size: .90rem;
    background: rgb(220, 220, 220)
}

.ui-autocomplete.ui-widget.ui-widget-content.ui-menu .ui-menu-item-wrapper {
    padding: 2.5px 5px
}

.ui-autocomplete.ui-widget.ui-widget-content.ui-menu .ui-menu-item-wrapper:hover,
.ui-autocomplete.ui-widget.ui-widget-content.ui-menu .ui-menu-item-wrapper.ui-state-active {
    background: var(--Primary);
    color: var(--White);
    border-color: var(--Primary)
}

.hidden-area {
    display: none
}

.hidden-city {
    display: none
}

#save-search-form button {
    width: 125px;
    height: 45px
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type {
    width: 250px
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li {
    width: 100%
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li label {
    padding: 10px
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li label span {
    padding: 0;
    font-size: .95rem;
    text-align: left
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li label img {
    display: none
}

.zo-search-section .zo-dropdown-section .zo-dropdown.zo-type ul li input:checked+label {
    background: var(--Primary);
    color: var(--White)
}