Back to blog

License to Discriminate Passes in Georgia Senate

The Georgia State Senate, by a vote of 35-19, advanced legislation that would allow taxpayer-funded adoption agencies to deny service to LGBTQ youth and families.

Equality Federation deputy director Fran Hutchins said, “As someone who was adopted myself I find it deeply insulting that a few politicians are putting LGBTQ youth and families at risk for discrimination. Every child deserves a loving family and place the call home.”

Jeff Graham, executive director at Equality Georgia, called SB 375 “mean spirited” and said, “This legislation goes out of its way to make it harder for loving and committed same-sex couples to start a family—and unfortunately, it’s children in need of permanent homes who will pay the steepest price.”

Equality Federation, along with child welfare advocates, businesses and thousands of individual Georgians, opposes this dangerous License to Discriminate.

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