forked from backendforth/hero-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2477 lines (2326 loc) · 153 KB
/
Copy pathindex.html
File metadata and controls
2477 lines (2326 loc) · 153 KB
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
<html lang="de-DE">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="profile" href="https://gmpg.org/xfn/11">
<meta name="format-detection" content="telephone=no">
<link rel="preload" crossorigin="anonymous" href="https://www.siemens-stiftung.org/wp-content/themes/siemens-stiftung-theme/assets/fonts/siemensslab-roman-webfont.woff" as="font">
<link rel="preload" crossorigin="anonymous" href="https://www.siemens-stiftung.org/wp-content/themes/siemens-stiftung-theme/assets/fonts/siemensslab-bold-webfont.woff" as="font">
<link rel="preload" crossorigin="anonymous" href="https://www.siemens-stiftung.org/wp-content/themes/siemens-stiftung-theme/assets/fonts/siemenssans-roman-webfont.woff" as="font">
<link rel="preload" crossorigin="anonymous" href="https://www.siemens-stiftung.org/wp-content/themes/siemens-stiftung-theme/assets/fonts/siemenssans-bold-webfont.woff" as="font">
<div class="fit-vids-style" id="fit-vids-style" style="display: none;"><style>
.fluid-width-video-wrapper {
width: 100%;
position: relative;
padding: 0;
}
.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
</div>
<script async="" src="https://wstats.siemens-stiftung.org/js/container_BR48m57x.js"></script>
<script type="text/javascript" async="" src="https://wstats.siemens-stiftung.org/matomo.js"></script>
<script id="usercentrics-cmp" src="https://app.usercentrics.eu/browser-ui/latest/loader.js" data-settings-id="bfhYYO4qI" async="" data-avoid-prefetch-services=""></script>
<script type="text/javascript">
let _paq = window._paq = window._paq || [];
let sURL = null
if (window.location.href.indexOf("relaunch-qa") > -1) {
sURL = 3
} else {
sURL = 2
}
if ((document.cookie.indexOf('mtm_consent_removed') !== -1)) {
_paq.push(['optUserOut']);
}
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
let u = "https://wstats.siemens-stiftung.org/";
_paq.push(['setTrackerUrl', u + 'matomo.php']);
_paq.push(['setSiteId', sURL]);
let d = document,
g = d.createElement('script'),
s = d.getElementsByTagName('script')[0];
g.type = 'text/javascript';
g.async = true;
g.src = u + 'matomo.js';
s.parentNode.insertBefore(g, s);
})();
</script>
<script type="text/javascript">
let mtmURL = null
if (window.location.href.indexOf("relaunch-qa") > -1) {
mtmURL = 'https://wstats.siemens-stiftung.org/js/container_Kj60Iix0_staging_60af648e6a7b6146433fba23.js'
} else {
mtmURL = 'https://wstats.siemens-stiftung.org/js/container_BR48m57x.js'
}
let _mtm = window._mtm = window._mtm || [];
_mtm.push({
'mtm.startTime': (new Date().getTime()),
'event': 'mtm.Start'
});
try {
let d = document,
g = d.createElement('script'),
s = d.getElementsByTagName('script')[0];
g.async = true;
g.src = mtmURL;
s.parentNode.insertBefore(g, s);
} catch (e) {
console.error(e)
}
</script>
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<link rel="alternate" hreflang="de" href="https://www.siemens-stiftung.org">
<link rel="alternate" hreflang="en" href="https://www.siemens-stiftung.org/en/">
<!-- This site is optimized with the Yoast SEO plugin v18.0 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Webseite der internationalen Siemens Stiftung</title>
<meta name="description" content="Als gemeinnützige Stiftung setzen wir uns für nachhaltige gesellschaftliche Entwicklung ein – partnerschaftlich, international und wirkungsorientiert.">
<link rel="canonical" href="https://www.siemens-stiftung.org/">
<meta property="og:locale" content="de_DE">
<meta property="og:type" content="website">
<meta property="og:title" content="Webseite der internationalen Siemens Stiftung">
<meta property="og:description" content="Als gemeinnützige Stiftung setzen wir uns für nachhaltige gesellschaftliche Entwicklung ein – partnerschaftlich, international und wirkungsorientiert.">
<meta property="og:url" content="https://www.siemens-stiftung.org/en/">
<meta property="og:site_name" content="Siemens Stiftung">
<meta property="article:modified_time" content="2023-04-03T13:22:19+00:00">
<meta property="og:image" content="https://www.siemens-stiftung.org/wp-content/uploads/2022/01/stiftung-arbeitsgebiet-entwicklungskooperation-kachel-303x303.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:label1" content="Geschätzte Lesezeit">
<meta name="twitter:data1" content="4 Minuten">
<script type="application/ld+json" class="yoast-schema-graph">
{
"@context": "https://schema.org",
"@graph": [{
"@type": "WebSite",
"@id": "https://www.siemens-stiftung.org/#website",
"url": "https://www.siemens-stiftung.org/",
"name": "Siemens Stiftung",
"description": "There are many people around the world with the courage to try something new and turn ideas for a better future into reality. At Siemens Stiftung, we want to support them – as an impact-oriented international partner.",
"potentialAction": [{
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://www.siemens-stiftung.org/?s={search_term_string}"
},
"query-input": "required name=search_term_string"
}],
"inLanguage": "de-DE"
}, {
"@type": "ImageObject",
"@id": "https://www.siemens-stiftung.org/en/#primaryimage",
"inLanguage": "de-DE",
"url": "https://www.siemens-stiftung.org/wp-content/uploads/2022/01/stiftung-arbeitsgebiet-entwicklungskooperation-kachel.jpg",
"contentUrl": "https://www.siemens-stiftung.org/wp-content/uploads/2022/01/stiftung-arbeitsgebiet-entwicklungskooperation-kachel.jpg",
"width": 305,
"height": 305
}, {
"@type": "WebPage",
"@id": "https://www.siemens-stiftung.org/en/#webpage",
"url": "https://www.siemens-stiftung.org/en/",
"name": "Webseite der internationalen Siemens Stiftung",
"isPartOf": {
"@id": "https://www.siemens-stiftung.org/#website"
},
"primaryImageOfPage": {
"@id": "https://www.siemens-stiftung.org/en/#primaryimage"
},
"datePublished": "2018-07-10T12:53:55+00:00",
"dateModified": "2023-04-03T13:22:19+00:00",
"description": "Als gemeinnützige Stiftung setzen wir uns für nachhaltige gesellschaftliche Entwicklung ein – partnerschaftlich, international und wirkungsorientiert.",
"breadcrumb": {
"@id": "https://www.siemens-stiftung.org/en/#breadcrumb"
},
"inLanguage": "de-DE",
"potentialAction": [{
"@type": "ReadAction",
"target": ["https://www.siemens-stiftung.org/en/"]
}]
}, {
"@type": "BreadcrumbList",
"@id": "https://www.siemens-stiftung.org/en/#breadcrumb",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home"
}]
}]
}
</script>
<!-- / Yoast SEO plugin. -->
<link rel="alternate" type="application/rss+xml" title="Siemens Stiftung » Feed" href="https://www.siemens-stiftung.org/feed/">
<link rel="alternate" type="application/rss+xml" title="Siemens Stiftung » Kommentar-Feed" href="https://www.siemens-stiftung.org/comments/feed/">
<link rel="stylesheet" id="theme-style-css" href="https://www.siemens-stiftung.org/wp-content/themes/siemens-stiftung-theme/assets/css/styles.css?ver=1680562855" type="text/css" media="all">
<link rel="stylesheet" id="wp-block-library-css" href="https://www.siemens-stiftung.org/wp-includes/css/dist/block-library/style.min.css?ver=5.7" type="text/css" media="all">
<link rel="stylesheet" id="ctf_styles-css" href="https://www.siemens-stiftung.org/wp-content/plugins/custom-twitter-feeds/css/ctf-styles.min.css?ver=1.7" type="text/css" media="all">
<link rel="stylesheet" id="wpml-legacy-horizontal-list-0-css" href="//www.siemens-stiftung.org/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/legacy-list-horizontal/style.css?ver=1" type="text/css" media="all">
<link rel="stylesheet" id="wpml-legacy-horizontal-list-1-css" href="//www.siemens-stiftung.org/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/legacy-list-horizontal/style.min.css?ver=1" type="text/css" media="all">
<link rel="stylesheet" id="wp-pagenavi-css" href="https://www.siemens-stiftung.org/wp-content/plugins/wp-pagenavi/pagenavi-css.css?ver=2.70" type="text/css" media="all">
<link rel="stylesheet" id="search-filter-plugin-styles-css" href="https://www.siemens-stiftung.org/wp-content/plugins/search-filter-pro/public/assets/css/search-filter.min.css?ver=2.5.4" type="text/css" media="all">
<link rel="stylesheet" id="elementor-icons-css" href="https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.13.0" type="text/css" media="all">
<link rel="stylesheet" id="elementor-frontend-legacy-css" href="https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/css/frontend-legacy.min.css?ver=3.4.7" type="text/css" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.4.7" type="text/css" media="all">
<style id="elementor-frontend-inline-css" type="text/css">
@font-face {
font-family: eicons;
src: url(https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0);
src: url(https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0#iefix) format("embedded-opentype"), url(https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.10.0) format("woff2"), url(https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.10.0) format("woff"), url(https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.10.0) format("truetype"), url(https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.10.0#eicon) format("svg");
font-weight: 400;
font-style: normal
}
</style>
<link rel="stylesheet" id="elementor-post-46429-css" href="https://www.siemens-stiftung.org/wp-content/uploads/elementor/css/post-46429.css?ver=1679327832" type="text/css" media="all">
<link rel="stylesheet" id="elementor-pro-css" href="https://www.siemens-stiftung.org/wp-content/plugins/elementor-pro/assets/css/frontend.min.css?ver=3.5.0" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-5-all-css" href="https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.4.7" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-4-shim-css" href="https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.4.7" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-39-css" href="https://www.siemens-stiftung.org/wp-content/uploads/elementor/css/post-39.css?ver=1680528148" type="text/css" media="all">
<link rel="stylesheet" id="__EPYT__style-css" href="https://www.siemens-stiftung.org/wp-content/plugins/youtube-embed-plus/styles/ytprefs.min.css?ver=14.0.1.4" type="text/css" media="all">
<style id="__EPYT__style-inline-css" type="text/css">
.epyt-gallery-thumb {
width: 33.333%;
}
</style>
<link rel="stylesheet" id="ecs-styles-css" href="https://www.siemens-stiftung.org/wp-content/plugins/ele-custom-skin/assets/css/ecs-style.css?ver=3.1.7" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-202838-css" href="https://www.siemens-stiftung.org/wp-content/uploads/elementor/css/post-202838.css?ver=1681222686" type="text/css" media="all">
<script type="text/javascript" src="https://www.siemens-stiftung.org/wp-includes/js/jquery/jquery.min.js?ver=3.5.1" id="jquery-core-js"></script>
<script type="text/javascript" src="https://www.siemens-stiftung.org/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2" id="jquery-migrate-js"></script>
<script type="text/javascript" id="search-filter-plugin-build-js-extra">
/* <![CDATA[ */
var SF_LDATA = {
"ajax_url": "https:\/\/www.siemens-stiftung.org\/wp-admin\/admin-ajax.php",
"home_url": "https:\/\/www.siemens-stiftung.org\/",
"extensions": []
};
/* ]]> */
</script>
<script type="text/javascript" src="https://www.siemens-stiftung.org/wp-content/plugins/search-filter-pro/public/assets/js/search-filter-build.min.js?ver=2.5.4" id="search-filter-plugin-build-js"></script>
<script type="text/javascript" src="https://www.siemens-stiftung.org/wp-content/plugins/search-filter-pro/public/assets/js/chosen.jquery.min.js?ver=2.5.4" id="search-filter-plugin-chosen-js"></script>
<script type="text/javascript" src="https://www.siemens-stiftung.org/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.4.7" id="font-awesome-4-shim-js"></script>
<script type="text/javascript" id="ecs_ajax_load-js-extra">
/* <![CDATA[ */
var ecs_ajax_params = {
"ajaxurl": "https:\/\/www.siemens-stiftung.org\/wp-admin\/admin-ajax.php",
"posts": "{\"error\":\"\",\"m\":\"\",\"p\":\"39\",\"post_parent\":\"\",\"subpost\":\"\",\"subpost_id\":\"\",\"attachment\":\"\",\"attachment_id\":0,\"name\":\"\",\"pagename\":\"\",\"page_id\":\"39\",\"second\":\"\",\"minute\":\"\",\"hour\":\"\",\"day\":0,\"monthnum\":0,\"year\":0,\"w\":0,\"category_name\":\"\",\"tag\":\"\",\"cat\":\"\",\"tag_id\":\"\",\"author\":\"\",\"author_name\":\"\",\"feed\":\"\",\"tb\":\"\",\"paged\":0,\"meta_key\":\"\",\"meta_value\":\"\",\"preview\":\"\",\"s\":\"\",\"sentence\":\"\",\"title\":\"\",\"fields\":\"\",\"menu_order\":\"\",\"embed\":\"\",\"category__in\":[],\"category__not_in\":[],\"category__and\":[],\"post__in\":[],\"post__not_in\":[],\"post_name__in\":[],\"tag__in\":[],\"tag__not_in\":[],\"tag__and\":[],\"tag_slug__in\":[],\"tag_slug__and\":[],\"post_parent__in\":[],\"post_parent__not_in\":[],\"author__in\":[],\"author__not_in\":[],\"parsed_rml_folder\":0,\"ignore_sticky_posts\":false,\"suppress_filters\":false,\"cache_results\":false,\"update_post_term_cache\":true,\"lazy_load_term_meta\":true,\"update_post_meta_cache\":true,\"post_type\":\"\",\"posts_per_page\":10,\"nopaging\":false,\"comments_per_page\":\"50\",\"no_found_rows\":false,\"order\":\"DESC\",\"use_rml_folder\":false}"
};
/* ]]> */
</script>
<script type="text/javascript" src="https://www.siemens-stiftung.org/wp-content/plugins/ele-custom-skin/assets/js/ecs_ajax_pagination.js?ver=3.1.7" id="ecs_ajax_load-js"></script>
<script type="text/javascript" id="__ytprefs__-js-extra">
/* <![CDATA[ */
var _EPYT_ = {
"ajaxurl": "https:\/\/www.siemens-stiftung.org\/wp-admin\/admin-ajax.php",
"security": "81ec968ff9",
"gallery_scrolloffset": "20",
"eppathtoscripts": "https:\/\/www.siemens-stiftung.org\/wp-content\/plugins\/youtube-embed-plus\/scripts\/",
"eppath": "https:\/\/www.siemens-stiftung.org\/wp-content\/plugins\/youtube-embed-plus\/",
"epresponsiveselector": "[\"iframe.__youtube_prefs_widget__\"]",
"epdovol": "1",
"version": "14.0.1.4",
"evselector": "iframe.__youtube_prefs__[src], iframe[src*=\"youtube.com\/embed\/\"], iframe[src*=\"youtube-nocookie.com\/embed\/\"]",
"ajax_compat": "",
"ytapi_load": "light",
"pause_others": "",
"stopMobileBuffer": "1",
"vi_active": "",
"vi_js_posttypes": []
};
/* ]]> */
</script>
<script type="text/javascript" src="https://www.siemens-stiftung.org/wp-content/plugins/youtube-embed-plus/scripts/ytprefs.min.js?ver=14.0.1.4" id="__ytprefs__-js"></script>
<script type="text/javascript" src="https://www.siemens-stiftung.org/wp-content/plugins/ele-custom-skin/assets/js/ecs.js?ver=3.1.7" id="ecs-script-js"></script>
<link rel="https://api.w.org/" href="https://www.siemens-stiftung.org/wp-json/">
<link rel="alternate" type="application/json" href="https://www.siemens-stiftung.org/wp-json/wp/v2/pages/39">
<link rel="shortlink" href="https://www.siemens-stiftung.org/">
<link rel="alternate" type="application/json+oembed" href="https://www.siemens-stiftung.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.siemens-stiftung.org%2F">
<link rel="alternate" type="text/xml+oembed" href="https://www.siemens-stiftung.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.siemens-stiftung.org%2F&format=xml">
<meta name="generator" content="WPML ver:4.4.9 stt:1,3;">
<!-- Custom Twitter Feeds CSS -->
<style type="text/css">
.twitter__container .elementor-column-wrap,
.twitter__container .elementor-widget-wrap {
height: 100%;
}
.twitter__container .elementor-widget-wrap {
background-color: #d9d8ce;
}
.twitter__container .elementor-widget-wrap {
display: flex;
flex-direction: column;
}
.twitter__link {
margin-top: auto;
}
.twitter__wrapper {
max-height: 520px;
overflow: hidden;
padding: 5% 5% 0;
}
.twitter__wrapper::-webkit-scrollbar-track {
background-color: #d7d8ca;
}
.twitter__wrapper::-webkit-scrollbar {
width: 7px;
background-color: #d7d8ca;
}
.twitter__wrapper::-webkit-scrollbar-thumb {
background-color: #c2c2bb;
}
.twitter__wrapper #ctf .ctf-retweet-text {
display: none;
}
.twitter__wrapper #ctf .ctf-header {
border-bottom: none;
}
.twitter__wrapper #ctf .ctf-header-img {
display: none;
}
.twitter__wrapper #ctf .ctf-header-link,
.twitter__wrapper #ctf .ctf-header-user {
width: 100%;
}
.twitter__wrapper #ctf .ctf-header-text {
padding-top: 0;
}
.twitter__wrapper #ctf .ctf-header-follow {
float: right;
margin-top: 2px;
}
.twitter__wrapper #ctf .ctf-header-user {
margin-left: 0 !important;
min-height: auto;
}
.twitter__wrapper #ctf .ctf-context {
padding: 0;
}
.twitter__wrapper #ctf .ctf-context .ctf-retweet-icon {
position: absolute;
right: 3px;
top: 46px;
background: transparent;
color: #efefeb !important;
}
.twitter__wrapper #ctf .ctf-context .ctf-retweet-icon i {
font-size: 16px;
}
.twitter__wrapper #ctf .ctf-context .ctf-screenreader {
display: none;
}
.twitter__wrapper #ctf .ctf-item {
position: relative;
border-top: 1px solid #ebebe3;
}
.twitter__wrapper #ctf .ctf-author-avatar {
border-radius: 0 !important;
}
.twitter__wrapper #ctf .ctf-twitterlink {
position: absolute;
width: 30px;
height: 30px;
padding: 0;
right: 0;
top: 20px;
font-size: 0 !important;
opacity: 0.6;
}
.twitter__wrapper #ctf .ctf-twitterlink:after {
content: "";
background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="72" height="72" viewBox="0 0 72 72" fill="%23fff"%3E%3Cpath d="M67.812 16.141a26.246 26.246 0 0 1-7.519 2.06 13.134 13.134 0 0 0 5.756-7.244 26.127 26.127 0 0 1-8.313 3.176A13.075 13.075 0 0 0 48.182 10c-7.229 0-13.092 5.861-13.092 13.093 0 1.026.118 2.021.338 2.981-10.885-.548-20.528-5.757-26.987-13.679a13.048 13.048 0 0 0-1.771 6.581c0 4.542 2.312 8.551 5.824 10.898a13.048 13.048 0 0 1-5.93-1.638c-.002.055-.002.11-.002.162 0 6.345 4.513 11.638 10.504 12.84a13.177 13.177 0 0 1-3.449.457c-.846 0-1.667-.078-2.465-.231 1.667 5.2 6.499 8.986 12.23 9.09a26.276 26.276 0 0 1-16.26 5.606A26.21 26.21 0 0 1 4 55.976a37.036 37.036 0 0 0 20.067 5.882c24.083 0 37.251-19.949 37.251-37.249 0-.566-.014-1.134-.039-1.694a26.597 26.597 0 0 0 6.533-6.774z"%3E%3C/path%3E%3C/svg%3E');
width: 20px;
height: 20px;
position: absolute;
background-size: cover;
}
.twitter__wrapper #ctf .ctf-tweet-text {
font-size: 15px;
line-height: 1.5em;
overflow: hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: normal;
-webkit-line-clamp: 7;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.twitter__wrapper #ctf .ctf-tweet-text a {
font-weight: bold;
}
.twitter__wrapper #ctf .ctf-tweet-meta {
display: block;
margin-left: 20px;
}
.twitter__wrapper #ctf .ctf-author-name {
margin-top: 0;
}
.twitter__wrapper #ctf .ctf-author-avatar,
.twitter__wrapper #ctf .ctf-author-avatar img {
width: 47px;
height: 47px;
}
</style>
<!-- Stream WordPress user activity plugin v3.9.0 -->
<style type="text/css">
.pp-podcast {
opacity: 0;
}
</style>
<!-- All in one Favicon 4.7 -->
<link rel="icon" href="https://www.siemens-stiftung.org/wp-content/uploads/2020/03/cropped-Favicon512x512-303x303.png" type="image/png">
<link rel="apple-touch-icon" href="https://www.siemens-stiftung.org/wp-content/uploads/2020/03/cropped-Favicon512x512-303x303.png">
<link rel="icon" href="https://www.siemens-stiftung.org/wp-content/uploads/2020/03/cropped-Favicon512x512-303x303.png" sizes="32x32">
<link rel="icon" href="https://www.siemens-stiftung.org/wp-content/uploads/2020/03/cropped-Favicon512x512-303x303.png" sizes="192x192">
<link rel="apple-touch-icon" href="https://www.siemens-stiftung.org/wp-content/uploads/2020/03/cropped-Favicon512x512-303x303.png">
<meta name="msapplication-TileImage" content="https://www.siemens-stiftung.org/wp-content/uploads/2020/03/cropped-Favicon512x512-303x303.png">
<script type="module" src="https://app.usercentrics.eu/browser-ui/3.20.0/index.module.js"></script>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body class="home page-template-default page page-id-39 wp-custom-logo elementor-default elementor-kit-46429 elementor-page elementor-page-39 e--ua-blink e--ua-chrome e--ua-mac e--ua-webkit clickup-chrome-ext_installed" style="margin:0px;padding:0px;overflow-x:hidden;" data-elementor-device-mode="widescreen">
<div class="modal language">
<div class="container">
<div class="title">Sprache wechseln</div>
<button class="close-button">
<i class="icon-Mobile_Menu_Close"></i>
</button>
<div class="content">
<a href="https://www.siemens-stiftung.org">Deutsch</a>
<a href="https://www.siemens-stiftung.org/en/">English</a>
</div>
</div>
</div>
<div class="main-container full-picture-header">
<!-- -->
<div class="header">
<!--
SAMM Hero Slider Interview
-->
<div class="full-picture-carousel slick-initialized slick-slider">
<div id="samm-hero-slider-interview" class="hero-slider-interview">
<div class="pill-container">
<div class="pill active"></div>
<div class="pill"></div>
<div class="pill"></div>
<div class="pill"></div>
</div>
<!-- <button class="button-start-stop">start/stop</button> -->
<div class="slide slide-0 anim overflow-hidden prev transform-outer-end left-to-right">
<div class="flex h-100 w-100 anim transform-inner-end left-to-right">
<div class="big-slide hero-orange">
<div class="content flex flex-column justify-between">
<h2 class="title">
Unser Leitprinzip <br /> ist das <br />
<span class="bold">Gemeinsam</span><br />
</h2>
<h3 class="text">
Interview mit Dr. Nina Smidt <br /> und Klaus Grünfelder
</h3>
</div>
</div>
<div class="small-slide hero-img hero-yellow">
<img src="assets/images/ninaundklaus.jpg" alt="Nina und Klaus">
</div>
</div>
</div>
<div class="slide slide-1 anim overflow-hidden next transform-outer-start left-to-right">
<div class="flex anim h-100 w-100 transform-inner-start left-to-right">
<div class="big-slide hero-yellow">
<div class="content flex flex-column justify-between">
<div>
<h2 class="quote">
Wie stärken Menschen und Organisationen, die Veränderung bewegen.
</h2>
<h3 class="text">Dr. Nina Smidt</h3>
</div>
</div>
</div>
<div class="small-slide hero-img hero-blue">
<img src="assets/images/WetuFinalSeptember_Copyright_AnthonyOchieng-4(34).jpg" alt="WetuFinalSeptember_Copyright_AnthonyOchieng-4(34)">
</div>
</div>
</div>
<div class="slide slide-2 anim overflow-hidden other transform-outer-end right-to-left">
<div class="flex anim h-100 w-100 transform-inner-end right-to-left">
<div class="big-slide hero-blue">
<div class="content flex flex-column justify-between">
<h2 class="quote">
Es geht um gegenseitiges Lernen, Chancengerechtigkeit und soziale Teilhabe.
</h2>
<h3 class="text">Dr. Nina Smidt</h3>
</div>
</div>
<div class="small-slide hero-img hero-green">
<img src="assets/images/BLUETOWN_Tanzania6.jpg" alt="BLUETOWN_Tanzania6">
</div>
</div>
</div>
<div class="slide slide-3 anim overflow-hidden other other-lower transform-outer-end left-to-right">
<div class="flex h-100 w-100 anim transform-inner-end left-to-right">
<div class="big-slide hero-green">
<div class="content flex flex-column justify-between">
<div>
<h2 class="quote">
Nachhaltigkeit müssen wir alle ganzheitlich denken.
</h2>
<h3 class="text">Klaus Grünfelder</h3>
</div>
</div>
</div>
<div class="small-slide hero-img hero-orange">
<img src="assets/images/klima-nachhaltigkeit.jpg" alt="klima-nachhaltigkeit">
</div>
</div>
</div>
</div>
</div>
<!--
SAMM Hero Slider End
-->
<div class="logo">
<a href="https://www.siemens-stiftung.org">
<img src="/wp-content/themes/siemens-stiftung-theme/assets/images/logo.png" height="23">
</a>
</div>
<div class="drawer-buttons">
<button class="hamburger-button">
<i class="icon-Mobile_Menu_Burger"></i>
</button>
<button class="close-button">
<i class="icon-Mobile_Menu_Close"></i>
</button>
</div>
<div class="frame"></div>
<a href="https://www.siemens-stiftung.org/kontakt/" class="contact-link contact icon">
<i class="icon-Header_Mail"></i>
</a>
<a href="https://www.siemens-stiftung.org/kontakt/" class="contact-link contact text">
Kontakt </a>
<div class="contact-link language icon">
<i class="icon-Header_World"></i>
</div>
<div class="contact-link language text">
<!--span>Deutsch</span-->
<a class="active" href="https://www.siemens-stiftung.org">de</a>
<a class="" href="https://www.siemens-stiftung.org/en/">en</a>
</div>
<a href="https://www.linkedin.com/company/siemens-stiftung" target="_blank" class="contact-link linkedin icon">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://twitter.com/SiemensStiftung" target="_blank" class="contact-link twitter icon">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.youtube.com/user/SiemensStiftung1/" target="_blank" class="contact-link youtube icon">
<i class="fab fa-youtube"></i>
</a>
<div class="navigation nav1">
<a href="https://www.siemens-stiftung.org/stiftung/" class="has-subpages">Stiftung</a>
<i class="fas fa-chevron-right"></i>
<div class="link-list">
<div class="container">
<a href="/stiftung/">
<span>Stiftung</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/stiftung/arbeitsweise/">
<span>Arbeitsweise</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/stiftung/bildung/">
<span>Arbeitsgebiet Bildung</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/stiftung/sozialunternehmertum/">
<span>Arbeitsgebiet Sozialunternehmertum</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/stiftung/kunst-kultur/">
<span>Arbeitsgebiet Kunst & Kultur</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/stiftung/kooperationspartner/">
<span>Kooperationspartner</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/stiftung/finanzbericht/">
<span>Finanzbericht</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/stiftung/stifterin/">
<span>Stifterin</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/stiftung/team/">
<span>Team</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/stiftung/stiftungsrat/">
<span>Stiftungsrat</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/stiftung/stellenangebote/">
<span>Stellenangebote</span>
<i class="fas fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="navigation nav2">
<a href="https://www.siemens-stiftung.org/projekte/">Projekte</a>
<i class="fas fa-chevron-right"></i>
</div>
<div style="" class="navigation sub nav1"><a href="/stiftung/">Stiftung<i class="fas fas-m fa-chevron-right"></i></a><i class="fas fa-chevron-right"></i></div>
<div class="navigation nav3">
<a href="https://www.siemens-stiftung.org/medien/" class="has-subpages">Medien</a>
<i class="fas fa-chevron-right"></i>
<div class="link-list">
<div class="container">
<a href="https://www.siemens-stiftung.org/medien/newsletter/">
<span>Newsletter</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/medien/aktuelles/">
<span>Aktuelles</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/medien/publikationen/">
<span>Publikationen</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/medien/hintergrundberichte-und-interviews/">
<span>Hintergrundberichte & Interviews</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/medien/bilder/">
<span>Bilder</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/medien/presse/">
<span>Presse</span>
<i class="fas fa-chevron-right"></i>
</a>
<a href="https://www.siemens-stiftung.org/medien/podcast/">
<span>Podcast</span>
<i class="fas fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div ref="1" rel="1" style="display:none" class="navigation sub cc1 nav2">
<a href="https://www.siemens-stiftung.org/stiftung/arbeitsweise/">Arbeitsweise<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div style="" class="navigation sub nav1"><a href="/stiftung/">Stiftung<i class="fas fas-m fa-chevron-right"></i></a><i class="fas fa-chevron-right"></i></div>
<div ref="2" rel="2" style="display:none" class="navigation sub cc2 nav3">
<a href="https://www.siemens-stiftung.org/stiftung/bildung/">Arbeitsgebiet Bildung<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="3" rel="3" style="display:none" class="navigation sub cc3 nav4">
<a href="https://www.siemens-stiftung.org/stiftung/sozialunternehmertum/">Arbeitsgebiet Sozialunternehmertum<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="4" rel="4" style="display:none" class="navigation sub cc4 nav5">
<a href="https://www.siemens-stiftung.org/stiftung/kunst-kultur/">Arbeitsgebiet Kunst & Kultur<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="5" rel="5" style="display:none" class="navigation sub cc5 nav6">
<a href="https://www.siemens-stiftung.org/stiftung/kooperationspartner/">Kooperationspartner<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="6" rel="6" style="display:none" class="navigation sub cc6 nav7">
<a href="https://www.siemens-stiftung.org/stiftung/finanzbericht/">Finanzbericht<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="7" rel="7" style="display:none" class="navigation sub cc7 nav8">
<a href="https://www.siemens-stiftung.org/stiftung/stifterin/">Stifterin<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="8" rel="8" style="display:none" class="navigation sub cc8 nav9">
<a href="https://www.siemens-stiftung.org/stiftung/team/">Team<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="9" rel="9" style="display:none" class="navigation sub cc9 nav10">
<a href="https://www.siemens-stiftung.org/stiftung/stiftungsrat/">Stiftungsrat<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="10" rel="10" style="display:none" class="navigation sub cc10 nav11">
<a href="https://www.siemens-stiftung.org/stiftung/stellenangebote/">Stellenangebote<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div style="display: none;" class="navigation sub nav41"><a href="/medien/">Medien<i class="fas fas-m fa-chevron-right"></i></a><i class="fas fa-chevron-right"></i></div>
<div ref="41" rel="41" style="display:none" class="navigation sub cc41 nav42">
<a href="https://www.siemens-stiftung.org/medien/newsletter/">Newsletter<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="42" rel="42" style="display:none" class="navigation sub cc42 nav43">
<a href="https://www.siemens-stiftung.org/medien/aktuelles/">Aktuelles<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="43" rel="43" style="display:none" class="navigation sub cc43 nav44">
<a href="https://www.siemens-stiftung.org/medien/publikationen/">Publikationen<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="44" rel="44" style="display:none" class="navigation sub cc44 nav45">
<a href="https://www.siemens-stiftung.org/medien/hintergrundberichte-und-interviews/">Hintergrundberichte & Interviews<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="45" rel="45" style="display:none" class="navigation sub cc45 nav46">
<a href="https://www.siemens-stiftung.org/medien/bilder/">Bilder<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="46" rel="46" style="display:none" class="navigation sub cc46 nav47">
<a href="https://www.siemens-stiftung.org/medien/presse/">Presse<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div ref="47" rel="47" style="display:none" class="navigation sub cc47 nav48">
<a href="https://www.siemens-stiftung.org/medien/podcast/">Podcast<i class="fas fas-m fa-chevron-right"></i></a>
<i class="fas fa-chevron-right"></i>
</div>
<div class="search">
<form method="GET" action="https://www.siemens-stiftung.org">
<div class="field">
<input name="s" type="text" placeholder="Suche">
<i class="icon-Header_Search" style="cursor: pointer;" onclick="$(this).closest('form').submit();"></i>
</div>
</form>
</div>
</div>
<div class="after-header"></div>
<div class="breadcrumbs">
</div>
<div class="simple-content">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<article id="post-39" class="post-39 page type-page status-publish hentry">
<div class="entry-content">
<div data-elementor-type="wp-post" data-elementor-id="39" class="elementor elementor-39 elementor-37" data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section class="elementor-section elementor-top-section elementor-element elementor-element-2035962a siemens-section-background-color-accent-brand-platinum elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2035962a" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7115d744 siemens-foreground-color-black" data-id="7115d744" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-7d604802 siemens-foreground-color-black elementor-widget elementor-widget-heading" data-id="7d604802" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Gemeinsam für nachhaltige Entwicklung</h2>
</div>
</div>
<div class="elementor-element elementor-element-e70fc85 elementor-widget elementor-widget-spacer" data-id="e70fc85" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-50234c7b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="50234c7b" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-34ab7fdb siemens-foreground-color-black" data-id="34ab7fdb" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-4b340bb siemens-foreground-color-black elementor-widget elementor-widget-text-editor" data-id="4b340bb" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix">
<p>Weltweit haben Menschen den Mut, Neues zu wagen und Ideen für eine bessere Zukunft Wirklichkeit werden zu lassen. Sie wollen wir als gemeinnützige Siemens Stiftung unterstützen – partnerschaftlich, international und wirkungsorientiert.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-4ffdc9e5 siemens-foreground-color-black" data-id="4ffdc9e5" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5f8a214d elementor-align-right siemens-background-color-accent-brand-orange elementor-mobile-align-center siemens-foreground-color-black elementor-widget elementor-widget-button" data-id="5f8a214d" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="https://www.siemens-stiftung.org/stiftung/" class="elementor-button-link elementor-button elementor-size-sm" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Siemens Stiftung <br> im Überblick</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-d5e31c6 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d5e31c6" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-db7bed6 siemens-foreground-color-black" data-id="db7bed6" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-177a283 siemens-foreground-color-black elementor-widget elementor-widget-heading" data-id="177a283" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Unsere Arbeitsgebiete</h2>
</div>
</div>
<div class="elementor-element elementor-element-b405767 elementor-widget elementor-widget-spacer" data-id="b405767" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-41aa518 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="41aa518" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-7256e923 siemens-foreground-color-black" data-id="7256e923" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-4eb4dcc8 fokuskachel elementor-widget elementor-widget-image-overlay" data-id="4eb4dcc8" data-element_type="widget" data-widget_type="image-overlay.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<figure class="wp-caption">
<a href="https://www.siemens-stiftung.org/stiftung/sozialunternehmertum/" data-elementor-open-lightbox="">
<img src="https://www.siemens-stiftung.org/wp-content/uploads/elementor/thumbs/stiftung-arbeitsgebiet-entwicklungskooperation-kachel-pjkqimz9es5j75rycsmf3p87ttjuvs0f0cuj8p28t8.jpg" title="stiftung-arbeitsgebiet-entwicklungskooperation-kachel" alt="stiftung-arbeitsgebiet-entwicklungskooperation-kachel"> </a>
<a href="https://www.siemens-stiftung.org/stiftung/sozialunternehmertum/" data-elementor-open-lightbox="">
<figcaption class="widget-image-caption wp-caption-text overlay color-deepblue">Sozialunternehmertum</figcaption>
</a>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6fbf68e siemens-foreground-color-black" data-id="6fbf68e" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-3380a432 fokuskachel elementor-widget elementor-widget-image-overlay" data-id="3380a432" data-element_type="widget" data-widget_type="image-overlay.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<figure class="wp-caption">
<a href="https://www.siemens-stiftung.org/de/stiftung/bildung/" data-elementor-open-lightbox="">
<img width="305" height="305" src="https://www.siemens-stiftung.org/wp-content/uploads/2022/01/stiftung-arbeitsgebiet-bildung-kachel.jpg" class="attachment-full size-full" alt="" loading="lazy" srcset="https://www.siemens-stiftung.org/wp-content/uploads/2022/01/stiftung-arbeitsgebiet-bildung-kachel.jpg 305w, https://www.siemens-stiftung.org/wp-content/uploads/2022/01/stiftung-arbeitsgebiet-bildung-kachel-303x303.jpg 303w" sizes="(max-width: 305px) 100vw, 305px" title=""> </a>
<a href="https://www.siemens-stiftung.org/de/stiftung/bildung/" data-elementor-open-lightbox="">
<figcaption class="widget-image-caption wp-caption-text overlay color-brombeer">Bildung</figcaption>
</a>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-27da24a5 siemens-foreground-color-black" data-id="27da24a5" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5bdd242a fokuskachel elementor-widget elementor-widget-image-overlay" data-id="5bdd242a" data-element_type="widget" data-widget_type="image-overlay.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<figure class="wp-caption">
<a href="https://www.siemens-stiftung.org/de/stiftung/kultur/" data-elementor-open-lightbox="">
<img src="https://www.siemens-stiftung.org/wp-content/uploads/elementor/thumbs/stiftung-arbeitsgebiet-kultur-kachel-pjkqinx3lm6tirql7b11o6zof7f83h45chi0pz0un0.jpg" title="Kulturprojekt CHANGING PLACES / ESPACIOS REVELADOS. Künstler aus Chile und anderen Teilen der Welt verwandeln leerstehende Gebäude und öffentliche Plätze in Santiago de Chile in Orte der Begegnung.
Auf dem Bild ist die Installation einer Buchstabenreihe zu sehen, die an Eisenstangen aufgespannt ist und einen Satz ergibt." alt="Kulturprojekt CHANGING PLACES / ESPACIOS REVELADOS. Künstler aus Chile und anderen Teilen der Welt verwandeln leerstehende Gebäude und öffentliche Plätze in Santiago de Chile in Orte der Begegnung.
Auf dem Bild ist die Installation einer Buchstabenreihe zu sehen, die an Eisenstangen aufgespannt ist und einen Satz ergibt."> </a>
<a href="https://www.siemens-stiftung.org/de/stiftung/kultur/" data-elementor-open-lightbox="">
<figcaption class="widget-image-caption wp-caption-text overlay color-olive">Kunst & Kultur</figcaption>
</a>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-eb7609b elementor-widget elementor-widget-spacer" data-id="eb7609b" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-55fdbe1 siemens-foreground-color-black elementor-widget elementor-widget-heading" data-id="55fdbe1" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Projekte und Initiativen</h2>
</div>
</div>
<div class="elementor-element elementor-element-0714916 elementor-widget elementor-widget-spacer" data-id="0714916" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-73ef2f9 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="73ef2f9" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-20b5ae1 siemens-foreground-color-black" data-id="20b5ae1" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-fd7fbb5 siemens-foreground-color-black elementor-widget elementor-widget-text-editor" data-id="fd7fbb5" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix">
<p>Gemeinsam mit Kooperationspartner*innen konzipieren und realisieren wir lokale sowie internationale Projekte und unterstützen damit Menschen in Afrika, Lateinamerika und Europa.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-fddb724 siemens-foreground-color-black" data-id="fddb724" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-e6dca1c elementor-align-right siemens-background-color-accent-brand-orange elementor-mobile-align-center siemens-foreground-color-black elementor-widget elementor-widget-button" data-id="e6dca1c" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="https://www.siemens-stiftung.org/projekte/" class="elementor-button-link elementor-button elementor-size-sm" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Alle Projekte</span>
</span>