html.lenis,
html.lenis body {
    height: auto;
}

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;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* Button v2 */
.btn-right {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0px;
    overflow: hidden;
    transition: all .3s ease;
    font-family: "Neue Haas Grotesk Display", Sans-serif;
    font-size: 14px;
    letter-spacing: 1.19px;
    color: #B5ACA4;
    cursor: pointer;
}

.btn-right.white {
    color: #F8F8F2;
}

.btn-right .icon {
    transform: translateX(-20px);
    transition: all .3s ease;
}

.btn-right:hover {
    gap: 20px;
}

.btn-right:hover .icon {
    transform: translateX(0);
}

/* Button Left */
.btn-left {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0px;
    overflow: hidden;
    transition: all .3s ease;
    font-family: "Neue Haas Grotesk Display", Sans-serif;
    font-size: 14px;
    letter-spacing: 1.19px;
    color: #B5ACA4;
    cursor: pointer;
    flex-direction: row-reverse;
}

.btn-left.white {
    color: #F8F8F2;
}

.btn-left .icon {
    transform: translateX(20px);
    transition: all .3s ease;
}

.btn-left .icon svg {
    transition: transform .3s ease;
}

.btn-left:hover {
    gap: 20px;
}

.btn-left:hover .icon {
    transform: translateX(0);
}

.btn-left .icon svg {
    transform: rotate(180deg);
}

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

/* 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;
}

/* Text */
.b6web-text .b6web-text-content.breakline span {
    display: block;
}

.s61-header {
    box-sizing: border-box;
    padding: 20px 4%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #FFF;
    opacity: 0;
    pointer-events: none;
}

.s61-header .desktop-menu .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: auto;

}

.s61-header .desktop-menu .container .col {}

.s61-header .desktop-menu .container .col:last-child {
    min-width: 128px;
}

.s61-header .desktop-menu .container .col .logo {}

.s61-header .desktop-menu .container .col .nav {}

.s61-header .desktop-menu .container .col .nav .nav-list {
    display: flex;
    gap: 55px;
    list-style: none;
}

.s61-header .desktop-menu .container .col .nav .nav-list .nav-item {
    position: relative;
    overflow: hidden;
    font-family: "Neue Haas Grotesk Display", Sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #B5ACA4;
    text-transform: uppercase;
}

.s61-header .desktop-menu .container .col .nav .nav-list .nav-item a span {
    display: block;
}


.s61-header .desktop-menu .container .col .nav .nav-list .nav-item a span:first-child {
    transform: translateY(0px);
    transition: transform 0.4s ease;
}

.s61-header .desktop-menu .container .col .nav .nav-list .nav-item a span:last-child {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.s61-header .desktop-menu .container .col .nav .nav-list .nav-item:hover a span:first-child {
    transform: translateY(-100%);
}

.s61-header .desktop-menu .container .col .nav .nav-list .nav-item:hover a span:last-child {
    transform: translateY(0px);
}

.s61-header .desktop-menu .container .col .toggle-menu {
    display: none;
    cursor: pointer;
}

.s61-header .desktop-menu .container .col .toggle-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #B5ACA4;
    margin-bottom: 5px;
}

.s61-header .desktop-menu .container .col .contact {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.s61-header .desktop-menu .container .col .contact button {
    text-transform: uppercase;
}

.s61-header .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    z-index: 99999;
    background-color: #B5ACA4;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.s61-header .mobile-menu.open {
    transform: translateX(0);
}

.s61-header .mobile-menu .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 72px;
    padding: 0 8%;
}

.s61-header .mobile-menu .container .close {
    position: absolute;
    top: 30px;
    right: 4%;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

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

.s61-header .mobile-menu .container .nav .nav-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    list-style: none;
}

.s61-header .mobile-menu .container .nav .nav-list .nav-item {
    font-family: "Neue Haas Grotesk Display", Sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #F8F8F2;
    text-transform: uppercase;
}

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

    .s61-header .desktop-menu .container .nav,
    .s61-header .desktop-menu .container .col:nth-child(3) {
        display: none;
    }

    .s61-header .desktop-menu .container .col .toggle-menu {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .s61-header .desktop-menu .container {
        justify-content: center;
    }

    .s61-header .desktop-menu .container .col:nth-child(2) {
        position: absolute;
        right: 0;
    }
}

.s61-popup-contact {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 100svh;
    z-index: 99999;
    background-color: #B5ACA4;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.s61-popup-contact.open {
    transform: translateX(0);
}

.s61-popup-contact .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 72px;
    padding: 0 8%;
}

.s61-popup-contact .container .close {
    position: absolute;
    top: 30px;
    right: 4%;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.s61-popup-contact .container .title {
    font-family: "Neue Haas Grotesk Display", Sans-serif;
    font-size: 34px;
    line-height: 38px;
    color: #F8F8F2;
}

.s61-popup-contact .container .form {
    font-family: "Neue Haas Grotesk Display", Sans-serif;
    display: flex;
    gap: 8%;
    flex-direction: column;
}

.s61-popup-contact .container .form form {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.s61-popup-contact .container .form .col {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: #F8F8F2;
}

.s61-popup-contact .container .form .col:last-child {
    justify-content: space-between;
}

.s61-popup-contact .container .form .col .identify {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    font-size: 14px;
}

.s61-popup-contact .container .form .col .identify .radio-group {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.s61-popup-contact .container .form .col .identify .radio-group #identify-client {}

.s61-popup-contact .container .form .col .identify .radio-group #identify-broker {}

.s61-popup-contact .container .form .col .radio-group label,
.s61-popup-contact .container .form .col .checkbox-group label {
    cursor: pointer;
}

.s61-popup-contact .container .form .col .radio-group input[type=radio],
.s61-popup-contact .container .form .col .checkbox-group input[type=checkbox] {
    position: relative;
    top: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 17px;
    height: 17px;
}

.s61-popup-contact .container .form .col .radio-group input[type=radio]::before,
.s61-popup-contact .container .form .col .checkbox-group input[type=checkbox]::before {
    content: "";
    position: absolute;
    left: 5.92px;
    top: 7px;
    z-index: 1;
    width: 6px;
    height: 3px;
    border: 1px solid #F8F8F2;
    border-top-style: none;
    border-right-style: none;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    -moz-transform: rotate(-45deg) scale(0, 0);
    -ms-transform: rotate(-45deg) scale(0, 0);
    -o-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0);
}

.s61-popup-contact .container .form .col .radio-group input[type=radio]:checked::before,
.s61-popup-contact .container .form .col .checkbox-group input[type=checkbox]:checked::before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    -moz-transform: rotate(-45deg) scale(1, 1);
    -ms-transform: rotate(-45deg) scale(1, 1);
    -o-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
}

.s61-popup-contact .container .form .col .radio-group input[type=radio]::after,
.s61-popup-contact .container .form .col .checkbox-group input[type=checkbox]::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    background: #FFF;
    border: 1px solid #F8F8F2;
    background-color: #B5ACA4;
    cursor: pointer;
    border-radius: 50px;
}

.s61-popup-contact .container .form .col .row {
    display: inherit;
    flex-direction: inherit;
    gap: 30px;
}

.s61-popup-contact .container .form .col .row > span {
    font-size: 13px;
    letter-spacing: 0.2px;
    line-height: 21px;
}

.s61-popup-contact .container .form .col .input_group {}

.s61-popup-contact .container .form .col .input_group+.input_group {
    margin-top: 25px;
}

.s61-popup-contact .container .form .col .input_group input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 0;
    border: 0;
    outline: none;
    border-bottom: 1px solid #F8F8F2;
    background-color: transparent;
    font-family: "Neue Haas Grotesk Display", Sans-serif;
    font-size: 14px;
    color: #F8F8F2;
}

.s61-popup-contact .container .form .col .input_group input::placeholder {
    color: #F8F8F2;
    opacity: 1;
}

.s61-popup-contact .container .form .col .input_group #name {}

.s61-popup-contact .container .form .col .input_group #email {}

.s61-popup-contact .container .form .col .input_group #phone {}

.s61-popup-contact .container .form .col .checkbox-group {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.s61-popup-contact .container .form .col .row .checkbox-group #consent {}

.s61-popup-contact .container .form .col .row .btn-right {
    text-transform: uppercase;
    margin-top: 60px;
}

.s61-popup-contact .container .form .col .row .btn-right .icon {}

.s61-popup-contact .container .form .col .row .btn-right .icon #arrow {}

.s61-popup-contact .container .form .col .row .btn-right .icon #arrow #_0 {}

.s61-popup-contact .container .form .success-message{
    margin-top: 30px;
    color: #F8F8F2;
    font-size: 14px;
}

@media only screen and (max-width: 1200px) {
    .s61-popup-contact {
        width: 100%;
    }

    .s61-popup-contact .container .form .col {
        width: 100%;
    }

    .s61-popup-contact .container .form .col:last-child {
        gap: 60px;
    }
}

.s61-popup-contact .container .form .col .row .btn-right .icon #arrow #_0 {}