-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSahel.html
1586 lines (1338 loc) · 119 KB
/
Sahel.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 lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="./xmlrpc.php">
<title>concideas.com</title>
<meta name="robots" content="max-image-preview:large">
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="alternate" type="application/rss+xml" title="concideas.com » Feed" href="./feed/index.html">
<link rel="alternate" type="application/rss+xml" title="concideas.com » Comments Feed" href="./comments/feed/index.html">
<!-- This site uses the Google Analytics by MonsterInsights plugin v9.1.1 - Using Analytics tracking - https://www.monsterinsights.com/ -->
<!-- Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel. -->
<!-- No tracking code set -->
<!-- / Google Analytics by MonsterInsights -->
<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":".\/\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.6.2"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"🏳️⚧️","🏳️⚧️")?!1:!n(e,"🇺🇳","🇺🇳")&&!n(e,"🏴","🏴");case"emoji":return!n(e,"🐦⬛","🐦⬛")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
/* ]]> */
</script>
<link rel="stylesheet" id="twb-open-sans-css" href="https://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C500%2C600%2C700%2C800&display=swap&ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="twbbwg-global-css" href="./wp-content/plugins/photo-gallery/booster/assets/css/global.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="sby_styles-css" href="./wp-content/plugins/feeds-for-youtube/css/sb-youtube.min.css?ver=2.2.3" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-css" href="./wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css?ver=4.7.0" type="text/css" media="all">
<link rel="stylesheet" id="regular-css" href="./wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="owl-carousel-css" href="./wp-content/plugins/themesflat-addons-elementor/assets/css/owl.carousel.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="tf-style-css" href="./wp-content/plugins/themesflat-addons-elementor/assets/css/tf-style.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="bootstrap-css" href="./wp-content/themes/finance/css/bootstrap.css?ver=1" type="text/css" media="all">
<style id="wp-emoji-styles-inline-css" type="text/css">img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<style id="classic-theme-styles-inline-css" type="text/css">/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}</style>
<style id="global-styles-inline-css" type="text/css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}</style>
<link rel="stylesheet" id="bwg_fonts-css" href="./wp-content/plugins/photo-gallery/css/bwg-fonts/fonts.css?ver=0.0.1" type="text/css" media="all">
<link rel="stylesheet" id="sumoselect-css" href="./wp-content/plugins/photo-gallery/css/sumoselect.min.css?ver=3.4.6" type="text/css" media="all">
<link rel="stylesheet" id="mCustomScrollbar-css" href="./wp-content/plugins/photo-gallery/css/jquery.mCustomScrollbar.min.css?ver=3.1.5" type="text/css" media="all">
<link rel="stylesheet" id="bwg_googlefonts-css" href="https://fonts.googleapis.com/css?family=Ubuntu&subset=greek,latin,greek-ext,vietnamese,cyrillic-ext,latin-ext,cyrillic" type="text/css" media="all">
<link rel="stylesheet" id="bwg_frontend-css" href="./wp-content/plugins/photo-gallery/css/styles.min.css?ver=1.8.29" type="text/css" media="all">
<link rel="stylesheet" id="cute-alert-css" href="./wp-content/plugins/metform/public/assets/lib/cute-alert/style.css?ver=3.9.0" type="text/css" media="all">
<link rel="stylesheet" id="text-editor-style-css" href="./wp-content/plugins/metform/public/assets/css/text-editor.css?ver=3.9.0" type="text/css" media="all">
<link rel="stylesheet" id="parente2-style-css" href="./wp-content/themes/finance/style.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="childe2-style-css" href="./wp-content/themes/finance-child/style.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="themesflat-theme-slug-fonts-css" href="https://fonts.googleapis.com/css?family=Poppins%3A400%7CPoppins%3A600%7CPoppins%3A600" type="text/css" media="all">
<link rel="stylesheet" id="themesflat-main-css" href="./wp-content/themes/finance/css/main.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="themesflat-shortcodes-elementor-css" href="./wp-content/themes/finance/css/shortcodes-elementor.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="themesflat-style-css" href="./wp-content/themes/finance-child/style.css?ver=6.6.2" type="text/css" media="all">
<style id="themesflat-style-inline-css" type="text/css">.page-title { background-image: url(./wp-content/themes/finance/images/page-title.jpg) ; }
body,button,input,select,textarea { font-family:Poppins ; }
body,button,input,select,textarea { font-weight:400;}
body,button,input,select,textarea { font-style:normal; }
body,button,input,select,textarea { font-size:14px; }
body,button,input,select,textarea { line-height:24px !important; }
h1,h2,h3,h5,h6 { font-family:Poppins;}
h1,h2,h3,h4,h5,h6 { font-weight:600;}
h1,h2,h3,h4,h5,h6 { font-style:normal; }
#mainnav > ul > li > a { font-family:Poppins;}
#mainnav > ul > li > a { font-weight:600;}
#mainnav > ul > li > a { font-style:normal; }
#mainnav ul li a { font-size:14px;}
#mainnav ul li a { line_height92px;}
h1 { font-size:50px; }
h2 { font-size:30px; }
h3 { font-size:24px; }
h4 { font-size:20px; }
h5 { font-size:15px; }
h6 { font-size:13px; }
.page-title .page-title-heading h1, .breadcrumbs .trail-end, .breadcrumbs span { color:#2e363a; }
.breadcrumbs span a, .breadcrumbs a,.breadcrumbs span.sep { color:#ff0000; }
.page-title { Padding:25px 0; }
a:hover,.wrap-client-slide .owl-theme .owl-controls .owl-nav div.owl-prev:hover:before, .wrap-client-slide .owl-theme .owl-controls .owl-nav div.owl-next:hover:before,ul.flat-list li:before,.navigation.posts-navigation .nav-links li a .meta-nav,article h4.entry-time a,.author-post .info .name a,.flat-portfolio .portfolio-gallery .item .title-post a:hover,.flat-portfolio .portfolio-gallery .item .category-post a:hover,.footer-widgets ul li a:hover,.bottom #menu-bottom li a:hover,.flat-iconbox.flat-iconbox-style2:hover .box-icon span,.imagebox.style-2 .box-button a,.imagebox.style-2 .box-header .box-title a:hover,.imagebox.style-3 .box-header .box-title a:hover,.flat-iconbox.style-3 .box-header .box-icon span,.flat-iconbox.iconbox-style3 .box-header .box-icon,.testimonial-slider.style-2 .testimonial-author .author-info,.blog-shortcode.blog-home3 article .read-more a,.blog-shortcode.blog-home3 article .read-more a:after,.flat-text-block-timeline .year,.imagebox.services-grid .box-button a,.imagebox.services-grid .box-header .box-title a:hover,.flat-portfolio .item .title-post a:hover,.portfolio-filter li a:hover,.breadcrumbs span a:hover, .breadcrumbs a:hover, .flat-imagebox.style-2 .flat-imagebox-button a,.flat-imagebox.style-2 .flat-imagebox-header .flat-imagebox-title a:hover,.flat-iconbox.style-3 .flat-iconbox-header .flat-iconbox-icon span,.flat-iconbox.iconbox-style3 .flat-iconbox-header .flat-iconbox-icon, .flat-imagebox.services-grid .flat-imagebox-button a,article .entry-meta ul li a:hover,.breadcrumbs span a, .breadcrumbs a, .breadcrumbs span.sep, article .entry-title a:hover, .widget.widget_categories ul li a:hover { color:#ff2121;}
.title-section .title:after,.flat-iconbox.rounded .box-icon,.owl-theme .owl-controls .owl-nav [class*=owl-],.blog-shortcode article .featured-post:after,.blog-shortcode article:hover .entry-meta,.flat-iconbox.circle .box-icon,.flat-progress .progress-animate,.flat-button,.flat-team .box-readmore a,.portfolio-filter li.active a:after,.portfolio-filter li a:after,.flat-socials li a,.imagebox.style-2 .box-image:after,.title-section.style3 .title:after,.imagebox.style-3 .box-image:before,.imagebox.style-3 .box-image:after,.testimonial-slider.style-2.owl-theme.owl-theme .owl-controls .owl-nav [class*=owl-]:hover,.btn-cons a:hover,.testimonials-sidebar .owl-theme .owl-dots .owl-dot span:hover, .testimonials-sidebar .owl-theme .owl-dots .owl-dot.active span,.imagebox.services-grid .box-image:after,.blog-shortcode article .read-more a:hover,input[type='submit'],.flat-imagebox .flat-imagebox-button a,.flat-iconbox.rounded .flat-iconbox-icon,.flat-imagebox.style-2 .flat-imagebox-image:after,.flat-iconbox.circle .flat-iconbox-icon,.testimonial-slider.style-1 .testimonial-content:before,.flat-imagebox.style-3 .flat-imagebox-image:before,.flat-imagebox.style-3 .flat-imagebox-image:after,.flat-imagebox.services-grid .flat-imagebox-image:after,article .entry-content .more-link { background-color:#ff2121; }
.info-top-right a.appoinment,.imagebox .box-button a,.imagebox .box-header:before,.call-back-form .flat-button-form,.flat-before-footer .custom-info .icon,button, input[type='button'], input[type='reset'],.go-top:hover,.page-template-tpl .vc_toggle_active .vc_toggle_title,.wpb_gallery_slides .flex-direction-nav li a,.sidebar .widget.widget_nav_menu ul li:first-child a:before,.featured-post.blog-slider .flex-prev, .featured-post.blog-slider .flex-next,.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left.vc_tta-panel-title>a,#flat-portfolio-carousel ul.flex-direction-nav li a,.navigation.posts-navigation .nav-links li a:after,.title_related_portfolio:after,.navigation.paging-navigation a:hover,.widget .widget-title:after,.widget.widget_tag_cloud .tagcloud a,.navigation.paging-navigation .current,.widget.widget_categories ul li:first-child > a:before,.blog-single .entry-footer .tags-links a,.comment-reply-title:after, .comment-title:after,#mc4wp-form-1 input[type='submit'] {
background-color:#ff2121;
}
textarea:focus,
input[type='text']:focus,
input[type='password']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='time']:focus,
input[type='week']:focus,
input[type='number']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='color']:focus,.testimonial-slider.owl-theme .owl-dots .owl-dot.active span:before,.navigation.paging-navigation .current,.flat-iconbox.flat-iconbox-style2:hover .box-icon,.testimonial-slider.style-2.owl-theme.owl-theme .owl-controls .owl-nav [class*=owl-]:hover { border-color:#ff2121!important}
{
border-color:#ff2121!important;
}
.loading-effect-2 > span, .loading-effect-2 > span:before, .loading-effect-2 > span:after {border: 2px solid#ff2121;}
.loading-effect-2 > span { border-left-color: transparent !important;}
.imagebox .box-button a:hover,.navigation.paging-navigation a:hover {
color: #fff !important;
}
.info-top-right a.appoinment:hover,
.imagebox .box-button a:hover,.call-back-form .flat-button-form:hover,button:hover, input[type='reset']:hover,.wpb_gallery_slides .flex-direction-nav li a:hover,.featured-post.blog-slider .flex-prev:hover, .featured-post.blog-slider .flex-next:hover,.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left.vc_tta-panel-title>a:hover,#flat-portfolio-carousel ul.flex-direction-nav li a:hover,.navigation.posts-navigation .nav-links li:hover a:after,.widget.widget_tag_cloud .tagcloud a:hover,.blog-single .entry-footer .tags-links a:hover,#mc4wp-form-1 input[type='submit']:hover {
background-color: #2e363a !important;
}
.show-search a i:hover,article h4.entry-time a:hover,
.header-style2 .nav-wrap #mainnav > ul > li > a:hover,
.header-style3 .nav-wrap #mainnav > ul > li > a:hover {
color: #2e363a !important;
}
body { color:#666!important}
.flat-top { background-color:#7f7f7f !important; }
.flat-top,.info-top-right,.info-top-right a.appoinment { color:#ffffff!important ;}
.header.header-style1,.nav.header-style2,.wrap-header-style3 { background-color:#ffffff;}
#mainnav > ul > li > a { color:#424242;}
#mainnav > ul > li > a:hover,#mainnav > ul > li.current-menu-item > a { color:#ff2121 !important;}
#mainnav ul.sub-menu > li > a { color:#fff!important;}
#mainnav ul.sub-menu { background-color:#1d2738;}
#mainnav ul.sub-menu > li > a:hover { background-color:#ff0000!important;}
#mainnav ul.sub-menu > li { border-color:#2d374a!important;}
.footer { background-color:#2e363a!important;}
.footer a, .footer, .flat-before-footer .custom-info > div,.footer-widgets ul li a { color:#e5e5e5;}
.bottom { background-color:#2e363a!important;}
.bottom .copyright p,.bottom #menu-bottom li a { color:#e5e5e5;}</style>
<link rel="stylesheet" id="font-fontawesome-css" href="./wp-content/themes/finance/css/font-awesome.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="font-ionicons-css" href="./wp-content/themes/finance/css/ionicons.min.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="flexslider-css" href="./wp-content/themes/finance/css/flexslider.css?ver=6.6.2" type="text/css" media="all">
<!--[if lte IE 9]>
<link rel='stylesheet' id='ie9-css' href='.//wp-content/themes/finance/css/ie.css?ver=6.6.2' type='text/css' media='all' />
<![endif]-->
<link rel="stylesheet" id="animate-css" href="./wp-content/themes/finance/css/animate.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="responsive-css" href="./wp-content/themes/finance/css/responsive.css?ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="./wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.24.7" type="text/css" media="all">
<link rel="stylesheet" id="swiper-css" href="./wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5" type="text/css" media="all">
<link rel="stylesheet" id="e-swiper-css" href="./wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=3.24.7" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-6-css" href="./wp-content/uploads/elementor/css/post-6.css?ver=1729140395" type="text/css" media="all">
<link rel="stylesheet" id="sby-styles-css" href="./wp-content/plugins/feeds-for-youtube/css/sb-youtube-free.min.css?ver=2.2.3" type="text/css" media="all">
<link rel="stylesheet" id="widget-heading-css" href="./wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.24.7" type="text/css" media="all">
<link rel="stylesheet" id="widget-text-editor-css" href="./wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.24.7" type="text/css" media="all">
<link rel="stylesheet" id="widget-divider-css" href="./wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver=3.24.7" type="text/css" media="all">
<link rel="stylesheet" id="e-animation-fadeInUp-css" href="./wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css?ver=3.24.7" type="text/css" media="all">
<link rel="stylesheet" id="widget-image-css" href="./wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.24.7" type="text/css" media="all">
<link rel="stylesheet" id="widget-image-carousel-css" href="./wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css?ver=3.24.7" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-2085-css" href="./wp-content/uploads/elementor/css/post-2085.css?ver=1729140395" type="text/css" media="all">
<link rel="stylesheet" id="google-fonts-1-css" href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPoppins%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.6.2" type="text/css" media="all">
<link rel="stylesheet" id="elementor-icons-finance_ion_icons-css" href="./wp-content/themes/finance/css/ionicons.min.css?ver=1.0.0" type="text/css" media="all">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<script type="text/javascript" src="./wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
<script type="text/javascript" src="./wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script type="text/javascript" src="./wp-content/plugins/photo-gallery/booster/assets/js/circle-progress.js?ver=1.2.2" id="twbbwg-circle-js"></script>
<script type="text/javascript" id="twbbwg-global-js-extra">
/* <![CDATA[ */
var twb = {"nonce":"a069a7dced","ajax_url":".\/\/wp-admin\/admin-ajax.php","plugin_url":".\/\/wp-content\/plugins\/photo-gallery\/booster","href":".\/\/wp-admin\/admin.php?page=twbbwg_photo-gallery"};
var twb = {"nonce":"a069a7dced","ajax_url":".\/\/wp-admin\/admin-ajax.php","plugin_url":".\/\/wp-content\/plugins\/photo-gallery\/booster","href":".\/\/wp-admin\/admin.php?page=twbbwg_photo-gallery"};
/* ]]> */
</script>
<script type="text/javascript" src="./wp-content/plugins/photo-gallery/booster/assets/js/global.js?ver=1.0.0" id="twbbwg-global-js"></script>
<script type="text/javascript" src="./wp-content/plugins/photo-gallery/js/jquery.sumoselect.min.js?ver=3.4.6" id="sumoselect-js"></script>
<script type="text/javascript" src="./wp-content/plugins/photo-gallery/js/tocca.min.js?ver=2.0.9" id="bwg_mobile-js"></script>
<script type="text/javascript" src="./wp-content/plugins/photo-gallery/js/jquery.mCustomScrollbar.concat.min.js?ver=3.1.5" id="mCustomScrollbar-js"></script>
<script type="text/javascript" src="./wp-content/plugins/photo-gallery/js/jquery.fullscreen.min.js?ver=0.6.0" id="jquery-fullscreen-js"></script>
<script type="text/javascript" id="bwg_frontend-js-extra">
/* <![CDATA[ */
var bwg_objectsL10n = {"bwg_field_required":"field is required.","bwg_mail_validation":"This is not a valid email address.","bwg_search_result":"There are no images matching your search.","bwg_select_tag":"Select Tag","bwg_order_by":"Order By","bwg_search":"Search","bwg_show_ecommerce":"Show Ecommerce","bwg_hide_ecommerce":"Hide Ecommerce","bwg_show_comments":"Show Comments","bwg_hide_comments":"Hide Comments","bwg_restore":"Restore","bwg_maximize":"Maximise","bwg_fullscreen":"Fullscreen","bwg_exit_fullscreen":"Exit Fullscreen","bwg_search_tag":"SEARCH...","bwg_tag_no_match":"No tags found","bwg_all_tags_selected":"All tags selected","bwg_tags_selected":"tags selected","play":"Play","pause":"Pause","is_pro":"","bwg_play":"Play","bwg_pause":"Pause","bwg_hide_info":"Hide info","bwg_show_info":"Show info","bwg_hide_rating":"Hide rating","bwg_show_rating":"Show rating","ok":"Ok","cancel":"Cancel","select_all":"Select all","lazy_load":"0","lazy_loader":".\/\/wp-content\/plugins\/photo-gallery\/images\/ajax_loader.png","front_ajax":"0","bwg_tag_see_all":"see all tags","bwg_tag_see_less":"see less tags"};
/* ]]> */
</script>
<script type="text/javascript" src="./wp-content/plugins/photo-gallery/js/scripts.min.js?ver=1.8.29" id="bwg_frontend-js"></script>
<link rel="https://api.w.org/" href="./wp-json/index.html">
<link rel="alternate" title="JSON" type="application/json" href="./wp-json/wp/v2/pages/2085/index.html">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="./xmlrpc.php?rsd">
<meta name="generator" content="WordPress 6.6.2">
<link rel="canonical" href="./index.html">
<link rel="shortlink" href="./index.html">
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="./wp-json/oembed/1.0/embed/index.html?url=https%3A%2F%2F%2F">
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="./wp-json/oembed/1.0/embed/index.html?url=https%3A%2F%2F%2F#038;format=xml">
<meta name="generator" content="Elementor 3.24.7; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
<style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
@media screen and (max-height: 1024px) {
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
@media screen and (max-height: 640px) {
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}</style>
<meta name="generator" content="Powered by Slider Revolution 6.6.18 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface.">
<link rel="icon" href="./wp-content/uploads/2023/11/cropped-logo_test_Go-2-e1699357733444-32x32.png" sizes="32x32">
<link rel="icon" href="./wp-content/uploads/2023/11/cropped-logo_test_Go-2-e1699357733444-192x192.png" sizes="192x192">
<link rel="apple-touch-icon" href="./wp-content/uploads/2023/11/cropped-logo_test_Go-2-e1699357733444-180x180.png">
<meta name="msapplication-TileImage" content="./wp-content/uploads/2023/11/cropped-logo_test_Go-2-e1699357733444-270x270.png">
<script>function setREVStartSize(e){
//window.requestAnimationFrame(function() {
window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
try {
var pw = document.getElementById(e.c).parentNode.offsetWidth,
newh;
pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
if(e.layout==="fullscreen" || e.l==="fullscreen")
newh = Math.max(e.mh,window.RSIH);
else{
e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
var nl = new Array(e.rl.length),
ix = 0,
sl;
e.tabw = e.tabhide>=pw ? 0 : e.tabw;
e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
e.tabh = e.tabhide>=pw ? 0 : e.tabh;
e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
sl = nl[0];
for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
}
var el = document.getElementById(e.c);
if (el!==null && el) el.style.height = newh+"px";
el = document.getElementById(e.c+"_wrapper");
if (el!==null && el) {
el.style.height = newh+"px";
el.style.display = "block";
}
} catch(e){
console.log("Failure at Presize of Slider:" + e)
}
//});
};</script>
<style type="text/css" id="wp-custom-css">/** Start Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/
.envato-kit-138-bracket .elementor-widget-container > *:before{
content:"[";
color:#ffab00;
display:inline-block;
margin-right:4px;
line-height:1em;
position:relative;
top:-1px;
}
.envato-kit-138-bracket .elementor-widget-container > *:after{
content:"]";
color:#ffab00;
display:inline-block;
margin-left:4px;
line-height:1em;
position:relative;
top:-1px;
}
/** End Block Kit CSS: 141-3-1d55f1e76be9fb1a8d9de88accbe962f **/</style>
</head>
<body class="home page-template page-template-tpl page-template-elementor-front-page page-template-tplelementor-front-page-php page page-id-2085 has-topbar wide sidebar-right elementor-default elementor-kit-6 elementor-page elementor-page-2085">
<div class="themesflat-boxed">
<!-- Preloader -->
<div class="preloader">
<div class="clear-loading loading-effect-2">
<span></span>
</div>
</div>
<!-- Hero Slider 1 -->
<!-- Top -->
<div class="flat-top header-style1">
<div class="container">
<div class="row">
<div class="col-md-6">
</div>
<!-- /.col-md-7 -->
<div class="col-md-6 text-right">
<div class="info-top-right">
<a class="appoinment" href="#">LANGUAGE</a>
</div>
</div>
<!-- /.col-md-6 -->
</div>
<!-- /.container -->
</div>
<!-- /.container -->
</div>
<!-- /.top -->
<div class="flat_header_wrap header-style1" data-header_style="header-style1">
<!-- Header -->
<header id="header" class="header header-style1">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="header-wrap clearfix">
<div id="logo" class="logo" style="margin-top: 21px; margin-bottom: 21px;" data-width="175" data-height="50">
<a href="./index.html" title="concideas.com">
<img class="site-logo" src="./wp-content/uploads/2023/11/logo_test_Go-2-e1699357733444.png" alt="concideas.com" width="175" height="50" data-retina=".//wp-content/uploads/2023/11/logo_test_Go-1-e1699357490841.png" data-logo_site=".//wp-content/uploads/2023/11/logo_test_Go-2-e1699357733444.png" data-logo_sticky=".//wp-content/uploads/2023/11/logo_test_Go-1-e1699357619291.png" data-site_retina_logo_sticky=".//wp-content/uploads/2023/11/logo_test_Go-2.png" data-retina_base=".//wp-content/uploads/2023/11/logo_test_Go-1-e1699357490841.png">
</a>
</div>
<div class="show-search">
<a href="#"><i class="fa fa-search"></i></a>
</div>
<div class="nav-wrap">
<div class="btn-menu">
<span></span>
</div>
<!-- //mobile menu button -->
<nav id="mainnav" class="mainnav" role="navigation">
<ul id="menu-main" class="menu">
<li id="menu-item-2082" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-has-children menu-item-2082">
<a href="./index.html">WHO WE ARE</a>
<ul class="sub-menu">
<li id="menu-item-2135" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2135"><a href="./sahel/index.html">About Sahel+</a></li>
<li id="menu-item-2477" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2477"><a href="./people_structure/index.html">People and Structure</a></li>
</ul>
</li>
<li id="menu-item-2077" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2077">
<a href="#">HAPPENING NOW</a>
<ul class="sub-menu">
<li id="menu-item-1296" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1296"><a href="./blog-grid/index.html">News & Articles</a></li>
<li id="menu-item-2476" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2476"><a href="./trends_and_contents/index.html">Trends & Context</a></li>
<li id="menu-item-2473" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2473"><a href="https://www.ifrc.org/news-press-releases-speeches/all">Data</a></li>
<li id="menu-item-1334" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1334"><a href="./projects/index.html">Programs & Activities</a></li>
</ul>
</li>
<li id="menu-item-2065" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2065">
<a href="./resources/index.html">RESOURCES</a>
<ul class="sub-menu">
<li id="menu-item-2441" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2441"><a href="./research-0/index.html">Research</a></li>
<li id="menu-item-2483" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2483"><a href="https://www.ifrc.org/news-press-releases-speeches/all">Key Documents</a></li>
<li id="menu-item-2553" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2553"><a href="./gallery/index.html">GALLERY</a></li>
</ul>
</li>
<li id="menu-item-1710" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1710"><a href="./contact/index.html">Contact</a></li>
</ul> </nav><!-- #site-navigation -->
</div>
<!-- /.nav-wrap -->
</div>
<!-- /.header-wrap -->
<div class="submenu top-search widget_search">
<form role="search" method="get" class="search-form" action=".//">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s">
</label>
<input type="submit" class="search-submit" value="Search">
</form> </div>
</div>
<!-- /.col-md-12 -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</header><!-- /.header -->
</div>
<!-- Page Title -->
<div id="content" class="page-wrap sidebar-right">
<div class="container content-wrapper">
<div class="row row-wrapper">
<div id="primary" class="content-area-front-page">
<main id="main" class="site-main" role="main">
<div class="entry-content">
<div data-elementor-type="wp-page" data-elementor-id="2085" class="elementor elementor-2085">
<section class="elementor-section elementor-top-section elementor-element elementor-element-3b34786 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="3b34786" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d9e96f8" data-id="d9e96f8" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-a6bc61b elementor-widget elementor-widget-slider_revolution" data-id="a6bc61b" data-element_type="widget" data-widget_type="slider_revolution.default">
<div class="elementor-widget-container">
<div class="wp-block-themepunch-revslider">
<!-- START Home REVOLUTION SLIDER 6.6.18 --><p class="rs-p-wp-fix"></p>
<rs-module-wrap id="rev_slider_1_1_wrapper" data-source="gallery" style="visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;">
<rs-module id="rev_slider_1_1" style="" data-version="6.6.18">
<rs-slides style="overflow: hidden; position: absolute;">
<rs-slide style="position: absolute;" data-key="rs-1" data-title="Slide" data-thumb=".//wp-content/uploads/2020/11/PHOTO-2023-07-09-18-46-23_1-100x50.jpg" data-in="o:0;" data-out="a:false;">
<img fetchpriority="high" decoding="async" src="./wp-content/plugins/revslider/public/assets/assets/dummy.png" alt="" title="PHOTO-2023-07-09-18-46-23_1" width="1080" height="608" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload=".//wp-content/uploads/2020/11/PHOTO-2023-07-09-18-46-23_1.jpg" data-no-retina>
<!--
--><rs-layer id="slider-1-slide-1-layer-1" class="title-slide" data-type="text" data-color="rgba(255,255,255,1)" data-rsp_ch="on" data-xy="x:83px;y:b;yo:68px;" data-text="s:58;l:60;fw:600;" data-dim="w:729px;h:130px;" data-frame_0="y:-100%;o:1;" data-frame_0_mask="u:t;" data-frame_1="st:500;sp:900;sR:500;" data-frame_1_mask="u:t;" data-frame_999="o:0;e:nothing;st:w;sR:7600;" style="z-index:6;font-family:'Poppins';">Sahel Plus<br>
Resilience Platform <br>
</rs-layer><!--
--><rs-layer id="slider-1-slide-1-layer-2" class="content-slide" data-type="text" data-color="rgba(255,255,255,1)" data-tsh="c:rgba(12,12,12,0.77);h:10px;b:100px;" data-rsp_ch="on" data-xy="x:84px;y:629px;" data-text="l:30;" data-frame_0="y:-50px;" data-frame_1="e:power2.inOut;st:1000;sp:900;sR:1000;" data-frame_999="o:0;e:nothing;st:w;sR:7100;" style="z-index:8;font-family:'Poppins';">The Migration Technical Group brings together migration focal points and
businesses to find <br> migration coordinators of the Sahel+ Resilience Platform members.
</rs-layer><!--
--><rs-layer id="slider-1-slide-1-layer-3" class="button-slide rev-btn" data-type="button" data-color="rgba(255,255,255,1)" data-rsp_ch="on" data-xy="x:84px;y:447px;" data-text="s:14;l:20;fw:700;" data-dim="w:124px;" data-padding="t:14;r:26;b:14;l:26;" data-border="bor:3px,3px,3px,3px;" data-frame_0="x:-50px;" data-frame_1="st:1500;sp:900;sR:1500;" data-frame_999="o:0;e:nothing;st:w;sR:6600;" data-frame_hover="bgc:#18ba60;boc:#000;bor:3px,3px,3px,3px;bos:solid;oX:50;oY:50;sp:0;e:none;" style="z-index:7;background-color:#ff0000;font-family:'Poppins';cursor:pointer;outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;">SAHEL+
</rs-layer><!--
--> </rs-slide>
<rs-slide style="position: absolute;" data-key="rs-4" data-title="Slide" data-thumb=".//wp-content/uploads/2023/11/PHOTO-2023-07-09-18-15-12_1-100x50.jpg" data-in="o:0;" data-out="a:false;">
<img decoding="async" src="./wp-content/plugins/revslider/public/assets/assets/dummy.png" alt="" title="PHOTO-2023-07-09-18-15-12_1" width="1024" height="768" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload=".//wp-content/uploads/2023/11/PHOTO-2023-07-09-18-15-12_1.jpg" data-no-retina>
<!--
--><rs-layer id="slider-1-slide-4-layer-1" class="title-slide" data-type="text" data-color="rgba(255,255,255,1)" data-rsp_ch="on" data-xy="x:83px;y:b;yo:68px;" data-text="s:58;l:60;fw:600;" data-dim="w:729px;h:130px;" data-frame_0="y:-100%;o:1;" data-frame_0_mask="u:t;" data-frame_1="st:500;sp:900;sR:500;" data-frame_1_mask="u:t;" data-frame_999="o:0;e:nothing;st:w;sR:7600;" style="z-index:6;font-family:'Poppins';">Migration<br>
Technical working group
</rs-layer><!--
--><rs-layer id="slider-1-slide-4-layer-2" class="content-slide" data-type="text" data-color="rgba(255,255,255,1)" data-rsp_ch="on" data-xy="x:84px;y:629px;" data-text="l:30;" data-frame_0="y:-50px;" data-frame_1="e:power2.inOut;st:1000;sp:900;sR:1000;" data-frame_999="o:0;e:nothing;st:w;sR:7100;" style="z-index:8;font-family:'Poppins';">The Migration Technical Group brings together migration focal points and
businesses to find <br> migration coordinators of the Sahel+ Resilience Platform members.
</rs-layer><!--
--><rs-layer id="slider-1-slide-4-layer-3" class="button-slide rev-btn" data-type="button" data-color="rgba(255,255,255,1)" data-rsp_ch="on" data-xy="x:84px;y:447px;" data-text="s:14;l:20;fw:700;" data-dim="w:124px;" data-padding="t:14;r:26;b:14;l:26;" data-border="bor:3px,3px,3px,3px;" data-frame_0="x:-50px;" data-frame_1="st:1500;sp:900;sR:1500;" data-frame_999="o:0;e:nothing;st:w;sR:6600;" data-frame_hover="bgc:#18ba60;boc:#000;bor:3px,3px,3px,3px;bos:solid;oX:50;oY:50;sp:0;e:none;" style="z-index:7;background-color:#ff0000;font-family:'Poppins';cursor:pointer;outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;">SAHEL+
</rs-layer><!--
--> </rs-slide>
<rs-slide style="position: absolute;" data-key="rs-5" data-title="Slide" data-thumb=".//wp-content/uploads/2023/11/PHOTO-2023-07-09-18-15-08-100x50.jpg" data-in="o:0;" data-out="a:false;">
<img loading="lazy" decoding="async" src="./wp-content/plugins/revslider/public/assets/assets/dummy.png" alt="" title="PHOTO-2023-07-09-18-15-08" width="1024" height="768" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload=".//wp-content/uploads/2023/11/PHOTO-2023-07-09-18-15-08.jpg" data-no-retina>
<!--
--><rs-layer id="slider-1-slide-5-layer-1" class="title-slide" data-type="text" data-color="rgba(255,255,255,1)" data-tsh="h:20px;v:10px;b:100px;" data-rsp_ch="on" data-xy="x:83px;y:b;yo:68px;" data-text="s:58;l:60;fw:600;" data-dim="w:729px;h:130px;" data-frame_0="y:-100%;o:1;" data-frame_0_mask="u:t;" data-frame_1="st:500;sp:900;sR:500;" data-frame_1_mask="u:t;" data-frame_999="o:0;e:nothing;st:w;sR:7600;" style="z-index:6;font-family:'Poppins';">Migration<br>
Technical working group
</rs-layer><!--
--><rs-layer id="slider-1-slide-5-layer-2" class="content-slide" data-type="text" data-color="rgba(255,255,255,1)" data-tsh="c:#000000;h:10px;v:10px;b:100px;" data-rsp_ch="on" data-xy="x:84px;y:629px;" data-text="l:30;" data-frame_0="y:-50px;" data-frame_1="e:power2.inOut;st:1000;sp:900;sR:1000;" data-frame_999="o:0;e:nothing;st:w;sR:7100;" style="z-index:8;font-family:'Poppins';">The Migration Technical Group brings together migration focal points and
businesses to find <br> migration coordinators of the Sahel+ Resilience Platform members.
</rs-layer><!--
--><rs-layer id="slider-1-slide-5-layer-3" class="button-slide rev-btn" data-type="button" data-color="rgba(255,255,255,1)" data-rsp_ch="on" data-xy="x:84px;y:447px;" data-text="s:14;l:20;fw:700;" data-dim="w:124px;" data-padding="t:14;r:26;b:14;l:26;" data-border="bor:3px,3px,3px,3px;" data-frame_0="x:-50px;" data-frame_1="st:1500;sp:900;sR:1500;" data-frame_999="o:0;e:nothing;st:w;sR:6600;" data-frame_hover="bgc:#18ba60;boc:#000;bor:3px,3px,3px,3px;bos:solid;oX:50;oY:50;sp:0;e:none;" style="z-index:7;background-color:#ff0000;font-family:'Poppins';cursor:pointer;outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;">SAHEL+
</rs-layer><!--
--> </rs-slide>
</rs-slides>
</rs-module>
<script>setREVStartSize({c: 'rev_slider_1_1',rl:[1240,1024,778,480],el:[700],gw:[1170],gh:[700],type:'standard',justify:'',layout:'fullwidth',mh:"0"});if (window.RS_MODULES!==undefined && window.RS_MODULES.modules!==undefined && window.RS_MODULES.modules["revslider11"]!==undefined) {window.RS_MODULES.modules["revslider11"].once = false;window.revapi1 = undefined;if (window.RS_MODULES.checkMinimal!==undefined) window.RS_MODULES.checkMinimal()}</script>
</rs-module-wrap>
<!-- END REVOLUTION SLIDER -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-1f4cb249 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1f4cb249" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-59da0b2" data-id="59da0b2" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-4093a0da animated-slow elementor-section-full_width elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="4093a0da" data-element_type="section" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-4bf5a242" data-id="4bf5a242" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-4d6355a4 elementor-widget elementor-widget-heading" data-id="4d6355a4" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Background</h2> </div>
</div>
<div class="elementor-element elementor-element-3d3a6f3 elementor-widget elementor-widget-text-editor" data-id="3d3a6f3" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Sahel+ Group is a network of ten National Societies coordinating on matters of mutual interest. The network comprises the National Societies of Burkina Faso, Cabo Verde, Chad, the Gambia, Guinea- Bissau, Guinea Conakry, Mali, Mauritania, Niger, and Senegal, as well as the International Federation<br>of Red Cross and Red Crescent Societies (IFRC) and the International Committee of the Red Cross (ICRC) as observer members.<br>On yearly basis, the network comes together every year for the group’s General Assembly to elect new leadership, except for the post of Secretary, which is permanently devolved to the Presidency of the Senegalese Red Cross. It also elected a Youth Representative to make the voices of the young people and volunteers of the 10 NSs heard at the Red Cross and Red Crescent Pan African Conference and IFRC General Assembly Youth Forums.</p>
<p>Throughout the years, the Sahel+ group has established several initiatives on key issues of interest for the RC/RC Movement such as a Food security platform in 2016 and a Sahel+ Migration network in 2017, and it has acted as a key vehicle for discussing IFRC and ICRC led initiatives and joint<br>programming in the region and for members.</p> </div>
</div>
<div class="elementor-element elementor-element-1b8b3f5b elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="1b8b3f5b" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-de3d8a4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="de3d8a4" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-c588431 animated-fast elementor-invisible" data-id="c588431" data-element_type="column" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-057cbc3 elementor-widget elementor-widget-image" data-id="057cbc3" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="417" height="418" src="./wp-content/uploads/2023/11/resilience-platfom.png" class="attachment-medium_large size-medium_large wp-image-2128" alt="" srcset="./wp-content/uploads/2023/11/resilience-platfom.png 417w, ./wp-content/uploads/2023/11/resilience-platfom-300x300.png 300w, ./wp-content/uploads/2023/11/resilience-platfom-150x150.png 150w" sizes="(max-width: 417px) 100vw, 417px"> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-88760a9 animated-fast elementor-invisible" data-id="88760a9" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":450}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-fc301ee elementor-widget elementor-widget-text-editor" data-id="fc301ee" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>The 2019 Sahel+ General Assembly established a Resilience Platform, with 3 technical groups working on migration, food security and livelihoods, and shelter.</p>
<p>The Resilience Platform encompasses all 10 Sahel+ members, plus representatives from IFRC, ICRC, and interested Partner National Societies, as well as 3 RC/RC Movement’s reference centres: the <a href="https://www.livelihoodscentre.org/">Livelihoods Centre</a> , the <a href="https://www.climatecentre.org/">Climate Centre</a>, and the <a href="https://ccacr.org/">Centre for Cooperation with Africa</a>.</p>
<p>The Platform’s objective is to promote <b>coordination, partnership and cooperation</b> within the RC/RC Movement in the Sahel, as well as with external stakeholders.</p> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-21c5fb7a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="21c5fb7a" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-737dfe8c animated-fast elementor-invisible" data-id="737dfe8c" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":150}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b243da8 elementor-widget elementor-widget-tficonbox" data-id="b243da8" data-element_type="widget" data-widget_type="tficonbox.default">
<div class="elementor-widget-container">
<div class="flat-iconbox iconbox-style1 left rounded">
<div class="flat-iconbox-header">
<div class="flat-iconbox-icon"><i aria-hidden="true" class=" ion-arrow-graph-up-right"></i></div>
<h4 class="flat-iconbox-title">Support</h4>
</div>
<div class="flat-iconbox-content">
Support the advocacy initiatives of our member National Societies and allow them to speak with one voice with relevant regional and global interlocutors;
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1683abc7 animated-fast elementor-invisible" data-id="1683abc7" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":350}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b16d67a elementor-widget elementor-widget-tficonbox" data-id="b16d67a" data-element_type="widget" data-widget_type="tficonbox.default">
<div class="elementor-widget-container">
<div class="flat-iconbox iconbox-style1 left rounded">
<div class="flat-iconbox-header">
<div class="flat-iconbox-icon"><i aria-hidden="true" class=" ion-wand"></i></div>
<h4 class="flat-iconbox-title">Capacity Building</h4>
</div>
<div class="flat-iconbox-content">
Build the capacities of our members and of Migration Focal Points
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1ddbcc67 animated-fast elementor-invisible" data-id="1ddbcc67" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":300}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-aa15335 elementor-widget elementor-widget-tficonbox" data-id="aa15335" data-element_type="widget" data-widget_type="tficonbox.default">
<div class="elementor-widget-container">
<div class="flat-iconbox iconbox-style1 left rounded">
<div class="flat-iconbox-header">
<div class="flat-iconbox-icon"><i aria-hidden="true" class=" ion-android-alarm-clock"></i></div>
<h4 class="flat-iconbox-title">Research</h4>
</div>
<div class="flat-iconbox-content">
Support research activities, sharing of lessons learnt, and our members’ strategic vision on migration;
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-7b9e434e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7b9e434e" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-58511a42 animated-fast elementor-invisible" data-id="58511a42" data-element_type="column" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-3ce408e elementor-widget elementor-widget-tficonbox" data-id="3ce408e" data-element_type="widget" data-widget_type="tficonbox.default">
<div class="elementor-widget-container">
<div class="flat-iconbox iconbox-style1 left rounded">
<div class="flat-iconbox-header">
<div class="flat-iconbox-icon"><i aria-hidden="true" class=" ion-clipboard"></i></div>
<h4 class="flat-iconbox-title">Coordination</h4>
</div>
<div class="flat-iconbox-content">
Seek synergies and coordination among National Societies in different countries located on the same migration route or concerned with cross-border displacement
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-44886fda animated-fast elementor-invisible" data-id="44886fda" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":450}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-8abb874 elementor-widget elementor-widget-tficonbox" data-id="8abb874" data-element_type="widget" data-widget_type="tficonbox.default">
<div class="elementor-widget-container">
<div class="flat-iconbox iconbox-style1 left rounded">
<div class="flat-iconbox-header">
<div class="flat-iconbox-icon"><i aria-hidden="true" class=" ion-easel"></i></div>
<h4 class="flat-iconbox-title">Collaboration</h4>
</div>
<div class="flat-iconbox-content">
Provide a platform for information exchange, harmonisation of approaches, and for establishing and strengthening partnerships;
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-35976181 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="35976181" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1257c459" data-id="1257c459" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-a1b2b07 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="a1b2b07" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-11bfc9b" data-id="11bfc9b" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-73a0aca elementor-widget elementor-widget-tfimagebox-type2" data-id="73a0aca" data-element_type="widget" data-widget_type="tfimagebox-type2.default">
<div class="elementor-widget-container">
<div class="flat-imagebox style-1">
<div class="flat-imagebox-inner">
<div class="flat-imagebox-image"><img loading="lazy" decoding="async" width="2841" height="1631" src="./wp-content/uploads/2023/12/2-2.png" class="attachment-full size-full wp-image-2324" alt="" srcset="./wp-content/uploads/2023/12/2-2.png 2841w, ./wp-content/uploads/2023/12/2-2-300x172.png 300w, ./wp-content/uploads/2023/12/2-2-1024x588.png 1024w, ./wp-content/uploads/2023/12/2-2-768x441.png 768w, ./wp-content/uploads/2023/12/2-2-1536x882.png 1536w, ./wp-content/uploads/2023/12/2-2-2048x1176.png 2048w" sizes="(max-width: 2841px) 100vw, 2841px"></div>
<div class="flat-imagebox-header"><h4 class="flat-imagebox-title"><a href="./migration-2/index.html">MIGRATION</a></h4></div>
<div class="flat-imagebox-content">
<div class="flat-imagebox-desc">content coming soon...</div>
<div class="flat-imagebox-button"><a class="tf-button" href="./migration-2/index.html">Read More</a></div>
</div>
</div>
</div> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-37f83c1" data-id="37f83c1" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-ce58394 elementor-widget elementor-widget-tfimagebox-type2" data-id="ce58394" data-element_type="widget" data-widget_type="tfimagebox-type2.default">
<div class="elementor-widget-container">
<div class="flat-imagebox style-1">
<div class="flat-imagebox-inner">
<div class="flat-imagebox-image"><img loading="lazy" decoding="async" width="2841" height="1631" src="./wp-content/uploads/2023/12/1-1.png" class="attachment-full size-full wp-image-2325" alt="" srcset="./wp-content/uploads/2023/12/1-1.png 2841w, ./wp-content/uploads/2023/12/1-1-300x172.png 300w, ./wp-content/uploads/2023/12/1-1-1024x588.png 1024w, ./wp-content/uploads/2023/12/1-1-768x441.png 768w, ./wp-content/uploads/2023/12/1-1-1536x882.png 1536w, ./wp-content/uploads/2023/12/1-1-2048x1176.png 2048w" sizes="(max-width: 2841px) 100vw, 2841px"></div>
<div class="flat-imagebox-header"><h4 class="flat-imagebox-title"><a href="#">FOOD SECURITY & LIVELIHOOD</a></h4></div>
<div class="flat-imagebox-content">
<div class="flat-imagebox-desc">content coming soon...</div>
<div class="flat-imagebox-button"><a class="tf-button" href="#">Read More</a></div>
</div>
</div>
</div> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-61b127a" data-id="61b127a" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-6022c35 elementor-widget elementor-widget-tfimagebox-type2" data-id="6022c35" data-element_type="widget" data-widget_type="tfimagebox-type2.default">
<div class="elementor-widget-container">
<div class="flat-imagebox style-1">
<div class="flat-imagebox-inner">
<div class="flat-imagebox-image"><img loading="lazy" decoding="async" width="2841" height="1631" src="./wp-content/uploads/2023/12/3-1.png" class="attachment-full size-full wp-image-2323" alt="" srcset="./wp-content/uploads/2023/12/3-1.png 2841w, ./wp-content/uploads/2023/12/3-1-300x172.png 300w, ./wp-content/uploads/2023/12/3-1-1024x588.png 1024w, ./wp-content/uploads/2023/12/3-1-768x441.png 768w, ./wp-content/uploads/2023/12/3-1-1536x882.png 1536w, ./wp-content/uploads/2023/12/3-1-2048x1176.png 2048w" sizes="(max-width: 2841px) 100vw, 2841px"></div>
<div class="flat-imagebox-header"><h4 class="flat-imagebox-title"><a href="#">HEALTH</a></h4></div>
<div class="flat-imagebox-content">
<div class="flat-imagebox-desc">content coming soon...</div>
<div class="flat-imagebox-button"><a class="tf-button" href="#">Read More</a></div>
</div>
</div>
</div> </div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-4dbebb77 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4dbebb77" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2ae043a5" data-id="2ae043a5" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-17345f9a animated-slow elementor-section-full_width elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="17345f9a" data-element_type="section" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-4c676c0" data-id="4c676c0" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-19469e90 elementor-widget elementor-widget-heading" data-id="19469e90" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Our Projects</h2> </div>
</div>
<div class="elementor-element elementor-element-5247640 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="5247640" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-ddcd958 elementor-widget elementor-widget-tfposts" data-id="ddcd958" data-element_type="widget" data-widget_type="tfposts.default">
<div class="elementor-widget-container">
<div id="tf-posts-ddcd958" class="tf-posts-wrap column-1 tablet-column-1 mobile-column-1 has-carousel has-arrow no-bullets grid-styles-4 featured-post-top " data-tabid="ddcd958" data-loop="yes" data-auto="yes" data-column="4" data-column2="2" data-column3="1" data-spacer="0" data-prev_icon="fas fa-chevron-left" data-next_icon="fas fa-chevron-right" data-rtl="no">
<div class="tf-posts owl-carousel owl-theme grid">
<div class="column">
<div class="entry blog-post">
<div class="featured-post">
<img decoding="async" alt="image">
<a href="./portfolios/aaaa/index.html" class="overlay">
<i class="" aria-hidden="true"></i> </a>
</div>
<div class="content">
<h2 class="title"><a href="./portfolios/aaaa/index.html" title="aaaa">aaaa</a></h2>
<ul class="post-meta">
<li class="post-category">
</li>
</ul>
</div>
</div>
</div>
<div class="column">
<div class="entry blog-post">
<div class="featured-post">
<img decoding="async" src="./wp-content/uploads/2020/11/5.png" alt="image">
<a href="./portfolios/amira_2018-2021/index.html" class="overlay">
<i class="" aria-hidden="true"></i> </a>
</div>
<div class="content">
<h2 class="title"><a href="./portfolios/amira_2018-2021/index.html" title="AMiRA (2018-2021)">AMiRA (2018-2021)</a></h2>
<ul class="post-meta">
<li class="post-category">
<a href="./portfolios_category/advocacy/index.html" rel="tag">Advocacy</a> / <a href="./portfolios_category/research/index.html" rel="tag">Research</a>
</li>
</ul>
</div>
</div>
</div>
<div class="column">
<div class="entry blog-post">
<div class="featured-post">
<img decoding="async" src="./wp-content/uploads/2020/11/PHOTO-2023-07-09-18-46-16.jpg" alt="image">
<a href="./portfolios/the_integration_of_migrants_in_disaster_response/index.html" class="overlay">
<i class="" aria-hidden="true"></i> </a>
</div>
<div class="content">
<h2 class="title"><a href="./portfolios/the_integration_of_migrants_in_disaster_response/index.html" title="The integration of migrants in disaster response.">The integration of migrants in disaster response.</a></h2>
<ul class="post-meta">
<li class="post-category">
<a href="./portfolios_category/international/index.html" rel="tag">International</a> / <a href="./portfolios_category/services/index.html" rel="tag">Services</a>
</li>
</ul>
</div>
</div>
</div>
<div class="column">
<div class="entry blog-post">
<div class="featured-post">
<img decoding="async" src="./wp-content/uploads/2020/11/8.png" alt="image">
<a href="./portfolios/mo-insurance/index.html" class="overlay">
<i class="" aria-hidden="true"></i> </a>
</div>
<div class="content">
<h2 class="title"><a href="./portfolios/mo-insurance/index.html" title="Assisting and protecting the most vulnerable migrants in West Africa (2020-2023).">Assisting and protecting the most vulnerable migrants in West Africa (2020-2023).</a></h2>
<ul class="post-meta">
<li class="post-category">
<a href="./portfolios_category/capacity_building/index.html" rel="tag">Capacity Building</a> / <a href="./portfolios_category/international/index.html" rel="tag">International</a>
</li>
</ul>
</div>
</div>
</div>
<div class="column">
<div class="entry blog-post">
<div class="featured-post">
<img decoding="async" src="./wp-content/uploads/2020/11/7.png" alt="image">
<a href="./portfolios/financial-report/index.html" class="overlay">
<i class="" aria-hidden="true"></i> </a>
</div>
<div class="content">
<h2 class="title"><a href="./portfolios/financial-report/index.html" title="Assisting and protecting transit migrants and returnees in Niger">Assisting and protecting transit migrants and returnees in Niger</a></h2>
<ul class="post-meta">
<li class="post-category">
<a href="./portfolios_category/collaboration/index.html" rel="tag">Collaboration</a> / <a href="./portfolios_category/international/index.html" rel="tag">International</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-4411a09 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4411a09" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-75a3d342" data-id="75a3d342" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-124e779f animated-slow elementor-section-full_width elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="124e779f" data-element_type="section" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-71efa83d" data-id="71efa83d" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-146fba1a elementor-widget elementor-widget-heading" data-id="146fba1a" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Latest news</h2> </div>
</div>
<div class="elementor-element elementor-element-fbeb8f3 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="fbeb8f3" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-5563d0c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5563d0c" data-element_type="section">
<div class="elementor-container elementor-column-gap-narrow">
<div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-a2656d6" data-id="a2656d6" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-a5db94a elementor-widget elementor-widget-tfposts" data-id="a5db94a" data-element_type="widget" data-widget_type="tfposts.default">
<div class="elementor-widget-container">
<div id="tf-posts-a5db94a" class="tf-posts-wrap column-2 tablet-column-1 mobile-column-1 no-arrow no-bullets featured-post-top " data-tabid="a5db94a" data-loop="" data-auto="" data-column="" data-column2="" data-column3="" data-spacer="" data-prev_icon="" data-next_icon="" data-rtl="no">
<div class="tf-posts masonry">
<div class="grid-sizer"></div>
<div class="column">
<div class="entry blog-post">
<div class="featured-post">
<img decoding="async" src="./wp-content/uploads/2020/11/6.png" alt="image">
<a href="./what-the-martian-can-teach-sales/index.html" class="overlay">
<i class="fas fa-plus" aria-hidden="true"></i> </a>
</div>
<div class="box-time">
<a href="./2020/09/12/index.html">
<span class="day">12</span>
<span class="month">Sep</span>
</a>
</div>
<div class="content">
<h2 class="title"><a href="./what-the-martian-can-teach-sales/index.html" title="What is Migration">What is Migration</a></h2>
<ul class="post-meta">
<li class="post-date">
<a href="./2020/09/12/index.html">12 September 2020</a>
</li>
</ul>
<div class="content-post">Migration is a phenomenon that has been a fundamental part of human history since the…</div>
</div>
</div>
</div>
<div class="column">
<div class="entry blog-post">
<div class="featured-post">
<img decoding="async" src="./wp-content/uploads/2023/11/PHOTO-2023-07-09-18-15-16.jpg" alt="image">
<a href="./6-tips-to-retain-your-top-sales-talent/index.html" class="overlay">
<i class="fas fa-plus" aria-hidden="true"></i> </a>
</div>
<div class="box-time">
<a href="./2020/09/12/index.html">
<span class="day">12</span>
<span class="month">Sep</span>
</a>
</div>
<div class="content">
<h2 class="title"><a href="./6-tips-to-retain-your-top-sales-talent/index.html" title="Commitment to Humanity">Commitment to Humanity</a></h2>
<ul class="post-meta">
<li class="post-date">
<a href="./2020/09/12/index.html">12 September 2020</a>
</li>
</ul>
<div class="content-post">Migration is a testament to human resilience and the pursuit of stability and safety. In…</div>