body {
    background-color: white !important;
}

.hero-section h1, p {
    margin-bottom: 0;
}

.hero-section {
    position: relative;
    margin-bottom: 60px;
}

.img-hero-desk {
    width: 100%;
}

.img-hero-mob {
    display: none;
}

.hero-text-container {
    position: absolute;
    margin-top: -19%;
    margin-left: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 480px;
}

.hero-text-container h1 p {
    color: var(--White--Background-White, #FFF);

    /* Titles/Title H3/Regular */
    font-family: "Encode Sans";
    font-size: clamp(32px, calc(6vw - 40px), 48px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.96px;
}

.container-labels-sostenibilidad {
    display: flex;
    align-items: center;
    gap: 8px;
}

.container-labels-sostenibilidad span {
    display: flex;
    height: 30px;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    gap: 8.333px;

    border-radius: 8px;
    background: rgba(255, 255, 255, 0.20);
}

.container-labels-sostenibilidad span {
    color: var(--White--Background-White, #FFF);
    font-family: "Encode Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.28px;
}

@media (max-width: 768px) {

    .hero-section {
        margin-bottom: 0;
    }

    .img-hero-desk {
        position: unset;
        display: none;
    }

    .img-hero-mob {
        display: block;
        position: relative;
        width: 100%;
    }

    .hero-text-container {
        margin-top: -25%;
        margin-left: 15%;
        gap: 7px;
        width: 290px;
    }

    .hero-text-container h1 p {
        text-align: center;
        font-size: 28px;
        line-height: 30px;
        letter-spacing: -0.56px;
    }

    .container-labels-sostenibilidad {
        gap: 4.8px;
    }

    .container-labels-sostenibilidad span {
        height: 18px;
        padding: 6px 7px;
        gap: 5px;
        border-radius: 4.8px;
    }

    .container-labels-sostenibilidad span {
        font-size: 8.5px;
        letter-spacing: -0.17px;
    }
}

