Get Involved

Employer Matching Gifts and Workplace Giving

You can double (or even triple!) the impact of your gift to LGBTQ+ equality through your workplace.

Many employers offer programs that match your donation or allow you to give directly through payroll. Use your benefits to make your support go even further.

Matching Gifts: Double Your Donation

Many companies match charitable contributions made by their employees, and sometimes retirees or partners. That means your gift to Equality Federation Institute could be matched dollar-for-dollar at no extra cost to you.

Matching Gift and Volunteer Grant information provided by
Powered by Double the Donation

Once you submit your request, your employer may reach out to us directly to complete the match.

Equality Federation Institute EIN: 81-0670151‍

Mailing Address:‍

Equality Federation Institute
1336 NW Flanders St. PMB 174
Portland, OR 97209

If you don’t see your company, but have a matching gift program, please send your request to: donate@equalityfederation.org.

Payroll Deduction‍

Many private employers- federal, state, and local governments all offer payroll deductions as a way to encourage their employees to support causes they care about. This is an easy, consistent way to support state-based LGBTQ+ advocacy year-round.

To participate:

  • Check with your Human Resources or Benefits team
  • Ask if your employer offers payroll deduction or workplace giving programs
  • Select Equality Federation Institute as your nonprofit beneficiary

Do you have questions? Reach out to donate@equalityfederation.org

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