SDG 13 – Climate Action

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

13.1 Strengthen resilience and adaptive capacity to climate-related risks and natural disasters in all countries.

Goal 13.2

13.2 Incorporate climate change measures into national policies, strategies and plans.

Goal 13.3

13.3 Improve education, awareness and human and institutional capacity regarding climate change mitigation, adaptation to it, reduction of its effects and early warning.

Goal 13.a

13.a Fulfill the commitment of developed countries that are parties to the United Nations Framework Convention on Climate Change to achieve by 2020 the goal of jointly mobilizing $100 billion annually from all sources to meet the needs of developing countries regarding concrete mitigation measures and transparency of their implementation, and fully operationalize the Green Climate Fund by capitalizing it as soon as possible.

Meta 13.b

13.b Promote mechanisms to increase capacity for effective climate change planning and management in least developed countries and small island developing States, with particular emphasis on women, youth and local and marginalized communities.

* Recognizing that the United Nations Framework Convention on Climate Change is the primary international intergovernmental forum for negotiating the global response to climate change.

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