SDG 10 – Reduced Inequalities

@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 10.1

10.1 By 2030, progressively achieve and sustain income growth for the poorest 40% of the population at a rate higher than the national average.

Goal 10.2

10.2 By 2030, empower and promote the social, economic and political inclusion of all people, irrespective of age, sex, disability, race, ethnicity, origin, religion or economic or other status.

Goal 10.3

10.3 Ensure equal opportunities and reduce inequality of outcomes, including by eliminating discriminatory laws, policies and practices and promoting appropriate legislation, policies and measures in this regard.

Goal 10.4

10.4 Adopt policies, especially fiscal, wage and social protection policies, and progressively achieve greater equality.

Goal 10.5

10.5 Improve the regulation and oversight of global financial institutions and markets and strengthen the enforcement of those regulations.

Goal 10.6

10.6 Ensure greater representation and involvement of developing countries in decisions taken by international economic and financial institutions to increase the effectiveness, reliability, accountability and legitimacy of those institutions.

Goal 10.7

10.7 Facilitate orderly, safe, regular and responsible migration and mobility of people, including through the implementation of planned and well-managed migration policies.

Goal 10.a

10.a Apply the principle of special and differential treatment for developing countries, in particular least developed countries, in accordance with the agreements of the World Trade Organization.

Goal 10.b

10.b Encourage official development assistance and financial flows, including foreign direct investment, to States with the greatest needs, in particular least developed countries, African countries, small island developing States and landlocked developing countries, in accordance with their national plans and programmes.

Meta 10.c

10.c By 2030, reduce the transaction costs of migrant remittances to less than 3% and eliminate remittance corridors with a cost above 5%.

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 */ } }