SDG 9 – Industry, Innovation and Infrastructure

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

9.1 Develop reliable, sustainable, resilient and quality infrastructure, including regional and cross-border infrastructure, to support economic development and human well-being, with special emphasis on affordable and equitable access for all.

Goal 9.2

9.2 Promote inclusive and sustainable industrialization and, by 2030, significantly increase industry’s contribution to employment and gross domestic product, in accordance with national circumstances, and double that contribution in the least developed countries.

Goal 9.3

9.3 Increase access for small industries and other businesses, particularly in developing countries, to financial services, including affordable credit, and their integration into value chains and markets.

Goal 9.4

9.4 By 2030, modernize infrastructure and convert industries to be sustainable, using resources more efficiently and promoting the adoption of clean and environmentally sound industrial processes and technologies, and ensuring that all countries take action in accordance with their respective capabilities.

Goal 9.5

9.5 Increase scientific research and improve the technological capacity of industrial sectors in all countries, particularly developing countries, inter alia by encouraging innovation and substantially increasing, by 2030, the number of people working in research and development per million inhabitants and public and private sector spending on research and development.

Goal 9.a

9.a Facilitate the development of sustainable and resilient infrastructure in developing countries through increased financial, technological and technical support to African countries, least developed countries, landlocked developing countries and small island developing States.

Goal 9.b

9.b Support the development of domestic technologies, research and innovation in developing countries, including by ensuring a regulatory environment conducive to industrial diversification and value-added commodities, among other things.

Goal 9.c

9.c Significantly increase access to information and communications technology and strive to provide universal and affordable access to the Internet in the least developed countries by 2020.

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