Back to blog

Equality Federation Responds to Supreme Court Decision On Contraception Access

Today, the Supreme Court of the United States handed down its highly anticipated decisions in two cases that were brought by for-profit companies arguing that requiring them to include contraception in their employees’ health plan violates their religious liberty rights under the Religious Freedom Restoration Act.

In an unprecedented decision, the Court ruled that employers can use their religious beliefs to deny their employees a benefit that they are guaranteed by law to receive. In response to this decision, Rebecca Isaacs, executive director of Equality Federation, released the following statement:

“We are dismayed that the Court today gave employers the right to decide – based on the employers’ religious beliefs – whether women have access to affordable birth control and what type and in what circumstances.

We all have the right to our religious beliefs, but that should not include the right to impose your beliefs on others. At the Federation, we believe the Supreme Court ruled wrongly in this case."

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