Back to blog

Businesses Serving the Public Should be Open to All

When two-year-old Katie fell and knocked her tooth out, her mom, Jane, did what any mom would do, she rushed her crying, bleeding child to the dentist. But when she arrived, the dentist told her, “A child cannot have two mothers so the ‘real mom’ has to be here.” She called her wife Marie to tell her, “You have to come and bring Katy’s birth certificate proving you are her mom before they will treat her.”

Jane and Marie’s experience is just one of the many real-life stories of discrimination featured in an amicus brief to the Supreme Court that Equality Federation recently signed on to. The case, Masterpiece Cakeshop v. Colorado Civil Rights Commission, ignited when a cake shop denied service to a gay couple who was preparing for their wedding, but it’s about so much more than a cake shop.

Continue reading on HuffingtonPost

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