Hide a menu (navigation bar) on all posts

if you want to hide the top bar menu then you can check it on wordpress.org they alreay provide the full solution.

you can put this in your custom css.
if you do not know where to add custom CSS then go to theme customization inside the appearance and you can easily access custom CSS.

@media (max-width: 768px) {
.top-bar-navigation {
display: none !important;
}
}