welcome to the wonderful world of css is awesome! see:
https://goo.gl/fASXdC
your #navMainWrapper height is not high enough. because your image is too big, it's taking up more of the div. all CSS changes have other effects, so be careful what you do.
if this was me, i would create a new file here:
includes/templates/responsive_classic/css/stylesheet_custom.css
in that file, i would add the following code:
Code:
#navMainWrapper {
height: 45px;
}
i would then look at the site on any number of devices to see what happened. alternatively look into using developer tools for chrome of firefox. very helpful with css issues (as well as most web issues).
good luck!