* {
    box-sizing: border-box
}

a {
    text-decoration: none;
    color: inherit
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0
}

html {
    scroll-behavior: smooth
}

body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal
}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

@-moz-keyframes zoomOut {
    0% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

@-ms-keyframes zoomOut {
    0% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(0.2);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@-moz-keyframes zoomIn {
    0% {
        transform: scale(0.2);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@-ms-keyframes zoomIn {
    0% {
        transform: scale(0.2);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.2);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@-moz-keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@-ms-keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(-1750px);
        transform: translateX(-1750px)
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

::-webkit-scrollbar {
    width: 7px
}

::-webkit-scrollbar-track {
    background: #fff
}

::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 10px;
    height: 5px
}

::-webkit-scrollbar-thumb:hover {
    background: #000
}

h1,
h2 {
    font-size: clamp(2.5rem, 2.0833rem + 1.9048vw, 3.75rem);
    font-weight: 200;
    line-height: 1
}

h4 {
    font-size: clamp(1.25rem, .9375rem + 1.4286vw, 1.7rem);
    font-weight: 200;
    line-height: 1.3
}

h6 {
    font-size: clamp(.875rem, .7917rem + .381vw, 1rem);
    font-weight: 200;
    border: 1px solid #fff;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px
}

.presentation-step__text {
    text-align: left
}

@media(max-width: 767.98px) {
    .presentation-step__text br {
        display: none
    }
}

.modo--dark {
    color: #3c3c3b !important
}

.modo--dark svg path {
    fill: #000
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1
}

.main-nav .nav-container {
    max-width: 1400px;
    height: 100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    position: relative;
    padding: 0 20px
}

.main-nav .nav-container .logo {
    height: auto;
    width: 60px
}

.main-nav .nav-container span {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem
}

@media(min-width: 767.98px) {
    .main-nav .nav-container span {
        font-size: 1.25rem
    }
}

.main-nav .nav-container .nav-language {
    display: flex;
    align-items: center;
    gap: 20px
}

.main-nav .nav-container .nav-language a {
    color: #fff;
    font-size: 14px
}

.main-nav .nav-container .nav-language a:hover {
    color: #8d8d8d
}

.main-nav .nav-container .nav-language a.active {
    font-weight: 600
}

.scroll-nav__container {
    position: relative
}

.scroll-nav {
    width: -webkit-fill-available;
     padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 10;
    margin: auto;
    opacity: 0;
    max-width: 1400px;
}

@media(max-width: 900px) {
    .scroll-nav {
        display: none
    }
}

@media(max-width: 767.98px) {
    .scroll-nav {
        padding: 0 20px
    }
}

.scroll-nav .nav-container {
    max-width: 1400px;
    height: 100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative
}

.scroll-nav .nav-container .logo-scroll {
    font-weight: 800;
    font-size: 0.875rem;
    color: #fff
}

.scroll-nav .nav-container .isologo {
    width: 60px;
    height: auto
}

.scroll-nav .nav-container .isologo.isologo-2 {
    width: 240px
}

.scroll-nav.visible {
    -webkit-animation: fadeIn .8s ease-out forwards;
    -moz-animation: fadeIn .8s ease-out forwards;
    -o-animation: fadeIn .8s ease-out forwards;
    animation: fadeIn .8s ease-out forwards
}

.presentation-step {
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%
}

.presentation-step__content {
    padding: 30px 20px;
    max-width: 1400px;
    width: 100%;
    margin-inline: auto
}

@media(min-width: 500px) {
    .presentation-step__content {
        padding: 40px 20px 40px 2.5rem
    }
}

@media(min-width: 767.98px) {
    .presentation-step__content {
        padding: 50px 30px 50px 12.5rem
    }
}

.presentation-step__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
}

@media(min-width: 767.98px) {
    .presentation-step__text-wrapper {
        gap: 30px
    }
}

.presentation-step .presentation-step__video {
    position: absolute;
    inset: 0
}

.presentation-step .presentation-step__video video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media(max-width: 600px) {
    .presentation-step .presentation-step__video video {
        display: none
    }
}

.presentation-step.presentation-step1 {
    padding-top: 0;
    height: 100vh;
    min-height: auto;
    background-image: url(/web/20250418002537im_/https://trapassocaisso.com/assets/img/hero_mobile.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat
}

@supports(-webkit-touch-callout: none) {
    .presentation-step.presentation-step1 {
        background-attachment: scroll
    }
}

@media(max-width: 500px) {
    .presentation-step.presentation-step1 {
        min-height: 100vh
    }
}

@media(min-width: 768px) {
    .presentation-step.presentation-step1 {
        background-image: url(/web/20250418002537im_/https://trapassocaisso.com/assets/img/hero_desktop.jpg)
    }
}

@media(min-width: 901px) {
    .presentation-step.presentation-step1 {
        position: absolute;
        inset: 0
    }
}

.presentation-step.presentation-step1 .presentation-step__content {
    z-index: 1
}

.presentation-step.presentation-step1 .presentation-step__content .presentation-step__text {
    color: #fff
}

.presentation-step.presentation-step1 h6 {
    opacity: 0;
    -webkit-animation: fadeInUp .8s ease-out forwards;
    -moz-animation: fadeInUp .8s ease-out forwards;
    -o-animation: fadeInUp .8s ease-out forwards;
    animation: fadeInUp .8s ease-out forwards
}

.presentation-step.presentation-step1 h1 {
    opacity: 0;
    -webkit-animation: fadeInUp .8s ease-out forwards;
    -moz-animation: fadeInUp .8s ease-out forwards;
    -o-animation: fadeInUp .8s ease-out forwards;
    animation: fadeInUp .8s ease-out forwards;
    animation-delay: .6s
}

.presentation-step.presentation-step1 h4 {
    opacity: 0;
    -webkit-animation: fadeInUp .8s ease-out forwards;
    -moz-animation: fadeInUp .8s ease-out forwards;
    -o-animation: fadeInUp .8s ease-out forwards;
    animation: fadeInUp .8s ease-out forwards;
    animation-delay: 1.26s
}

.presentation-step.presentation-step2 {
    position: relative;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

.presentation-step.presentation-step2 .presentation-step__bg {
    position: absolute;
    inset: 0;
    background-color: #fff
}

.presentation-step.presentation-step2 .presentation-step__text {
    position: relative;
    z-index: 2;
    color: #3c3c3b
}

.presentation-step.presentation-step2 h6 {
    border-color: #706f6f
}

.presentation-step.presentation-step3 {
    position: relative;
    z-index: 2;
    background-color: #fff;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 40px
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step3 {
        padding-bottom: 0
    }
}

.presentation-step.presentation-step3 .presentation-step__content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 30px;
    width: -webkit-fill-available
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step3 .presentation-step__content {
        grid-template-columns: auto 2fr;
        grid-template-rows: 1fr auto
    }
}

.presentation-step.presentation-step3 .presentation-step__text-wrapper img {
    width: 100%;
    display: block;
    max-width: 250px
}

.presentation-step.presentation-step3 .presentation-step__text {
    color: #3c3c3b
}

.presentation-step.presentation-step3 h6 {
    border-color: #706f6f
}

.presentation-step.presentation-step3 .presentation-step__proyects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step3 .presentation-step__proyects {
        display: block
    }
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    -webkit-transition: transform 1s cubic-bezier(0.64, 0.03, 0.44, 1.29);
    -moz-transition: transform 1s cubic-bezier(0.64, 0.03, 0.44, 1.29);
    -o-transition: transform 1s cubic-bezier(0.64, 0.03, 0.44, 1.29);
    transition: transform 1s cubic-bezier(0.64, 0.03, 0.44, 1.29)
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step3 .presentation-step__proyects .proyect {
        position: absolute
    }
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect:hover {
    z-index: 6
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-1 {
    transform: translate(-150%) rotate(30deg)
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-1.enter {
    transform: translate(0) rotate(2deg)
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-2 {
    transform: translate(150%) rotate(-60deg);
    transition-delay: .5s
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-2.enter {
    transform: translate(0, 0) rotate(-3deg)
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-3 {
    transform: translate(-150%) rotate(330deg);
    transition-delay: .8s
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-3.enter {
    transform: translate(0, 0) rotate(359deg)
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-4 {
    transform: translate(150%) rotate(340deg);
    transition-delay: 1s
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-4.enter {
    transform: translate(0, 0) rotate(359deg)
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-5 {
    transition-delay: .3s;
    transform: translate(-150%) rotate(-15deg)
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-5.enter {
    transform: translate(0, 0) rotate(-2deg)
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-6 {
    transition-delay: .5s;
    transform: translate(150%) rotate(-15deg)
}

.presentation-step.presentation-step3 .presentation-step__proyects .proyect-6.enter {
    transform: translate(0, 0) rotate(5deg)
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-1 {
        width: 21vw;
        bottom: 20px;
        left: 65px;
        z-index: 1;
        transform: translate(-60%, 400%) rotate(30deg)
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-1.enter {
        transform: translate(0, 0) rotate(2deg)
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-2 {
        width: 22vw;
        right: 0px;
        top: 0;
        height: 215px;
        z-index: 2;
        transform: translate(200%, -20%) rotate(-60deg);
        transition-delay: .5s
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-2.enter {
        transform: translate(0, 0) rotate(-3deg)
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-3 {
        width: 20vw;
        top: -30px;
        left: 80px;
        margin: auto;
        z-index: 1;
        transform: translate(75%, -250%) rotate(330deg);
        transition-delay: .8s
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-3.enter {
        transform: translate(0, 0) rotate(359deg)
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-4 {
        width: 20vw;
        bottom: -40px;
        right: 20px;
        z-index: 4;
        transform: translate(80%, 250%) rotate(340deg);
        transition-delay: 1s
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-4.enter {
        transform: translate(0, 0) rotate(359deg)
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-5 {
        width: 20vw;
        top: 35px;
        left: 0;
        z-index: 2;
        transition-delay: .3s;
        transform: translate(-20%, 400%) rotate(-15deg)
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-5.enter {
        transform: translate(0, 0) rotate(-2deg)
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-6 {
        width: 22vw;
        height: fit-content;
        z-index: 3;
        right: 86px;
        top: 0;
        bottom: 0;
        margin: auto;
        transition-delay: .5s;
        transform: translate(400%) rotate(-15deg)
    }

    .presentation-step.presentation-step3 .presentation-step__proyects .proyect-6.enter {
        transform: translate(0, 0) rotate(5deg)
    }
}

.presentation-step.presentation-step3 .marquee {
    grid-column: 1/span 2;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    height: 20px;
    overflow: hidden
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step3 .marquee {
        margin-top: 30px
    }
}

.presentation-step.presentation-step3 .marquee-track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 35s linear infinite
}

.presentation-step.presentation-step3 .marquee-content {
    display: flex;
    gap: 15px;
    text-transform: uppercase
}

.presentation-step.presentation-step3 .marquee::before,
.presentation-step.presentation-step3 .marquee::after {
    content: " ";
    position: absolute;
    z-index: 9;
    width: 150px;
    height: 100%
}

.presentation-step.presentation-step3 .marquee::before {
    top: 0;
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 20%, rgba(255, 255, 255, 0) 100%)
}

.presentation-step.presentation-step3 .marquee::after {
    top: 0;
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, #ffffff 20%, rgba(255, 255, 255, 0) 100%)
}

.presentation-step.presentation-step4 {
    position: relative;
    z-index: 2;
    background-color: white
}

.presentation-step.presentation-step4 .presentation-step__text {
    color: #3c3c3b
}

.presentation-step.presentation-step4 h6 {
    border-color: #706f6f
}

.presentation-step.presentation-step4 .presentation-step__rrhh {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-top: 30px;
    flex-wrap: wrap
}

@media(min-width: 500px) {
    .presentation-step.presentation-step4 .presentation-step__rrhh {
        gap: 30px;
        margin-top: 60px
    }
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step4 .presentation-step__rrhh {
        flex-direction: row
    }
}

.rrhh-profile {
    flex-basis: 50%
}

@media(min-width: 767.98px) {

    .rrhh-profile {
        flex-basis: 30%
    }
}

@media(min-width: 1100px) {
    .rrhh-profile {
        flex-basis: auto;
        flex: 1
    }
}

.presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-media {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden
}

.presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-media video {
        display: block
    }
}

.presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-media img {
        display: none
    }
}

.presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-name {
    font-size: 0.875rem;
    margin-top: 10px;
    color: #3c3c3b;
    font-weight: 700
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-name {
        margin-top: 20px
    }
}

.presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-job {
    font-size: 0.875rem;
    margin-top: 5px
}

.presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-button {
    border: 1px solid #000;
    border-radius: 30px;
    font-size: 0.75rem;
    padding: 10px 20px;
    margin-top: 15px
}

.presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-button img {
    width: 8px;
    margin-left: 5px
}

.presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-button:hover {
    background-color: #000;
    color: #fff
}

.presentation-step.presentation-step4 .presentation-step__rrhh .rrhh-profile-button:hover img {
    filter: invert(1)
}

.presentation-step.presentation-step4 .presentation-step__rrhh a {
    color: #000;
    display: block;
    margin-top: 5px;
    font-size: 0.875rem;
    width: fit-content
}

.presentation-step.presentation-step5 {
    position: relative;
    z-index: 2;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column
}

.presentation-step.presentation-step5 .presentation-step__content {
    flex: 1;
    display: flex;
    align-items: center
}

.presentation-step.presentation-step5 .presentation-step__text {
    color: #fff
}

.presentation-step.presentation-step5 a {
    color: #8d8d8d
}

.presentation-step.presentation-step5 .footer {
    max-width: 1400px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 20px 0 20px;
    position: relative;
    width: -webkit-fill-available
}

.presentation-step.presentation-step5 .footer:after {
    content: "";
    height: 1px;
    width: 0;
    opacity: 0;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear
}

@media(min-width: 767.98px) {
    .presentation-step.presentation-step5 .footer {
        padding: 40px;
        margin-inline: auto
    }
}

.presentation-step.presentation-step5 .footer p,
.presentation-step.presentation-step5 .footer a {
    color: #fff;
    font-size: 12px;
    font-weight: 200
}

.presentation-step.presentation-step5 .footer a:hover {
    color: #8d8d8d
}

.presentation-step.presentation-step5 .footer .footer-end {
    display: flex;
    align-items: center;
    gap: 15px
}

.presentation-step.presentation-step5 .footer.special-reveal:after {
    opacity: 1;
    width: 100%
}

.reveal:not(.special-reveal) {
    opacity: 0;
    transform: translateY(40px);
    -webkit-transition: all .6s ease-out;
    -moz-transition: all .6s ease-out;
    -o-transition: all .6s ease-out;
    transition: all .6s ease-out;
    animation-delay: .8s
}

.reveal:not(.special-reveal).visible {
    opacity: 1;
    transform: translateY(0)
}

#quote span {
    display: inline-block
}

.slider {
    background: #fff;
    height: 100px;
    overflow: hidden;
    position: relative;
    margin: 40px 20px 0 20px;
    width: 90%;
    max-width: 1400px
}

@media(min-width: 767.98px) {
    .slider {
        margin: 40px auto 0 auto
    }
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2
}

.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg)
}

.slider::before {
    left: 0;
    top: 0
}

.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: 4000px;
    border-top: 1px solid #706f6f;
    border-bottom: 1px solid #706f6f
}

.slider .slide {
    height: 98px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center
}

.slider .slide img {
    width: auto;
    height: 80px;
    display: block;
    margin: auto
}

footer {
    background-color: #000;
    display: flex;
    justify-content: space-between
}

footer .logo {
    display: flex;
    align-items: center
}

footer .logo img {
    width: 20px
}

footer .logo p {
    white-space: nowrap
}

footer .logo.logo-der img {
    height: 20px;
    width: auto
}