Soved with
/* Do not use sticky menu on small screen*/
@media screen and (max-width: 820px) {
#masthead {
background-color: rgb(0, 103, 172);
position: unset;
}
}
/* Remove top padding in case of non sticky menu - I am not toatlly sure about this*/
@media screen and (max-width: 1024px) {
body.header-bg {
padding-top: 0;
}
}