-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1122 lines (1060 loc) · 46.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html dir="ltr" lang="en" class=" home_page home_page_design s_layout1 isFreePackage ">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<link rel="dns-prefetch preconnect" href="https://cdn-cms-s.f-static.net" crossorigin="anonymous" />
<link rel="dns-prefetch preconnect" href="https://cdn-cms-s.f-static.net" crossorigin="anonymous" />
<link rel="dns-prefetch preconnect" href="https://cdn-cms.f-static.net" crossorigin="anonymous" />
<link rel="dns-prefetch preconnect" href="https://fonts.googleapis.com" crossorigin="anonymous" />
<link rel="dns-prefetch preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous" />
<link rel="dns-prefetch preconnect" href="https://cdn-cms-s.f-static.net" crossorigin="anonymous" />
<link rel="dns-prefetch preconnect" href="https://cdn-cms.f-static.net" crossorigin="anonymous" />
<link rel="preload" href="https://cdn-cms.f-static.net/uploads/4339464/2000_5f8565847c876.jpg" as="image">
<link rel="preload" href="//cdn-cms-s.f-static.net/files/font-awesome-4.7/fonts/fontawesome-webfont.woff2?v=4.7.0"
as="font" type="font/woff2" crossorigin> <!-- Favicon -->
<link rel="shortcut icon"
href="//cdn-cms-s.f-static.net/manager/site123_website/files/logos/brand_files_2020/Icons/Png/Icon_blue.png?v=r6915"
type="image/x-icon">
<link href="style.css 1" rel="stylesheet" type="text/css">
<link href="styles.css" rel="stylesheet" type="text/css">
<link rel="icon"
href="//cdn-cms-s.f-static.net/manager/site123_website/files/logos/brand_files_2020/Icons/Png/Icon_blue.png?v=r6915"
type="image/x-icon">
<link rel="manifest"
href="//cdn-cms-s.f-static.net/versions/2/css/manifest.json?w=&orderScreen=&websiteID=4339464&onlyContent=&tranW=&v=r6915_22012069&wd=5f7f489e8b7a1.site123.me">
<!-- Status Bar -->
<!-- 152px icon -->
<link rel="apple-touch-icon" sizes="152x152"
href="//cdn-cms-s.f-static.net/ready_uploads/pwaScreenLogo/pwaImage.png?width=152&height=152&resizeType=pwaIcon&w=&orderScreen=&websiteID=4339464&tranW=&v=r6915_22012069">
<!-- 180px icon -->
<link rel="apple-touch-icon" sizes="180x180"
href="//cdn-cms-s.f-static.net/ready_uploads/pwaScreenLogo/pwaImage.png?width=180&height=180&resizeType=pwaIcon&w=&orderScreen=&websiteID=4339464&tranW=&v=r6915_22012069">
<!-- 167px icon -->
<link rel="apple-touch-icon" sizes="167x167"
href="//cdn-cms-s.f-static.net/ready_uploads/pwaScreenLogo/pwaImage.png?width=167&height=167&resizeType=pwaIcon&w=&orderScreen=&websiteID=4339464&tranW=&v=r6915_22012069">
<!-- Mobile Browser Address Bar Color -->
<meta name="theme-color" content="#0319c1"> <!-- Regular Meta Info -->
<title class="s123-js-pjax"> - Share the love</title>
<meta name="description" content=" - Share the love" class="s123-js-pjax">
<meta name="keywords" content="" class="s123-js-pjax">
<link rel="canonical" href="https://5f7f489e8b7a1.site123.me/" class="s123-js-pjax" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<link
href="//fonts.googleapis.com/css?family=Poppins:400italic,700italic,400,700|Open+Sans:400italic,700italic,400,700&display=swap"
rel="stylesheet" type="text/css"> <!-- Facebook Meta Info -->
<meta property="og:url" content="https://5f7f489e8b7a1.site123.me/" class="s123-js-pjax">
<meta property="og:image"
content="https://cdn-cms.f-static.net/uploads/4339464/800_crop_5f85b2b40e551_5f85b1bcd31df.jpg"
class="s123-js-pjax">
<meta property="og:description" content=" - Share the love" class="s123-js-pjax">
<meta property="og:title" content=" - Share the love" class="s123-js-pjax">
<meta property="og:site_name" content="" class="s123-js-pjax">
<meta property="og:see_also" content="https://5f7f489e8b7a1.site123.me" class="s123-js-pjax">
<!-- Google+ Meta Info -->
<meta itemprop="name" content=" - Share the love" class="s123-js-pjax">
<meta itemprop="description" content=" - Share the love" class="s123-js-pjax">
<meta itemprop="image"
content="https://cdn-cms.f-static.net/uploads/4339464/800_crop_5f85b2b40e551_5f85b1bcd31df.jpg"
class="s123-js-pjax"> <!-- Twitter Meta Info -->
<meta name="twitter:card" content="summary" class="s123-js-pjax">
<meta name="twitter:url" content="https://5f7f489e8b7a1.site123.me/" class="s123-js-pjax">
<meta name="twitter:title" content=" - Share the love" class="s123-js-pjax">
<meta name="twitter:description" content=" - Share the love" class="s123-js-pjax">
<meta name="twitter:image"
content="https://cdn-cms.f-static.net/uploads/4339464/800_crop_5f85b2b40e551_5f85b1bcd31df.jpg"
class="s123-js-pjax">
<!-- Website CSS variables -->
<!-- Minimize CSS files -->
<link rel="stylesheet" href="//cdn-cms-s.f-static.net/versions/2/css/minimize_main.css?v=r6915" type="text/css"
crossorigin="anonymous">
<link rel="stylesheet"
href="//cdn-cms-s.f-static.net/versions/2/css/websiteCSS.css?w=&orderScreen=&websiteID=4339464&onlyContent=&tranW=&v=r6915_22012069"
class="reloadable-css" type="text/css"> <!-- Froala Editor CSS -->
<!-- Google AdSense -->
</head>
<style>
:root {
--global_main_color: #0319c1;
--home_text_color: #ffffff;
--home_third_background_color: #909078;
--home_custom_image_size: px;
--home_text_size_px: 60px;
--home_text_size_2_px: 45px;
--slogan_text_size_px: 18px;
--home_text_size: 60;
--home_text_size_2: 45;
--slogan_text_size: 18;
--home_text_size_px_media: 60px;
--home_text_size_2_px_media: 45px;
--slogan_text_size_px_media: 18px;
--layout_text_align: center;
--layout_text_align_rtl: center;
--layout_text_box_width: 100%;
--layout_left_side_width: 50%;
--layout_left_side_width_vh: 50vh;
--homepage_layout_height: 100%;
--homepage_layout_height_vh: 100vh;
--homepage_layout_height_menu_space: 0px;
--mainNavMobileHeight: 0px;
--homepage_layout_height_opacity_space_top: 0px;
--homepage_layout_height_opacity_space_bottom: 0px;
--mobileMenuFontSize: 20px;
--mobileMenuPagesSpace: 5px;
--homepageShapeDividerList_Size: 17%;
--homepage_goal_space: 0px;
--homepage_second_goal_space: 20px;
--layout_bottom_spacing: 0px;
--window-height: 100vh;
--window-width: 100vw;
--menu_font_size: 14px;
--menu_pages_space: 5px;
--menu_pages_side_padding: 15px;
--menu_pages_letter_spacing: 0.1px;
--menu_pages_word_spacing: 0px;
--menu_thin_border: #ebebeb;
--mobileMenuTextAlign: center;
--menu_text_color: #252525;
--menu_color: #ffffff;
}
.s123-module-services.layout-1 {
padding: 50px 0;
}
.s123-module-services.layout-1 .service-item p {
white-space: pre-wrap;
word-wrap: break-word;
}
@media(min-width:768px) {
.s123-module-services.layout-1 .col-centered {
display: inline-block;
float: none;
text-align: center;
vertical-align: text-top;
}
}
.s123-module-services.layout-1 .service-item {
margin-bottom: 30px;
}
.s123-module-services.layout-1 .service-item .fa-stack {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
margin: 5px;
}
.s123-page-data-services.layout-1 p {
white-space: pre-wrap;
word-wrap: break-word;
}
.s123-module-services.layout-2 {
padding: 50px 0;
}
.s123-module-services.layout-2 .service-item p {
white-space: pre-wrap;
word-wrap: break-word;
}
@media(min-width:768px) {
.s123-module-services.layout-2 .col-centered {
display: inline-block;
float: none;
text-align: center;
vertical-align: text-top;
}
}
.s123-module-services.layout-2 .service-item {
margin-bottom: 30px;
}
.s123-module-services.layout-2 .service-item .fa-stack {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
margin: 5px;
}
.s123-page-data-services.layout-2 p {
white-space: pre-wrap;
word-wrap: break-word;
}
.s123-module-services.layout-3 .service {
padding-top: 30px;
padding-bottom: 30px;
text-align: center;
}
.s123-module-services.layout-3 .service>* {
clear: both;
}
.s123-module-services.layout-3 .service>h3 {
margin-top: 0;
}
.s123-module-services.layout-3 .service a {
opacity: 1;
}
.s123-module-services.layout-3 .service img {
max-width: 280px;
max-height: 280px;
margin-bottom: 15px;
}
.s123-module-services.layout-3 .service p {
min-height: 4.5em;
}
.s123-module-services.layout-3 .service .service-icon {
text-align: center;
min-width: 150px;
}
.s123-module-services.layout-3 .service .service-icon i {
font-size: 150px;
}
@media (min-width:768px) {
.s123-module-services.layout-3 .service {
padding: 40px 60px;
text-align: left;
}
.s123-module-services.layout-3 .service>* {
clear: none;
}
html[dir=rtl] .s123-module-services.layout-3 .service {
text-align: right;
}
.s123-module-services.layout-3 .service img,
.s123-module-services.layout-3 .service .service-icon {
max-width: 300px;
max-height: 300px;
margin-bottom: 0;
margin-right: 50px;
float: left;
}
.s123-module-services.layout-3 .service:nth-child(even) img,
.s123-module-services.layout-3 .service:nth-child(even) .service-icon {
margin-right: 0;
margin-left: 50px;
float: right;
}
html[dir=rtl] .s123-module-services.layout-3 .service img,
html[dir=rtl] .s123-module-services.layout-3 .service .service-icon {
margin-right: 0;
margin-left: 50px;
float: right;
}
html[dir=rtl] .s123-module-services.layout-3 .service:nth-child(even) img,
html[dir=rtl] .s123-module-services.layout-3 .service:nth-child(even) .service-icon {
margin-left: 0;
margin-right: 50px;
float: left;
}
}
.s123-module-services.layout-4 {
padding: 50px 0;
}
.s123-module-services.layout-4 .service-item p {
white-space: pre-wrap;
word-wrap: break-word;
}
@media(min-width:768px) {
.s123-module-services.layout-4 .col-centered {
display: inline-block;
float: none;
text-align: center;
vertical-align: text-top;
}
}
.s123-module-services.layout-4 .col-centered>a {
text-decoration: none;
}
.s123-module-services.layout-4 .service-item {
padding: 20px;
margin-bottom: 30px;
}
.s123-module-services.layout-4 .service-item .fa-stack {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
margin: 5px;
}
.s123-page-data-services.layout-4 p {
white-space: pre-wrap;
word-wrap: break-word;
}
.s123-module-services.layout-6 {
padding: 50px 0;
}
.s123-module-services.layout-6 .service-item p {
white-space: pre-wrap;
word-wrap: break-word;
opacity: 0.7;
width: 90%;
}
@media(min-width:768px) {
.s123-module-services.layout-6 .col-centered {
display: inline-block;
float: none;
vertical-align: text-top;
}
}
.s123-module-services.layout-6 .service-item {
display: flex;
flex-flow: row;
margin-bottom: 85px;
}
.s123-module-services.layout-6 .service-item .service-img-container {
width: 4.7em;
display: flex;
justify-content: center;
}
.s123-module-services.layout-6 .service-item .service-text-container {
width: calc(100% - 4.7em);
text-align: left;
}
html[dir="rtl"] .s123-module-services.layout-6 .service-item .service-text-container {
text-align: right;
}
.s123-module-services.layout-6 .service-item h4 {
margin-top: 0;
}
.s123-module-services.layout-6 .service-item .fa-stack i {
line-height: normal;
}
.s123-module-services.layout-6 .service-item .fa-stack[data-is-image="true"] {
width: 1.5em;
height: 1.5em;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.s123-module-services.layout-7 {
padding: 50px 0;
}
.s123-module-services.layout-7 .service-item p {
white-space: pre-wrap;
word-wrap: break-word;
width: 70%;
margin: auto;
margin-bottom: 20px;
opacity: 0.8;
}
@media(min-width:768px) {
.s123-module-services.layout-7 .col-centered {
display: inline-block;
float: none;
text-align: center;
vertical-align: text-top;
}
}
.s123-module-services.layout-7 .service-item {
margin-bottom: 30px;
}
.s123-module-services.layout-7 .service-item .fa-stack {
margin: 5px;
margin-bottom: 27px;
}
.s123-module-services.layout-7 .service-item .fa-stack[data-is-icon="true"] {
display: inline-flex;
align-items: center;
justify-content: center;
}
.s123-module-services.layout-7 .service-item .fa-stack[data-is-icon="true"] i {
font-size: 0.6em;
}
.s123-module-services.layout-7 .service-item .fa-stack[data-is-image="true"] {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.s123-page-data-services.layout-7 p {
white-space: pre-wrap;
word-wrap: break-word;
}
.s123-module-services.layout-7.layout-7 h4 {
margin-top: 0;
margin-bottom: 0.8em;
}
</style> <!-- Custom CSS -->
<body id="page-top">
<div class="body">
<div id="websiteHeader">
<nav id="mainNav" class="hidden-xs navbar-default navbar-fixed-top opacity-no">
<div class="site_container">
<div class="navbar-header"> <a href="#page-top"
class="s123-site-logo navbar-brand s123-w-l-s page-scroll"><img alt=""
class="img-responsive"
src="https://cdn-cms.f-static.net/uploads/4339464/400_crop_5f85b2b40e551_5f85b1bcd31df.jpg"><span
class="website-name website-name-preview-helper website-name-active "></span></a>
</div>
<div id="top-menu">
<ul class="navPages nav navbar-nav">
<li class="moduleMenu active"><a class="page-scroll homepageMenu" href="#page-top"><span
class="txt-container">Home</span></a></li>
<li class="moduleMenu" data-menu-module-id="5f8584304d214"><a class="page-scroll"
href="#section-5f8584304d214"><span class="txt-container">AREAS OF FOCUS</span></a>
</li>
<li class="moduleMenu" data-menu-module-id="5b4476fe88b24"><a class="page-scroll"
href="#section-5b4476fe88b24"><span class="txt-container">About Us</span></a></li>
<li class="moduleMenu" data-menu-module-id="5b4475c3b4844"><a class="page-scroll"
href="#section-5b4475c3b4844"><span class="txt-container">Join us</span></a></li>
<li class="moduleMenu dropdown-submenu" data-menu-module-id="5f8583fa4d213"><a href="#"
role="button" aria-haspopup="true" aria-expanded="true"><span
class="txt-container">AREAS OF FOCUS</span> <span
class="fa fa-caret-down"></span></a></li>
</ul>
<ul class="navActions nav navbar-nav">
<!-- Multi Currency -->
<!-- Show Header Social -->
<li class="header-social-wrapper "><a data-close-location="right" class="actionButton"
role="button" data-container="body" data-toggle="social_menuCallActionIcons"><i
class="fa fa-share-alt"></i></a></li> <!-- Cart -->
<li class="header-cart-wrapper orderOpenCart "><a
class="actionButton btn-primary-action-button-4" role="button"><i
class="fa fa-shopping-cart"><span class="count"></span></i></a></li>
<!-- Show Header Email With Style -->
<li class="header-email-wrapper" data-style="1"><a data-close-location="right"
class="actionButton" role="button" data-container="body"
data-toggle="email_menuCallActionIcons"><i class="fa fa-envelope"></i></a></li>
<!-- Only icon -->
<li class="header-phone-wrapper" data-style="1"> <a data-close-location="right"
class="actionButton" role="button" data-container="body"
data-toggle="phone_menuCallActionIcons"> <i class="fa fa-phone"></i> </a> </li>
<!-- Only Phone -->
<!-- Client Zone -->
<!-- <li class="header-client-zone-wrapper"><a class="client-zone-link"
data-close-location="right" href="/?clientZone=1"><i class="fa fa-user"
aria-hidden="true"></i></a></li> Menu Action Buttons -->
<li class="header-client-zone-wrapper"> <a data-close-location="right"
class="client-zone-link" href="/?clientZone=1"
> <i class="fa fa-user" aria-hidden="true"></i> </a> </li>
</ul>
</div>
</div>
</nav> <!-- Sticky Menu --> <input type="hidden" id="stickyMenu" name="stickyMenu" value="on">
</div>
<nav id="mainNavMobile" class="navbar-fixed-top">
<div class="navPagesLeft">
<div class="header-menu-wrapper"><a data-close-location="left" data-menu-color="" data-menu-type="0"
data-menu-align="center" data-is-mobile="true" class="mobile-menu-btn actionButton"
role="button" data-container="body" data-toggle="menuCallActionIcons"><i
class="fa fa-bars"></i></a></div>
</div>
<div class="navbar-header"> <a href="#page-top"
class="s123-site-logo navbar-brand s123-w-l-s page-scroll"><img alt="" class="img-responsive"
src="https://cdn-cms.f-static.net/uploads/4339464/400_crop_5f85b2b40e551_5f85b1bcd31df.jpg"><span
class="website-name website-name-preview-helper website-name-active "></span></a> </div>
<div class="navPagesRight">
<ul class="navActions nav navbar-nav">
<!-- Show header phone -->
<li class="header-phone-wrapper"> <a data-close-location="right" class="actionButton" role="button"
data-container="body" data-toggle="phone_menuCallActionIcons"> <i class="fa fa-phone"></i>
</a> </li> <!-- Show header email -->
<li class="header-email-wrapper"><a data-close-location="right" class="actionButton" role="button"
data-container="body" data-toggle="email_menuCallActionIcons"><i
class="fa fa-envelope"></i></a></li> <!-- Show header social -->
<li class="header-social-wrapper "><a data-close-location="right" class="actionButton" role="button"
data-container="body" data-toggle="social_menuCallActionIcons"><i
class="fa fa-share-alt"></i></a></li> <!-- Cart -->
<li class="header-cart-wrapper orderOpenCart "><a class="actionButton btn-primary-action-button-4"
role="button"><i class="fa fa-shopping-cart"><span class="count"></span></i></a></li>
<!-- Login to client zone -->
<li class="header-client-zone-wrapper"><a class="client-zone-link" data-close-location="right"
href="/?clientZone=1"><i class="fa fa-user" aria-hidden="true"></i></a></li>
</ul>
</div>
</nav>
<div id="top-menu-mobile" style="display:none;">
<ul>
<li class="moduleMenu active"><a class="page-scroll homepageMenu" href="#page-top"><span
class="txt-container">Home</span></a></li>
<li class="moduleMenu" data-menu-module-id="5f8584304d214"><a class="page-scroll"
href="#section-5f8584304d214"><span class="txt-container">AREAS OF FOCUS</span></a></li>
<li class="moduleMenu" data-menu-module-id="5b4476fe88b24"><a class="page-scroll"
href="#section-5b4476fe88b24"><span class="txt-container">About Us</span></a></li>
<li class="moduleMenu" data-menu-module-id="5b4475c3b4844"><a class="page-scroll"
href="#section-5b4475c3b4844"><span class="txt-container">Join us</span></a></li>
<li class="moduleMenu dropdown-submenu" data-menu-module-id="5f8583fa4d213"><a href="#" role="button"
aria-haspopup="true" aria-expanded="true"><span class="txt-container">AREAS OF
FOCUS</span> <span class="fa fa-caret-down"></span></a></li>
</ul>
</div>
<div id="s123PjaxMainContainer">
<section id="top-section" class="homepage_style_3 top_magic_homepage_kind_3">
<div class="magic_homepage magic_homepage_split magic_homepage_kind_3 homepage-layout-24">
<div class="home_main_wrapper main_ele_place_bottom">
<div class="left">
<div class="side_text_object_position_center_center home_third_background_color">
<div class="box_container boxStyle_">
<div class="boxBorder ele_align_center">
<h1 id="home_siteSlogan" class="animated fadeIn weight700 0 20">Share the
love</h1>
<h2 id="home_siteSlogan_2" class=" weight400 shadow1 0 30"
style="display:none"></h2>
<p id="home_SecondSiteSlogan"
class="animated pulse weight400 background1 1 32">Vision: An Empowering
and Dignified Society</p>
</div>
<div class="homepage_goal space_from_bottom_mainGoal ele_align_center"
style="position: relative;max-width: 100%;">
<div id="homepage-social-icons">
<div class="social-details-container social-icons">
<ul class="list-inline">
<li><a class="social-style-2 social-size-normal"
href="https://mobile.facebook.com/imarikaafrica.development.1?ref_component=mbasic_home_header&ref_page=MFriendsCenterPYMKController&ref=opera_speed_dial"
target="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a class="social-style-2 social-size-normal"
href="https://www.youtube.com/" target="_blank"><i
class="fa fa-youtube"></i></a></li>
<li><a class="social-style-2 social-size-normal"
href="https://www.instagram.com/?hl=en" target="_blank"><i
class="fa fa-instagram"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="right">
<div class="home_background_wrapper">
<div class="carousel slide carousel-fade" data-ride="carousel" data-pause="false"
data-interval="4000">
<div class="carousel-inner" role="listbox">
<div class="item itemImage1 active "></div>
<div class="item itemImage2 "></div>
<div class="item itemImage3 "></div>
<div class="item itemImage4 "></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="s123ModulesContainer" class="s123-modules-container">
<section id="section-5f8584304d214" class="s123-module s123-module-services layout-1 bg-primary">
<div data-aos="fade-up" class="container-fluid page_header_style page_header_style_">
<div class="row">
<div class="container">
<div class="row modulesTitle">
<div class="col-xs-12 text-center">
<H2 id="section-5f8584304d214-title" class="s123-page-header">AREAS OF FOCUS
</H2>
<hr class="small">
<h4 id="section-5f8584304d214-slogan" class="s123-page-slogan"></h4>
</div>
</div>
</div>
</div>
</div>
<div class="container" data-aos="fade-up">
<div class="row text-center">
<div class="col-md-3 col-sm-6 col-centered">
<div class="service-item"><span class="fa-stack fa-4x img-circle bgLazyload"
data-bg="https://cdn-cms.f-static.net/uploads/4339464/400_5f8585cbcb8e6.jpg"></span>
<h4><strong>Teenage Pregnancy Awareness</strong></h4>
<p>Covid Awareness and Sanitization</p><a
href="/areas-of-focus-1/teenage-pregnancy-awareness"
class="servcies-more-link btn btn-primary">Learn More</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-centered">
<div class="service-item"><span class="fa-stack fa-4x img-circle bgLazyload"
data-bg="https://cdn-cms.f-static.net/uploads/4339464/400_5f85867577cf5.jpg"></span>
<h4><strong>Peacefull coexistance in familiesFinancial</strong></h4>
<p>Health Awareness</p><a
href="/areas-of-focus-1/peacefull-coexistance-in-familiesfinancial"
class="servcies-more-link btn btn-primary">Learn More</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-centered">
<div class="service-item"><span class="fa-stack fa-4x img-circle bgLazyload"
data-bg="https://cdn-cms.f-static.net/uploads/4339464/400_5f8587017f226.jpg"></span>
<h4><strong>Youth empowerment programmes</strong></h4>
<p>Resiliance and Livelihood</p><a
href="/areas-of-focus-1/youth-empowerment-programmes"
class="servcies-more-link btn btn-primary">Learn More</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-centered">
<div class="service-item"><span class="fa-stack fa-4x img-circle bgLazyload"
data-bg="https://cdn-cms.f-static.net/uploads/4339464/400_5f85a3f2503a3.jpg"></span>
<h4><strong>Water Sanitation and Hygiene</strong></h4>
<p>Research and Policy Review</p><a
href="/areas-of-focus-1/water-sanitation-and-hygiene"
class="servcies-more-link btn btn-primary">Learn More</a>
</div>
</div>
</div>
</div>
</section>
<section id="section-5b4476fe88b24" class="s123-module s123-module-about layout-6">
<div data-aos="fade-up" class="container-fluid page_header_style page_header_style_">
<div class="row">
<div class="container">
<div class="row modulesTitle">
<div class="col-xs-12 text-center">
<H2 id="section-5b4476fe88b24-title" class="s123-page-header">About Us</H2>
<hr class="small">
<h4 id="section-5b4476fe88b24-slogan" class="s123-page-slogan"></h4>
</div>
</div>
</div>
</div>
</div>
<div class="container" data-aos="fade-up">
<div class="row text-center">
<div class='col-xs-12'>
<div class="responsive-handler fr-view breakable" style="margin-bottom: 20px;">
<ul style="list-style-type: circle;">
<li>IMADO mobilizes and organizes communities in implementing transformational
programs through securing identified resources, community empowering, and
promotion of peaceful community co-existence</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="section-5b4475c3b4844" class="s123-module s123-module-contact layout-1 bg-primary">
<div data-aos="fade-up" class="container-fluid page_header_style page_header_style_">
<div class="row">
<div class="container">
<div class="row modulesTitle">
<div class="col-xs-12 text-center">
<H2 id="section-5b4475c3b4844-title" class="s123-page-header">Join us</H2>
<hr class="small">
<h4 id="section-5b4475c3b4844-slogan" class="s123-page-slogan"></h4>
</div>
</div>
</div>
</div>
</div>
<div class="container" data-aos="fade-up">
<div class="row text-center">
<div class="col-md-5" style="text-align: center;">
<ul class="list-unstyled contact-as-details-container">
<li>Nairobi, Nairobi Province, Kenya</li>
</ul>
<ul class="list-unstyled contact-as-details-container">
<li><a href="tel:+254714776302+254777776302+254796629670"><i
class="fa fa-phone"></i><span dir="ltr">+254714776302 +254777776302
+254796629670</span> - <span>imadocbo@gmail.com</span></a>
</li>
<li><a href="mailto:marvinkimeu@gmail.com"><i
class="fa fa-envelope-o fa-fw"></i>marvinkimeu@gmail.com</a></li>
</ul> <br>
<ul class="list-inline social-details-container">
<li><a href="https://mobile.facebook.com/imarikaafrica.development.1?ref_component=mbasic_home_header&ref_page=MFriendsCenterPYMKController&ref=opera_speed_dial"
target="_blank"><i class="fa fa-facebook fa-fw fa-2x"></i></a></li>
<li><a href="https://www.youtube.com/" target="_blank"><i
class="fa fa-youtube fa-fw fa-2x"></i></a></li>
<li><a href="https://www.instagram.com/?hl=en" target="_blank"><i
class="fa fa-instagram fa-fw fa-2x"></i></a></li>
</ul>
</div>
<form class="breakable contactUsForm " data-date-format="m/d/Y"
data-click-action="thankYouMessage">
<div class="col-md-6 col-md-offset-1">
<div class="row">
<div class="col-md-6">
<div class="form-group"> <input type="text" name="contact_name"
placeholder="Name" class="form-control" required
data-msg-required="This field is required."> </div>
</div>
<div class="col-md-6">
<div class="form-group"> <input type="text" name="contact_phone"
placeholder="Phone" class="form-control"> </div>
</div>
</div>
<div class="form-group"> <input type="text" name="contact_email"
placeholder="Email address" class="form-control s123-force-ltr" required
data-msg-required="This field is required." data-rule-email="true"
data-msg-email="Please enter a valid email."> </div>
<div class="form-group"> <textarea class="form-control" name="contact_message"
placeholder="Message" style="min-height: 100px;"></textarea> </div> <button
type="submit" class="btn btn-primary btn-block">Contact Us</button>
</div> <input type="hidden" name="w" value=""> <input type="hidden" name="websiteID"
value="4339464"> <input type="hidden" name="moduleID" value="5b4475c3b4844"> <input
type="hidden" name="layout" value="1"> <input type="hidden" name="recaptchaToken"
value="">
</form>
</div>
</div>
<div class="s123-module-contact-map">
<div id="contact_5f98ec14da1d2" class="map-container"
data-src="https://maps.site123.com/include/globalMapDisplay.php?q=Nairobi%2C+Nairobi+Province%2C+Kenya&z=15&l=en&ilfc=1">
</div>
</div>
</section>
</div>
<footer class="global_footer footer_1">
<div class="container">
<div class="row">
<div class="side1 col-xs-12 col-sm-6 col-md-6">
<div> <span class="footer_name website-name-preview-helper"></span> </div>
<div> Copyright © 2020 All rights reserved
</div>
<div class="clearfix upgrade-website-preview-helper">Powered By <a rel="nofollow"
target="_blank" href="https://www.site123.com">TECH-BOAZ</a> - <a rel="nofollow"
target="_blank" href="https://www.site123.com">Create a website</a></div>
</div>
<div class="side2 col-xs-12 col-sm-6 col-md-6">
<ul class="navPages nav navbar-nav hidden-xs">
<li class="moduleMenu active"><a class="page-scroll homepageMenu" href="#page-top"><span
class="txt-container">Home</span></a></li>
<li class="moduleMenu" data-menu-module-id="5f8584304d214"><a class="page-scroll"
href="#section-5f8584304d214"><span class="txt-container">AREAS OF
FOCUS</span></a></li>
<li class="moduleMenu" data-menu-module-id="5b4476fe88b24"><a class="page-scroll"
href="#section-5b4476fe88b24"><span class="txt-container">About Us</span></a>
</li>
<li class="moduleMenu" data-menu-module-id="5b4475c3b4844"><a class="page-scroll"
href="#section-5b4475c3b4844"><span class="txt-container">Join us</span></a>
</li>
<li class="moduleMenu dropdown-submenu" data-menu-module-id="5f8583fa4d213"><a href="#"
role="button" aria-haspopup="true" aria-expanded="true"><span
class="txt-container">AREAS OF FOCUS</span> <span
class="fa fa-caret-up"></span></a></li>
</ul>
<div class="social-details-container social-icons">
<ul class="list-inline">
<li><a href="https://mobile.facebook.com/imarikaafrica.development.1?ref_component=mbasic_home_header&ref_page=MFriendsCenterPYMKController&ref=opera_speed_dial"
target="_blank"><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href="https://www.youtube.com/" target="_blank"><i
class="fa fa-youtube fa-2x"></i></a></li>
<li><a href="https://www.instagram.com/?hl=en" target="_blank"><i
class="fa fa-instagram fa-2x"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
</div>
</div>
<div>
<div id="header-phone-content" style="display:none;">
<div class="popover_phone_icons">
<div class="global-contact-details-container text-center">
<ul class="list-unstyled">
<li><a href="tel:+254714776302+254777776302+254796629670"><i class="fa fa-phone"></i><span
dir="ltr">+254714776302 +254777776302
+254796629670</span> - <span>imadocbo@gmail.com</span></a></li>
</ul>
</div>
</div> <input type="hidden" id="multiPhonesSettings"
value="[{"uniqid":"mp-5f7f4b5b5f3f7","number":"+254714776302 +254777776302 +254796629670","dialCode":"","countryData":"","note":"imadocbo@gmail.com","type":"1"}]">
</div>
<div id="header-email-content" style="display:none;">
<div class="popover_email_icons">
<div class="global-contact-details-container text-center">
<ul class="list-unstyled">
<li><a href="mailto:marvinkimeu@gmail.com"><i class="fa fa-envelope fa-fw"></i> <span
dir="ltr">marvinkimeu@gmail.com</span></a></li>
</ul>
</div>
</div>
</div> <input type="hidden" id="globalContactEmailSettings"
value="{"contact_email":"marvinkimeu@gmail.com","custom_form_html":""}">
<div id="header-social-content" style="display:none;">
<div class="popover_icons">
<div class="social-details-container social-icons">
<ul class="list-inline">
<li><a href="https://mobile.facebook.com/imarikaafrica.development.1?ref_component=mbasic_home_header&ref_page=MFriendsCenterPYMKController&ref=opera_speed_dial"
target="_blank"><i class="fa fa-facebook fa-4x"></i></a></li>
<li><a href="https://www.youtube.com/" target="_blank"><i class="fa fa-youtube fa-4x"></i></a>
</li>
<li><a href="https://www.instagram.com/?hl=en" target="_blank"><i
class="fa fa-instagram fa-4x"></i></a></li>
</ul>
</div>
</div>
</div> <input type="hidden" id="facebook_url" name="facebook_url" value=""> <input type="hidden"
id="twitter_url" name="twitter_url" value="">
</div>
<div id="showSmallAdOnScroll" class="upgrade-website-preview-helper style2"><a rel="nofollow" target="_blank"
href="https://www.site123.com/?utm_source=user-website&utm_medium=powered-by-ad-en&utm_content=all&utm_campaign=all"><span
class="s123-b-b-s-1">FOR THE BEST WEBSITE BUILDING</span> <img
style="height:21px;width:auto;vertical-align:middle;"> <span
class="site123link hidden-xs">powered by tech-boaz</span></a></div> <a id="gotoTop"
class="gotoTop page-scroll" style="display: none;" href="#page-top"><i class="fa fa-angle-up"></i></a> <input
type="hidden" id="layoutNUM" name="layoutNUM" value="1"> <input type="hidden" id="footer_layout"
name="footer_layout" value="1"> <input type="hidden" id="layoutMenuPositionTXT" name="layoutMenuPositionTXT"
value="top"> <input type="hidden" id="versionNUM" name="versionNUM" value="2"> <input type="hidden" id="w"
name="w" value=""> <input type="hidden" id="websiteID" value="4339464"> <input type="hidden"
id="enable_as_theme" value="0"> <input type="hidden" id="onepage" value="1"> <input type="hidden"
id="pjaxSupported" value="1"> <input type="hidden" id="moduleTypeNUM" class="s123-js-pjax" name="moduleTypeNUM"
value=""> <input type="hidden" id="hasEcommerce" value="0"> <input type="hidden" id="pageUniqueID"
class="s123-js-pjax" name="pageUniqueID" value="">
<script> var menuScrollOffset = 60;
var packageNUM = 1;
var domain = '5f7f489e8b7a1.site123.me';
var languageCode = 'en';
var multiLanCode = '';
var globalLanguageChildLan = '';
var websiteLanguageCode = '';
var websiteLanguageCountryCode = '';
var websiteLanguageCountryFullCode = '';
var IsManagment = '1';
var isMinimize = true;
var $GLOBALS = {
'cdn-user-files': '//cdn-cms.f-static.net',
'maps-display-domain': 'https://maps.site123.com',
'cdn-system-files': '//cdn-cms-s.f-static.net',
'v-cache': 'r6915',
};
var longFreeCustomer = true;
// set progressive web applications settings object for published websites only
var pwaSettings = {
enableMessage: false,
};
</script> <!-- JavaScript Translations Object -->
<script>var translations = {
"sent": "Sent!",
"enterYourQuery": "Enter your query",
"loading": "Loading...",
"closeEsc": "Close (Esc)",
"previousLeftArrowKey": "Previous (Left arrow key)",
"NextRightArrowKey": "Next (Right arrow key)",
"of": "of",
"more": "MORE",
"cart": "Cart",
"SearchResult": "Search Result",
"ChooseTheAmountDonate": "Choose the amount you want to donate",
"blogReviewMessage": "Thank you! Your comment will be published after being approved by the admin.",
"productReviewMessage": "Thank you! Your review will be published after being approved by the administrator.",
"ConfirmMailingSubscrive": "Please Confirm Your Email Address to Complete Your Subscription",
"subscribeTellAboutYou": "Please tell us about yourself",
"imageCouldNotLoaded": "<a href=\"%url%\">The image<\/a> could not be loaded.",
"searchInputValidation": "Please enter a valid search query.",
"jqueryValidMsgRequire": "This field is required.",
"jqueryValidMsgRemote": "Please fix this field.",
"jqueryValidMsgEmail": "Please enter a valid email address.",
"jqueryValidMsgUrl": "Please enter a valid URL.",
"jqueryValidMsgDate": "Please enter a valid date.",
"jqueryValidMsgDateISO": "Please enter a valid date (ISO).",
"jqueryValidMsgNumber": "Please enter a valid number.",
"jqueryValidMsgDigits": "Please enter only digits.",
"jqueryValidMsgCreditcard": "Please enter a valid credit card number.",
"jqueryValidMsgEqualTo": "Please enter the same value again.",
"jqueryValidMsgAccept": "Please enter a value with a valid extension.",
"jqueryValidMsgMaxlength": "Please enter no more than {0} characters.",
"jqueryValidMsgMinlength": "Please enter at least {0} characters.",
"jqueryValidMsgRangelength": "Please enter a value between {0} and {1} characters long.",
"jqueryValidMsgRange": "Please enter a value between {0} and {1}.",
"jqueryValidMsgMax": "Please enter a value less than or equal to {0}.",
"jqueryValidMsgMin": "Please enter a value greater than or equal to {0}.",
"sending": "Sending",
"firstName": "First Name",
"lastName": "Last Name",
"phone": "Phone",
"emailAddress": "Email address",
"fileUpload": "File Upload",
"send": "Send",
"search": "Search",
"productvalidatorPopover": "Required field",
"SpecialRequest": "Special Request",
"restaurantReservation": "Restaurant Reservation",
"ThankYouAuto": "Order completed, thank you for your order!",
"ThankYouManual": "Order is not completed yet, we will contact you soon",
"Ok": "OK",
"OrderNumber": "Order Number",
"Date": "Date",
"Hour": "Hour",
"TableSize": "Table Size",
"NoAvailableTime": "Sorry, there is no available time for this date, please try another date.",
"message": "Message",
"ThankYou": "Thank you",
"error_title": "Error",
"error_body": "Oops something went wrong",
"limitTickets": "Limit of:",
"tickets": "Tickets",
"registrationClosed": "Registration is closed. Please contact us for more information.",
"Sunday": "Sunday",
"Monday": "Monday",
"Tuesday": "Tuesday",
"Wednesday": "Wednesday",
"Thursday": "Thursday",
"Friday": "Friday",
"Saturday": "Saturday",
"foodDeliverybootBoxTitle": "Order Window",
"addToCart": "Add To Cart",
"save": "Save",
"ThankYouAfterSubmmit": "Thank you for contacting us. We have received your message and will respond to you soon.",
"country": "Country",
"productQuntityLimit": "The product is limited to a maximum of {{units_limitation}} units.",
"productQuntityLimitMin": "The product is limited to a minimum of {{units_limitation}} units.",
"forumDeleteTopic": "Deleting a topic will also permanently remove all related replies. Are you sure you want to delete it?",
"forumDeleteTopicTitle": "Delete Topic",
"forumDeleteReply": "Are you sure you want to delete this reply?",
"forumDeleteReplyTitle": "Delete Reply",
"forumNewTopic": "New Topic",
"forumCreateNewTopic": "Create a new topic",
"forumCountOfTotalPosts": "Post a total of {{numbers_of_posts}} posts",
"forumSearchPlaceholder": "search topics, posts, or categories",
"forumLastReply": "Last Reply",
"follow": "Follow",
"following": "Following",
"forumReplies": "Replies",
"forumFrequentPosters": "Frequent Posters",
"chooseCategory": "Choose Category",
"linkCopiedToClipboard": "Link copied to clipboard",
"edit": "Edit",
"created": "Created",
"seeMore": "See More",
"options": "Options",
"joined": "Joined",
"posted": "Posted",
"category": "Category",
"yes": "Yes",
"no": "No",
"insertTopicTitle": "Insert Topic Title",
"insertTopicMessage": "Insert Message Topic",
"reply": "Reply",
"addReply": "Add reply",
"address": "Address:",
"city": "City:",
"state": "State:",
"zipCode": "Zip\/Postal Code:",
"instructions": "Instructions:",
"country_v2": "Country:",
"chooseDate": "Choose Date",
"chooseDateAndTime": "Choose Date & Time",
"chooseTime": "Choose Time",
"total": "Total:",
"reviewBad": "bad",
"reviewPoor": "poor",
"reviewRegular": "regular",
"reviewGood": "good",
"reviewGorgeous": "gorgeous",
"popupButtonSelected": "Select",
"editHeader": "Edit Header",
"editFooter": "Edit Footer",
"eCommerceSort": {
"sortBy": "Sort By",
"recommended": "Recommended",
"byHighPrice": "Price, high to low",
"byLowerPriceBy": "Price, low to high",
},
"globalContactEmail": {
"fullName": "Full Name",
"description": "Description",
"subject": "Subject",
"contactUs": "Contact Us",
"infoBox": "Fill out the form or send a direct email to: {{email_address}}",
"thankYouMessage": "Thank you for contacting us.",
"thankYouCloseBtn": "Close"