While we don’t know how you’ve gone about customising those pages, the easiest way to hide that section would be to use the following custom CSS in your settings under Appearance > Customize > Additional CSS:
#page-site-header {
display: none;
}
Ideally one would narrow that CSS down to just specific pages but there’s no unique classnames in the body tag, which means the CSS above will be applied site-wide.
]]>