html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    font-family: "Inter", serif;
    /* font-family: "Righteous", serif; */
}

.ovh {
    overflow: hidden;
}

.text {
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
}

.text_medium {
    font-size: 24px;
    font-weight: 400;
    line-height: 33.6px;
}

@media (max-width: 992px) {
    .text_medium {
        font-size: 20px;
        line-height: 30px;
    }
}

.text_big {
    font-size: 32px;
    font-weight: 400;
    line-height: 39.73px;
}

.overlay {
    width: 100%;
    height: 10000vh;
    background-color: #00000050;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: none;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
}

@media (max-width: 1570px) {
    .container {
        padding: 0 40px;
    }
}
@media (max-width: 992px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.header {
}

.header__content {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-logo-link,
.header__logo {
    max-width: 238px;
}

@media (max-width: 992px) {
    .custom-logo-link,
    .header__logo {
        max-width: 175px;
    }
}

.header__menu .menu {
    display: flex;
    gap: 32px;
}

@media (max-width: 992px) {
    .header__menu .menu {
        flex-direction: column;
    }
    .header__menu {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        max-width: 50%;
        background-color: #fff;
        padding: 100px 50px;
        z-index: 10;
        transform: translateX(200%);
        transition: 0.5s;
    }

    .header__menu.open {
        transform: translateX(0);
        transition: 0.5s;
    }
}

@media (max-width: 768px) {
    .header__menu {
        padding: 100px 30px;
        max-width: 70%;
    }
    .header__menu .menu {
    }
}
.popup__close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    display: none;
}
.burger__close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    display: none;
}

@media (max-width: 992px) {
    .popup__close,
    .burger__close {
        display: block;
    }
}

.header__menu {
}

.menu-item.current-menu-item a {
    color: #68c945;
    border-bottom: 1px solid #68c945;
}
.menu-item:hover a {
    color: #68c945;
}
.burger {
    display: none;
}

@media (max-width: 992px) {
    .burger {
        display: block;
        max-width: 40px;
        width: 100%;
        cursor: pointer;
    }
}

.menu-item a {
    color: #767676;
    font-size: 24px;
    font-weight: 400;
    line-height: 29.05px;
}

.footer {
    background-color: #68c945;
    padding: 43px 0;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 20px;
}

@media (max-width: 1300px) {
    .footer__content {
        grid-template-columns: 1.5fr 2.5fr 1fr;
    }
}

@media (max-width: 1200px) {
    .footer__content {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .footer__content {
        flex-direction: column;
        gap: 40px;
        justify-items: center;
    }
}

.footer__column {
    width: max-content;
}

@media (max-width: 1200px) {
    .footer__column:nth-child(2) {
        padding-left: 5%;
    }
}

@media (max-width: 992px) {
    .footer__column {
        width: 100%;
    }

    .footer__column:nth-child(2) {
        padding-left: 0;
    }
}

.footer__logo {
    max-width: 396px;
    display: block;
}

@media (max-width: 1300px) {
    .footer__logo {
        max-width: 250px;
    }
}

@media (max-width: 992px) {
    .footer__logo {
        max-width: 250px;
    }
}

.social {
    margin-top: 16px;
}

@media (max-width: 992px) {
    .social {
        margin-top: 40px;
    }
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 992px) {
    .footer__social {
        justify-content: flex-start;
    }
}

.social__item {
}

.social__link {
    width: 100%;
    max-width: 30px;
    min-width: 30px;
    display: block;
    /* background-color: #fff; */
}

.social__link img {
    object-fit: cover;
}
.social__link img:hover {
    filter: brightness(.5);
}
.footer__column-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.footer__column-title::after {
    content: "";
    width: 80px;
    height: 1px;
    background-color: #fff;
    margin-bottom: 16px;
}

.footer__column-contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 1100px) {
    .footer__column-contacts {
        width: 80%;
    }
}

.footer__column-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__column-contact img {
    width: 18px;
}

.footer__column .text {
    color: #fff;
    line-height: 22px;
}

.footer__column-contact a {
    color: #fff;
}
.footer__column-contact a:hover {
    color: #7b7b7b;
}

.footer__column-explorar {
    list-style-type: disc;
    margin-left: 10px;
}

.footer__column-explorar .menu-item {
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer__column-explorar .menu-item::before {
    content: "";
    background-color: #fff;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.footer__column-explorar a {
    font-weight: 300;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
}
.footer__column-explorar a:hover {
    color: #7b7b7b !important;
}
.button {
    font-size: 24px;
    font-weight: 400;
    line-height: 29.05px;
    border-radius: 16px;
    padding: 16px 24px;
    text-transform: uppercase;
    border-radius: 160px;
    color: #fff;
    transition: .5s;
    font-family: "Inter", serif;
}

@media (max-width: 992px) {
    .button {
        font-size: 16px;
        line-height: 26px;
        padding: 12px 20px;
    }
}
.button_white:hover {
    background: linear-gradient(87.82deg, #68c945 -28.65%, #a7fc88 187.68%);
    transition: .5s;
    color: #fff;
}
.button_white:hover svg path{
    fill: #fff;
    transition: .5s;
}
.button_colored {
    background: linear-gradient(87.82deg, #68c945 -28.65%, #a7fc88 187.68%);
    transition: .5s;
}
.button_colored:hover {
    transition: .5s;
    background: #fff;
    color: #68c945;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
}
.button_colored:hover svg path {
    transition: .5s;
    fill: #68c945;
}
.button_white {
    background-color: #fff;
    color: #68c945;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
}

h1 {
    font-family: "Righteous", serif;
    font-size: 116px;
    font-weight: 400;
    line-height: 127.6px;
    color: #3c3c3c;
}

@media (max-width: 1300px) {
    h1 {
        font-size: 90px;
        line-height: 100px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 70px;
        line-height: 80px;
    }
}

h2 {
    font-family: "Righteous", serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 79.47px;
    color: #464646;
    text-align: center;
}

@media (max-width: 1300px) {
    h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 992px) {
    h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

h3 {
    font-family: "Righteous", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 34.77px;
}

main,
section {
    padding: 60px 0;
}

@media (max-width: 992px) {
    main,
    section {
        padding: 30px 0;
    }
}

.hero {
}

.hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10%;
}

@media (max-width: 1300px) {
    .hero__content {
        gap: 5%;
    }
}

.hero__info {
    width: 50%;
}

@media (max-width: 1300px) {
    .hero__info {
        width: 60%;
    }
}

@media (max-width: 992px) {
    .hero__info {
        width: 100%;
    }
}

.hero__info h3 {
    margin-top: 8px;
    color: #ffc225;
}

.hero__desc {
    margin-top: 24px;
    color: #606060;
}

.hero .button {
    margin-top: 48px;
    box-shadow: 0px 9px 8.9px 0px #68c94566;
}

@media (max-width: 992px) {
    .hero .button {
        margin: 30px auto 0;
        display: block;
    }
}

.hero__img {
    width: 50%;
    box-shadow: 0px 0px 31.6px 4px #00000026;
}

@media (max-width: 1300px) {
    .hero__img {
        width: 40%;
    }
}

@media (max-width: 992px) {
    .hero__img {
        display: none;
    }
}

.hero__img_mobile {
    display: none;
}

@media (max-width: 992px) {
    .hero__img_mobile {
        display: block;
        margin: 20px 0;
        box-shadow: 0px 0px 31.6px 4px #00000026;
    }
}

.slider__main .owl-stage {
    display: flex;
    overflow: hidden;
}

.sectionTitle {
}

.benefits * {
    color: #fff;
}

.benefits h2 {
    text-align: left;
}

.benefits__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: linear-gradient(252.49deg, #767676 -118.97%, #292929 48.21%);
    border-radius: 24px;
    padding: 32px;
}

@media (max-width: 1300px) {
    .benefits__content {
        grid-template-columns: 1fr 1.5fr;
    }
}

@media (max-width: 992px) {
    .benefits__content {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

.benefits__img {
}

@media (max-width: 992px) {
    .benefits__img {
        display: none;
    }
}

.benefits__img_mobile {
    display: none;
}

@media (max-width: 992px) {
    .benefits__img_mobile {
        display: block;
        margin: 30px 0;
    }
}

.benefits__info {
}

.sectionTitle {
}

.benefits__title {
    margin-top: 24px;
}

.benefits__desc {
    color: #c6c6c6;
    margin-top: 16px;
}

.benefits__list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style-type: disc;
    margin-left: 25px;
}

.benefits__item {
    color: #c6c6c6;
}

.benefits__item span {
    color: #fff;
    font-weight: 500;
}

.sliderScroll .button {
    text-transform: initial;
    box-shadow: 0px 9px 8.9px 0px #68C94566;

}

.sliderScroll__content {
    position: relative;
}

.sliderScroll__content h2 {
    position: relative;
    z-index: 5;
}

.slider__main {
    display: grid;
    place-items: center;
}

.track-wrapper {
    width: 100%;
    max-inline-size: 100%;
    overflow: hidden;
}

.track {
    --size: calc(26vw);
    height: var(--size);
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    display: flex;
    overflow-x: auto;
    gap: var(--size-4);
    list-style-type: none;
    margin: 0;
    padding: 3% 0;
    scroll-snap-type: x mandatory;
    -webkit-mask:
        radial-gradient(#0000 0 30%, #000 30.5%) 50% calc(var(--size) * 0.5) / 300% 100%,
        linear-gradient(0deg, black, black) 50% 0 / 100% var(--size-4) no-repeat,
        linear-gradient(0deg, black, black) 50% 100% / 100% var(--size-4) no-repeat;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.track .owl-stage-outer {
    overflow: hidden;
}
.track .owl-dots,
.track .owl-nav  {
    display: none;
}
.track::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1920px) {
    .track {
        --size: calc(30vw);
    }
}

@media (max-width: 1650px) {
    .track {
        --size: calc(35vw); 
    }
}

@media (max-width: 1100px) {
    .track {
        --size: 32vw;
    }
}

@media (max-width: 992px) {
    .track {
        --size: 30vw;
    }
}

@media (max-width: 768px) {
    .track {
        --size: 100%;
        padding: 30px 0;
        -webkit-mask: none;
    }
}

.track img {
    touch-action: none;
    border-radius: 16px;
}

.track__item {
    height: 100%;
    aspect-ratio: 1;
    background: #fff;
    scroll-snap-align: center;
    flex-shrink: 0;
    /* Запрещаем уменьшение изображений */
    border-radius: 16px;
}

.sliderScroll a.button {
    padding: 16px 60px;
    display: flex;
    gap: 10px;
    width: max-content;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 768px) {
    .sliderScroll a.button {
        padding: 16px;
    }
}

.ventajas {
}

.ventajas__content {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 992px) {
    .ventajas__content {
        flex-direction: column;
    }
}

.ventajas__item {
    position: relative;
}
.ventajas__item:nth-child(1) {
    border-radius: 16px;
    overflow: hidden;
}
.ventajas__info {
    position: absolute;
}

.ventajas .text_big {
    top: 7%;
    left: 7%;
    color: #464646;
    font-weight: 400;
    font-size: calc(24px + 12 * (100vw / 1920));
    font-family: "Righteous", serif; 
}

@media (max-width: 1440px) {
    .ventajas .text_big {
        top: 5%;
        font-size: calc(14px + 12 * (100vw / 1440));
    }
}

@media (max-width: 1200px) {
    .ventajas .text_big {
        top: 2%;
        left: 3%;
        font-size: calc(14px + 12 * (100vw / 1440));
    }
}

@media (max-width: 992px) {
    .ventajas .text_big {
        top: 5%;
        left: 5%;
        font-size: calc(30px + 12 * (100vw / 1440));
    }
}
.ventajas__info svg {
    width: 30px;
    height: 30px;
}
.ventajas .ventajas__info_left {
    top: 0;
    left: 0;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    width: 42%;
    height: 48%;
    border-radius: 16px;
    padding: 16px;
    font-size: calc(14px + 12 * (100vw / 1920));
}

@media (max-width: 450px) {
    .ventajas .ventajas__info_left {
        width: 38%;
    }
}

.ventajas .ventajas__info_right {
    bottom: 0;
    right: 0;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    width: 48%;
    height: 39%;
    border-radius: 16px;
    padding: 16px;
    font-size: calc(14px + 12 * (100vw / 1920));
}

@media (max-width: 1430px) {
    .ventajas .ventajas__info_left,
    .ventajas .ventajas__info_right {
        padding: 8px;
    }
}

.ventajas .text_medium {
    color: #585858;
    line-height: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Righteous", serif; 
}

.ventajas .text {
    color: #676767;
    line-height: 22px;
    margin-top: 14px;
}

.ventajas__info_icon {
    right: 3%;
    bottom: 1%;
    width: 15%;
    height: 15%;
}

@media (max-width: 1438px) {
    .ventajas .text_medium {
        font-size: 16px;
        line-height: 20px;
    }

    .ventajas .text {
        font-size: 14px;
        line-height: 18px;
        margin-top: 6px;
    }
}

@media (max-width: 1200px) {
    .ventajas .text_medium {
        font-size: 14px;
        line-height: 14px;
    }

    .ventajas .text {
        font-size: 14px;
        line-height: 14px;
        margin-top: 10px;
    }
}

@media (max-width: 992px) {
    .ventajas .text_medium {
        font-size: 20px;
        line-height: 24px;
    }

    .ventajas .text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .ventajas .text_medium {
        font-size: 14px;
        line-height: 14px;
    }

    .ventajas .text {
        font-size: 14px;
        line-height: 14px;
        margin-top: 10px;
    }
}

@media (max-width: 450px) {
    .middle-house {
        height: 70vw;
        object-fit: cover;
    }
}

@media (max-width: 375px) {
    .middle-house {
        height: 90vw;
    }

    .ventajas .ventajas__info_left {
        width: 35%;
    }
}

.trabajamos {
}

.trabajamos__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 992px) {
    .trabajamos__content {
        display: flex;
        flex-direction: column;
    }
}

.trabajamos__item {
    display: grid;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.trabajamos__item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 1;
}

.trabajamos__item:nth-child(1) .text_medium {
    left: 5%;
    top: 3%;
}

@media (max-width: 992px) {
    .trabajamos__item:nth-child(1) .text_medium {
        left: 8%;
        top: 5%;
    }
}

@media (max-width: 576px) {
    .trabajamos__item:nth-child(1) .text_medium {
        font-size: 20px;
        line-height: 24px;
        left: 5%;
        top: 3%;
    }
}

.trabajamos__item:nth-child(2) {
    grid-column-start: 3;
    grid-column-end: 3;
}

.trabajamos__item:nth-child(2) .text_medium {
    right: 2%;
    bottom: 28%;
    width: 40%;
}

@media (max-width: 1770px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 25%;
    }
}

@media (max-width: 1570px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 30%;
    }
}

@media (max-width: 1430px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 35%;
    }
}

@media (max-width: 1250px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 40%;
    }
}

@media (max-width: 1100px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 50%;
    }
}

@media (max-width: 992px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 20%;
    }
}

@media (max-width: 768px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 20%;
    }
}

@media (max-width: 576px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 25%;
    }
}

@media (max-width: 500px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 30%;
    }
}

@media (max-width: 450px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 35%;
    }
}

@media (max-width: 400px) {
    .trabajamos__item:nth-child(2) .text_medium {
        bottom: 40%;
    }
}

.trabajamos__item:nth-child(3) {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    display: flex;
    flex-direction: column;
    height: 20.5vw;
}

.trabajamos__item:nth-child(3) img {
    /* height: 70%;
    object-fit: cover; */
}

@media (max-width: 1875px) {
    .trabajamos__item:nth-child(3) {
        height: 22vw;
    }
}

@media (max-width: 1650px) {
    .trabajamos__item:nth-child(3) {
        height: 23vw;
    }
}

@media (max-width: 1565px) {
    .trabajamos__item:nth-child(3) {
        height: 25vw;
        height: 360px;
    }
}

@media (max-width: 992px) {
    .trabajamos__item:nth-child(3) {
        height: auto;
    }
}

.trabajamos__item:nth-child(3) .text_medium {
    right: 0;
    top: 7%;
    width: 50%;
}

@media (max-width: 1570px) {
    .trabajamos__item:nth-child(3) .text_medium {
        right: 0;
        top: 3%;
        width: 50%;
    }
}

@media (max-width: 992px) {
    .trabajamos__item:nth-child(3) .text_medium {
        top: 10%;
    }
}

@media (max-width: 768px) {
    .trabajamos__item:nth-child(3) .text_medium {
        top: 8%;
    }
}

@media (max-width: 450px) {
    .trabajamos__item:nth-child(3) .text_medium {
        top: 5%;
    }
}

.trabajamos__item:nth-child(4) {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    position: relative;
    top: 50%;
    margin: auto;
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .trabajamos__item:nth-child(4) {
        top: auto;
        transform: translateY(0);
    }
}

.trabajamos__item-lower {
    display: flex;
    grid-column: span 3;
    gap: 20px;
}

@media (max-width: 992px) {
    .trabajamos__item-lower {
        display: flex;
        flex-direction: column;
    }
}

.trabajamos__item-lower > div {
    display: flex;
    align-items: center;
    flex: 1;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    border-radius: 16px;
}

.trabajamos__item-lower .trabajamos__info {
    padding: 24px;
}

.trabajamos__item-lower img {
    width: 50%;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
}

@media (max-width: 1440px) {
    .trabajamos__item-lower img {
        width: 100%;
        border-radius: 16px;
    }
}

.trabajamos__item:nth-child(5) {
    /* display: flex;
    align-items: center;
    /* grid-column: 1 / 2;
    height: max-content;
    grid-column: span 3; */
}

.trabajamos__item:nth-child(6) {
    /* display: flex;
    align-items: center;
    grid-column: 2 / 3;
    height: max-content;
    grid-column: span 3; */
}

.trabajamos .text {
    padding: 24px;
}

.trabajamos .text_medium {
    position: absolute;
    font-weight: 400;
    font-family: "Righteous", serif; 
    color: #585858;
}

@media (max-width: 1430px) {
    .trabajamos .text_medium {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width: 1250px) {
    .trabajamos .text_medium {
        font-size: 18px;
        line-height: 20px;
    }
}

@media (max-width: 992px) {
    .trabajamos .text_medium {
        font-size: 28px;
        line-height: 32px;
    }
}

@media (max-width: 576px) {
    .trabajamos .text_medium {
        font-size: 20px;
        line-height: 24px;
    }
}

.trabajamos__item-lower__item .text_medium {
    position: relative;
}

.trabajamos__item-lower__item .text {
    padding-left: 0;
}

@media (max-width: 992px) {
    .trabajamos__item-lower__item .text {
        padding: 12px;
        padding-left: 0;
    }
}

@media (max-width: 1440px) {
    .trabajamos__item-lower__item {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .trabajamos__item:nth-child(1),
    .trabajamos__item:nth-child(2),
    .trabajamos__item:nth-child(3),
    .trabajamos__item:nth-child(4) {
        grid-column-start: 1;
        grid-column-end: 1;
    }
}

.passivhaus {
}

section > .container > .text_medium {
    color: #7b7b7b;
    margin-top: 24px;
    text-align: center;
}

.passivhaus__content {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .passivhaus__content {
        margin-top: 16px;
    }
}

.passivhaus__content-title {
    font-weight: 400;
    color: #7b7b7b;
    font-family: "Righteous", serif; 
}

.passivhaus__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 992px) {
    .passivhaus__items {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 16px;
    }
}

.passivhaus__item {
    border-radius: 16px;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    padding-bottom: 20px;
    min-height: 415px;
}

@media (max-width: 1570px) {
    .passivhaus__item {
        min-height: 410px;
    }
}
@media (max-width: 1400px) {
    .passivhaus__item {
        min-height: 27vw;
    }
}

@media (max-width: 992px) {
    .passivhaus__item {
        min-height: auto;
    }
}

.passivhaus__img {
    border-radius: 16px;
    overflow: hidden;
}

.passivhaus__item-title {
    padding: 0 16px;
    margin-top: 24px;
    color: #464646;
    font-weight: 400;
    font-family: "Righteous", serif; 
}

.passivhaus__item-desc {
    padding: 0 16px;
    margin-top: 14px;
    color: #676767;
}

@media (max-width: 992px) {
    .passivhaus__item-desc {
        padding: 0 16px 20px;
    }
}

.passivhaus .button_white {
    display: block;
    margin: 48px auto 0;
    padding: 16px 87px;
    width: max-content;
    text-transform: initial;
}

.mismo {
}

.mismo__content {
}

.mismo .text_big {
    color: #7b7b7b;
    margin-top: 32px;
    font-weight: 400;
    font-family: "Righteous", serif; 
}

.mismo__row {
    margin-top: 32px;
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 32px;
}

@media (max-width: 992px) {
    .mismo__row {
        flex-direction: column;
    }
}

.mismo__row > .mismo__row-item img {
    max-width: 153px;
    min-width: 100px;
}
.mismo__row > .mismo__row-item {
    max-width: 450px;
}

.mismo__row-item {
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    border-radius: 16px;
    padding: 0 16px;
}

@media (max-width: 992px) {
    .mismo__row > .mismo__row-item {
        max-width: 100%;
    }
    .mismo__row-item {
        flex-direction: column;
        padding: 24px;
    }
}

.mismo__row-item__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 992px) {
    .mismo__row-item__info {
        align-items: center;
        text-align: center;
    }
}

.mismo__row-item__img {
    max-width: 125px;
}

.mismo__row-item__title {
    font-family: "Righteous", serif; 
    color: #464646;
}

.mismo__row-item__desc {
}

.mismo__row-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mismo__row-group .mismo__row-item {
    padding: 13px 24px;
}

@media (max-width: 992px) {
    .mismo__row-group .mismo__row-item {
        padding: 24px;
    }
}

.mismo__row button {
    height: auto;
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.mismo__row button span {
    transform: rotate(90deg);
    margin-bottom: 50px;
}

.mismo__row button svg {
    transform: rotate(0deg);
    margin-bottom: -50px;
}

@media (max-width: 992px) {
    .mismo__row button {
        height: auto;
        width: max-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: auto;
        gap: 32px;
        padding: 8px 32px;
        margin-top: 16px;
    }

    .mismo__row button span {
        transform: rotate(0deg);
        margin-bottom: 0;
    }

    .mismo__row button svg {
        transform: rotate(-90deg);
        margin-bottom: 0;
    }
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
        overflow: hidden;
    }
}
.ejemplos__content .cards {
    display: flex;
}
.card {
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: .5s;
}
.card:hover {
    transition: .5s;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.ejemplos__content .card:hover {
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
}
.card__inner {
    flex-shrink: 0;
}

.card__img img {
    /* height: 100%; */
    object-fit: contain;
    max-height: 18vw;
    /* height: 100%; */
    height: auto;
    max-height: 293px;
}
@media(max-width: 992px) {
    .card__img img {
        max-height: 30vw;
    }
}
@media(max-width: 1400px) {
    .card__img img {
        max-height: 20vw;
    }
}
@media(max-width: 768px) {
    .card__img img {
        max-height: 60vw;
    }
}

.card__img {
    flex: 1 0 auto;
}

.card__title {
    margin-top: 24px;
    font-weight: 400;
    font-family: "Righteous", serif; 
    color: #464646;
}

.card__desc {
    margin-top: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 50px;
}

.card__params {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 18px;
}

.card__param {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card__param img {
    max-width: 18px;
}

.card__param span {
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    color: #a3a3a3;
}

.card__param:first-child span {
    white-space: nowrap;
}

.card__link {
    margin-top: 18px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #68c945;
    transition: .5s;
}
.card__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cards__button {
    margin: 42px auto 0;
    display: block;
    width: max-content;
    text-transform: initial;
    box-shadow: 0px 9px 8.9px 0px #68C94566;

}

.proximo {
}

.proximo__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 992px) {
    .proximo__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .proximo__content {
        grid-template-columns: 1fr;
    }
}

.section-form {
}

.section-form__desc {
    max-width: 846px;
    margin: 24px auto 0;
}

.section-form__desc span {
    color: #68c945;
}

.form {
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
    margin: 32px auto 0;
    max-width: 628px;
}

@media (max-width: 992px) {
    .form {
        padding: 24px 16px;
        gap: 16px;
    }
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media(max-width: 768px) {
    .input-group {
        gap: 8px;
    }
}

.form__label {
}

.form__input {
    border: 1px solid #cecece;
    border-radius: 16px;
    padding: 16px;
    width: 100%;
}
@media(max-width: 768px) {
    .form__input {
        padding: 12px;
    }
}

.form__input::placeholder {
    color: #d4d4d4;
}

.form textarea {
    height: 270px;
    width: 100%;
}
@media(max-width: 992px) {
    .form textarea {
        height: 150px;
    }
}

.form .button {
    width: max-content;
    margin: 24px auto 0;
    display: block;
    
}
@media(max-width: 768px) {
    .form .button {
        margin: 0 auto;
    }
}


.section-form__contacts {
    margin: 48px auto 0;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (max-width: 576px) {
    .section-form__contacts {
        width: auto;
    }
}

.section-form__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.section-form__contact a:hover {
    color: #68c945;
}
.comprar {
}

.comprar__top {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .comprar__top {
        flex-direction: column;
        gap: 24px;
    }
}

.comprar__left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.comprar__left .text_medium {
    color: #8f8f8f;
}

.comprar__img-top {
    max-width: 82px;
}

.comprar__bottom {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
}

.comprar__desc {
    color: #606060;
}

.comprar__button {
    width: 60px;
    min-width: 60px;
    height: max-content;
}
.comprar__button img {
    transition: .1s;
}
.comprar__button img:hover {
    transform: scale(1.1);
    transition: .1s;
}
.listas {
    background-color: #f3f3f3;
    border-radius: 32px;
}

.listas__content {
}

.listas__content > .text_big {
    color: #464646;
    font-weight: 400;
    font-family: "Righteous", serif; 
}

.listas .card {
    background-color: #fff;
}

.pagination {
    margin-top: 35px;
}
.pagination ul,
.pagination__list {
    width: max-content;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.pagination li a,
.pagination li span,
.pagination__item {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .next,
.pagination .prev {
    display: none;
}
.pagination li a.current,
.pagination li span,
.pagination__item.active {
    background-color: #68c945;
    border-radius: 8px;
    color: #fff;
}
.cards.loading {
    opacity: 0.5;
    pointer-events: none;
}
.nosotros {
}

.nosotros__row-top {
    display: flex;
    justify-content: space-evenly;
}

@media (max-width: 768px) {
    .nosotros__row-top {
        justify-content: space-between;
        gap: 16px;
    }
}

.nosotros__item {
    max-width: 260px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px;
}

@media (max-width: 768px) {
    .nosotros__item {
        max-width: 100%;
        gap: 16px;
        padding: 16px;
    }
}

.nosotros__row-top .nosotros__item:first-child {
    background-color: #f3f3f3;
}

.nosotros__row-top .nosotros__item:nth-child(2) {
    border: 1px solid #c3c3c3;
    bottom: -50px;
    position: relative;
}

@media (max-width: 768px) {
    .nosotros__row-top .nosotros__item:nth-child(2) {
        bottom: 0;
    }
}

.nosotros__row-bottom {
    display: flex;
    justify-content: space-between;
    top: -40px;
    position: relative;
}

@media (max-width: 768px) {
    .nosotros__row-bottom {
        top: 0;
        gap: 16px;
    }
}

.nosotros__row-bottom .nosotros__item:first-child {
    border: 1px solid #c3c3c3;
}

.nosotros__row-bottom .nosotros__item:nth-child(2) {
    background-color: #f3f3f3;
    bottom: -50px;
    position: relative;
}

@media (max-width: 768px) {
    .nosotros__row-bottom .nosotros__item:nth-child(2) {
        bottom: 0;
    }
}

.nosotros__item-img {
    max-width: 52px;
}

.nosotros__item-title {
    text-align: center;
    color: #464646;
    font-weight: 600;
}

.nosotros__item-desc {
    text-align: center;
    color: #676767;
}

.nosotros__center-text {
    position: relative;
    bottom: -50px;
    width: 75%;
    margin: auto;
    z-index: 5;
}

@media (max-width: 1570px) {
    .nosotros__center-text {
        width: 65%;
    }
}

@media (max-width: 1200px) {
    .nosotros__center-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nosotros__center-text {
        bottom: 0;
        margin: 30px 0;
    }
}

.nosotros__center-text .text_big {
    text-align: right;
}

@media (max-width: 1200px) {
    .nosotros__center-text .text_big {
        text-align: center;
    }
}

.servicios {
}

.servicios__content {
    display: flex;
    gap: 24px;
    margin-top: 120px;
}

@media (max-width: 992px) {
    .servicios__content {
        flex-direction: column;
    }
}

.servicios__item {
    position: relative;
    border-radius: 16px;
}

.servicios__item-info {
    position: absolute;
    bottom: 5%;
    left: 5%;
    padding-right: 15px;
}

.servicios__img {
    border-radius: 16px;
}

.servicios__item-title {
    color: #fff;
    font-family: "Righteous", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 59.6px;
}

@media (max-width: 1300px) {
    .servicios__item-title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 576px) {
    .servicios__item-title {
        font-size: 24px;
        line-height: 30px;
    }
}

.servicios__item-desc {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 23.4px;
    margin-top: 8px;
}

@media (max-width: 576px) {
    .servicios__item-desc {
        font-size: 14px;
        line-height: 18px;
        margin-top: 6px;
    }
}

.servicios__item-btn {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    color: #454545;
    background-color: #fff;
    border-radius: 160px;
    padding: 16px 48px;
    margin-top: 24px;
}

@media (max-width: 576px) {
    .servicios__item-btn {
        font-size: 16px;
        padding: 12px 32px;
        margin-top: 16px;
    }
}

.servicios__logo {
    position: absolute;
    width: 67%;
    height: 48%;
    border-radius: 16px;
    background-color: #68c945;
    object-fit: contain;
}

.también {
}

.también__content {
}

.también__content > .text_medium {
    color: #464646;
    font-weight: 700;
}

.descripción {
}

.descripción__content {
}

.descripción__content .text_medium {
    color: #464646;
    font-weight: 700;
}

.descripción__content .text {
    color: #676767;
    margin-top: 24px;
}

.información {
}

.información > .container > .text_medium {
    color: #464646;
    font-weight: 700;
    text-align: left;
}

.información__content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 48px;
}

.información__item {
    max-width: 193px;
}

@media (max-width: 576px) {
    .información__item {
        max-width: 100%;
    }
}

.información__img {
    max-width: 193px;
}

@media (max-width: 576px) {
    .información__img {
        max-width: 100%;
    }
}

.información__img img {
    border-radius: 16px;
}

.información__item .text_medium {
    color: #464646;
    font-weight: 700;
    margin-top: 16px;
    text-align: center;
}

.información__item .text {
    margin-top: 8px;
    color: #8a8a8a;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detalles {
    padding-bottom: 0;
}

.detalles > .container > .text_medium {
    color: #464646;
    font-weight: 700;
    text-align: left;
}

.detalles__content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .detalles__content {
        gap: 16px;
    }
}

.detalles__item {
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    border-radius: 160px;
    border: 1px solid #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 193px;
    padding: 16px 0;
}

@media (max-width: 576px) {
    .detalles__item {
        max-width: 100%;
    }
}

.detalles__item img {
    max-width: 24px;
}

.detalles__item .text {
    color: #a3a3a3;
}

.breadcrumbs {
    margin-top: 44px;
}

@media (max-width: 768px) {
    .breadcrumbs {
        margin-top: 10px;
    }
}
.breadcrumbs__back svg path {
    transition: .5s;
}
.breadcrumbs__back:hover svg path {
    transition: .5s;
    fill: #68c945;
}
.product {
}

.product__content {
}

.product > .container > h2 {
    text-align: left;
}

.product__main-slider {
    margin-top: 24px;
    border-radius: 16px;
}

.product__main-slider img {
    border-radius: 16px;
    max-height: 542px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .product__main-slider img {
        border-radius: 8px;
    }
}

.product__nav-slider {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .product__nav-slider {
        margin-top: 16px;
    }
}

.product__nav-slider .slick-list {
    margin-left: -12px;
    margin-right: -12px;
}

@media (max-width: 768px) {
    .product__nav-slider .slick-list {
        margin-left: -6px;
        margin-right: -6px;
    }
}

.product__nav-slider img {
    border-radius: 16px;
    margin: 0 12px;
    max-height: 209px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .product__nav-slider img {
        margin: 0 6px;
        border-radius: 8px;
    }
}

.product__info {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .product__info {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

.product__info-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product__price {
    font-family: "Righteous", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 59.6px;
    color: #68c945;
}

@media (max-width: 768px) {
    .product__price {
        font-size: 32px;
        line-height: 40px;
    }
}

.product__location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product__location img {
    max-width: 32px;
}

.product__info button {
    box-shadow: 0px 9px 8.9px 0px #68c94566;
}

@media (max-width: 768px) {
    .product__info button {
        margin: 20px auto 0;
        padding: 16px 48px;
    }
}

.passivhausBanner {
    padding-left: calc(50% - 715px);
}

@media (max-width: 1570px) {
    .passivhausBanner {
        padding-left: calc(50% - 680px);
    }
}
@media (max-width: 1440px) {
    .passivhausBanner {
        padding-left: 40px
    }
}
@media (max-width: 768px) {
    .passivhausBanner {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .passivhausBanner {
        padding-left: 0;
    }
}

.passivhausBanner__content > img {
    max-height: 417px;
    object-fit: contain;
    object-position: right;
}

@media (max-width: 992px) {
    .passivhausBanner__content > img {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .passivhausBanner__content > img {
        max-height: 300px;
        min-height: 300px;
        object-fit: cover;
    }
}

.passivhausBanner__content {
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .passivhausBanner__content {
        border-radius: 0;
    }
}

.passivhausBanner__info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    margin: auto;
    height: max-content;
}

@media (max-width: 992px) {
    .passivhausBanner__info {
        left: 20px;
    }
}

.passivhausBanner__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #68c945 70.6%, rgba(255, 255, 255, 0.01) 100%);
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px 0 0 16px;
}

@media (max-width: 1570px) {
    .passivhausBanner__content::before {
        background: linear-gradient(90deg, #68c945 65.6%, rgba(255, 255, 255, 0.01) 100%);
    }
}
@media (max-width: 1280px) {
    .passivhausBanner__content::before {
        background: linear-gradient(90deg, #68c945 55.6%, rgba(255, 255, 255, 0.01) 100%);
    }
}

@media (max-width: 768px) {
    .passivhausBanner__content::before {
        background: linear-gradient(90deg, #68c945 45.6%, rgba(255, 255, 255, 0.01) 100%);
    }
}

@media (max-width: 576px) {
    .passivhausBanner__content::before {
        border-radius: 0;
    }
}

.passivhausBanner__title {
    color: #fff;
    width: 60%;
    text-align: left;
}

@media (max-width: 992px) {
    .passivhausBanner__title {
        width: 70%;
    }
}

.passivhausBanner__desc {
    color: #fff;
    margin-top: 16px;
}

@media (max-width: 992px) {
    .passivhausBanner__desc {
        margin-top: 8px;
    }
}

.passivhausBanner a {
    background-color: #fff;
    border-radius: 160px;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
    color: #76d453;
    padding: 7px 24px;
    margin-top: 32px;
    max-width: 233px;
}

@media (max-width: 992px) {
    .passivhausBanner a {
        gap: 20px;
        margin-top: 16px;
    }

    .passivhausBanner a svg {
        width: 30px;
        height: 30px;
    }
}

.que {
}

.que__content {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 576px) {
    .que__content {
        justify-content: flex-start;
    }
}

.que__title {
    text-align: left;
}

.que__desc {
    text-align: left;
    width: 76%;
    margin-top: 32px;
}

@media (max-width: 576px) {
    .que__desc {
        width: 100%;
        margin-top: 20px;
    }
}

.principios {
}

.principios__content {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    max-width: 100%;
    width: 100%;
    margin-top: 32px;
}

@media (max-width: 1350px) {
    .principios__content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .principios__content {
        display: block;
        padding: 0;
    }
}

.principios__item.image {
    grid-column: span 1;
    grid-row: span 2;
}

@media (max-width: 1350px) {
    .principios__item.image {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.principios__item img {
    max-width: 290px;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .principios__item img {
        max-width: 167px;
    }
}

.principios__item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    padding: 16px;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .principios__item {
        margin-top: 16px;
    }
}

.principios__item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}

.principios__item:nth-child(2) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
}

.principios__item:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 2;
}

.principios__item:nth-child(4) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 2;
}

.principios__item:nth-child(5) {
}

@media (max-width: 1350px) {
    .principios__item:nth-child(5) {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

.principios__item:last-child {
    display: flex;
    align-items: center;
    gap: 24px;
    /* margin: 14px 0; */
}

@media (max-width: 1350px) {
    .principios__item:last-child {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .principios__item:last-child {
        margin-top: 16px;
    }
}

@media (max-width: 576px) {
    .principios__item:last-child {
        flex-direction: column;
    }
}

.principios__item svg {
    display: block;
    margin: auto;
}

@media (max-width: 768px) {
    .principios__item svg {
        margin: auto;
    }
}

.principios__item:last-child svg {
    margin: 0;
}

@media (max-width: 768px) {
    .principios__item:last-child svg {
        margin: auto;
    }
}

.principios__item-info {
}

.principios__item-title {
    color: #464646;
    font-weight: 400;
    margin-top: 24px;
    font-family: "Righteous", serif; 
}

@media (max-width: 768px) {
    .principios__item-title {
        text-align: center;
    }
}

.principios__item-desc {
    color: #676767;
    margin-top: 14px;
}

@media (max-width: 768px) {
    .principios__item-desc {
        text-align: center;
    }
}

.por {
}

.por__content {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 992px) {
    .por__content {
        flex-direction: column;
    }
}

.por__logo {
    max-width: 410px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #68c945;
    padding: 40px;
}

@media (max-width: 992px) {
    .por__logo {
        max-width: 100%;
    }

    .por__logo img {
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .por__logo img {
        max-width: 80%;
    }
}

.por__items {
    display: flex;
    gap: 24px;
}

@media (max-width: 768px) {
    .por__items {
        flex-direction: column;
        gap: 16px;
    }
}

.por__item-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 768px) {
    .por__item-group {
        gap: 16px;
    }
}

.por__item {
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 768px) {
    .por__item {
        padding: 16px;
    }
}

.por__item-title {
    font-weight: 400;
    font-family: "Righteous", serif;
    color: #464646;
}

.por__item-desc {
    margin-top: 14px;
}

.por__item img {
    margin-top: 24px;
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    border-radius: 16px;
}

.como {
}

.como__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 992px) {
    .como__content {
        display: block;
    }
}

.como__item:nth-child(1) {
    grid-column: span 2;
}

.como__item:nth-child(2) {
}

.como__item:nth-child(3) {
    grid-column: span 1;
}

.como__item:nth-child(4) {
    grid-column: span 2;
}

.como__item:nth-child(5) {
    grid-column: span 3;
}

.como__item:nth-child(5) .como__item-info {
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .como__item:nth-child(5) .como__item-info {
        justify-content: space-between;
    }
}

.como__item:nth-child(5) .como__item-count_desktop {
}

.como__item:nth-child(5) .como__item-count_mobile {
    display: none;
}

@media (max-width: 992px) {
    .como__item:nth-child(5) .como__item-count_mobile {
        display: block;
    }

    .como__item:nth-child(5) .como__item-count_desktop {
        display: none;
    }
}

.como__item {
    box-shadow: 0px 0px 12.6px 0px #0000001a;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
    padding: 24px;
}

@media (max-width: 992px) {
    .como__item {
        margin-top: 16px;
        position: relative;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .como__item {
        flex-direction: column;
    }
}

.como__item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.como__item-count {
    font-family: "Righteous", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 39.73px;
    color: #68c945;
}

.como__item-text {
}

.como__item-title {
    font-weight: 400;
    font-family: "Righteous", serif;
    color: #464646;
}

.como__item-desc {
    margin-top: 14px;
    color: #676767;
}

.como__item-img {
    max-width: 250px;
}
.ejemplos {
    padding: 60px 0 0;
}
@media(max-width: 768px) {
    .ejemplos {
        padding: 30px 0 0;
    }
}

.ejemplos .owl-stage-outer {
    overflow: hidden;
    border-radius: 16px;
}

.ejemplos .owl-stage {
    display: flex;
}

.ejemplos .card__title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ejemplos .card__img {
    max-width: 28vw;
    position: relative;
    border-radius: 16px;
    max-height: 20vw;
    /* max-height: 293px; */
}
@media (max-width: 992px) {
    .ejemplos .card__img {
        max-width: 40vw;
        max-height: 28vw;
    }
}
@media (max-width: 992px) {
    .ejemplos .card__img img {
        /* max-height: 20vw; */
    }
}
@media (max-width: 768px) {
    .ejemplos .card__img {
        max-width: 88vw;
        max-height: 63vw;
    }
}
@media (max-width: 576px) {
    .ejemplos .card__img {
        max-width: 80vw;
        max-height: 60vw;
    }
}

.ejemplos .owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
    height: max-content;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
}

.ejemplos .owl-nav button {
    pointer-events: all;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='48' height='48' rx='24' transform='matrix(-1 0 0 1 48 0)' fill='url(%23paint0_radial_0_1989)' fill-opacity='0.45'/%3E%3Cpath d='M29.414 36.728C29.7889 36.3529 29.9996 35.8443 29.9996 35.314C29.9996 34.7837 29.7889 34.2751 29.414 33.9L19.514 24L29.414 14.1C29.7783 13.7228 29.9799 13.2176 29.9754 12.6932C29.9708 12.1688 29.7605 11.6672 29.3896 11.2964C29.0188 10.9255 28.5172 10.7152 27.9928 10.7106C27.4684 10.7061 26.9632 10.9077 26.586 11.272L15.272 22.586C14.8971 22.9611 14.6864 23.4697 14.6864 24C14.6864 24.5303 14.8971 25.0389 15.272 25.414L26.586 36.728C26.9611 37.1029 27.4697 37.3136 28 37.3136C28.5303 37.3136 29.0389 37.1029 29.414 36.728Z' fill='white'/%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_0_1989' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(29.5 -59.5) rotate(92.9289) scale(107.641 92.5711)'%3E%3Cstop/%3E%3Cstop offset='1' stop-opacity='0.69'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    width: 48px;
    height: 48px;
}

.ejemplos .owl-nav button.owl-prev {
    margin-left: 8px;
}

.ejemplos .owl-nav button.owl-next {
    pointer-events: all;
    transform: rotate(180deg);
    margin-right: 8px;
}

.ejemplos .owl-nav button span {
    display: none;
}

.wpcf7-response-output {
    /* display: none; */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: none;
    text-align: center;
}

.wpcf7-spinner {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
.section-form_product {
    padding-bottom: 60px;
}
@media (max-width: 768px) {
    .section-form_product {
        padding-bottom: 30px;
    }
}
.form__title-product {
    font-family: "Righteous", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 29.8px;
    text-align: center;
    color: #464646;
}
.form__desc-product {
    color: #7b7b7b;
    text-align: center;
    max-width: 100%;
}
@media (max-width: 768px) {
    .form textarea,
    .form input {
        width: -webkit-fill-available;
    }
}
.popup {
    display: none;
}
@media(max-width: 576px) {
    .popup {
       max-width: 90%;
    }
}

.popup__form {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: max-content;
    width: max-content;
    margin: auto;
    background-color: #fff;
    border-radius: 16px;
    z-index: 7;
    overflow: auto;
}
.popup__form .form {
    margin-top: 0;
}
.page-all-houses {
    padding-bottom: 60px;
}
@media(max-width: 768px) {
    .page-all-houses {
        padding-bottom: 30px;
    }
}
.mfp-close {
    top: -35px;
}
img.mfp-img {
    padding: 0;
}
.mfp-bottom-bar {
    margin-top: 5px;
}
.mfp-bottom-bar .mfp-title {
    display: none;
}
.ejemplos__content .slick-slide {
    margin: 0 12px;
}
.ejemplos__content .slick-list {
    margin-left: -12px;
    margin-right: -12px;
    padding: 20px 0;
}
.ejemplos__content .slick-track {
    padding: 50px 0 90px;
}
.ejemplos__content .slick-arrow::before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='30px' height='30px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1795 3.26875C15.7889 2.87823 15.1558 2.87823 14.7652 3.26875L8.12078 9.91322C6.94952 11.0845 6.94916 12.9833 8.11996 14.155L14.6903 20.7304C15.0808 21.121 15.714 21.121 16.1045 20.7304C16.495 20.3399 16.495 19.7067 16.1045 19.3162L9.53246 12.7442C9.14194 12.3536 9.14194 11.7205 9.53246 11.33L16.1795 4.68297C16.57 4.29244 16.57 3.65928 16.1795 3.26875Z' fill='%230F0F0F'/%3E%3C/svg%3E");
    opacity: .5;
    transition: .5s;
}
.ejemplos__content .slick-arrow:hover::before {
    transition: .5s;
    opacity: 1;
}
.ejemplos__content .slick-prev::before {
    margin-left: -20px;
    
}
.ejemplos__content .slick-next::before {
    transform: rotate(180deg);
}
@media(max-width: 768px) {
    .ejemplos__content {
        padding: 0 30px;
    }
    .ejemplos__content .cards {
        overflow: visible;
    }
    .ejemplos__content .slick-prev {
        left: -40px;
    }
    .ejemplos__content .slick-prev::before {
        margin-left: 0;
    }
}
.card__param img {
    min-width: 25px;
    filter: grayscale(1);
}