How can I remove the space under a gif in a section?

Hi, can you please help me delete the space under the gif (hoodies) can’t find how to do it. Thank you

URL: https://matibrnd.com/

Pass: biangu

page: hoodies collection

Hey @MT27 ,

Try this

@media only screen and (max-width: 749px) {
    #Banner-template--18448488071435__0b9f5f59-eb3b-4014-839c-dcff85f04ded .banner__media::before {
        padding-bottom: 8vh !important;
    }
}

@media only screen and (min-width: 750px) {
    div#Banner-template--18448488071435__0b9f5f59-eb3b-4014-839c-dcff85f04ded {
        max-height: 9vh !important;
    }    
}

didnt work..

Hmm, then see if this works

@media only screen and (max-width: 749px) {
    #Banner-template--18448488071435__0b9f5f59-eb3b-4014-839c-dcff85f04ded .banner__media::before {
        padding-bottom: 8vh !important;
    }
}
div#Banner-template--18448488071435__0b9f5f59-eb3b-4014-839c-dcff85f04ded {
    max-height: 10vh !important;
}

Can you show me along with the code I gave you?

it worked thank youu