Fran (Hutch)

Municipal Equality Index 2024

Equality Federation Institute is proud to partner on HRC’s 2024 Municipal Equality Index (MEI), a comprehensive tool that shows how cities nationwide foster LGBTQ+ equality through their policies, practices, and services. 

May 18, 2026
Press Release: Equality Federation Reacts to 2024 Election Results

Equality Federation responds to the results of the November 5, 2024, Presidential election and many Congressional, Senate, state, and local election results.

May 18, 2026
Elections 2024: A Rainbow Wave?

As of today, Equality Federation has finalized $240,000 in seed grants for our partners' electoral work. Many groups have been using these grants to leverage more funding. However, members still report that they need to raise $6M to contact every voter we need to win. Help us move more resources quickly to states with the greatest needs.

May 18, 2026
Our Growing Team

We are no longer the scrappy organization we once were. I am proud to say that Equality Federation is now an organization of 17, with the plan to have a staff of 20 by the end of the year.

May 18, 2026
Equality Federation Reacts to Supreme Court Decision in 303 Creative v. Elenis

Today, Equality Federation responded to the Supreme Court’s decision in 303 Creative v. Elenis, a case about whether a business that is open to the public can be granted an unprecedented free speech exemption from state nondiscrimination law in order to turn away customers they would rather not serve. In a 6-3 decision, the Court ruled for 303 Creative in a highly fact-specific decision authorizing a narrow exception to state nondiscrimination laws for a website developer.

May 18, 2026
Equality Federation Response to U.S. Supreme Court Ruling in Dobbs v. Jackson Women’s Health Organization

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 */ }); });