Reducing space between image and text in shopify refresh theme

Hi,

I need to reduce the space between text and image, in the picture shown below.

how do i go about doing this

theme: refresh

website: khadz.com

On your homepage, where it says Add Custom CSS, type this:

.multicolumn-list{
grid-gap: 0;
}

.multicolumn-list__item{
margin: 0px 20px;
}

and adjust the 20px as needed until you get the spacing you need.

Did this work?

Its fine I solved the situation, thank you tho!