Hi,
There are a lot of options to do them. The quickest is simply hiding it using css but google can still see it as it is just hidden visually.
You can do this by doing this:
1) Go to Appearance > Customize > Additional CSS
2) Put this in there to hide the page masthead area on the home page…
body.home .page-masthead {
display: none;
}
let me know if this is what you needed.