Join Our Team in Supporting Our Members This Give OUT Day

After you donate to Equality Federation, please consider matching that gift with a donation to your closest participating state partner and a BIPOC-focused organization this Give Out Day.

May 18, 2026
Paid Health Leave and its benefits for everyone

Paid Health Leave for everyone would provide access to taking care of oneself without jeopardizing their employment. This is a part of public health, and we must invest in it to keep everyone safe.

May 18, 2026
Transphobia is a Waste of Money

Investing in furthering transphobic laws is a waste of precious resources, resources that come from our hard work. There are so many other things to invest in instead. 

May 18, 2026
How this Southern Team Defended Trans Rights

Trans people are the experts in their own lives and are not a monolith. We should listen to as many trans people as we are willing to share and trust that their lives will adequately supplement the data we have and are continuing to collect to create robust and effective policy.

May 18, 2026
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.

May 18, 2026
Support our Members this Give OUT Day

May 18, 2026
Housing Our Community: LGBTQ+ Friendly Housing Programs

May 18, 2026
Equality Federation Weekly Legislative Update: January 25

A weekly update of legislation moving through the states.

May 18, 2026
/* ============================================= 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 */ }); });