@font-face {
    font-family: "Montserrat-Light";
    src: url("/static/fonts/Montserrat-Light.ttf");
}

@font-face {
    font-family: "Montserrat-Regular";
    src: url("/static/fonts/Montserrat-Regular.ttf");
}

@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("/static/fonts/Montserrat-SemiBold.ttf");
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url("/static/fonts/Montserrat-Bold.ttf");
}

@font-face {
    font-family: "Roboto";
    src: url("/static/fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Roboto-Light";
    src: url("/static/fonts/Roboto-Light.ttf");
}

body {
    font-family: 'Roboto';
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat-Bold';
    margin: 0;
    color: #333;
    text-transform: uppercase;
}

p {
    font-family: 'Montserrat-Regular';
}

h1, h2 {
    font-size: 60px;
}

h3 {
    font-size: 30px;
    line-height: 30px;
}

h4 {
    font-size: 20px;
}

span {
    font-size: 12px;
}

@media (max-width: 1023px) {
    h1, h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    h4 {
        font-family: 'Montserrat-Regular';
        font-size: 20px;
    }
}

/*#region GET IN TOUCH*/
.contact-dialog {
    background: white;
    position: fixed;
    top: 150px;
    z-index: -10;
    border: 0;
    border-radius: 6px;
    width: 398px;
    padding: 30px;
    margin: auto;
    left: 50%;
    transform: translate(-50%);
}

.contact-dialog__close-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.contact-dialog h3 {
    padding-right: 100px;
    line-height: 35px;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.contact-dialog h4 {
    font-family: 'Montserrat-Regular';
    margin-top: 25px;
    margin-bottom: 12px;
}

.contact-dialog input {
    width: 249px;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #333333;
    border-radius: 8px;
    padding-left: 13px;
    outline: none;
    cursor: pointer;
}

    .contact-dialog input::-webkit-outer-spin-button,
    .contact-dialog input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.contact-dialog__input-phone-prefix {
    width: 52px !important;
    margin-right: 12px;
}

.contact-dialog__input-phone-number {
    width: 200px !important
}

.contact-dialog__newsletter {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.contact-dialog p {
    font-family: 'Montserrat-Light';
    font-size: 23px;
    padding-left: 16px;
    padding-right: 90px;
}

.contact-dialog input[type="checkbox"] {
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    background: #333333;
    color: white;
    border-radius: 8px;
    min-width: 48px;
    width: 48px;
    height: 48px;
    margin: 0;
}

.contact-dialog input[type="submit"] {
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    background: #333333;
    color: white;
    border-radius: 8px;
    width: 100%;
    height: 49px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .contact-dialog {
        top: 100px;
        width: 290px;
        padding: 10px;
    }

        .contact-dialog h3 {
            padding-right: 0;
            font-size: 20px;
            letter-spacing: 2px;
            margin-bottom: 0px;
        }

        .contact-dialog h4 {
            font-size: 16px;
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .contact-dialog input {
            height: 32px;
        }

    .contact-dialog__input-phone-number {
        width: 165px !important;
    }

    .contact-dialog input[type="checkbox"] {
        width: 30px;
        height: 30px;
    }

    .contact-dialog p {
        font-size: 14px;
        padding-right: 30px;
    }

    .contact-dialog__newsletter {
        margin-top: 10px;
    }

    .contact-dialog input[type="submit"] {
        margin-top: 10px;
        margin-left: 0;
        width: 290px;
    }
}

/*#endregion GET IN TOUCH*/

/*#region HERO */

.hero {
    position: relative;
}

.hero__video {
    width: 100%;
    min-height: 450px;
    object-fit: cover;
}

.hero__container {
    position: relative;
}

.search {
    position: absolute;
    display: flex;
    top: -47px;
    border-radius: 5px;
    max-width: 1364px;
    background: white;
    box-shadow: 0px 3px 15px #00000026;
    white-space: nowrap;
    z-index: 1001;
    left: 0;
    right: 0;
    margin: auto;
}

.tab__search {
    position: absolute;
    display: flex;
    top: -47px;
    border-radius: 5px;
    max-width: 1364px;
    background: white;
    box-shadow: 0px 3px 15px #00000026;
    white-space: nowrap;
    z-index: 1001;
    left: 0;
    visibility: hidden;
    margin: auto;
}

.search__filters {
    display: flex;
    padding: 17px 0 16px 23px;
    width: 100%;
}

.search__input {
    align-items: stretch;
    border-right: 1px solid #e5e4e4;
    padding-left: 9px;
    flex: 1;
}

.search__name {
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    letter-spacing: 1.5px
}

.search__selection {
    position: relative;
    cursor: pointer;
    padding-top: 15px;
    padding-right: 30px;
}

    .search__selection select {
        background: transparent;
        border: 0;
        outline: none;
        font-size: 16px;
        cursor: pointer;
        width: -webkit-fill-available;
    }

    .search__selection span {
        font-family: 'Roboto-Light';
        font-size: 15px;
    }

.search__input:last-of-type {
    border-right: 0;
}

.hero__dropdown-content {
    display: none;
    top: 50px;
    left: -25px;
    position: absolute;
    background-color: white;
    min-width: 293px;
    overflow: auto;
    max-height: 200px;
    border: 1px solid #ddd;
    z-index: 1;
}

    .hero__dropdown-content a {
        color: #333;
        text-decoration: none;
        padding: 10px 30px;
    }

.show {
    display: grid;
}

.search__button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat-Regular';
    font-size: 22px;
    background-color: #B99A6A;
    color: white;
    border-radius: 0 5px 5px 0;
    padding: 20px;
    text-decoration: none;
    cursor: pointer;
}

.search__button--mobile {
    display: none;
}

#search__overlay,
#tab__search__overlay,
#contact__overlay {
    display: none;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
}

@media (max-width: 1023px) {
    .search {
        display: block;
        position: fixed;
        background: #fbfbfb;
        width: -webkit-fill-available;
        padding: 20px 30px 20px 30px;
        margin: 0 20px;
        visibility: hidden;
        z-index: 10000;
        top: 100px;
    }

    .search__selection {
        padding-right: 0px;
    }

    .search__filters {
        display: block;
        width: -webkit-fill-available;
        padding: 0;
    }

    .search__input {
        padding: 15px 0 30px 0;
        border: 0;
    }

    .hero__dropdown-content {
        min-width: -webkit-fill-available;
        left: 0;
    }

    .search__button {
        font-size: 18px;
        padding: 15px 20px;
        border-radius: 5px;
        width: max-content;
        margin: auto;
    }

    .search__button--mobile {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -20px;
        z-index: 10;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .hero__container {
        padding: 0 20px;
    }

    .search {
        max-width: calc(100% - 20px);
    }
}

/*#endregion HERO */

/*#region PHASES */

.phases {
    position: relative;
    background-color: #f3efeb;
}

    .phases h2 {
        padding-top: 40px;
    }

.phases__container {
    display: flex;
    justify-content: space-between;
    max-width: 1364px;
    margin: auto;
    padding: 90px 0;
}

@media (min-width: 1024px) {
    .phases__map {
        min-width: 900px;
        pointer-events: none;
    }
}

#_1,
#_4,
#_5 {
    cursor: pointer;
}


.phase-dialog {
    position: absolute;
    background: white;
    top: 250px;
    max-width: 450px;
    border-radius: 6px;
    padding: 40px 25px 30px 30px;
    margin: initial;
    z-index: 100;
}

    .phase-dialog h4 {
        padding: 12px 0;
    }

.phase-dialog__header {
    display: flex;
    justify-content: space-between;
}

.phase-dialog__progress {
    width: 220px;
}

    .phase-dialog__progress span {
        font-family: 'Montserrat-Regular';
    }

.phase-dialog__progress-bar {
    background-color: #dedede;
    border-radius: 13px;
    margin-top: 5px;
}

    .phase-dialog__progress-bar > div {
        background-color: #707070;
        height: 3px;
        border-radius: 10px;
    }

.phase-dialog__description-text {
    font-family: 'Roboto-Light';
    font-size: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #e7e7e7;
}

.phase-dialog__properties {
    border-bottom: 1px solid #e7e7e7;
}

.phase-dialog__property-container {
    display: flex;
    margin-bottom: 10px;
}

.phase-dialog__property-image {
    min-width: 97px;
    max-height: 84px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #333;
}

.phase-dialog__property-info {
    padding: 9px;
}

.phase-dialog__property-name {
    font-family: 'Montserrat-Regular';
    font-size: 15px;
}

.phase-dialog__property-details {
    font-family: 'Roboto-Light';
    font-size: 15px;
}

.phase-dialog__amenities {
    position: relative;
}

.phase-dialog__amenities-button {
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    border-radius: 8px;
    color: white;
    background: #333;
    padding: 8px 45px;
    text-decoration: none;
    position: absolute;
    right: 0;
    bottom: 0;
}

.phase-dialog__amenities-icon {
    margin-right: 14px;
}

@media (max-width: 1440px) {
    .phases__container {
        padding: 90px 20px;
        display: block;
    }

    .phases__map-container {
        text-align: center;
    }

    .phases__map {
        margin-top: 50px;
        max-width: -webkit-fill-available;
        min-width: auto;
    }

    .phase-dialog {
        position: inherit;
        max-width: -webkit-fill-available;
        margin-top: 50px;
        box-shadow: 0px 5px 10px #0000000F;
    }

    .phase-dialog__progress {
        width: 155px;
    }

    .phase-dialog__properties {
        display: none;
    }

    .phase-dialog__amenities {
        text-align: center;
    }

    .phase-dialog__amenities-icons {
        margin-bottom: 30px;
    }

    .phase-dialog__amenities-button {
        position: relative;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .phase-dialog {
        max-width: 600px;
        margin: 50px auto 0 auto;
    }

    .phases__container {
        padding: 80px;
    }
}

@media (min-width: 768px) and (max-width: 1440px) {
    .phases__map {
        max-width: 700px;
    }
}

/*#endregion PHASES SECTION */

/*#region CONCEPT*/

.concept__container {
    display: flex;
    background: white;
    max-width: 1425px;
    box-shadow: 0px 5px 10px #0000000F;
    border-radius: 8px;
    margin: auto;
    padding: 55px 15px 30px 80px;
    margin-top: 50px;
}

.concept__description {
    font-family: 'Roboto-Light';
    padding-top: 25px;
    padding-right: 20px;
}

    .concept__description p {
        margin-bottom: 25px;
    }

.concept__container--left,
.concept__container--right {
    width: 55%;
}

.concept__container--right {
    width: 45%;
}

.concept__powered-by {
    font-family: 'Montserrat-Bold';
    font-size: 20px;
    padding: 10px 0;
}

.concept__image {
    max-width: 100%;
    margin-top: 60px;
}

.concept__image--mobile,
.concept__signature--mobile {
    display: none;
}

@media (max-width: 1023px) {
    .concept__container {
        display: block;
        padding: 50px 40px;
        border-radius: 0;
    }

    .concept__container--left, .concept__container--right {
        width: auto;
    }

    .concept__image,
    .concept__signature {
        display: none;
    }

    .concept__image--mobile {
        display: block;
        max-width: 100%;
    }

    .concept__signature--mobile {
        display: block;
    }
}

/*#endregion CONCEPT SECTION */

/*#region PROPERTY */
.property__container {
    padding: 16px 0 60px 0px;
    margin: auto;
    max-width: 1364px;
}

.property__container h2{
    font-size: 32px;
    margin-left: 20px;
}

.property__cards {
    display: flex;
    padding: 60px 0;
    overflow-x: auto;
    -webkit-mask-image: -webkit-gradient(linear, left center, right bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.3)));
}

.property__cards::-webkit-scrollbar {
    height: 7px;
}

.property__cards::-webkit-scrollbar-track {
    background: #c5c5c5;
    margin-left: 200px;
    margin-right: 200px;
    min-width: 200px;
}

.property__cards::-webkit-scrollbar-thumb {
    background-color: #707070;
}

.property__card {
    position: relative;
    min-width: 320px;
    width: 320px;
    background: #FFF;
    box-shadow: 0px 5px 15px #0000000F;
    margin-right: 50px;
}

.property__card-image {
    position: absolute;
    left: 20px;
    top: -15px;
}

.property__card-info {
    padding: 385px 30px 20px 30px;
}

    .property__card-info h3 {
        font-family: 'Montserrat-SemiBold';
        font-size: 25px;
        text-transform: uppercase;
    }

.property__progress {
    width: 180px;
}

    .property__progress span {
        font-family: 'Montserrat-Regular';
        font-size: 10px;
        letter-spacing: 1px;
    }

.property__progress-bar {
    background-color: #dedede;
    border-radius: 13px;
    margin-top: 5px;
}

    .property__progress-bar > div {
        background-color: #707070;
        height: 3px;
        border-radius: 10px;
    }

.property__card-details {
    font-family: 'Montserrat-Regular';
    font-size: 12px;
}

.property__card-button {
    display: block;
    text-align: center;
    color: #333;
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    background: #F6F6F6;
    border-radius: 5px;
    width: 100%;
    padding: 10px 0;
    text-decoration: none;
}

@media (max-width: 767px) {
    .property__cards::-webkit-scrollbar-track {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (max-width: 1023px) {
    .property h2 {
        padding: 0 30px 40px 30px;
    }

    .property__container {
        padding: 10px 10px 50px 10px;
    }

    .property__cards {
        padding: 10px 10px 50px 10px;
        min-width: 0;
        max-width: 80%;
    }

    .property__card{
        
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .property h2 {
        padding: 0 70px 40px 70px;
    }

    .property__container {
        padding: 0px 50px 50px 10px;
    }

    .property__cards {
        padding: 50px;
    }
}

/*#endregion PROPERTY SECTION */

/*#region section */

.section {
    background-color: #F5F5F5;
    padding: 100px 0 150px 0;
}

.section__container {
    max-width: 1364px;
    margin: auto;

}

.move_up {
    position: relative;
    top: -200px;
}

.section__container h2 {

}

.section__container p {
    font-family: 'Roboto-Light';
    font-size: 15px;
    margin: 18px 0;
    max-width: 1135px;
}

.section__big {
    background: white;
    min-height: 150px;
    max-height: 550px;
}

.section__section {
    display: flex;
    padding-top: 40px;
}

.section__section--reverse {
    flex-direction: row-reverse;
}

.section__section-container {
    display: flex;
}

.section__description {
    max-width: 570px !important;
    padding-top: 10px;
}

.section__column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section__text--right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.section__column--one {
    width: 70%;
}

.section__column--two {
    width: 30%;
}

.section__mask {
    position: relative;
    margin-right: 10px;
}

.section__mask--first {
    width: 398px;
    height: 434px;
}

.section__mask--second {
    width: 536px;
    height: 203px;
}

.section__mask--third {
    width: 399px;
    height: 585px;
}

.section__mask--fourth {
    width: 399px;
    height: 203px;
}

.section__card-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.section__card {
    background: white;
    width: 217px;
    min-height: 179px;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1000;
}

.section__card-icon {
    width: 60px;
    height: 60px;
    margin-top: 30px;
}

.section__card--bottom {
    bottom: 10px;
    top: auto;
}

.section__card--right {
    left: auto;
    right: 10px;
}

.section__card p {
    padding: 0 20px;
    text-align: center;
}
.section__video_container{
    height: 500px;
}

.section__video_iframe {
    height: 100%;
    width: 100%;
    padding-bottom: 56.25%;
}

@media (max-width: 1440px) {
    .section {
        padding: 0;
    }

        .section h3 {
            font-size: 20px;
            margin-top: 30px;
        }

    .section__container {
        padding: 40px 20px;
    }

    .section__section {
        display: block;
        padding-top: 0px;
    }

    .section__description {
        margin-bottom: 40px !important;
    }

    .section__mask {
        max-width: 100%;
        min-height: 200px;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .section__section-container {
        display: block;
    }

    .section__card {
        width: calc(100% - 20px);
        min-height: 105px;
        top: auto;
        bottom: 10px;
    }

        .section__card p {
            padding: 30px 20px;
        }

    .section__card-icon {
        position: absolute;
        top: -26px;
        left: 0;
        right: 0;
        margin: auto;
        box-shadow: 0px 3px 6px #B99A6A69;
        border-radius: 50%;
    }

    .section__column--one,
    .section__column--two {
        width: 100%;
    }

    .section__text--right {
        align-items: flex-start;
        text-align: left;
    }
}


@media (min-width: 768px) and (max-width: 1023px) {
    .section__mask {
        max-width: 450px;
        width: 450px;
        margin: 0 auto 40px auto;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .section__container {
        padding: 80px;
    }

    .section__mask {
        max-width: 750px;
        width: 750px;
        margin: 0 auto 60px auto;
    }

    .section__card {
        width: 350px;
        min-height: 120px;
    }
}

@media (max-width: 767px) {
    .section__mask {
        width: auto;
    }
}

/*#endregion section SECTION */

/*#region NEWS */

.news {
    font-family: 'Roboto-Light';
    background-color: #858585;
    color: white;
    padding: 35px 0 80px 0;
    font-size: 15px;
}

.news__container {
    display: flex;
    max-width: 1440px;
    margin: auto;
}

.news__column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 5px;
}

.news__presentation {
    display: block;
    width: 31%;
    min-width: 31%;
    padding-right: 90px;
}

.news__paragraph {
    margin-bottom: 30px;
}

.news h2 {
    font-family: 'Montserrat-Regular';
    color: white;
    padding-top: 15px;
    margin-bottom: 45px;
}

.news__button {
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    background-color: #585858;
    color: white;
    width: 256px;
    padding: 9px 76px;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.news__article h3 {
    font-family: 'Montserrat-Bold';
    color: white;
    padding-top: 10px;
}

.news__article a {
    color: white;
    text-decoration: none;
}

.news__article-intro {
    padding-top: 15px;
}

@media (max-width: 1440px) {
    .news {
        padding: 60px 0;
    }

    .news__container {
        display: block;
    }

    .news__paragraph {
        margin-bottom: 40px;
    }

    .news__column {
        display: block;
        padding: 0 40px;
    }

    .news__presentation {
        display: block;
        max-width: 100%;
        width: auto;
    }

    .news__article {
        margin-top: 40px;
    }

        .news__article img {
            max-width: 100%;
        }
}

/*#endregion NEWS SECTION */

/*#region FOOTER */

.footer__newsletter {
    background-color: #333;
    padding: 18px 50px;
}

.footer__newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1364px;
    margin: auto;
    text-transform: uppercase;
}

.footer__newsletter p {
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    color: #a5a5a5;
}

.footer__form {
    position: relative;
}

.footer__input {
    background: transparent;
    outline: none;
    padding: 12px 122px 12px 10px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    color: white;
    width: 408px;
}

    .footer__input::placeholder {
        font-family: 'Montserrat-Bold';
        font-size: 12px;
        color: white;
    }

.footer__submit-button {
    font-family: 'Montserrat-Bold';
    font-size: 12px;
    letter-spacing: 1.5px;
    position: absolute;
    top: 6px;
    right: 8px;
    outline: none;
    text-decoration: none;
    background: #8E8E8E;
    border-radius: 8px;
    color: white;
    padding: 5px 12px;
}

.footer__info {
    color: white;
    position: relative;
    /* background: url("/static/images/hero.png"); */
    background-size: cover;
    background-color: black;
    padding: 45px 50px 55px 50px;
}

    .footer__info a {
        color: white;
    }
.footer_img{
    height: 120px;
    padding-bottom: 15px;
}
.footer__info-details {
    display: flex;
    justify-content: space-between;
    max-width: 1364px;
    margin: auto;
}

    .footer__info-details
    .footer__column {
        display: flex;
        align-items: center;
    }

.footer__logo span {
    font-family: 'Montserrat-Bold';
    font-size: 19px;
    line-height: 15px;
    display: block;
    padding-right: 15px;
}

.footer__phone,
.footer__whatsapp {
    display: flex;
    font-family: 'Montserrat-Bold';
    font-size: 12px;
    padding-right: 15px;
    margin-left: 20px;
}

    .footer__phone img,
    .footer__whatsapp img {
        margin-right: 7px;
    }

    .footer__phone a,
    .footer__whatsapp a {
        text-decoration: none;
    }

.footer__social-icons {
    display: flex;
    align-items: center;
    margin: 0;
}

    .footer__social-icons li::marker {
        content: '';
    }

    .footer__social-icons li {
        margin-right: 15px;
    }

.footer__links {
    max-width: 1364px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


    .footer__links a {
        font-family: 'Montserrat-Regular';
        font-size: 12px;
        text-decoration: none;
        display: block;
        margin-top: 13px;
    }

.footer__column:last-of-type {
    text-align: right;
}

@media (max-width: 1439px) {
    .footer__input {
        width: 188px;
    }

    .footer__newsletter p {
        font-size: 12px;
        padding-right: 40px;
    }
}

@media (max-width: 1023px) {
    .footer__second-logo {
        display: none;
    }

    .footer__social-icons li:last-of-type {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .footer__newsletter {
        padding: 18px 15px;
    }

        .footer__newsletter p {
            padding-right: 0;
        }

    .footer__newsletter-container {
        display: block;
    }

    .footer__form {
        width: auto;
        margin: 25px auto 10px auto;
    }

    .footer__input {
        width: -webkit-fill-available;
        padding: 12px 122px 12px 10px;
    }

    .footer__info {
        padding: 30px 15px;
    }

    .footer__info-details .footer__column {
        display: block;
    }

    .footer__phone {
        margin: 30px 0 10px 0;
    }

    .footer__whatsapp {
        margin: 0 0 30px 0;
    }

    .footer__column-menu {
        margin-top: -84px;
        max-width: 50%;
    }
}

@media (max-width: 360px) {
    .footer__phone a {
        display: block;
    }

    .footer__column-menu {
        margin-top: -100px;
    }
}

/*#endregion FOOTER SECTION */

/* PHASE PAGE*/

/*#region PHASE HERO */

.page-hero__image {
    position: relative;
    max-width: 100%;
    width: fit-content;
    z-index: -1;
    object-fit: cover;
}

@media (max-width: 767px) {
    .page-hero__image {
        height: 300px;
    }
}

/*#endregion PHASE HERO */

/*#region AMENITIES*/
.section--phase {
    background: white;
    padding: 0;
}

.section__phase-container {
    background: white;
    border-radius: 8px;
    margin-top: -234px;
}

    .section__phase-container
    .section__section {
        padding-top: 0;
    }

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 35px;
    flex-wrap: wrap;
}

.section__header h2 {
    font-size: 50px;
    margin-bottom: 0;
}

.section__available-properties {
    font-family: 'Montserrat-Regular' !important;
    font-size: 20px !important;
    color: #333;
}

.section__paragraph {
    padding: 0 30px 0 35px;
}

.section__paragraph:last-of-type {
    padding-bottom: 30px;
}

.section__amenities {
    background: #fbfbfb;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    padding: 33px 35px;
    margin-top: 20px;
}

.section__amenities h3 {
    font-family: 'Montserrat-Regular';
    font-size: 20px;
    margin-bottom: 10px;
}

.section__amenities-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 40px;
}

.section__amenities-details p {
    margin: 0;
}

.section__amenities-icon {
    width: 60px;
}
.section__phase-card-overlap {
    position: relative;
    top: -200px;
}

.section-nopad {
    padding-top: 20px;
    padding-bottom: 20px;
    height: 50px;
}

@media (max-width: 1439px) {
    .section--phase {
        padding-bottom: 0;
    }

    .section__phase-container {
        margin-top: 0;
        padding-top: 30px;
        padding-bottom: 0;
    }

    .section__header {
        padding-bottom: 80px;
    }

    .section__paragraph {
        /*display: none;*/
    }

    .section-nopad {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .section__big {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .section__amenities {
        margin: 0 auto 60px auto;
    }

    .section__column--reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    .section__phase-card-overlap{
        top : -100px;
        border-radius: 40px;
    }
}


@media (max-width: 767px) {
    .section__header {

    }

        .section__header h2 {
            font-size: 30px;
            padding: 0;
        }

    .section__available-properties {
        padding: 0 !important;
    }

    .section__amenities {
        margin-bottom: 20px;
    }

        .section__amenities h3 {
            margin: 0;
            padding: 0;
        }

    .property__container--phase {
        padding-top: 20px;
    }
    .section__amenities-details p{
        text-align: end;
    }
}
/*#endregion AMENITIES*/

/*#region PHASE DESCRIPTION */

.description {
    padding-bottom: 80px;
}

.description__container {
    display: flex;
    max-width: 1364px;
    margin: auto;
    padding-top: 100px;
}

.description__container--column {
    flex-direction: column-reverse;
}

.description__container--reverse {
    flex-direction: row-reverse;
}

.description__container h3 {
    padding: 20px 0;
}

.description__column--right {
    padding-left: 38px;
    padding-right: 26px;
}

.description__text {
    font-family: 'Roboto-Light';
    font-size: 15px;
    padding-right: 64px;
}

.description__column--right
.description__text {
    padding-right: 0;
}

.description__image {
    width: 100%;
}

@media (max-width: 1439px) {
    .description--property-page {
        padding-bottom: 0;
    }

    .description__container {
        display: block;
        padding: 0 80px 50px 80px;
    }

    .description__column--right {
        padding-left: 0;
        padding-right: 64px;
    }
}

@media (max-width: 1023px) {
    .description__container {
        padding: 0 30px 50px 30px;
    }

    .description__column--right,
    .description__text {
        padding-right: 0;
    }
}

@media (min-width: 1024px) {
    .description__column-image {
        min-width: 748px;
    }
}

@media (max-width: 767px) {
    .description__container {
        padding: 0 20px 20px 20px;
    }

    .description__text {
        padding-left: 12px;
    }

    .description__image {
        padding-top: 20px;
    }
}

/*#endregion PHASE DESCRIPTION */

/* PROPERTY PAGE */

/*#region AMENITIES*/

.section__header--property {
    padding: 32px 35px;
}

.section__property-availability {
    display: flex;
    flex-direction: column;
    border-color: #00000038;
    padding: 15px 10px;
}

    .section__property-availability p {
        font-family: "Montserrat-Regular" !important;
        margin: 0 0 10px;
    }

    .section__property-availability span {
        font-family: "Montserrat-Regular";
        font-size: 15px;
    }

.section__book-button {
    font-family: "Montserrat-Regular";
    font-size: 15px;
    padding: 14px 102px;
    background: #333;
    color: white;
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
}

@media (max-width: 1439px) {
    .section__header--property {
        display: block;
    }

    .section__property-availability {
        border: 0;
        max-width: 280px;
        padding: 30px 0;
    }

    .section__amenities {
        margin-top: 20px;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .section__header--property {
        padding: 0;
    }
}

@media (max-width: 350px) {
    .section__book-button {
        padding: 14px 70px;
    }
}

/*#endregion AMENITIES*/

/*#region IFRAMES*/
.property-iframe-container{
    margin-top: 20px;
    margin-bottom: 100px;
    padding-top:6px;
    padding-bottom:6px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*#endregion IFRAMES*/
/*#region PROPERTY SEARCH*/
.property-filter {
    position: relative;
}

.container {
    max-width: 1364px;
    margin: auto;
    object-fit: cover;
}

.property-filter
.header img {
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.search__phase {
    max-width: 1238px;
    top: -130px;
}

.button {
    font-size: 18px;
    padding: 20px 35px;
}

.table__header {
    display: flex;
    max-width: 1364px;
    margin: 100px auto 10px auto;
}

.table__header-names {
    display: flex;
    order: 2;
}

.table__header-name {
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    color: #333;
    padding: 12px 16px 12px 26px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.table__header-name--property {
    min-width: 223px;
    order: 1;
}

.table__header-name--brochure {
    display: flex;
    justify-content: flex-end;
    min-width: 239px;
    order: 3;
}

.table__header-names
.table__header-name {
    width: 162px;
}

.table__rows {
    max-width: 1364px;
    margin: auto;
    text-align: center;
}

.table__row {
    display: flex;
    background-color: #F9F9F9;
    border-radius: 8px;
    margin-top: 6px;
}

.table__expand {
    width: 20px;
    margin: 10px;
    cursor: pointer;
}

.table__panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
    text-align: left;
}

.view-button {
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    color: #333;
    background: #E5E5E5;
    border-radius: 8px;
    outline: none;
    border: 0;
    padding: 16px 36px;
    white-space: nowrap;
    cursor: pointer;
}

@media (max-width: 1439px) {
    .search__phase {
        max-width: calc(100% - 70px);
    }

    .property-filter .container {
        padding: 0 80px;
    }

    .table {
        max-width: 750px;
        margin: auto;
        padding: 0 12px;
    }

    .table__header
    .table__header-name--property {
        display: none;
    }

    .table__row {
        position: relative;
        display: block;
    }

    .table__header-name {
        padding: 25px 16px 25px 26px;
    }

    .table__header-name--brochure {
        position: absolute;
        bottom: 14px;
        right: 30px;
        min-width: auto;
        padding: 0;
    }

    .view-button {
        font-size: 12px;
        white-space: normal;
        padding: 12px 25px;
    }

    .table__header-names
    .table__header-name {
        width: 140px;
    }
}


@media (max-width: 1023px) {
    .property-filter .container {
        padding: 0 30px;
    }

    .table__header {
        margin-top: 50px;
    }

    .search__phase {
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 767px) {
    .property-filter .container {
        padding: 0 20px;
    }

    .table__header-name {
        font-size: 12px;
        padding: 25px 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .table__header-name--brochure {
        padding: 0;
        right: 12px;
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .table__header-names
    .table__header-name {
        width: 55px;
    }
    .table__header-names {
        display: flex;
        justify-content: space-around;
        order: 2;
    }

    .view-button {
        font-size: 12px;
        padding: 12px 10px;
    }

    .property-filter
    .header img {
        height: 300px;
    }
}

@media (max-width: 359px) {
    .table__header-names
    .table__header-name {
        width: 42px;
    }

    .table__header-name--brochure {
        padding: 0;
        right: 4px;
        bottom: 19px;
    }

    .view-button {
        font-size: 10px;
        white-space: normal;
        padding: 8px 4px;
        right: 4px;
    }
}

/*#endregion PROPERTY SEARCH*/
/*#region AQUISITIONS*/

.aquisitions__container {
    max-width: 1364px;
    /*background: #F9F9F9 0% 0% no-repeat padding-box;*/
    box-shadow: 0px 5px 10px #0000000F;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    margin: auto;
    background-color: #333333;
}

.aquisitions__header {
    display: flex;
    padding: 50px 50px 0px;
    flex-direction: column;

}

    .aquisitions__header p {
        color: #BAA48C;
        display: flex;
        align-items: center;
    }
    .aquisitions__header h3 {
        color: #BAA48C;
    }

.aquisitions__header-span {
    font: normal normal normal 25px/30px Montserrat-Light;
    padding-left: 20px;
    letter-spacing: 2.5px ;
    position: relative;
    top: -2px;
}
.aquisitions__details__container{
    display: flex;
    flex-wrap: wrap;
}

 .aquisitions__details__container p {
    padding-right: 50px;
}
.aquisitions__header__title-span {

    font-family: Montserrat-Bold;
    font-size: 15px;

}
.aquisitions__body {
    display: flex;
    color: #BAA48C;
    padding-bottom: 30px;

}
.aquisitions__space{
   padding-top: 20px;
}


.aquisitions__availability {
    border-right: 1px solid #cecece;
    padding: 20px 40px 20px 0;
}

.aquisitions__apartment {
    padding: 18px 0;
}

.aquisitions__calculator-container{
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    flex-wrap: wrap;

}

.aquisitions__apartment-type,
.aquisitions__calculator-label {
    font-family: 'Montserrat-Regular';
    font-size: 20px;
    margin: 0;
}

.aquisitions__calculator-label {
    padding-top: 18px;
    padding-bottom: 10px;
    font: normal normal normal 20px/24px Montserrat-Light;
    letter-spacing: 2px;
}

.aquisitions__apartment-availability {
    font-family: 'Montserrat-Bold';
    font-size: 15px;
    margin: 0;
    width: 225px;
}

.aquisitions__apartment-availability--sold-out {
    color: #B99A6A;
}

.aquisitions__apartment-availability--low {
    color: #D45F5F;
}

.aquisitions__apartment-availability--high {
    color: #B99A6A;
}

.aquisitions__calculator {
    width:100%;
}

.aquisitions__calculator-input {
    font-family: 'Montserrat-Bold';
    font-size: 15px;
    background: #FFFFFF;
    border: 1px solid #333333;
    border-radius: 8px;
    outline: none;
    padding: 11px 10px;
    width: 196px;
    margin: 12px 5px 12px 0;
}

.aquisitions__calculator-input-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
/*    justify-content: center;*/

}

.aquisitions__calculator-label-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.aquisitions__calculator-slider {
    margin: 30px 0;
    width: 100%;
}

    .aquisitions__calculator-slider input {
        height: 1px;
        color: #969696;
        width: 100%;
    }

    .aquisitions__calculator-slider output {
        position: absolute;
        left: calc(50% - 20px);
        top: -7px;
        padding: .5em;
        background: white;
        color: #333;
        border: 1px solid #333;
        border-radius: 8px;
    }

#aquisitions__calculator-advance {
    cursor: pointer;
}

#aquisitions__calculator-loan {
    left: calc(50% - 40px);
    cursor: pointer;
}

.aquisitions__calculator-button {
    font-family: 'Montserrat-Bold';
    font-size: 25px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 8px;
    margin-left: 10px;
    padding-bottom: 7px;
    outline: none;
    cursor: pointer;
}

.aquisitions__financial {
    font-family: "Montserrat-Light";
    background: #333;
    color: #B99A6A;
    border-radius: 8px;
    padding: 24px 100px 180px 30px;
}

    .aquisitions__financial h4 {
        font-family: "Montserrat-Light";
        color: #B99A6A;
        margin-bottom: 30px;
    }

.aquisitions__financial-text {
    display: block;
    font-size: 15px;
}

.aquisitions__financial-text--large {
    font-size: 30px;
    font-weight: 400;
    margin: 10px 0;
}

.aquisitions__financial-text--span {
    font-family: "Montserrat-Bold";
    font-size: 30px;
}
.aquisitions__button__wrapper{
    width: 100%;
    display: flex;
    align-content: center;
}
.aquisitions__button {
    font-size: 25px;
    color: white;
    background: #BAA48C;
    border: none;
    border-radius: 8px;
    padding: 15px;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    outline: none;
    cursor: pointer;
    font: normal normal normal 15px/18px Monserrat-Light;
    font-family: 'Montserrat-Regular';

}
.aquistions__disclaimer {
    font: normal normal normal 13px/16px Montserrat;
    letter-spacing: 0px;
    color: #333333;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 35px;
    padding-left: 20px;
    padding-right: 20px;
}
.aquisitions__overview {
    max-width: 1364px;
    margin: auto;
}
.aquistions__offer-list-header-container {
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.aquisitions__offer-item {
    display: flex;
    width: 100%;
    justify-content: space-around;
    background-color: #f9f9f9;
    padding: 25px 0px 25px 0px;
}
.aquisitions__actions {
    display: flex;
    align-items: center;
}

.aquisitions__offer-item p{
    display: flex;
    justify-content: center;
    align-items: center;
}
.aquistions__offer-list-header-container p {
    display: flex;
    justify-content: center;
    align-items: center;
}

.i_1 {
    width: 22%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.i_2 {
    width: 8%;
}
.i_3 {
    width: 12%;
}
.i_4 {
    width: 10%;
}
.i_5 {
    width: 14%;
}

.i_6 {
    width: 33%;
    display: flex;
    flex-wrap: wrap;
}

.h_1 {
    width: 22%;
}

.h_2 {
    width: 8%;
}

.h_3 {
    width: 12%;
}

.h_4 {
    width: 10%;
}

.h_5 {
    width: 14%;
}

.h_6 {
    width: 33%;
}

.offer_button {
    width: 200px;
    height: 50px;
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer_button_sec {
    background-color: #dfdfdf;
    color: #333333;
}


@media (max-width: 1439px) {
    .aquisitions__details__container{
        flex-direction: column;
    }

    .aquisitions__header {
        justify-content: center;
        align-items: center;
    }

    .aquisitions__calculator {
        padding: 20px 50px 20px 45px;
        display: flex;
        flex-direction: column;
    }
    .aquisitions__calculator-input-container {
        flex-grow: 1;
        align-items: center;
    }

    .aquisitions__availability {
        padding: 20px 10px 20px 0;
    }

    .aquisitions__financial {
        padding: 24px 10px 180px 30px;
    }

    .aquisitions__calculator-input {
        width: 170px;
    }
}


@media (max-width: 1023px) {
    .aquisitions__body {
        display: block;
        padding: 0 20px;
    }

    .aquisitions__availability {
        border: 0;
    }

    .aquisitions__financial {
        padding: 24px 10px 60px 30px;
    }

    .aquisitions__calculator {
        padding: 20px 0;
    }

    .aquisitions__apartment-types {
        display: flex;
        flex-wrap: wrap;
    }

    .aquisitions__calculator-input--interest {
        width: 110px;
    }




}

@media (max-width: 767px) {
    .aquisitions__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .aquisitions__header p {
            padding-left: 0;
            font-size: 12px;
     }
    .aquisitions__offer-item {
    }

    .aquisitions__offer-item p {
            font-size: 12px;
    }
    .offer_button {
        width: 200px;
        height: 50px;
        font-family: 'Montserrat-Regular';
        font-size: 15px;
        display: flex;
        align-items: center;
        width: 100px;
        font-size: 12px;
        justify-content: center;
        min-width: 100px;
    }
    .i_6{
        flex-direction: column;
        width: 100%;

    }
    .aquistions__offer-list-header-container p{
        font-size: 12px;
    }

    .i_1 img{
        height: 50px;
    }

}

@media (max-width: 767px) {
    .aquisitions__calculator-container{
        padding:0;
    }
    .aquisitions__overview {
        display: flex;
    }
    .aquisitions__offer-list{
        display: flex;
        flex: 2;
    }

    .aquisitions__offer-item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .aquistions__offer-list-header-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 1;
    }
    .h_6{
        height: 20%;
        flex-direction: column;
    }
}



/*#endregion AQUISITIONS*/

/* BANKS OFFER PAGE */

/*#region TEXT SECTION*/

.section--banks {
    position: relative;
    background: white;
    padding-bottom: 0;
}

.section__banks-container {
    background: white;
    border-radius: 8px;
    margin-top: -234px;
}

.section__banks-container {
    padding-top: 0;
}

    .section__banks-container p {
        max-width: fit-content;
    }

@media (max-width: 1439px) {
    .section__banks-container {
        margin-top: 0;
        padding-top: 30px;
        padding-bottom: 0;
    }
}
/*#endregion TEXT SECTION*/

/*#region TABLE */

.table--banks {
    padding-bottom: 100px;
    background: white;
}

    .table--banks
    .table__header-name {
        padding: 37px 16px 37px 26px;
    }

    .table--banks
    .table__header-names
    .table__header-name {
        width: 172px;
    }

.table__header--banks {
    padding-top: 100px;
    margin-top: -50px;
}

.table__header-name--logo {
    min-width: 223px;
    order: 1;
    padding: 5px 16px 5px 10px;
}

    .table__header-name--logo img {
        max-height: 70px;
        margin: auto;
    }

.table__header-name--apply {
    display: flex;
    justify-content: flex-end;
    min-width: 169px;
    order: 3;
}

.table__apply-button {
    font-family: 'Montserrat-Regular';
    font-size: 15px;
    color: white;
    background: #B99A6A;
    border-radius: 8px;
    outline: none;
    border: 0;
    padding: 15px 49px;
    white-space: nowrap;
    cursor: pointer;
}

.section--banks
.section__paragraph {
    display: block;
}

.table__header-names--mobile {
    display: none;
}

@media (max-width: 1439px) {
    .table--banks .table__header-name {
        padding: 25px 16px 25px 26px;
    }

    .section--banks
    .section__header {
        padding: 20px 0;
    }

    .section--banks
    .section__paragraph {
        padding: 0;
    }

    .table--banks
    .table__header-names
    .table__header-name {
        width: 145px;
    }

    .table__header
    .table__header-name--logo {
        display: none;
    }

    .table__header-name--apply {
        position: absolute;
        bottom: 14px;
        right: 16px;
        min-width: auto;
        padding-right: 0 !important;
    }

    .table__header-name--logo img {
        margin: inherit;
    }
}


@media (max-width: 767px) {
    .table__header--banks {
        padding-top: 70px;
    }

    .table--banks .table__header-name {
        padding: 25px 10px;
    }

    .table--banks
    .table__header-names
    .table__header-name {
        width: 50px;
    }

    .table__header-name--apply {
        padding: 0;
        right: 12px;
    }

    .table__apply-button {
        font-size: 12px;
        white-space: normal;
        padding: 12px 25px;
    }

    .table__header-names--mobile {
        display: flex;
    }

    .table__header-names--desktop {
        display: none;
    }
}

@media (max-width: 359px) {
    .table__header-name--apply {
        padding: 0;
        right: 4px;
        bottom: 19px;
    }
}

/*#endregion TABLE */

/* BLOG PAGE */

.section__blog-container {
    background: white;
    border-radius: 8px 8px 0 0;
    margin-top: -234px;
}

.section__blog-container {
    padding-top: 0;
}

    .section__blog-container p {
        max-width: fit-content;
    }

@media (max-width: 1439px) {
    .section__blog-container {
        margin-top: 0;
        padding: 50px 80px;
    }
}

@media (max-width: 1023px) {
    .section__blog-container {
        padding: 30px 20px;
    }
}


@media (max-width: 767px) {
    .section__blog-container {
        padding: 20px;
    }
}

/*#region LIGHTBOX */
/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
}

/* Modal Content */
.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    max-width: 1200px;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    z-index: 100000;
}

    .close:hover,
    .close:focus {
        color: #999;
        text-decoration: none;
        cursor: pointer;
    }

.property-brochure__slides {
    display: flex;
    background: transparent;
    margin: auto;
    min-height: max(440px, calc(100vh - 80px));
    align-items: center;
}

.property-brochure__slide {
    max-width: 1000px;
    max-height: calc(100vh - 80px);
    margin: auto;
}

.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.property-brochure__arrow-prev,
.property-brochure__arrow-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.property-brochure__arrow-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .property-brochure__arrow-prev:hover,
    .property-brochure__arrow-next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

.property-brochure img {
    width: 100%;
}

.property-brochure__caption-container {
    text-align: center;
    padding: 2px 16px;
    color: white;
}

.property-brochure img.hover-shadow {
    transition: 0.3s;
}

.property-brochure .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media (max-width: 767px) {
    .modal {
        padding-top: 50px;
    }

    .property-brochure__slides {
        min-height: 350px;
    }

    .property-brochure__slide {
        width: 300px;
    }
}

@media (max-width: 359px) {
    .property-brochure__slide {
        width: 220px;
    }
}

/*#endregion LIGHTBOX */

/*#region SEARCH RESULTS */

.search-hero {
    background: #f1f1f1;
    height: 330px;
}

.section__search-container {
    background: white;
    border-radius: 8px 8px 0 0;
    margin-top: -230px;
}

.search-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    max-width: 1364px;
    margin: auto;
}

.search-sort {
    display: flex;
    align-items: center;
    padding-top: 65px;
}

.search-sort__button {
    padding: 15px 12px;
    border: 1px solid;
    border-radius: 5px;
    box-shadow: 0px 3px 15px #00000026;
    margin: 0 10px;
    cursor: pointer;
}

.search-results {
    max-width: 1364px;
    margin: 50px auto;
}

.search-result {
    display: flex;
    width: 100%;
    max-width: fit-content;
    margin: 40px auto;
}

.search-result__property {
    display: flex;
    background: #F5F5F5;
    border-radius: 0 5px 5px 0;
    margin: 10px 0;
}

.search-result__property-column {
    padding: 28px 40px;
    width: 330px;
}

.search-result__property-column--button {
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
}

.search-result__property-name {
    margin-bottom: 10px;
}

.search-result__property-filter {
    display: flex;
    justify-content: space-between;
}

    .search-result__property-filter p {
        font-size: 20px;
    }

        .search-result__property-filter p:last-of-type,
        .search-result__property-filter p:nth-last-of-type(2) {
            margin-bottom: 0;
        }

.search-result__property-button {
    font-family: "Montserrat-Regular";
    font-size: 15px;
    color: white;
    background-color: #333333;
    border-radius: 8px;
    padding: 18px 42px;
    outline: none;
    cursor: pointer;
}

/* SLIDES */
.search__slides {
    position: relative;
    min-height: auto;
    width: 543px;
    margin: initial;
    max-width: -webkit-fill-available;
}

    .search__slides .property-brochure__slide {
        width: 543px;
        height: 305px;
        object-fit: cover;
        border-radius: 5px;
    }

    .search__slides .property-brochure__arrow-prev,
    .search__slides .property-brochure__arrow-next {
        top: 110px;
        margin: 10px;
        padding: 11px 19px;
        background: rgba(255,255,255,0.5);
    }

/* END SLIDES*/

@media (max-width: 1440px) {
    .search-result__property-column {
        padding: 28px 40px;
        width: 300px;
    }

    .search-result__property-column--button {
        width: 220px;
    }
}

@media (max-width: 1279px) {
    .search-results {
        padding: 0 15px;
        margin: 60px auto 100px auto;
    }

    .search-result {
        display: block;
    }

    .search-result__property {
        display: block;
        margin: 0 10px;
    }

    .search-result__property-column {
        padding: 28px 28px 0 28px;
        width: auto;
    }

    .search-result__property-column--button {
        display: block;
        margin: auto;
        padding: 24px 28px 28px 28px;
    }

    .search-result__property-button {
        width: 100%;
    }

    .search__slides .property-brochure__slide {
        float: right;
        width: -webkit-fill-available;
    }
}

@media (max-width: 1024px) {
    .section__search-container {
        margin-top: 0;
    }

    .search-hero {
        height: 70px;
    }

    .search-sort {
        margin: auto;
    }
}

/*#endregion SEARCH RESULTS */

/*#region Generic CSS */

.padding-right-10 {
    padding-right: 10px;
}

.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}

.bold {
    font-weight: bold;
}

.img-small {
    height: 20px;
}

.width-70 {
    width: 70%;
}

.max-width-full {
    max-width: 100%;
}

.w-50 {
    width: 50px;
}

.list-unstyled {
    list-style-type: none;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.invert-filter {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

/*#endregion Generic CSS */
