Back to blog

the fight for equality continues

Friend,

The election results are devastating. The Equality Federation staff and I are deeply saddened today as we grapple with the reality that the country has elected Donald Trump, who campaigned on racism, homophobia, sexism, xenophobia—sentiments based in fear and hatred.

As people who fight for equality and justice, difficult years are ahead of us. But we will not give up. We will continue to build strong, diverse coalitions to win equality in every single community we call home. We will organize like never before. With unprecedented challenges ahead of us at the federal level, our work in the states to keep building momentum towards full legal and lived equality takes on even greater urgency.

We saw in North Carolina, with the defeat of anti-LGBTQ Governor Pat McCrory what can be achieved when we all work together. Equality North Carolina led efforts to build solidarity and strength. That’s exactly the kind of power we need to continue building in the states over the coming months and years.

We need each other more than ever, and we must refuse to be divided as analysts look to focus blame for the results on any of us.

We have your back, and we’re going to need you to have ours. Indeed, everything we’ve achieved, everything we’ve fought for over the past several decades is now on the line—from nondiscrimination in health care to voting rights and immigration reform, and so much more. Please remember to take care of yourself during this challenging time.

With great determination,

Rebecca Isaacs
Executive Director
Equality Federation

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