Annual

Report 2024

Ver vídeo completo

See the annual report

Find out the details of all the figures, projects and actions of cooperation, awareness, volunteering and political advocacy that we developed this last year in Entreculturas.

Our year in figures

203 projects in 42 countries

Social base 32,547 people

27 delegations
13 autonomous communities

125,110 followers in social networks

401,159 people accompanied

691 centers / 982 teachers
16,596 NNAJ participants

More than 250 collaborating companies and institutions

24,604,040 (53.8% private funding)

Our year in figures

203 Projects
42 Countries

Social base 32.547 people

27 Delegations
13 autonomous communities

401.159 people accompanied

691 Centers. 982 Teachers
16.596 NNAJ

125.110 Followers in social networks

More than 250 collaborating companies

24.604.040€ Revenues (53.8% private financing)

document.addEventListener(“DOMContentLoaded”, () => { //CARRUSEL const indicators = document.querySelectorAll(‘.indicator’); const carouselInner = document.querySelector(‘.carrusel2’); let activeIndex = 0; indicators.forEach((indicator, index) => { indicator.addEventListener(‘click’, function () { indicators[activeIndex].classList.remove(‘active’); indicator.classList.add(‘active’); activeIndex = index; carouselInner.style.transform = `translateX(-${index * 107}%)`; }); }); // Variables para seguimiento de eventos de deslizamiento y arrastre let startX, endX, isDragging = false; // Función para manejar el inicio del deslizamiento const handleTouchStart = (e) => { startX = e.touches[0].clientX; }; const handleMouseDown = (e) => { startX = e.clientX; isDragging = true; }; // Función para manejar el final del deslizamiento const handleTouchEnd = (e) => { endX = e.changedTouches[0].clientX; handleSwipe(); }; const handleMouseUp = (e) => { if (isDragging) { endX = e.clientX; isDragging = false; handleSwipe(); } }; const handleMouseMove = (e) => { if (isDragging) { endX = e.clientX; } }; // Función para manejar la lógica de deslizamiento const handleSwipe = () => { if (startX > endX + 50) { // Deslizar hacia la izquierda if (activeIndex < indicators.length – 1) { activeIndex++; } } else if (startX 0) { activeIndex–; } } updateCarousel(); }; // Función para actualizar el carrusel const updateCarousel = () => { indicators.forEach((indicator, index) => { indicator.classList.toggle(‘active’, index === activeIndex); }); carouselInner.style.transform = `translateX(-${activeIndex * 107}%)`; }; // Agregar los eventos de deslizamiento al contenedor del carrusel carouselInner.addEventListener(‘touchstart’, handleTouchStart); carouselInner.addEventListener(‘touchend’, handleTouchEnd); carouselInner.addEventListener(‘mousedown’, handleMouseDown); carouselInner.addEventListener(‘mouseup’, handleMouseUp); carouselInner.addEventListener(‘mousemove’, handleMouseMove); carouselInner.addEventListener(‘mouseleave’, handleMouseUp); // Para manejar caso en el que el cursor salga del área });

Transparency and accountability

Source of funds

Destination of resources

Breakdown of mission expenses

Highlights of our causes in 2024

Ícono de corazón

Derecho a la educación

In 2024, the number of children not in education continued to rise, with 250 million children not in school. And for yet another year, a worldwide reduction in public spending on education has jeopardised the achievement of the 4th Sustainable Development Goal. This is something that we at La Silla Roja (The Red Chair), the Global Campaign for Education and Fe y Alegría’s For the Right to Learn campaign have been trying to change. We are helping to counteract this shift by allocating 40% of our mission funds to educational projects in Latin America, Africa, Asia and Europe. These projects include Generating Opportunities (GO) in conjunction with Inditex, and the Towards a Digital and Sustainable World initiative with Accenture.

We also monitor the progress of Spanish public administrations in the field of Education for Sustainable Development and Global Citizenship via Movimiento 4.7, a platform that we support together with Alboan, InteRed and ONGAWA, and with the backing of AECID.

Ícono de corazón

Migración y refugio

According to UNHCR, by mid-2024, 122.6 million people worldwide had been displaced from their homes due to conflict, human rights violations or serious breakdowns in law and order. The Jesuit Refugee Service was on the ground during many of the world’s major crises. These included receiving refugees in Chad and South Sudan during the conflict in Sudan, D.R. of Congo, continuing to promote the “One Proposal” programme in Ukraine on the second anniversary of the war, addressing the ramifications of Venezuela’s migratory crisis in Colombia, Brazil and Ecuador, and providing assistance to Syrian refugees in Lebanon and calling for a ceasefire in Gaza.

In Spain, our aim is to raise public awareness of the concept of Aprender en Peligro (Learning in Danger) that is addressed through the Refugee School campaign. We have joined forces with some 20 other organisations to call for a European Pact on Migration and Asylum to prioritise protection for people affected by forced displacement.

Ícono de corazón

Justicia socioambiental

The torrential rain and severe flooding in the Brazilian state of Rio Grande do Sul and in the Spanish region of Valencia highlighted the vulnerability of humans to climate change. In response to both catastrophes, we provided the most affected population with basic necessities and psychological support.

Via the Defensoras de la Naturaleza (Women Defenders of Nature) exhibition and the CHANGE Environment campaign, we invited students to ponder issues such as environmental protection and human migration caused by climate change.

The Plataforma por Empresas Responsables (Platform for Responsible Business) was granted definitive approval by the European Due Diligence Directive.

Ícono de corazón

Equidad de género

Gender is a central perspective in our mission, informing our citizenship initiatives such as training programmes, and the promotion of youth leadership through the Red Violeta network. It also informs our cooperation and humanitarian projects.

In 2024, the Cholitas climbers from Bolivia shared their story of empowerment and liberation all around Spain. Spanish dancer Sara Baras has joined our La LUZ de las NIÑAS (The LIGHT of the GIRLS) programme as an ambassador. With regard to the 8 March, International Women’s Day, we highlighted the violations of women’s rights experienced by those at the forefront of environmental advocacy. And, to create a fairer and safer working environment, we evaluated the second year of the implementation of our Equality Plan.

Ícono de corazón

Participación y ciudadanía global

At the 9th Global Meeting of the Entreculturas Youth Solidarity Network, over 250 young people and teachers from 11 countries created an “Agents of Change Action Plan” to tackle, over the next two years, the key global issues in their communities. At the 24th Entreculturas Annual Meeting, we also reviewed our strategies and reflected on how best to build the future.

The 13th edition of our Run for a Cause solidarity race brought together 16,000 people and raised funds to support children’s education in Ukraine, the Central African Republic, and Colombia.

After just over two years of broadcasting, our Voces por una Causa (Voices for a Cause) podcast, hosted by writer and journalist Julia Navarro, topped 100 episodes.

Our agreements and programs

Every year we work to solve educational problems common to several countries through programs that take place thanks to the support of companies or other institutions. Most of them are of medium or long duration and, therefore, manage to achieve a great impact on the populations we work with.

document.addEventListener(‘DOMContentLoaded’, () => { const adjustCardText = () => { const cards = document.querySelectorAll(‘.our-campaign-card’); cards.forEach(card => { const title = card.querySelector(‘.our-campaign-title a’); const extract = card.querySelector(‘.our-campaign-extract p’); const lineHeight = parseInt(window.getComputedStyle(title).lineHeight); const titleLines = Math.ceil(title.scrollHeight / lineHeight); let totalLines; if (window.innerWidth <= 380) { totalLines = 7; } else if (window.innerWidth <= 480) { totalLines = 7; } else if (window.innerWidth <= 650) { totalLines = 5; } else if (window.innerWidth <= 768) { totalLines = 5; } else if (window.innerWidth <= 1024) { totalLines = 13; } const extractLines = totalLines – titleLines; extract.style.WebkitLineClamp = extractLines.toString(); extract.style.lineClamp = extractLines.toString(); }); }; adjustCardText(); window.addEventListener('resize', adjustCardText); }); document.addEventListener(“DOMContentLoaded”, function() { var lista = document.querySelector(‘.our-campaign-todas ul’); var elementosLi = lista.querySelectorAll(‘li’); // Comprobar si la cantidad de elementos li es impar if (elementosLi.length % 2 !== 0) { // Obtener el último elemento li var ultimoElementoLi = elementosLi[elementosLi.length – 1]; // Agregar una clase especial al último elemento ultimoElementoLi.classList.add(‘estilos-impar’); } });
document.addEventListener(“DOMContentLoaded”, () => { //CARRUSEL const indicators_l = document.querySelectorAll(‘.listado-indicator’); const carouselInner_l = document.querySelector(‘.is-layout-grid’); let activeIndex_l = 0; indicators_l.forEach((indicator_l, index_l) => { indicator_l.addEventListener(‘click’, function () { indicators_l[activeIndex_l].classList.remove(‘active’); indicator_l.classList.add(‘active’); activeIndex_l = index_l; carouselInner_l.style.transform = `translateX(-${index_l * 102}%)`; }); }); });
©Francesco Malavolta / JRS Lebanon

PROTECTION FOR REFUGEES IN LEBANON

Within our agreement with AECID, we promote the comprehensive protection of Syrian refugee children in Lebanon. From the 7 schools in Baalbek, Bar Elias and Burj Hammoud where we work with JRS, we facilitate access to free quality education to 3,402 children, also offering them food, warm clothes, school supplies and psychosocial support.

© Natalia Sepúlveda / Chad

THE LIGHT OF THE GIRLS

This program, developed together with Fe y Alegría and the Jesuit Refugee Service, responds to the challenges, violence and inequality experienced by girls in vulnerable contexts in 7 countries in Africa and Latin America and the Caribbean, covering 3 lines of intervention: prevention, care and guaranteeing educational access.

©Paula Casado / JRS Kenya

EMERGENCY EDUCATION IN KENYA

In the wake of recent humanitarian crises in the region, Kenya has received a massive influx of forcibly displaced people. This program, supported by DG ECHO, aims to improve access to quality primary and secondary education for displaced children and youth in Kakuma and Dadaab.

Where we work

At Entreculturas we carry out development cooperation, humanitarian action, citizenship and social action projects linked to our 5 causes.

Click on each point to obtain information:

Where we work

At Entreculturas we carry out development cooperation, humanitarian action, citizenship and social action projects linked to our 5 causes.

Click on each item for more information:

arrow-down Search by cause

Do you want to see the complete list of our projects?

//Para mostrar el mismo texto en el boton sin cambiar el enlace const linkPdf = document.querySelectorAll(‘.link-pdf’); if (linkPdf) { linkPdf.forEach(link => { //para que se abra en otra pestaña link.querySelector(‘a’).setAttribute(‘target’, ‘_blank’); const linkText = link.querySelector(‘a’).innerText; link.querySelector(‘a’).setAttribute(‘href’, linkText); link.querySelector(‘a’).innerText = ‘CONOCE EL PROGRAMA’; }); }
Skip to content