Features Pricing Services About Sign in Start free trial
(function(){ var ham=document.getElementById('ham-btn'); var mob=document.getElementById('mob-menu'); if(ham&&mob){ ham.addEventListener('click',function(){ var o=mob.classList.toggle('open'); ham.classList.toggle('open',o); ham.setAttribute('aria-expanded',String(o)); }); document.addEventListener('click',function(e){ if(!ham.contains(e.target)&&!mob.contains(e.target)){ mob.classList.remove('open'); ham.classList.remove('open'); ham.setAttribute('aria-expanded','false'); } }); } })();