Counter: Edit Text CSS for under numbers

Hello

I was wondering if you could help me with a CSS code to edit the text size and spacing of the text underneath the counter texts? (see image)

At the moment the spacing is the same height as the text but I’d like it to be less. Also is there a way to make the text normal case (not upper case)?

Thanks so much!
Hannah

Hello,

This is the CSS that handles that area:

#counter .counter-description {
    width: 100%;
    line-height: 2.25;
    display: block;
    font-size: 15px;
    color: #fff;
    text-transform: none;
    margin-top: -10px;
}

If you Right Click the element > Inspect the element you can get the CSS of it.

Regards