/* put this in CSS */
/* fix disappearing menu on IE on desktop */
@media screen and (min-width: 64em){
.ie .aw-header--sticky .navbar-menu-hamburger {
display: none;
}
.ie .aw-header--sticky .navbar-menu-block {
display: block;
}
}
// put this in JS (might already be in there)
jQuery( document ).ready(function() {
if (/MSIE 9/i.test(navigator.userAgent) || /rv:11.0/i.test(navigator.userAgent)) {
// This is internet explorer 9 or 11
jQuery( "body" ).addClass( "ie" );
}
});