#cifras {
    background: #F8F8F8;
    --font-bold: 'VolvoNovum-Bold';
    --font-regular: 'VolvoNovum-Regular';
    --font-medium:'VolvoNovum-Medium';
    --color1: #141414;
    --color2: #1B365D;
}
#cifras .cifras_container {
    display: flex;
    flex-direction: column;
    padding: 0px;
    gap: 64px;
    width: 85%;
    max-width: 1386px;
    margin: 0 auto;
    padding-block: 40px;
}
#cifras .container_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    justify-content: space-between;
}
#cifras .cont_cifras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 64px;
    max-width: 46.6%;
    min-width: 580px;
}
#cifras .titles {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
}
#cifras h3.little_title {
    font-family: var(--font-medium);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #53565A;
}
#cifras h1.title {
    font-family: var(--font-bold);
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    color: var(--color1);
}
#cifras .cifras {
    display: flex;
    align-items: flex-start;
    padding: 0px;
    justify-content: space-between;
    row-gap: 64px;
    flex-wrap: wrap;
}
#cifras .cifra {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 45%;
}
#cifras p.number {
    font-family: var(--font-bold);
    font-style: normal;
    font-weight: 500;
    font-size: 52px;
    line-height: 62px;
    color: var(--color2);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 0px;
    gap: 4px;
}
#cifras span.medida {
    font-family: var(--font-medium);
    font-size: 20px;
    line-height: 184%;
    text-transform: uppercase;
}
#cifras p.texto {
    font-family: var(--font-regular);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: var(--color1);
}
#cifras .parrafos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
    max-width: 40%;
}
#cifras .parrafo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
}
#cifras h2.title {
    font-family: var(--font-bold);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: var(--color2);
}
#cifras p.text {
    font-family: var(--font-regular);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--color1);
}
#cifras .letra_pequena {
    font-family: var(--font-regular);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #888B8D;
}
@media (max-width: 1100px) {
    #cifras .cont_cifras {
        min-width: 400px;
    }
    #cifras h1.title {
        font-size: 32px;
        line-height: 40px;
    }
    #cifras .cifra {
        gap: 16px;
    }
    
}
@media (max-width: 767px) {
    #cifras .cifras_container {
        padding-block: 32px;
        gap: 40px;
    }
    #cifras .container_content {
        flex-direction: column;
        gap: 48px;
    }
    #cifras .cont_cifras {
        min-width: auto;
        max-width: initial;
        gap: 32px;
    }
    #cifras h1.title {
        font-size: 24px;
        line-height: 29px;
    }
    #cifras .cifras {
        row-gap: 40px;
    }
    #cifras .cifra {
        width: 46.3%;
    }
    #cifras p.number {
        font-size: 40px;
        line-height: 48px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 0;
    }
    #cifras span.medida {
        font-size: 15px;
        line-height: 18px;
    }
    #cifras p.texto {
        font-size: 18px;
        line-height: 22px;
    }
    #cifras .parrafos {
        max-width: initial;
        gap: 32px;
    }
    #cifras h2.title {
        font-size: 20px;
        line-height: 24px;
    }
    #cifras p.text {
        font-size: 14px;
        line-height: 18px;
    }
    #cifras .letra_pequena {
        font-size: 12px;
        text-align: left;
    }
}