html.lenis,
html.lenis body {
    height: auto;
    overflow-x: hidden;
}

html {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.s61-btn-simple {
    display: inline-block;
    width: fit-content;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "Area", Sans-serif;
    font-size: 11.946px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -0.299px;
    padding: 14px 22px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.s61-btn-simple.color {
    color: #ffffff;
    background: #A5998A;
}

.s61-btn-simple.black {
    color: #ffffff;
    background: #000000;
}

.s61-btn-simple span {
    display: block;
}

.s61-btn-simple:hover {
    background: #8E9C78;
}

.button {
    display: inline-block;
    width: fit-content;
    color: #ffffff;
    background: #A5998A;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "Area", Sans-serif;
    font-size: 11.946px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -0.299px;
    padding: 14px 22px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.button:hover {
    background: #8E9C78;
}

/* Image */

.s61-img {
    display: block;
}

.s61-img img {
    display: block;
}

/* Widget Inline SVG */
.s61-inline-svg,
.s61-inline-svg a {
    display: flex;
    outline: none;
    justify-content: center;
}

/* Header */

.s61-header {
    font-family: "Area", Sans-serif;
    margin-top: 10px;
}

body.s61-has-sticky-header {
    padding-top: var(--s61-sticky-header-height, 0px);
}

.s61-header.is-sticky {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    z-index: 999;
}

.s61-header .container {
    border-radius: 108.352px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16.252822875976562px);
    width: 90%;
    max-width: 1500px;
    border-radius: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.s61-header .container .logo {}

.s61-header .container>.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.s61-header .container>.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.s61-header .container>.nav ul li {}

.s61-header .container>.nav ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 14.137px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -0.353px;
}

.s61-header .container>.nav .menu {}

.s61-header .container .cta {}

.s61-header .container .cta .button {}

.s61-header .container .toggle {
    display: none;
}

.s61-header .container #mobile-nav.mobile-nav {
    display: none;
    height: 0;
    overflow: hidden;
}

@media (max-width: 1200px) {

    .s61-header .container {
        width: 100%;
        flex-wrap: wrap;
        gap: 16px;
    }

    .s61-header .container>.nav,
    .s61-header .container>.cta {
        display: none;
    }

    .s61-header .container .toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        outline: none;
        height: 25px;
        cursor: pointer;
        position: relative;
        width: 25px;
        padding: 0;
    }

    .s61-header .container .toggle span {
        width: 25px;
        height: 2px;
        background-color: #000000;
        display: block;
        transform-origin: center;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .s61-header .container .toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .s61-header .container .toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .s61-header .container .toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .s61-header .container #mobile-nav.mobile-nav {
        display: flex;
        width: 100%;
        order: 4;
        flex-direction: column;
        height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        padding-top: 0;
        padding-bottom: 0;
        transition: height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, padding 0.35s ease;
        justify-content: space-between;
    }

    .s61-header.is-mobile-menu-open .container {
        /* align-items: flex-start; */
    }

    .s61-header.is-mobile-menu-open .container #mobile-nav.mobile-nav {
        height: var(--s61-mobile-nav-height, 0px);
        opacity: 1;
        transform: translateY(0);
    }

    .s61-header .container #mobile-nav.mobile-nav ul.nav {
        flex-direction: column;
        gap: 16px;
    }

    .s61-header .container #mobile-nav.mobile-nav ul.nav li {
        flex-direction: column;
        gap: 16px;
        padding: 30px 0;
    }

    .s61-header .container #mobile-nav.mobile-nav ul.nav li+li {
        border-top: 1px solid #E9E9E9;
    }

    .s61-header .container #mobile-nav.mobile-nav ul.nav li a {
        font-family: Area;
        font-size: 14.137px;
        font-style: normal;
        font-weight: 300;
        line-height: 140%;
        letter-spacing: -0.353px;
    }

    .s61-header.is-mobile-menu-open .container #mobile-nav.mobile-nav .cta {
        margin-top: 6px;
    }

}

/* Banner home */

.s61-banner-home {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    font-family: "Area", Sans-serif;
}

.s61-banner-home .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.s61-banner-home .bg video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 36px;
    object-fit: cover;
}

.s61-banner-home .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    box-sizing: border-box;
    color: #fff;
}

.s61-banner-home .content .status-delivery-address {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: "Area", Sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 187%;
    letter-spacing: -0.065px;
}

.s61-banner-home .content .neighborhood-title-info-cta {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.s61-banner-home .content .neighborhood-title-info-cta .neighborhood {
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 187%;
    letter-spacing: -0.065px;
}

.s61-banner-home .content .neighborhood-title-info-cta .title {
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 117%;
    margin-top: 10px;
}

.s61-banner-home .content .neighborhood-title-info-cta .info {
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 187%;
    letter-spacing: -0.065px;
    margin-top: 6px;
}

.s61-banner-home .content .neighborhood-title-info-cta .cta {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .s61-banner-home {
        min-height: 500px;
    }

    .s61-banner-home .content {
        flex-direction: column-reverse;
    }

    .s61-banner-home .content .neighborhood-title-info-cta {
        width: 100%;
    }

    .s61-banner-home .content .neighborhood-title-info-cta .neighborhood {
        font-size: 12px;
        font-style: normal;
        font-weight: 300;
        line-height: 187%;
        letter-spacing: -0.055px;
    }

    .s61-banner-home .content .neighborhood-title-info-cta .title {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 117%;
        letter-spacing: -0.642px;
    }

    .s61-banner-home .content .neighborhood-title-info-cta .info {
        font-size: 12px;
        font-style: normal;
        font-weight: 300;
        line-height: 187%;
        letter-spacing: -0.055px;
    }

    .s61-banner-home .content .status-delivery-address {
        font-size: 12px;
        font-style: normal;
        font-weight: 300;
        line-height: 187%;
        letter-spacing: -0.065px;
    }

}

.s61-simple-slide {}

.s61-simple-slide .swiper {}

.s61-simple-slide .swiper .swiper-wrapper {}

.s61-simple-slide .swiper .swiper-wrapper .swiper-slide {
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

.s61-simple-slide .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.s61-simple-slide .swiper .swiper-pagination {}

.s61-simple-slide .swiper .swiper-pagination .swiper-pagination-bullet {
    background: #DBDBDB;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.s61-simple-slide .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #FFF;
}

.s61-simple-slide .swiper .button-next,
.s61-simple-slide .swiper .button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
}

.s61-simple-slide .swiper .button-next {
    right: 20px;
}

.s61-simple-slide .swiper .button-prev {
    left: 20px;
}

.s61-simple-slide .swiper .button-next svg,
.s61-simple-slide .swiper .button-prev svg {
    width: 100%;
    height: 100%;
    display: block;
}

.s61-plants {
    font-family: "Area", Sans-serif;
}

.s61-plants .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.s61-plants .container .types {
    display: flex;
    gap: 30px;
}

.s61-plants .container .types .type {
    width: calc(100% / 4 - 22.5px);
    border-radius: 20px;
    border: 1px solid #E9E9E9;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    cursor: pointer;
}

.s61-plants .container .types .type.is-active {
    background: #A5998A;
    color: #fff;
}

.s61-plants .container .types .type .sub {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16.8px;
    letter-spacing: -0.12px;
    text-transform: uppercase;
}

.s61-plants .container .types .type .title {
    margin-top: 12px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.54px;
}

.s61-plants .container .types .type .meters {
    margin-top: 12px;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.085px;
    color: #A5998A;
    transition: color 0.3s ease;
}

.s61-plants .container .types .type.is-active .meters {
    color: #fff;
}

.s61-plants .container .types .type hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #929292;
    transition: border-color 0.3s ease;
}

.s61-plants .container .types .type.is-active hr {
    border-color: #fff;
}

.s61-plants .container .types .type .suites {
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 24.31px;
    letter-spacing: -0.065px;
}

.s61-plants .container .types .type .spaces {
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 24.31px;
    letter-spacing: -0.065px;
}

.s61-plants .container .types .type .info {
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 24.31px;
    letter-spacing: -0.065px;
}

.s61-plants .container .types .type.is-active .cta {
    opacity: 0;
}

.s61-plants .container .types .type .cta {
    margin-top: 15px;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 19.6px;
    letter-spacing: -0.35px;
    text-transform: uppercase;
    color: #A5998A;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .s61-plants .container .types {
        flex-direction: column;
    }

    .s61-plants .container .types .type {
        width: 100%;
    }
}

.s61-plants .container .plant {}

.s61-plants .container .plant .swiper {}

.s61-plants .container .plant .swiper .swiper {}

.s61-plants .container .plant .swiper .swiper .swiper-wrapper {}

.s61-plants .container .plant .swiper .swiper .swiper-wrapper .swiper-slide {}

.s61-plants .container .plant .swiper .swiper .swiper-wrapper .swiper-slide {
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

.s61-plants .container .plant .swiper .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.s61-plants .container .plant .swiper .swiper-pagination .swiper-pagination-bullet {
    background: #DBDBDB;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.s61-plants .container .plant .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #FFF;
}

.s61-plants .container .plant .swiper .button-next,
.s61-plants .container .plant .swiper .button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
}

.s61-plants .container .plant .swiper .button-next {
    right: 20px;
}

.s61-plants .container .plant .swiper .button-prev {
    left: 20px;
}

.s61-plants .container .plant .swiper .button-next svg,
.s61-plants .container .plant .swiper .button-prev svg {
    width: 100%;
    height: 100%;
    display: block;
}

.s61-detail {
    font-family: "Area", Sans-serif;
}

.s61-detail .content {}

.s61-detail .content .place {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16.8px;
    letter-spacing: -0.12px;
    text-transform: uppercase;
    color: #A5998A;
}

.s61-detail .content .image {
    margin-top: 10px;
}

.s61-detail .content .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.s61-detail .content .title {
    margin-top: 25px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.54px;
    color: #000;
}

.s61-detail .content .description {
    margin-top: 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24.31px;
    letter-spacing: -0.065px;
    color: #6f6f6f;
}

@media (max-width: 768px) {
    .s61-detail .content .place {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 16.8px;
        letter-spacing: -0.12px;
        text-transform: uppercase;
        color: #A5998A;
    }

    .s61-detail .content .title {
        margin-top: 15px;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: -0.54px;
        color: #000;
    }

    .s61-detail .content .description {
        margin-top: 10px;
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: 24.31px;
        letter-spacing: -0.065px;
        color: #6f6f6f;
    }
}

.s61-detail-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 4%;
    box-sizing: border-box;
    font-family: "Area", Sans-serif;
}

.s61-detail-popup .overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.s61-detail-popup .container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    max-height: 70%;
    display: flex;
    gap: 40px;
    border-radius: 43.235px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16.252822875976562px);
    position: relative;
}

.s61-detail-popup .close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 30;
}


.s61-detail-popup .container .col:nth-of-type(2) {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    box-sizing: border-box;
}

.s61-detail-popup .container .col:nth-of-type(3) {
    width: 70%;
}

.s61-detail-popup .container .col .title {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.54px;
    color: #6F6F6F;
}

.s61-detail-popup .container .col .description {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24.31px;
    letter-spacing: -0.065px;
    color: #6f6f6f;
}

.s61-detail-popup .container .col .slide {
    width: 100%;
    height: 100%;
}

.s61-detail-popup .container .col .slide .swiper {
    width: 100%;
    height: 100%;
}

.s61-detail-popup .container .col .slide .swiper .swiper-wrapper {
    width: 100%;
}

.s61-detail-popup .container .col .slide .swiper .swiper-wrapper .swiper-slide {
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

.s61-detail-popup .container .col .slide .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
}

.s61-detail-popup .container .col .slide .swiper .swiper-pagination .swiper-pagination-bullet {
    background: #DBDBDB;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.s61-detail-popup .container .col .slide .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #FFF;
}


.s61-detail-popup .container .col .slide .swiper .button-next,
.s61-detail-popup .container .col .slide .swiper .button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
}

.s61-detail-popup .container .col .slide .swiper .button-next {
    right: 20px;
}

.s61-detail-popup .container .col .slide .swiper .button-prev {
    left: 20px;
}

.s61-detail-popup .container .col .slide .swiper .button-next svg,
.s61-detail-popup .container .col .slide .swiper .button-prev svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .s61-detail-popup {
        align-items: flex-start;
        padding: 4%;
    }

    .s61-detail-popup .close {}

    .s61-detail-popup .container {
        flex-direction: column-reverse;
        gap: 20px;
        max-height: calc(100dvh - 20px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        margin: auto;
    }

    .s61-detail-popup .container .col:nth-of-type(2),
    .s61-detail-popup .container .col:nth-of-type(3) {
        width: 100%;
        min-width: 0;
    }

    .s61-detail-popup .container .col:nth-of-type(2) {
        padding: 20px 40px 40px 40px;
    }

    .s61-detail-popup .container .col:nth-of-type(3) {}

    .s61-detail-popup .container .col .slide {
        min-height: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;

        overflow: hidden;
    }

    .s61-detail-popup .container .col .slide .swiper {
        width: 100%;
        max-width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .s61-detail-popup .container .col .slide .swiper .swiper-wrapper,
    .s61-detail-popup .container .col .slide .swiper .swiper-slide {
        height: 100%;
        max-width: 100%;
    }

    .s61-detail-popup .container .col .slide .swiper .swiper-slide img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        max-height: 50svh;
    }
}

.s61-implantation {
    font-family: "Area", Sans-serif;
}

.s61-implantation .content {
    display: flex;
    gap: 80px;
}

.s61-implantation .content .col {
    flex: 1;
}

.s61-implantation .content .col .image {
    position: relative;
}

.s61-implantation .content .col .image img {
    display: block;
    width: 100%;
    height: auto;
}

.s61-implantation .content .col .bullet {
    position: absolute;
    width: clamp(18px, 2.2vw, 34px);
    height: clamp(18px, 2.2vw, 34px);
    border-radius: 50%;
    background-color: #D9D9D9;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    font-size: clamp(10px, 1.1vw, 14px);
    transition: background-color 0.3s ease, scale 0.3s ease;
    font-size: 12.287px;
    font-style: normal;
    font-weight: 300;
    line-height: 19.66px;
    letter-spacing: -0.061px;
    cursor: pointer;
}

.s61-implantation .content .col .bullet.is-active {
    background-color: #A5998A;
    scale: 1.1;
}

.s61-implantation .content .col .title {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 117%;
    letter-spacing: -0.84px;
}

.s61-implantation .content .col .itens {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    font-size: 14.379px;
    font-style: normal;
    font-weight: 300;
    line-height: 28.183px;
    letter-spacing: -0.072px;
}

.s61-implantation .content .col .item {
    transition: color 0.25s ease;
    cursor: pointer;
}

.s61-implantation .content .col .item:hover,
.s61-implantation .content .col .item.is-active {
    color: #b78846;
}

@media (max-width: 768px) {
    .s61-implantation .content {
        flex-direction: column;
        gap: 15px;
    }

    .s61-implantation .content .col {
        width: 100%;
    }

    .s61-implantation .content .col .bullet {
        font-size: 10px;
    }

    .s61-implantation .content .col .title {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: -0.54px;
        color: #000;
    }

    .s61-implantation .content .col .itens {
        font-size: 12.287px;
        font-style: normal;
        font-weight: 300;
        line-height: 18.183px;
        letter-spacing: -0.072px;
        display: block;
        column-count: 2;
        column-gap: 30px;
    }

    .s61-implantation .content .col .itens .item {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        break-inside: avoid;
        font-size: 12px;
        font-style: normal;
        font-weight: 300;
        line-height: 18px;
        letter-spacing: -0.06px;
    }
}

.s61-grid-person-anim {
    overflow: hidden;
}

.s61-grid-person-anim .container .persons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-family: "Area", Sans-serif;
}

.s61-grid-person-anim .container .persons .person {
    max-width: calc((100% - 140px) / 3);
    margin-right: 70px;
    margin-bottom: 100px;
}

.s61-grid-person-anim .container .persons .person .content {}

.s61-grid-person-anim .container .persons .person .content .image {}

.s61-grid-person-anim .container .persons .person .content .function {
    margin-top: 30px;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16.8px;
    letter-spacing: -0.12px;
    text-transform: uppercase;
    color: #A5998A;
}

.s61-grid-person-anim .container .persons .person .content .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.s61-grid-person-anim .container .persons .person .content .title {
    margin-top: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.54px;
    color: #000;
}

.s61-grid-person-anim .container .persons .person .content .description {
    margin-top: 20px;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 24.31px;
    letter-spacing: -0.065px;
    color: #6f6f6f;
}

.s61-grid-person-anim .container .persons .person .content .logo {
    margin-top: 50px;
}


.s61-grid-person-anim .container .persons .person:nth-child(3n) {
    margin-right: 0px;
}

@media (max-width: 768px) {
    .s61-grid-person-anim .container .persons {
        flex-wrap: nowrap;
    }

    .s61-grid-person-anim .container .persons .person {
        min-width: 100%;
        margin-bottom: 0;
    }

    .s61-grid-person-anim .container .persons .person:nth-child(3n) {
        margin-right: 70px;
    }

    .s61-grid-person-anim .container .persons .person .content .function {
        font-size: 12px;
        line-height: 15.6px;
    }

    .s61-grid-person-anim .container .persons .person .content .title {}

    .s61-grid-person-anim .container .persons .person .content .logo img {
        width: 150px;
        height: auto;
    }
}

.s61-grid-company-anim {
    overflow: hidden;
}

.s61-grid-company-anim .container .companies {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-family: "Area", Sans-serif;
}

.s61-grid-company-anim .container .companies .company {
    max-width: calc((100% - 140px) / 3);
    margin-right: 70px;
    margin-bottom: 100px;
}

.s61-grid-company-anim .container .companies .company .content {}

.s61-grid-company-anim .container .companies .company .content .image {}

.s61-grid-company-anim .container .companies .company .content .function {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16.8px;
    letter-spacing: -0.12px;
    text-transform: uppercase;
    color: #A5998A;
}

.s61-grid-company-anim .container .companies .company .content .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.s61-grid-company-anim .container .companies .company .content .title {
    margin-top: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.54px;
    color: #000;
}

.s61-grid-company-anim .container .companies .company .content .description {
    margin-top: 20px;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 24.31px;
    letter-spacing: -0.065px;
    color: #6f6f6f;
}

.s61-grid-company-anim .container .companies .company .content .logo {
    margin-top: 50px;
}


.s61-grid-company-anim .container .companies .company:nth-child(3n) {
    margin-right: 0px;
}

@media (max-width: 768px) {
    .s61-grid-company-anim .container .companies {
        flex-wrap: nowrap;
    }

    .s61-grid-company-anim .container .companies .company {
        min-width: 100%;
        margin-bottom: 0;
    }

    .s61-grid-company-anim .container .companies .company:nth-child(3n) {
        margin-right: 70px;
    }

    .s61-grid-company-anim .container .companies .company .content .function {
        font-size: 12px;
        line-height: 15.6px;
    }

    .s61-grid-company-anim .container .companies .company .content .title {
        font-size: 28px;
        line-height: 28px;
    }

    .s61-grid-company-anim .container .companies .company .content .logo img {
        width: 150px;
        height: auto;
    }
}

.s61-project {
    font-family: "Area", Sans-serif;
}

.s61-project .container {
    position: relative;
}

.s61-project .container .bg {
    border-radius: 20px;
    overflow: hidden;
}

.s61-project .container .bg img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.s61-project .container .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
}

.s61-project .container .content .title {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18.2px;
    letter-spacing: -0.13px;
    text-transform: uppercase;
}

.s61-project .container .content .description {
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: 16.8px;
    letter-spacing: -0.055px;

}

.s61-status-bar {
    font-family: "Area", Sans-serif;
}

.s61-status-bar .container {}

.s61-status-bar .container .title-percent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.s61-status-bar .container .title-percent .title,
.s61-status-bar .container .title-percent .percent {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.54px;
}

.s61-status-bar .container .title-percent .percent {}

.s61-status-bar .container .bar {
    margin-top: 20px;
    width: 100%;
    height: 3px;
    background-color: #E9E9E9;
    overflow: hidden;
}

.s61-status-bar .container .bar .bar-inner {
    height: 100%;
    background-color: #A5998A;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {

    .s61-status-bar .container .title-percent .title,
    .s61-status-bar .container .title-percent .percent {
        font-size: 14px;
        line-height: 14px;
    }
}


.s61-status-total {
    font-family: "Area", Sans-serif;
}

.s61-status-total .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.s61-status-total .container .title {
    color: var(--e-global-color-5cd6e66);
    font-family: "Area", Sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 16.8px;
    letter-spacing: -0.12px;
    text-align: center;
}

.s61-status-total .container .total {}

.s61-status-total .container .total .progress-item {
    display: flex;
    width: 257px;
    height: 257px;
    border-radius: 50%;
    font-size: 0;
    animation: .4s ease-out reverse;
}

.s61-status-total .container .total .progress-item::after {
    content: attr(data-value) '%';
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 257px;
    margin: 3px;
    border-radius: 50%;
    background: #FFF;
    text-align: center;

    font-family: "Area", Sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: -1.56px;
    color: #A5998A;
}

@media (max-width: 768px) {
    .s61-status-total .container .title {
        font-size: 12px;
        line-height: 15.6px;
    }
}


.s61-status-gallery {}

.s61-status-gallery .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.s61-status-gallery .container .button {
    border: 2px solid #A5998A;
    background: none;
}

.s61-status-gallery .container .button button {
    transform: color 0.3s ease;
    cursor: pointer;
}

.s61-status-gallery .container .button:hover {
    background: #A5998A;
    color: #fff;
}

.s61-status-gallery .container .button:hover button {
    color: #fff;
}

.s61-status-gallery .container .button .btn.btn-primary {}

.s61-status-gallery .container .gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 4%;
    box-sizing: border-box;
    font-family: "Area", Sans-serif;
}

.s61-status-gallery .container .gallery-popup .overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.s61-status-gallery .container .gallery-popup .container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    border-radius: 43.235px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16.252822875976562px);
    position: relative;
}

.s61-status-gallery .container .gallery-popup .container .close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 30;
}

.s61-status-gallery .container .gallery-popup .container .swiper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.s61-status-gallery .container .gallery-popup .container .swiper .swiper-wrapper .swiper-slide {
    height: auto;
}

.s61-status-gallery .container .gallery-popup .container .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.s61-status-gallery .container .gallery-popup .container .swiper .swiper-pagination {}

.s61-status-gallery .container .gallery-popup .container .swiper .swiper-pagination .swiper-pagination-bullet {
    background: #DBDBDB;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.s61-status-gallery .container .gallery-popup .container .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #FFF;
}

.s61-status-gallery .container .gallery-popup .container .swiper .button-next,
.s61-status-gallery .container .gallery-popup .container .swiper .button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
}

.s61-status-gallery .container .gallery-popup .container .swiper .button-next {
    right: 20px;
}

.s61-status-gallery .container .gallery-popup .container .swiper .button-prev {
    left: 20px;
}

.s61-status-gallery .container .gallery-popup .container .swiper .button-next svg,
.s61-status-gallery .container .gallery-popup .container .swiper .button-prev svg {
    width: 100%;
    height: 100%;
    display: block;
}



.s61-accordion {
    font-family: "Area", Sans-serif;
}

.s61-accordion .tab {
    display: none;
    margin-left: auto;
    padding-bottom: 15px;
}

.s61-accordion .title {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    gap: 90px;
}

.s61-accordion .title .arrow svg {
    rotate: 180deg;
    transition: rotate 0.3s ease;
}

.s61-accordion .title.active .arrow svg {
    rotate: 0deg;
}

.s61-accordion .title h2 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.24px;
    letter-spacing: -0.54px;
    margin: 0;
}

.s61-accordion .item+.item {
    margin-top: 17px;
}

.s61-accordion .description {
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 24.31px;
    letter-spacing: -0.065px;
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
    .s61-accordion .title {
        gap: 20px;
        font-size: 16px;
        line-height: 18px;
    }

    .s61-accordion .tab {
        width: 100%;
    }

    .s61-accordion .title .sub {
        margin-bottom: 10px;
    }

    .s61-accordion .item+.item {
        margin-top: 54px;
    }
}

.s61-form {
    font-family: "Area", Sans-serif;
}

.s61-form .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.s61-form .container .row {
    display: flex;
    gap: 12px;
}

.s61-form .container .row .input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
}

.s61-form .container .row .input-group label {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16.8px;
    letter-spacing: -0.12px;
    text-transform: uppercase;
    color: #A1A1A1;
}

.s61-form .container .row .input-group input,
.s61-form .container .row .input-group select {
    background-color: #37302A;
    color: #fff;
    border: none;
    outline: none;
    height: 35px;
    padding: 0 10px;
}

.s61-form .container .row .input-group select {
    color: #A1A1A1;
}

.s61-form .container .row .input-group textarea {
    background-color: #37302A;
    color: #fff;
    border: none;
    outline: none;
    height: 100px;
    resize: none;
    padding: 10px;
}

.s61-form .container .row .input-group button {
    display: inline-block;
    width: fit-content;
    color: #ffffff;
    background: #A5998A;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "Area", Sans-serif;
    font-size: 11.946px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -0.299px;
    padding: 14px 22px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.s61-form .container .row .input-group:hover button {
    background: #8E9C78;
}

@media (max-width: 767px) {
    .s61-form .container .row {
        flex-direction: column;
        gap: 15px;
    }
}

.s61-btn-wpp {
    min-width: 270px;
    display: inline-block;
    width: fit-content;
    color: #ffffff;
    background: none;
    border: 2px solid #8E9C78;
    cursor: pointer;
    text-decoration: none;
    font-family: "Area", Sans-serif;
    font-size: 11.946px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -0.299px;
    padding: 10px 22px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.s61-btn-wpp:hover {
    background: #8E9C78;
}

@media screen and (max-width: 768px) {
    .s61-btn-wpp {
        width: 100%;
    }
}

.s61-material-download-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Area", Sans-serif;
    max-width: 450px;
}

.s61-material-download-popup .container {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.s61-material-download-popup .container .close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.s61-material-download-popup .container .title {
    color: #6F6F6F;
    font-size: 17.015px;
    font-style: normal;
    font-weight: 300;
    line-height: 31.819px;
    letter-spacing: -0.085px;
}

.s61-material-download-popup .container .description {
    color: #6F6F6F;
    font-size: 13.612px;
    font-style: normal;
    font-weight: 300;
    line-height: 187%;
    letter-spacing: -0.068px;
}

.s61-material-download-popup .container .material-download-form {
    margin-top: 30px;
}

.s61-material-download-popup .container .material-download-form .input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.s61-material-download-popup .container .material-download-form .input-group label {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16.8px;
    letter-spacing: -0.12px;
    text-transform: uppercase;
    color: #A1A1A1;
}

.s61-material-download-popup .container .material-download-form .input-group input {
    margin-top: 5px;
    background-color: #e9e9e9bb;
    color: #A1A1A1;
    border: none;
    outline: none;
    height: 35px;
    padding: 0 10px;
}

.s61-material-download-popup .container .material-download-form span {
    color: #6F6F6F;
    display: block;
    width: 100%;
    font-size: 10.564px;
    font-style: normal;
    font-weight: 300;
    line-height: 19.754px;
    letter-spacing: -0.053px;
}

.s61-material-download-popup .container .material-download-form button {
    display: inline-block;
    width: fit-content;
    color: #ffffff;
    background: #000;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "Area", Sans-serif;
    font-size: 11.946px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -0.299px;
    padding: 14px 22px;
    border-radius: 50px;
    transition: background 0.3s ease;
    margin-top: 30px;
}

.s61-material-download-popup .container .material-download-form button:hover {
    background: #8E9C78;
}

.s61-map {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: "Area", Sans-serif;
    border-radius: 20px;
}

.s61-map .container {
    width: 100%;
    height: 100%;
    position: relative;
}

.s61-map .container #map {
    width: 100%;
    height: 100%;
    display: block;
}

.is-hidden {
    display: none !important;
}

.s61-map .container .map-preview {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s61-map .container .preview-card {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.s61-map .container .preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s61-map .container .preview-action {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.s61-map .container .open-map-btn {
    border: 0;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #332c28;
    background: #f1e3cf;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(18, 13, 10, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.s61-map .container .open-map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(18, 13, 10, 0.42);
}

.s61-map .container .open-map-btn:active {
    transform: translateY(0);
}

.s61-map .container .map-hint {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 2;
    max-width: min(360px, calc(100vw - 48px));
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(51, 44, 40, 0.78);
    color: #f1e3cf;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(32, 25, 20, 0.35);
    border: 1px solid rgba(220, 200, 170, 0.22);
}

.s61-map .container .map-hint strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.s61-map .container .map-hint span {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(241, 227, 207, 0.76);
}

@media (max-width: 768px) {
    .s61-map {
        max-height: 50vh;
    }
}