Hello I want to remove this space on this product page

Hello can you remove this space on this product page please on mobile and on computer

you can see the space I want to remove on the picture , it is the red line

here is the link of my page

https://www.five-pocket.com/products/pro-club-heavy-weight-t-shirt-white

Hi @imazele
Its SideNode! We will be happy to help you today.

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

@media screen and (max-width: 749px) {
section#shopify-section-template--19110162727261__9b603559-2bb9-44dc-b8d5-86006e5038f0 {
    margin-top: 0px;
}
.rich-text__blocks h1:first-child {
  margin-top:0px;
}
}

If I was able to assist you, please remember to give it a Like and Mark it as the Solution!
Let me know if need further assistance
Regards,
SideNode

Hello @imazele

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

@media only screen and (min-width: 750px){
.rich-text__blocks>* {
    margin-top: 0 !important;
}
}