SDG 17 – Partnerships for the Goals

@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

Finance

Goal 17.1

17.1 Strengthen the mobilization of domestic resources, including through the provision of international support to developing countries, in order to enhance national capacity to collect tax and other revenues.

Goal 17.2

17.2 Ensure that developed countries fully comply with their commitments regarding official development assistance, including the commitment of many developed countries to achieve the target of allocating 0.7% of gross national income to official development assistance to developing countries and between 0.15% and 0.20% of gross national income to official development assistance to least developed countries; providers of official development assistance are encouraged to consider setting a target of allocating at least 0.20% of gross national income to official development assistance to least developed countries.

Goal 17.3

17.3 Mobilize additional financial resources from multiple sources for developing countries.

Goal 17.4

17.4 Assist developing countries in achieving long-term debt sustainability through coordinated policies aimed at promoting debt financing, relief and restructuring, as appropriate, and address the external debt of heavily indebted poor countries in order to reduce excessive indebtedness.

Goal 17.5

17.5 Adopt and implement systems for promoting investment in favor of the least developed countries.

Technology

Goal 17.6

17.6 Enhance North-South, South-South and triangular regional and international cooperation in and access to science, technology and innovation, and increase knowledge sharing on mutually agreed terms, including by improving coordination among existing mechanisms, particularly at the United Nations level, and through a global technology facilitation mechanism.

Goal 17.7

17.7 Promote the development of environmentally sound technologies and their transfer, dissemination and diffusion to developing countries on favorable conditions, including on concessional and preferential terms, as mutually agreed.

Goal 17.8

17.8 Fully operationalize, by 2017 at the latest, the technology bank and capacity-building support mechanism for science, technology and innovation for least developed countries and increase the use of enabling technologies, in particular information and communications technology.

Capacity building

Goal 17.9

17.9 Increase international support for effective and targeted capacity-building activities in developing countries to support national plans for the implementation of all Sustainable Development Goals, including through North-South, South-South and triangular cooperation.

Trade

Goal 17.10

17.10 Promote a universal, rules-based, open, non-discriminatory and equitable multilateral trading system within the framework of the World Trade Organization, including through the conclusion of negotiations under the Doha Development Agenda.

Goal 17.11

17.11 Significantly increase exports from developing countries, in particular with a view to doubling the share of least developed countries in world exports by 2020.

Goal 17.12

17.12 Achieve timely and sustainable duty-free and quota-free market access for all least developed countries, in accordance with World Trade Organization decisions, including by ensuring that preferential rules of origin applicable to imports from least developed countries are transparent and simple and contribute to facilitating market access.

Systemic issues
Normative and institutional coherence
Goal 17.13

17.13 Enhance global macroeconomic stability, including through policy coordination and coherence.

Goal 17.14

17.14 Improve policy coherence for sustainable development.

Goal 17.15

17.15 Respect the regulatory margin and leadership of each country to establish and implement policies for poverty eradication and sustainable development.

Multi-stakeholder partnerships

Goal 17.16

17.16 Enhance the Global Partnership for Sustainable Development, complemented by multi-stakeholder partnerships that mobilize and exchange knowledge, expertise, technology and financial resources, to support the achievement of the Sustainable Development Goals in all countries, particularly developing countries.

Goal 17.17

17.17 Encourage and promote the establishment of effective partnerships in the public, public-private and civil society spheres, leveraging the experience and resource acquisition strategies of partnerships.

Data, monitoring and accountability

Goal 17.18

17.18 By 2020, enhance capacity-building support provided to developing countries, including least developed countries and small island developing States, to significantly increase the availability of timely, reliable and high-quality data disaggregated by income, sex, age, race, ethnic origin, migration status, disability, geographical location and other characteristics relevant in national contexts.

Goal 17.19

17.19 By 2030, build on existing initiatives to develop indicators that measure progress on sustainable development and complement gross domestic product, and support statistical capacity building in developing countries.

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