ADVERTISEMENT
970x220

Embassy of Switzerland's #PeriodTowardsEmpowerment launch event

The project seeks to create lasting impact by empowering women and girls

Published Jul 2, 2024 07:29 am

The Embassy of Switzerland in the Philippines, SPARK! Philippines, and the local government of Dumalinao, Zamboanga del Sur successfully launched the #PeriodTowardsEmpowerment project. The inaugural session took place at the Bukasyon Center, followed by a second session at Barangay Calinggayan. The project engaged a diverse group of over one hundred participants aged 10 and above, including teenage mothers, student leaders, and out-of-school youth. This variety of participants contributed a wide range of perspectives and experiences, enriching the discussions and outcomes of the sessions.

image1.png
DHOM Celine Furst, Diplomatic Officer Lisa Brucker, Hon. Mayor Sweet Cerilles, and SPARK! Executive Director Malca Teves

During the sessions, reusable sanitary napkins made by women deprived of liberty in the Quezon City Female Jail Dormitory were distributed to all participants. The initiative aims to break the persistent taboos surrounding menstruation, raise awareness about the importance of good menstrual hygiene management, and introduce locally manufactured reusable sanitary napkins, significantly reducing environmental waste.

The #PeriodTowardsEmpowerment project aims to implement a comprehensive knowledge-building program that fosters discussions about menstrual management, regardless of sexual orientation, gender identity, and gender expression. Participants will explore how socio-cultural norms and long-held beliefs contribute to gender insensitivity and perpetuate misconceptions about menstruation, which can trigger various forms of gender-based violence.

image3.png
At the Barangay Calingayan with 70 young women and girls aged 10 to 19

One of the project's objectives is to significantly reduce the waste generated by disposable sanitary napkins. These napkins, typically made from non-renewable resources, involve cutting down trees, consuming large amounts of water, and generating greenhouse gas emissions during production. After a single use, they contribute to the growing problem of landfill waste. In contrast, reusable napkins made from renewable materials require fewer resources and can be reused multiple times, leading to a substantial reduction in overall waste production.

image2.png
Margot Catmunan, project officer at SPARK! Philippines; Lisa Brucker, diplomatic officer at Embassy of Switzerland; Celine Furst, deputy head of mission at Embassy of Switzerland; Maica Teves, executive director at SPARK! Philippines; and Hon. Sweet Cerilles, mayor of Dumalinao, Zamboanga del Sur together with participants from Bukasyon Center

Furthermore, the project will empower women in Bayawan City, Negros Oriental, by training them to manufacture reusable sanitary napkins locally. These eco-friendly alternatives not only provide a cost-effective option compared to disposables but also help combat the stigma surrounding menstruation. Distributing these reusable napkins to young schoolgirls in Dumalinao, Zamboanga del Sur, will complement the broader period empowerment and awareness program. Additionally, the initiative will incorporate education on menstrual health and introduce "Sophia, The Chatbot," utilizing technology to facilitate accessible reporting avenues for gender-based violence.

The project seeks to create a lasting impact by promoting gender equality, fostering safer and healthier communities, and empowering women and girls with the knowledge and resources they need to thrive.

Related Tags

Embassy of Switzerland in the Philippines Switzerland
ADVERTISEMENT
300x250
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0 72px 0 12px; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } li:empty { display: none; } .hidden { display: none; }
function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.