Back to blog

President Biden Signs the Respect for Marriage Act

December 14, 2022 - Yesterday, President Biden signed the Respect for Marriage Act into law, ensuring that the federal government respects and protects all marriages equally. Following the signing ceremony, Equality Federation Executive Director Fran Hutchins made the following statement:

“Same-sex couples across the country, including myself and my wife, can find comfort in knowing our marriages are legally protected and respected by the federal government nationwide. In a historic signing ceremony on the White House South Lawn, President Biden signed the Respect for Marriage Act into law surrounded by hundreds of state and national LGBTQ+ leaders, advocates, and their families. At a time when the LGBTQ+ community — especially transgender people — is facing fierce assaults on our physical safety and basic liberties, today’s action is a welcome step forward to ensure that we can all live safely, with dignity and respect. We are grateful for the work of champions in the U.S. House and Senate who worked across the aisle to prove what we already know: that marriage equality is supported by the majority of the American people. We look forward to using this momentum to continue prioritizing protecting the most basic needs of our entire community, in all the communities they call home.”

/* ============================================= Timed Popup — Shows after a delay on every page Closes on: X button, overlay click, or Escape key Once per session (won't show again until new session) ============================================= */ document.addEventListener("DOMContentLoaded", function () { /* Target the popup elements by their Webflow classes */ const popup = document.querySelector(".modal-popup_wrapper"); const closeBtn = document.querySelector(".modal-popup_close"); const overlay = document.querySelector(".modal-popup_overlay"); /* Check if popup has already been seen this session */ if (sessionStorage.getItem("popupSeen")) return; /* Show the popup after a delay Change 4000 to adjust timing (1000 = 1 second) */ setTimeout(function () { popup.style.display = "flex"; popup.removeAttribute("aria-hidden"); closeBtn.focus(); /* Moves focus to close button for accessibility */ }, 4000); /* Close the popup and record the session */ function closePopup() { popup.style.display = "none"; popup.setAttribute("aria-hidden", "true"); sessionStorage.setItem("popupSeen", "true"); /* Prevents popup from showing again this session */ } /* Close triggers */ closeBtn.addEventListener("click", closePopup); /* X button */ overlay.addEventListener("click", closePopup); /* Clicking the dim background */ document.addEventListener("keydown", function (e) { if (e.key === "Escape") closePopup(); /* Escape key */ }); });