Back to blog

Georgia Passes Comprehensive Adoption Bill; Fight Far From Over

Last week lawmakers in Georgia passed positive reforms to the state’s adoption and foster care code. HB 159 updates the state’s antiquated child welfare laws and does not include any discriminatory language. This “clean” bill, expected to be signed into law by Governor Nathan Deal, will not only impact LGBTQ Georgians, but the over 12,000 children the state’s adoption and foster care system.

Equality Federation applauds Georgia Equality and their partners for prioritizing child welfare and advocating for LGBTQ people all across the Peach State!

Unfortunately, there is still work to do.

Extremist Georgia lawmakers have now set their eyes on passing what is nothing less than a license to discriminate. HB 375, would allow taxpayer-funded adoption agencies the right to refuse to work with same-sex couples and LGBTQ youth. This hateful bill is not only incredibly harmful to the LGBTQ community in Georgia, but it could also have a huge economic impact on the state. Atlanta has been named a finalist for Amazon’s HQ2, but state sanctioned discrimination could all but end the state’s bid.

Equality Federation stands with Georgia Equality and the coalition of folks on the ground who are advocating against HB 375. We must protect vulnerable, LGBTQ youth at all costs.

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