How can I reduce the 'collection list' space on my website?

Hi, for my website www.grabthebrand.co.uk how do I make the space where it says ‘collection list’ smaller please? I would like to decrease that white space so more of my collections can be viewed higher up on the page. So I would like the text ‘collection list’ to be higher under the slide show then my collections can be higher on the page too. Appreciate any help :slightly_smiling_face:

@media only screen and (max-width: 600px) {

h2.h1.section-header__title {
    font-size: 18px;
    padding: 0;
}
.section-header.text-center {
    margin: 0;
}div#shopify-section-16061639451a835324 {
    margin-top: 12px;
}

span.collection-grid__item-title {
    font-size: 20px;
}
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

@Grab_The_Brand