SDG 1 – No poverty

@media (max-width: 768px) { .dos-columnas { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: stretch; /* Asegura que ambas columnas tengan misma altura */ } .dos-columnas .et_pb_column_2 { display: flex; flex-direction: column; justify-content: center; height: auto; min-height: 100%; } }

Goals

Goal 1.1

1.1 By 2030, eradicate extreme poverty for all people in the world, currently measured by an income per person of less than $1.25 a day.

Goal 1.2

1.2 By 2030, reduce by at least half the proportion of men, women and children of all ages living in poverty in all its dimensions according to national definitions.

Goal 1.3

1.3 Implement nationally appropriate social protection systems and measures for all and, by 2030, achieve broad coverage of the poor and the most vulnerable.

Goal 1.4

1.4 By 2030, ensure that all men and women, in particular the poor and the most vulnerable, have equal rights to economic resources, as well as access to basic services, ownership and control of land and other property, inheritance, natural resources, new technologies and economic services, including microfinance.

Goal 1.5

1.5 By 2030, build the resilience of the poor and those in vulnerable situations and reduce their exposure and vulnerability to climate-related extreme events and other economic, social and environmental disasters.

Goal 1.a

1.a Ensure a substantial mobilization of resources from various sources, including through enhanced development cooperation, to provide sufficient and predictable means for developing countries, in particular the least developed countries, to implement programs and policies aimed at ending poverty in all its dimensions.

Goal 1.b

1.b Create strong policy frameworks at the national, regional and international levels, based on pro-poor development strategies that take gender issues into account, in order to support accelerated investment in measures to eradicate poverty.

SDG-1
SDG-2
SDG-3
SDG-4
SDG-5
SDG-6
SDG-7
SDG-8
SDG-9
SDG-10
SDG-11
SDG-12
SDG-13
SDG-14
SDG-15
SDG-16
SDG-17
.horizontal-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 5px; padding: 20px; } .slide { flex: 0 0 auto; width: 70px; height: 70px; scroll-snap-align: start; transition: transform 0.3s ease; } .slide img { width: 100%; height: 100%; object-fit: cover; } /* Zoom en móvil */ @media (max-width: 768px) { .slide { width: 30vw; /* Más compacto que 80vw */ height: auto; aspect-ratio: 1 / 1; scroll-snap-align: center; transition: transform 0.3s ease; } .slide img { width: 100%; height: 100%; object-fit: contain; border-radius: 0; /* Elimina redondeo si no se desea */ } .zoomed { transform: scale(1.1); z-index: 2; } } const container = document.querySelector('.horizontal-slider'); const slides = document.querySelectorAll('.slide'); function updateZoomedSlide() { let center = container.scrollLeft + container.offsetWidth / 2; slides.forEach(slide => { const rect = slide.getBoundingClientRect(); const slideCenter = rect.left + rect.width / 2; if (Math.abs(slideCenter - window.innerWidth / 2) { if (window.innerWidth <= 768) { updateZoomedSlide(); } }); window.addEventListener('resize', updateZoomedSlide); window.addEventListener('load', updateZoomedSlide); @media (max-width: 768px) { .dos-columnas { display: flex; flex-direction: row !important; /* Fuerza horizontal */ flex-wrap: nowrap; gap: 12px; /* Ajusta según separación deseada */ } .dos-columnas > div { flex: 1 1 50%; /* Cada columna ocupa la mitad */ min-width: 0; /* Evita desbordamiento */ } }