const t=document.getElementById("burger-btn"),e=document.getElementById("mobile-menu");t?.addEventListener("click",()=>{!e?.classList.contains("hidden")?(e?.classList.add("hidden"),t.setAttribute("aria-expanded","false")):(e?.classList.remove("hidden"),t.setAttribute("aria-expanded","true"))});e?.querySelectorAll("a").forEach(d=>{d.addEventListener("click",()=>{e.classList.add("hidden"),t?.setAttribute("aria-expanded","false")})});