Hello Nadine,
Thank you for your post details. I have inspected your site and I found out the cause of your issue. It is because you added this custom css:
@media screen and (max-width:979px){
body.x-navbar-fixed-top-active .x-navbar-wrap{
padding-bottom:10px !important;
background:#000f68 !important;
}
}
Please have it updated and remove the background color like this code instead:
@media screen and (max-width:979px){
body.x-navbar-fixed-top-active .x-navbar-wrap{
padding-bottom:10px !important;
}
}
Hope this helps. Please let us know how it goes.