-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·1219 lines (871 loc) · 67.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="en">
<head>
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>SDG Insights | UNDP</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<meta name="description" content="Driving the future of development.">
<meta name="keywords" content="UNDP, UN, SDGs">
<link rel="canonical" href="https://sdgpush.undp.org/">
<meta property="og:type" content="website">
<meta property="og:title" content="SDG Insights | UNDP">
<meta property="og:site_name" content="UNDP">
<meta property="og:url" content="https://sdgpush.undp.org/">
<meta property="og:description" content="Driving the future of development.">
<meta property="og:image" content="">
<meta property="og:image:width" content="1920">
<meta property="og:image:height" content="1080">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@undp">
<link rel="stylesheet" href="https://use.typekit.net/ukl2sym.css">
<meta property="og:image" content="https://sdgpush.undp.org/assets/img/social-thumbnail.jpg">
<link rel="stylesheet" href="assets/css/app.css?202109231710">
<link rel="stylesheet" href="assets/css/content-card.min.css">
<link rel="stylesheet" href="assets/css/stats-cards.min.css">
<link rel="stylesheet" href="assets/css/buttons.min.css">
<link rel="stylesheet" href="assets/css/cta-link.min.css">
<link rel="stylesheet" href="assets/css/stats-card-slider.min.css" />
<link rel="stylesheet" href="assets/css/swiper-bundle.css" />
<script src="https://unpkg.com/[email protected]/swiper-bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-element-bundle.min.js"></script>
<link rel="stylesheet" href="assets/css/swiper.min.css" />
<link rel="stylesheet" href="assets/css/custom-select.min.css">
<link rel="stylesheet" href="assets/css/footer.min.css">
<link rel="stylesheet" href="assets/css/bio-card.min.css">
<script src="assets/js/lottie-player.js"></script>
<link rel="stylesheet" href="assets/css/modal.min.css">
<link rel="stylesheet" href="assets/css/tab.min.css" />
<link rel="stylesheet" href="tab.min.css" />
<link rel="stylesheet" href="tabs-partnerships.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/scrollama/2.0.0/scrollama.min.js"></script>
<!-- Google Tag Manager -->
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start':
new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-TXNF7X72');
</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TXNF7X72" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<header style="z-index: 999;" id="main-header">
<div class="grid-container">
<div class="grid-x align-justify">
<div class="small-2 medium-1 cell">
<a href="https://sdgpush.undp.org/" style="background-image: none;">
<img src="assets/img/undp-logo-white.svg" width="60" alt="UNDP logo">
</a>
</div>
</div>
</div>
</header>
<div class="grid-y gird-x grid-frame align-center cover section-00-cover" id="toc0" data-magellan-target="toc0" style="z-index: 50;">
<video loop muted autoplay playsinline poster="assets/img/hero-thumbail.jpg">
<source src="assets/img/ar-hero.mp4" type="video/mp4">
Your browser does not support the HTML5 video element
</video>
<div class="cell">
<div class="grid-container">
<div class="grid-x">
<div class="small-12 medium-12 large-12 cell" id="hero-text">
<h1 id="changing-text">HOW IS <span id="dynamic-word">EVERYONE</span> <br>DOING?</h1>
<div class="overline">
We found out.
</div>
<br><br>
<h4 id="hero-copy">
UNDP’s Integrated SDG Insights explore how to achieve the SDGs by 2030.
<span class="text-extrabold">So that no one is left behind.</span>
</h4>
</div>
</div>
</div>
</div>
<div class="scroller">
<a href="#toc1" data-smooth-scroll style="background-image: none;">
<img src="assets/img/chevron.svg" width="45" alt="arrow down">
</a>
</div>
</div>
<!-- <script>
// Get the header element by its ID
const header = document.getElementById('main-header');
// Calculate the height of the header
const headerHeight = header.offsetHeight;
// Add 50 pixels to the header height and apply it as padding to the div below
const paddingValue = headerHeight + 50;
const divBelowHeader = document.getElementById('hero-text'); // Replace with the correct ID
divBelowHeader.style.paddingTop = `${paddingValue}px`;
</script>-->
<!-- **********SDG color strip START *********** -->
<div style="height: 25px; display: flex;">
<div style="flex: 1; background-color: #E5243B;"></div>
<div style="flex: 1; background-color: #DDA63A;"></div>
<div style="flex: 1; background-color: #4C9F38;"></div>
<div style="flex: 1; background-color: #C5192D;"></div>
<div style="flex: 1; background-color: #FF3A21;"></div>
<div style="flex: 1; background-color: #26BDE2;"></div>
<div style="flex: 1; background-color: #FCC30B;"></div>
<div style="flex: 1; background-color: #A21942;"></div>
<div style="flex: 1; background-color: #FD6925;"></div>
<div style="flex: 1; background-color: #DD1367;"></div>
<div style="flex: 1; background-color: #FD9D24;"></div>
<div style="flex: 1; background-color: #BF8B2E;"></div>
<div style="flex: 1; background-color: #3F7E44;"></div>
<div style="flex: 1; background-color: #0A97D9;"></div>
<div style="flex: 1; background-color: #56C02B;"></div>
<div style="flex: 1; background-color: #00689D;"></div>
<div style="flex: 1; background-color: #19486A;"></div>
</div>
<!-- **********SDG color strip END *********** -->
<main class="off-canvas-wrapper" id="main" data-sticky-container style="z-index: 1;">
<div class="off-canvas-content" data-off-canvas-content>
<div class="main-content-headings">
<div id="">
<div class="sdgi-intro" style="background: linear-gradient(109.6deg, rgb(43, 1, 91) 13.4%, rgb(122, 2, 54) 100.2%);">
<div class="grid-container padded" id="toc1" data-magellan-target="toc1">
<div class="grid-x grid-padding-x section align-middle ">
<div class="cell small-12 medium-6 large-7">
<h4><span class="text-extrabold">WHAT WE CREATED</span></h4>
<h2 id="fade-sdgi">
<span>90+</span> <span>countries.</span><br>
<span>90+</span> <span>insightful</span> <span>reports.</span><br>
<span>Hundreds</span> <span>of</span> <span>ways</span> <span>forward.</span>
</h2>
</div>
<div class="cell small-12 medium-6 large-5">
<p>Each report stems from national priorities and challenges that countries navigate daily. The reports deliver a playbook, showing the policy choices made by governments under tight fiscal and financial constraints. <span class="text-extrabold">Integrating multiple data sources</span> allows for the analysis of SDG trends, national priorities, interlinkages, and potential futures, pointing to macro-patterns and SDG pathways that will endure beyond 2030.
</p>
</div>
</div>
</div>
</div>
</div>
<div id="">
<div class="">
<div class=" grid-container padded" id="toc10" data-magellan-target="toc10">
<div class="grid-x grid-padding-x align-bottom ">
<div class="cell small-12 medium-12 large-9">
<h4><span class="text-extrabold">WHAT WE KNOW</span></h4>
<h2> Global Patterns and Emerging Insights
</h2>
<p>Here are the most important patterns – some encouraging, others needing more attention. Acceleration is powered by <span class="text-extrabold">SDG interlinkages</span>: SDG combinations with the best potential to accelerate progress. This helps countries navigate complex and often colliding development challenges. </p>
</div>
<div class="cell small-12 medium-6">
</div>
</div>
<!--+++++++++++++++++++++++ GLOBAL INSIGHT 1 +++++++++++++++++-->
<div class="insights grid-x grid-padding-x align-middle" style="padding: 60px 0px 50px 0px;">
<div class="small-12 medium-12 large-7 cell custom-left">
<h3 class="text-extrabold">COUNTRIES ARE FOCUSED ON GROWTH, SOMETIMES AT-ALL-COSTS</h3>
<p>After three years of crises, countries are focused on achieving broad-based growth with jobs and income generation – sometimes driven by fossil fuels, commodity booms or debt financing. There is a growing gap between the “growth we get” versus the “development we want” which expands human development within planetary boundaries with productivity gains. </p>
<p>Sustainable development and climate goals are at a precipice because countries’ choices are constrained. A focus on growth, jobs and poverty reduction must be reconciled with national ambitions on decarbonization and energy transition. Growth at all costs will not achieve the SDGs, but the right policy response will.</p>
<p><span class="text-bold">Spotlight: Iraq 🇮🇶</span><br>Iraq’s economic growth is accelerating, but at the expense of the environment, due to fossil fuel usage and land-use change. The country is diversifying its economy by boosting employment opportunities away from the oil sector, to pursue development in a more green and inclusive way. Significant challenges remain given that the economic expansion is not expected to notably reduce poverty. </p><br>
<a class="button button-secondary button-external-link" role="button" href="https://sdgpush-insights.undp.org/reports/irq" target="_blank">
READ MORE
<span class="external-link-animated"><i></i></span>
</a>
</div>
<div class="small-12 medium-8 large-5 cell custom-right">
<lottie-player src="https://lottie.host/16804ef9-e2c4-48e1-bbea-10786c04fd0c/P3DcYuXQCy.json" background="transparent" speed="0.8" loop autoplay style="text-align: center;"></lottie-player>
</div>
</div>
<!--+++++++++++++++++++++++ GLOBAL INSIGHT 2 +++++++++++++++++-->
<div class=" grid-x grid-padding-x align-middle" style="padding: 60px 0px 50px 0px;">
<div class="small-12 medium-8 large-5 cell shrink" style="margin-right: auto; margin-left: auto">
<lottie-player src="https://lottie.host/96343282-2f6c-4ad4-8fc3-af1776b2eaf1/YDmYZa7JZf.json" background="transparent" speed="0.5" loop autoplay></lottie-player>
</div>
<div class="small-12 medium-12 large-7 cell">
<h3 class="text-extrabold">
FISCAL AND FINANCIAL CONSTRAINTS ARE SHAPING POLICY CHOICES
</h3>
<p>Current finance systems are undermining sustainable development. Debt overhang is damaging prospects for human development. In the world’s poorest countries, debt servicing costs 2.3 times more than social assistance and 1.4 times more than health.</p><br>
<p><span class="text-bold">Spotlight: South Africa 🇿🇦</span><br>To drive industry and service sector growth, South Africa is focused on simultaneously creating private sector jobs and matching skills in the labour market to demand. Together with strong social protection programmes, these efforts can make significant contributions to the country’s overarching objectives of reducing poverty and inequality – but only when combined with a fiscal stimulus.</p><br>
<a class="button button-secondary button-external-link" role="button" href="https://sdgpush-insights.undp.org/reports/zaf" target="_blank">
READ MORE
<span class="external-link-animated"><i></i></span>
</a>
</div>
</div>
<!--+++++++++++++++++++++++ GLOBAL INSIGHT 3 +++++++++++++++++-->
<div class="insights grid-x grid-padding-x align-middle" style="padding: 60px 0px 50px 0px;">
<div class="small-12 medium-12 large-7 cell custom-left">
<h3 class="text-extrabold">
CHOOSING POLICY BUNDLES RATHER THAN SILVER BULLETS
</h3>
<p>Despite years of compounding crises, many countries are turning the tide with innovations that transform their predominant pattern of development. They are investing in energy transitions – many seeing the potential of green economies – but they need technology and finance to enable this policy choice. Rather than a trade-off, progress is dependent on responding to today’s pressures while making structural transformations through green and digital transitions.</p><br>
<p><span class="text-bold">Spotlight: Republic of Moldova 🇲🇩 </span><br>In Moldova, the national policy-making priority has been mitigating the economic and energy fallout of the war in Ukraine. Moldova’s integrated investments in digital transformation, including for social protection, ensured that short term energy subsidies reached the most vulnerable, and helped reduce the number of energy-poor households by threefold.</p><br>
<a class="button button-secondary button-external-link" role="button" href="https://sdgpush-insights.undp.org/reports/mda" target="_blank">
READ MORE
<span class="external-link-animated"><i></i></span>
</a>
</div>
<div class="small-12 medium-8 large-5 cell custom-right" style="text-align: center">
<lottie-player src="https://lottie.host/2003a6ac-dd47-412f-92fe-596556ed088d/BxMn22bNiF.json" style="padding: 5%" background="transparent" speed="1" loop autoplay></lottie-player>
</div>
</div>
<!--+++++++++++++++++++++++ GLOBAL INSIGHT 4 +++++++++++++++++-->
<div class=" grid-x grid-padding-x align-middle" style="padding: 60px 0px 50px 0px;">
<div class="small-12 medium-8 large-5 cell shrink" id="hope-animation">
<img src="assets/img/hope.svg" alt="">
</div>
<div class="small-12 medium-12 large-7 cell">
<h3 class="text-extrabold">HOPE MEANS: LEAVING NO ONE BEHIND</h3>
<p>Societies are heterogeneous, with individuals and groups having diverse needs and vulnerabilities. To ensure no one is left behind, development pathways must be equitable and inclusive. This includes inclusive, responsive and quality delivery of public goods and services that address geographic disparities and location-specific needs.</p><br>
<p><span class="text-bold">Spotlight: Indonesia 🇮🇩 </span><br>Indonesia’s SDG ambition centres on well-being. Through integrated investments across basic services in education, infrastructure, health coverage, and green transitions through energy efficiency, their focus on local action and SDG planning provides a robust foundation for SDG acceleration. </p><br>
<a class="button button-secondary button-external-link" role="button" href="https://sdgpush-insights.undp.org/reports/idn" target="_blank">
READ MORE
<span class="external-link-animated"><i></i></span>
</a>
</div>
</div>
<!--++++++++++++++++++++ [ END OF GLOBAL INSIGHT 4] ++++++++++++++++++++-->
</div>
</div>
</div>
<!--++++++++++++++++++++++++++++++++++++++++++++++[ ADMINISTRATOR- QUOTE ]++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
<style>
/* Default font size for desktop */
#quote {
font-size: 2.3rem;
font-weight: 700;
}
/* Media query for screens with a maximum width of 768px (typical for mobile devices) */
@media (max-width: 768px) {
#quote {
font-size: 1.8rem;
/* Adjust the font size for mobile */
}
}
</style>
<div id="admin-quote-sdgi" style="position: relative;">
<video autoplay muted playsinline loop style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;" poster="assets/img/quote-static.png">
<source src="assets/img/quote-bg.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div style="background-color: rgba(4, 104, 177, 0.1);">
<div class="grid-container padded">
<div class="grid-x grid-padding-x section align-center">
<div class="cell small-12 medium-12 large-7" style="text-align: center; color: white;">
<p id="quote">“Resilience, well-being and sustainability are the three vital ingredients for human development today. The SDGs are <i>the</i> catalyst for inclusive and low carbon growth”<br>
</p>
<p>
Achim Steiner, Administrator
</p>
</div>
</div>
</div>
</div>
</div>
<!--++++++++++++++++++++ [ END OF AS QUOTE ] ++++++++++++++++++++-->
<!--++++++++++++++++++++++++++++++++++++++++++++++[ Integration / Interlinkages]++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
<div class=" grid-container" style=" padding-top: 4rem;">
<div class="grid-x grid-padding-x section ">
<div class="cell small-12 medium-12 large-7">
<h2>Future-smart integration </h2>
<h3>SDG midpoint: how to generate momentum</h3>
<p>Understanding the interplay between the SDGs will identify policies and secure multiple, reinforcing wins at the same time. To succeed, we must also:</p>
</div>
<div class="grid-x grid-padding-x section">
<div class="small-12 medium-6 large-3 cell" style="text-align: center">
<lottie-player src="https://lottie.host/f1c81809-cf3d-4adc-9bc1-7319fb259805/xAKsNdaDyn.json" background="transparent" speed="1" style="width: 200px; height: 200px; margin: 0 auto; " loop autoplay></lottie-player>
<p style="text-align: center; padding: 0px 30px 0px 30px;">Invest in data for better decision-making </p>
</div>
<div class="small-12 medium-6 large-3 cell" style="text-align: center">
<lottie-player src="https://lottie.host/a73bd7ad-f2a5-49e0-8b40-d7e79807e918/tZnlMbTYgw.json" background="transparent" speed="1" style="width: 200px; height: 200px;margin: 0 auto; " loop autoplay></lottie-player>
<p style="text-align: center; padding: 0px 30px 0px 30px;">Pursue growth that meets people’s and planetary needs</p>
</div>
<div class="small-12 medium-6 large-3 cell" style="text-align: center">
<lottie-player src="https://lottie.host/720e6a92-9c51-47ae-8c62-e6d4b599d76f/QDQz1RbP79.json" background="transparent" speed="0.4" style="width: 200px; height: 200px; margin: 0 auto; " loop autoplay></lottie-player>
<p style="text-align: center; padding: 0px 30px 0px 30px;">Lead with ambition and anchor with evidence </p>
</div>
<div class="small-12 medium-6 large-3 cell" style="text-align: center">
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player src="https://lottie.host/37d41120-641c-430a-9bb0-b020d1315c90/ovh84rqKaq.json" background="transparent" speed="0.7" style="width: 200px; height: 200px; margin: 0 auto; " loop autoplay></lottie-player>
<p style="text-align: center; padding: 0px 30px 0px 30px;">Identify what needs to move faster and what has to stop </p>
</div>
</div>
<div class="cell small-12 medium-12 large-10">
<p>While regional and country context resulted in different variations, focusing on the <span class="text-bold">combination of three SDGs in particular yielded most positive gains for overall progress on the SDGs</span>. These interlinkages were economic growth (SDG 8), effective and accountable institutions (SDG 16) and sustainable cities (SDG 11). Here’s a closer look at the integrated pathways we identified:</p>
</div>
</div>
</div>
<div class="grid-container">
<div class="grid-x grid-padding-x" style="padding-top: 1rem;">
<div class="cell">
<div class="tabs inviewport" data-viewport="true">
<ul data-deep-link="true" data-tabs="true" id="tablist_1" role="tablist" style="margin-left: 0; margin-bottom: 4%">
<li class="tabs-title is-active">
<a href="#tab-1" id="tab-link-1" aria-selected="true">DECENT WORK FOR ALL</a>
</li>
<li class="tabs-title">
<a href="#tab-2" id="tab-link-2" aria-selected="false">IMPACTFUL INSTITUTIONS</a>
</li>
<li class="tabs-title">
<a href="#tab-3" id="tab-link-3" aria-selected="false">SUSTAINABLE CITIES</a>
</li>
<li class="tabs-title">
<a href="#tab-4" id="tab-link-4" aria-selected="false">RESILIENT INFRASTRUCTURE </a>
</li>
</ul>
<div class="tabs-content" data-tabs-content="tablist_1">
<!-- ++++++++++++++++++++++++++++++++++++ TAB 1 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
<div id="tab-1" class="tabs-panel is-active">
<div class="grid-x grid-padding-x section align-top">
<div class="cell small-12 medium-12 large-5" id="01-animationContainer">
<lottie-player data-tab-id="tab-1" id="lottie-tab-1" src="https://lottie.host/598eccd3-cff9-4788-8906-fa02a0a12ffa/XMPSgKHqo3.json" style="padding: 0 30px 10% 30px;" loop background="transparent" speed="0.8"></lottie-player>
</div>
<!-- Rest of Tab 1 content -->
<div class="cell small-12 medium-12 large-7">
<h3 class="text-extrabold" style="color: #A21942">DECENT WORK FOR ALL<span>
<h5 class="text-extrabold" style="color: black">WHAT DOES THIS TELL US?</h5>
</span></h3>
<p class="text-semibold">
Decent work drives inclusion and opportunity, especially for women and young people. </p>
<!--<style>
.checklist {
list-style-type: none;
padding-left: 0;
list-style: none;
}
.checklist li {
margin-bottom: 10px;
/* Abstand zwischen den Einträgen */
line-height: 1.5;
/* Zeilenabstand für bessere Lesbarkeit */
text-indent: -1.2em;
}
.checklist li::before {
content: "\2713";
/* Unicode für das Check-Symbol */
margin-right: 10px;
/* Abstand zwischen Check-Symbol und Text */
}
</style>-->
<!--<ul class="checklist">
<li>reducing poverty </li>
<li>increasing the number of people with relevant skills for financial success</li>
<li>ensuring full participation in leadership and decision-making</li>
<li>promoting universal social, economic, and pollical inclusion</li>
</ul>-->
<p>For low and lower-middle income countries, this builds resilient infrastructure and promotes inclusive industrialization. </p>
<hr style="border-top: 1px solid #A21942;">
<div style="column-count: 2; column-gap: 50px;">
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #E5243B;">■</span> TARGET 1.1</span>
<p>Eradicate extreme poverty for all people everywhere</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #C5192D;">■</span> TARGET 4.4</span>
<p>Increase the number of people with relevant skills for financial success</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #FF3A21;">■</span> TARGET 5.5</span>
<p>Ensure full participation in leadership and decision-making</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #DD1367;">■</span> TARGET 10.2</span>
<p>Promote universal social, economic and political inclusion</p>
</div>
</div>
</div>
</div>
</div>
<!-- ++++++++++++++++++++++++++++++++++++ TAB 2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<div id="tab-2" class="tabs-panel">
<div class="grid-x grid-padding-x section align-top">
<div id="02-animationContainer" class="cell small-12 medium-12 large-5">
<lottie-player data-tab-id="tab-2" id="lottie-tab-2" src="https://lottie.host/8b346750-c2e5-4890-9021-0d1563b53644/TrDhm7ef1K.json" style="padding: 0 30px 10% 30px;" loop background="transparent" speed="0.8"></lottie-player>
</div>
<!-- Rest of Tab 2 content -->
<div class="cell small-12 medium-12 large-7">
<h3 class="text-extrabold" style="color: #00689D">IMPACTFUL INSTITUTIONS
<span>
<h5 class="text-extrabold" style="color: black">WHAT DOES THIS TELL US?</h5>
</span>
</h3>
<p class="text-semibold">Effective institutions power better health and education outcomes, and fair economic growth. </p>
<!-- <p>
✓ Peace, justice and strong institutions pave the way for: </p>
<ul style="padding-top: 0; margin-top: -10px; margin-bottom: 0; margin-left: 50px;">
<li>
eradicating extreme poverty
</li>
<li>
achieving universal health coverage
</li>
<li>
free primary and secondary education
</li>
<li>
promoting universal social, economic and political inclusion
</li>
</ul>-->
<!--<ul class="checklist">
<li>For low and lower-middle income countries, SDG 16 often links closely to sustainable economic growth – promoting decent work and productive employment opportunities for all.</li>
</ul>-->
<p>For low and lower-middle income countries, SDG 16 often links closely to sustainable economic growth – promoting decent work and productive employment opportunities for all. </p>
<hr style=" border-top: 1px solid #00689D;">
<div style="column-count: 2; column-gap: 50px;">
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold" style="display: block;"><span style="color: #E5243B;">■</span> TARGET 1.1</span>
<p style="display: block;">Eradicate extreme poverty for all people everywhere</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold" style="display: block;"><span style="color: #2D9A47;">■</span> TARGET 3.8</span>
<p style="display: block;">Universal health coverage, including medicines and vaccines, for all</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold" style="display: block;"><span style="color: #C22033;">■</span> TARGET 4.1</span>
<p style="display: block;">Free quality primary and secondary education for all boys and girls </p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold" style="display: block;"><span style="color: #A21942;">■</span> TARGET 8.1</span>
<p style="display: block;">Sustain per capita economic growth</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold" style="display: block;"><span style="color: #E01A83;">■</span> TARGET 10.2</span>
<p style="display: block;">Social, economic and political inclusion for all</p>
</div>
</div>
</div>
</div>
</div>
<!-- ++++++++++++++++++++++++++++++++++++ TAB 3 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<div id="tab-3" class="tabs-panel">
<div class="grid-x grid-padding-x section align-top">
<div id="03-animationContainer" class="cell small-12 medium-12 large-5">
<lottie-player data-tab-id="tab-3" id="lottie-tab-3" src="https://lottie.host/0d0e7d9a-3552-4dd5-aa8f-2792b95174d2/xQViPr4DhZ.json" style="padding: 0 30px 10% 30px;" loop background="transparent" speed="0.8"></lottie-player>
</div>
<!-- Rest of Tab 3 content -->
<div class="cell small-12 medium-12 large-7">
<h3 class="text-extrabold" style="color: #FD9D24">SUSTAINABLE CITIES<span>
<h5 class="text-extrabold" style="color: black">WHAT DOES THIS TELL US?</h5>
</span></h3>
<p class="text-semibold">Sustainable cities lead SDG progress that is inclusive, green and leaves no one behind. </p>
<!--<ul class="checklist">
<li>Building resilience to environmental, economic, and social disasters</li>
<li>Achieving universal health coverage</li>
<li>Providing access to sanitation and hygiene</li>
<li>Developing sustainable, resilient, and inclusive infrastructures</li>
<li>Strengthening resilience and adaptive capacity to climate-related disasters</li>
</ul>-->
<p>Within the Africa and Latin America & Caribbean region, sustainable cities feature strongly as a catalyst for SDG progress. </p>
<hr style=" border-top: 1px solid #FD9D24;">
<div style="column-count: 2; column-gap: 50px;">
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #E5243B;">■</span> TARGET 1.5</span>
<p>Eradicate extreme poverty</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #2D9A47;">■</span> TARGET 3.8</span>
<p>Achieve universal health coverage</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #00ADD8;">■</span> TARGET 6.2</span>
<p>Access to sanitation and hygiene, especially for the most vulnerable</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #FD6925;">■</span> TARGET 9.1</span>
<p>Develop sustainable, resilient and inclusive infrastructures</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #3F7E44;">■</span> TARGET 13.1</span>
<p>Strengthen resilience to climate-related hazards and natural disasters </p>
</div>
</div>
</div>
</div>
</div>
<!-- ++++++++++++++++++++++++++++++++++++ TAB 4 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<div id="tab-4" class="tabs-panel">
<div class="grid-x grid-padding-x section align-top">
<div id="03-animationContainer" class="cell small-12 medium-12 large-5">
<lottie-player data-tab-id="tab-4" id="lottie-tab-4" src="https://lottie.host/95699943-b3e1-4466-9557-4cccedfdbd49/B7y0BHj0Wf.json" style="padding: 0 30px 10% 30px;" loop background="transparent" speed="0.8"></lottie-player>
</div>
<!-- Rest of Tab 3 content -->
<div class="cell small-12 medium-12 large-7">
<h3 class="text-extrabold" style="color: #FD6925">RESILIENT INFRASTRUCTURE<span>
<h5 class="text-extrabold" style="color: black">WHAT DOES THIS TELL US?</h5>
</span></h3>
<p class="text-semibold">Resilient infrastructure spurs innovation and technological advancements, for a green transition. </p>
<!--<ul class="checklist">
<li>job creation</li>
<li>innovation</li>
<li>technological advancements</li>
<li>advancing climate and agriculture productivity</li>
</ul>-->
<p>In Asia and the Pacific, infrastructure and urbanization have a clear impact on the drivers of multidimensional poverty, with clear links to climate and financing. </p>
<hr style=" border-top: 1px solid #FD6925;">
<div style="column-count: 2; column-gap: 50px;">
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #A21942;">■</span> TARGET 8.3</span>
<p>Promote policies to support job creation and growing enterprises</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #A21942;">■</span> TARGET 8.5</span>
<p>Full employment and decent work with equal pay</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #FD9D24;">■</span> TARGET 11.1</span>
<p>Safe and
affordable housing</p>
</div>
<div class="target" style="display: inline-block; width: 100%;">
<span class="text-extrabold"><span style="color: #3F7E44;">■</span> TARGET 13.1</span>
<p>Strengthen resilience and adaptive capacity to climate related disasters</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.4/lottie.min.js"></script>
<script>
// Wrap the code inside a DOMContentLoaded event listener
document.addEventListener('DOMContentLoaded', function() {
const lottieContainers = document.querySelectorAll('lottie-player');
const options = {
root: null, // Use the viewport as the root
rootMargin: "0px", // You can adjust this margin as needed
threshold: 0.5, // Adjust this threshold as needed
};
const observer = new IntersectionObserver((entries, observer) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
// Check if the animation is within an active tab
const tabId = entry.target.getAttribute('data-tab-id');
const tabButton = document.querySelector(`[href="#${tabId}"]`);
if (tabButton && tabButton.parentElement.classList.contains('is-active')) {
entry.target.play();
observer.unobserve(entry.target); // Stop observing once played
}
}
});
}, options);
lottieContainers.forEach((container) => {
observer.observe(container);
});
// Add your tab-switching code here (if not already present in your page)
});
</script>
<!--++++++++++++++++++++++++++++++++++++++++++++++[ CALL TO ACTION ]++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
<div class="grid-container">
<div class="grid-x grid-padding-x align-middle" style="padding: 0px 0px 100px 0px;">
<div class="small-12 medium-12 large-4 cell">
<h2>See how your country is doing</h2><br>
<a class="button button-secondary button-external-link" role="button" href="reports.html">
explore the reports
<span class="external-link-animated"><i></i></span>
</a>
</div>
<div class="small-12 medium-12 large-8 cell" >
<video loop muted autoplay playsinline style="width: 100%;" poster="assets/img/mockup-static.png">
<source src="assets/img/mockups.mp4" type="video/mp4">
Your browser does not support the HTML5 video element
</video>
</div>
</div>
</div>
<!-- **********SDG color strip START *********** -->
<div style="height: 25px; display: flex;">
<div style="flex: 1; background-color: #E5243B;"></div>
<div style="flex: 1; background-color: #DDA63A;"></div>
<div style="flex: 1; background-color: #4C9F38;"></div>
<div style="flex: 1; background-color: #C5192D;"></div>
<div style="flex: 1; background-color: #FF3A21;"></div>
<div style="flex: 1; background-color: #26BDE2;"></div>
<div style="flex: 1; background-color: #FCC30B;"></div>
<div style="flex: 1; background-color: #A21942;"></div>
<div style="flex: 1; background-color: #FD6925;"></div>
<div style="flex: 1; background-color: #DD1367;"></div>
<div style="flex: 1; background-color: #FD9D24;"></div>
<div style="flex: 1; background-color: #BF8B2E;"></div>
<div style="flex: 1; background-color: #3F7E44;"></div>
<div style="flex: 1; background-color: #0A97D9;"></div>
<div style="flex: 1; background-color: #56C02B;"></div>
<div style="flex: 1; background-color: #00689D;"></div>
<div style="flex: 1; background-color: #19486A;"></div>
</div>
<!-- **********SDG color strip END *********** -->
<!--++++++++++++++++++++++++++++++++++++++++++++++[ CLOSING SECTION ]++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
<div class="grid-y grid-frame align-center cover section-00-cover sdgi-hero" id="toc0" data-magellan-target="toc0">
<video loop muted autoplay playsinline poster="assets/img/fallback.png">
<source src="assets/img/footer.mp4" type="video/mp4">
Your browser does not support the HTML5 video element
</video>
<div class="cell" style="text-align: center">
<div class="grid-container">
<div class="grid-x padded">
<div class="small-12 medium-12 large-12 cell ">
<!--<div class="overline">Halfway to 2030:</div><br>-->
<h3><span class="text-extrabold">The insights are powerful.<br>
The goals are still achievable.</span></h3><br>
<h2>THE FUTURE IS HOPEFUL.</h2>
<h4>#FutureSmartUNDP</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
<!-- ++++++++++++++++++++++ FOOTER ++++++++++++++++++++++-->
<footer class="footer">
<div class="grid-x">
<div class="cell medium-10 medium-offset-1">
<div class="grid-x footer-top">
<div class="cell medium-5">
<div class="footer-logo">
<a href="https://www.undp.org">
<img src="assets/img/undp-logo-white.svg" alt="UNDP Logo" />
</a>
<h5 tabindex="0">
United Nations
<br />
Development Programme
</h5>
</div>
</div>
<div class="cell medium-5 show-large">
<ul class="footer-icons">
<li><a href="https://www.facebook.com/UNDP/" class="facebook" title="Facebook">facebook</a></li>
<li><a href="https://www.linkedin.com/company/undp/" class="linkedin" title="LinkedIn">linkedIn</a></li>
<li>
<a href="https://www.instagram.com/UNDP/" class="instagram" title="Instagram">instagram</a>
</li>
<li><a href="https://twitter.com/undp/" class="twitter" title="Twitter">twitter</a></li>
<li><a href="https://www.youtube.com/UNDP/" class="youtube" title="Youtube">youtube</a></li>
</ul>
</div>
</div>
<div class="grid-x footer-bottom">
<div class="cell medium-5">
<p tabindex="0">© 2023 United Nations Development Programme</p>
</div>
<div class="cell medium-6">
<ul class="footer-lists">
<li><a href="https://www.undp.org/accountability/audit/investigations">Report fraud, abuse, misconduct</a></li>
<li><a href="https://www.undp.org/accountability/audit/social-and-environmental-compliance-review-and-stakeholder-response-mechanism">Submit social or environmental complaint</a></li>
<li><a href="https://www.undp.org/scam-alert">Scam alert</a></li>
<li><a href="https://www.undp.org/copyright-terms-use">Terms of use</a></li>
</ul>
<div class="show-small">
<ul class="footer-icons">
<li>
<a href="#" class="facebook" title="Facebook">facebook</a>
</li>
<li>
<a href="#" class="linkedin" title="LinkedIn">linkedIn</a>
</li>
<li>
<a href="#" class="instagram" title="Instagram">instagram</a>
</li>
<li><a href="#" class="twitter" title="Twitter">twitter</a></li>
<li><a href="#" class="youtube" title="Youtube">youtube</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
<!-- SDGi UNGA 2023 -->
<script>
const countries = ["Kyrgyzstan", "Malawi", "Philippines", "Chile", "Sri Lanka", "Egypt", "everyone", "El Salvador", "Senegal", "Guinea-Bissau", "Bangladesh", "Timor Leste", "Guinea", "everyone", "South Africa", "Mauritius", "Zambia", "Chad", "Tajikistan", "Mozambique", "everyone", "Djibouti", "Indonesia", "Cuba", "Maldives", "Sierra Leone", "Botswana", "everyone", "Côte d'Ivoire", "Tunisia", "Bahrain", "Nigeria", "Angola", "Zimbabwe", "everyone", "Viet Nam", "Equatorial Guinea", "São Tomé and Príncipe", "Ethiopia", "Azerbaijan", "Kenya", "everyone", "Namibia", "Panama", "Mali", "Burundi", "Eswatini", "Mauritania", "everyone", "Benin", "Togo", "Gambia", "Bhutan", "Uruguay", "Cameroon", "everyone", "Kuwait", "North Macedonia", "Trinidad and Tobago", "Lesotho", "Rwanda", "Kazakhstan", "everyone", "Samoa", "Nepal", "Georgia", "Uzbekistan", "Costa Rica", "Central African Republic", "everyone", "Iran", "Serbia", "Dominican Republic", "Jordan", "Cabo Verde", "Türkiye", "Vanuatu", "everyone"];
const dynamicWordElement = document.getElementById("dynamic-word");
let currentCountryIndex = 0;
function isMobileDevice() {
return window.innerWidth < 768; // Adjust the threshold as needed