-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex-animate.html
1140 lines (1104 loc) · 70 KB
/
index-animate.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>
<!--[if IE]><![endif]-->
<!--[if lt IE 7 ]> <html lang="en" class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!-- Mirrored from www.florgenerosa.org/index-animate.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 03 Jan 2019 00:48:46 GMT -->
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Grant || Home Animate Text</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon
============================================ -->
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<!-- Bootstrap CSS
============================================ -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- font-awesome.min CSS
============================================ -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- owl.carousel CSS
============================================ -->
<link rel="stylesheet" href="css/owl.carousel.css">
<!-- owl.theme CSS
============================================ -->
<link rel="stylesheet" href="css/owl.theme.css">
<!-- owl.transitions CSS
============================================ -->
<link rel="stylesheet" href="css/owl.transitions.css">
<!-- nivo-slider CSS
============================================ -->
<link rel="stylesheet" href="css/nivo-slider.css">
<!-- animate CSS
============================================ -->
<link rel="stylesheet" href="css/animate.css">
<!-- magnific-popup CSS
============================================ -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- magnific-popup CSS
============================================ -->
<link rel="stylesheet" href="css/heading.css">
<!-- meanmenu min CSS
============================================ -->
<link rel="stylesheet" href="css/meanmenu.min.css">
<!-- main CSS
============================================ -->
<link rel="stylesheet" href="css/main.css">
<!-- style CSS
============================================ -->
<link rel="stylesheet" href="style.css">
<!-- responsive CSS
============================================ -->
<link rel="stylesheet" href="css/responsive.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
<!-- Color Css Files Start -->
<link rel="alternate stylesheet" type="text/css" href="switcher/color-one.css" title="color-one" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-two.css" title="color-two" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-three.css" title="color-three" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-four.css" title="color-four" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-five.css" title="color-five" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-six.css" title="color-six" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-seven.css" title="color-seven" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-eight.css" title="color-eight" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-nine.css" title="color-nine" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-ten.css" title="color-ten" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-eleven.css" title="color-eleven" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/color-twelv.css" title="color-twelve" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/pattren1.css" title="pattren1" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/pattren2.css" title="pattren2" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/pattren3.css" title="pattren3" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/pattren4.css" title="pattren4" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/pattren5.css" title="pattren5" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/background1.css" title="background1" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/background2.css" title="background2" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/background3.css" title="background3" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/background4.css" title="background4" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="switcher/background5.css" title="background5" media="screen" />
<!-- Color Css Files End -->
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Start main area -->
<div class="main-area">
<!-- Start header -->
<header>
<!-- Start header top -->
<div class="header-top">
<div class="container">
<div class="row">
<div class="col-sm-5 col-md-6">
<div class="top-social">
<nav>
<ul>
<li><a href="#">Follow Us On:</a></li>
<li><a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-dribbble" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-rss" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
</ul>
</nav>
</div>
</div>
<div class="col-sm-7 col-md-6">
<div class="call-to-action">
<nav>
<ul>
<li><a href="mailto:[email protected]"><i class="fa fa-envelope" aria-hidden="true"></i> Email: [email protected]</a></li>
<li><a href="tel:+5881234567"><i class="fa fa-phone" aria-hidden="true"></i> Phone: +5(88) 123-4567</a></li>
<li><a href="#">EN <i class="fa fa-angle-down" aria-hidden="true"></i></a>
<ul>
<li><a href="#">ENGLISH</a></li>
<li><a href="#">FRANCE</a></li>
<li><a href="#"></a></li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
<!-- End header top -->
<!-- Start main menu area -->
<div class="main-menu-area" id="sticker">
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="logo ptb-32">
<a href="index-2.html">
<img src="img/logo.png" alt="">
</a>
</div>
</div>
<div class="col-sm-9">
<div class="main-menu">
<nav>
<ul>
<li><a href="#">Home</a>
<ul class="drop-menu">
<li><a href="index-2.html">Home 1</a></li>
<li><a href="index-animate.html">Home 2</a></li>
<li><a href="index-youtube-video.html">Home 3</a></li>
<li><a href="index-center-menu.html">Home 4</a></li>
<li><a href="index-non-topbar.html">Home 5</a></li>
<li><a href="index-non-sticky.html">Home 6</a></li>
</ul>
</li>
<li><a href="about.html">About</a></li>
<li class="mega-menu"><a href="#">Project</a>
<li><a href="events.html">Events</a></li>
<li><a href="#">Blog</a>
<ul class="drop-menu">
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-sidebar-right.html">Blog sidebar Right</a></li>
<li><a href="blog-sidebar-left.html">Blog sidebar Left</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
<li><a href="blog-details-sidebar-right.html">Blog Details Sidebar Right</a></li>
<li><a href="blog-details-sidebar-left.html">Blog Details Sidebar Left</a></li>
</ul>
</li>
<li class="mega-menu"><a href="#">Page</a>
<div class="mega-menu-area">
<ul class="single-mega-item">
<li><a href="about.html">About Us</a></li>
<li><a href="contact-us.html">Contact us</a></li>
<li><a href="couses.html">Couses</a></li>
<li><a href="couses-sidebar-right.html">Couses Sidebar Right</a></li>
</ul>
<ul class="single-mega-item">
<li><a href="couses-sidebar-left.html">Couses Sidebar Left</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="events-sidebar-right.html">Events Sidebar Right</a></li>
<li><a href="events-sidebar-left.html">Events Sidebar Left</a></li>
</ul>
<ul class="single-mega-item">
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-sidebar-right.html">Blog sidebar Right</a></li>
<li><a href="blog-sidebar-left.html">Blog sidebar Left</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
</ul>
<ul class="single-mega-item">
<li><a href="blog-details-sidebar-right.html">Blog Details Sidebar Right</a></li>
<li><a href="blog-details-sidebar-left.html">Blog Details Sidebar Left</a></li>
<li><a href="404.html">404</a></li>
</ul>
</div>
</li>
<li class="mega-menu"><a href="#">Shortcodes</a>
<div class="mega-menu-area">
<ul class="single-mega-item">
<li class="shortcode-title">Shortcode 1</li>
<li><a href="elements-causes.html">Causes</a></li>
<li><a href="elements-contact-form.html">Contact Form</a></li>
<li><a href="elements-hero-static.html">Hero Static</a></li>
<li><a href="elements-hero-static-left.html">Hero Static Left</a></li>
<li><a href="elements-hero-static-right.html">Hero Static Right</a></li>
<li><a href="elements-keep-in-touch.html">Keep In Touch</a></li>
</ul>
<ul class="single-mega-item">
<li class="shortcode-title">Shortcode 2</li>
<li><a href="elements-latest-blog.html">Latest Blog</a></li>
<li><a href="elements-map.html">Google Map</a></li>
<li><a href="elements-our-gallery.html">Our Gallery</a></li>
<li><a href="elements-our-sponsors.html">Our Sponsors</a></li>
<li><a href="elements-our-volunteers.html">Our Volunteers</a></li>
<li><a href="elements-page-breadcumb-right.html">Page Breadcumb Right</a></li>
</ul>
<ul class="single-mega-item">
<li class="shortcode-title">Shortcode 3</li>
<li><a href="elements-page-title-center.html">Page Title Center</a></li>
<li><a href="elements-page-title-left.html">Page Title Left</a></li>
<li><a href="elements-page-title-right.html">Page Title Right</a></li>
<li><a href="elements-pagination.html">Pagination</a></li>
<li><a href="elements-services.html">Services</a></li>
<li><a href="elements-testimonials.html">Testimonials</a></li>
</ul>
<ul class="single-mega-item">
<li class="shortcode-title">Shortcode 4</li>
<li><a href="elements-up-comming-events.html">Up Comming Events</a></li>
<li><a href="elements-video-gallery-2col.html">Video Gallery col 2</a></li>
<li><a href="elements-video-gallery-3col.html">Video Gallery col 3</a></li>
<li><a href="elements-video-gallery-4col.html">Video Gallery col 4</a></li>
<li><a href="elements-what-we-do.html">What we do</a></li>
</ul>
</div>
</li>
</ul>
</nav>
</div>
<div class="donate-button ptb-32">
<a class="waves-effect waves-light" href="#">Donate</a>
</div>
</div>
</div>
</div>
</div>
<!-- End main menu area -->
<!-- Start mobile menu -->
<div class="mobile-menu-area">
<div class="container">
<div class="row">
<div class="mobile-menu">
<nav id="dropdown">
<ul class="nav">
<li><a class="home" href="#">Home</a>
<ul>
<li><a href="index-2.html">Home 1</a></li>
<li><a href="index-animate.html">Home 2</a></li>
<li><a href="index-youtube-video.html">Home 3</a></li>
<li><a href="index-center-menu.html">Home 4</a></li>
<li><a href="index-non-topbar.html">Home 5</a></li>
<li><a href="index-non-sticky.html">Home 6</a></li>
</ul>
</li>
<li><a href="about.html">About</a></li>
<li><a href="#">Blog</a>
<ul>
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-sidebar-right.html">Blog sidebar Right</a></li>
<li><a href="blog-sidebar-left.html">Blog sidebar Left</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
<li><a href="blog-details-sidebar-right.html">Blog Details Sidebar Right</a></li>
<li><a href="blog-details-sidebar-left.html">Blog Details Sidebar Left</a></li>
</ul>
</li>
<li><a href="#">Pages</a>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="contact-us.html">Contact us</a></li>
<li><a href="couses.html">Couses</a></li>
<li><a href="couses-sidebar-right.html">Couses Sidebar Right</a></li>
<li><a href="couses-sidebar-left.html">Couses Sidebar Left</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="events-sidebar-right.html">Events Sidebar Right</a></li>
<li><a href="events-sidebar-left.html">Events Sidebar Left</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-sidebar-right.html">Blog sidebar Right</a></li>
<li><a href="blog-sidebar-left.html">Blog sidebar Left</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
<li><a href="blog-details-sidebar-right.html">Blog Details Sidebar Right</a></li>
<li><a href="blog-details-sidebar-left.html">Blog Details Sidebar Left</a></li>
<li><a href="404.html">404</a></li>
</ul>
</li>
<li><a href="#">Shortcodes</a>
<ul>
<li><a href="elements-causes.html">Causes</a></li>
<li><a href="elements-contact-form.html">Contact Form</a></li>
<li><a href="elements-hero-static.html">Hero Static</a></li>
<li><a href="elements-hero-static-left.html">Hero Static Left</a></li>
<li><a href="elements-hero-static-right.html">Hero Static Right</a></li>
<li><a href="elements-keep-in-touch.html">Keep In Touch</a></li>
<li><a href="elements-latest-blog.html">Latest Blog</a></li>
<li><a href="elements-map.html">Google Map</a></li>
<li><a href="elements-our-gallery.html">Our Gallery</a></li>
<li><a href="elements-our-sponsors.html">Our Sponsors</a></li>
<li><a href="elements-our-volunteers.html">Our Volunteers</a></li>
<li><a href="elements-page-breadcumb-right.html">Page Breadcumb Right</a></li>
<li><a href="elements-page-title-center.html">Page Title Center</a></li>
<li><a href="elements-page-title-left.html">Page Title Left</a></li>
<li><a href="elements-page-title-right.html">Page Title Right</a></li>
<li><a href="elements-pagination.html">Pagination</a></li>
<li><a href="elements-services.html">Services</a></li>
<li><a href="elements-testimonials.html">Testimonials</a></li>
<li><a href="elements-up-comming-events.html">Up Comming Events</a></li>
<li><a href="elements-video-gallery-2col.html">Video Gallery col 2</a></li>
<li><a href="elements-video-gallery-3col.html">Video Gallery col 3</a></li>
<li><a href="elements-video-gallery-4col.html">Video Gallery col 4</a></li>
<li><a href="elements-what-we-do.html">What we do</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<!-- End mobile menu -->
</header>
<!-- End header -->
<!-- Start slider area -->
<section class="slider-animate-area pb-60">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<div class="cd-intro">
<h1 class="cd-headline clip is-full-width title1 wow zoomIn animated" data-wow-duration="1s" data-wow-delay="300ms" style="visibility: visible; animation-duration: 1s; animation-delay: 300ms; animation-name: zoomIn;">
<span>WE CAN HELP </span>
<span class="cd-words-wrapper">
<b class="is-visible">SOMEONE</b>
<b>SOMEONE</b>
<b>SOMEONE</b>
</span>
</h1>
<p class="wow zoomIn animated" data-wow-duration="1s" data-wow-delay="600ms" style="visibility: visible; animation-duration: 1s; animation-delay: 600ms; animation-name: zoomIn;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quis ante commodo, dictum lectus suscipit. Quisque nec ullamcorper elit, nec fermentum metus.</p>
<div class="slider-button-area wow zoomIn animated" data-wow-duration="1s" data-wow-delay="900ms" style="visibility: visible; animation-duration: 1s; animation-delay: 900ms; animation-name: zoomIn;">
<a href="#" class="btn-lg">DONATE NOW</a>
<a href="#" class="btn-lg">LEARN MORE</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End slider area -->
<!-- Start our couses area -->
<section class="our-couses-area pt-90 pb-90">
<div class="container">
<div class="row">
<!-- Start section title -->
<div class="col-sm-12">
<div class="section-title text-center">
<h2>OUR <span>CAUSES</span></h2>
<img src="img/title-bottom.png" alt="">
<p>Our charity help those people who have no hope</p>
</div>
</div>
<!-- End section title -->
<div class="couses">
<!-- Start single couses -->
<div class="col-sm-4">
<div class="single-couses">
<div class="single-couses-image-text">
<div class="couses-image">
<img src="img/couses/couses-one.jpg" alt="">
</div>
<div class="couses-text text-center">
<h3>Children to get education</h3>
<p>Lorem ipsum dolor sit amet, onsectetur adipiscing cons ectetur nulla. Sed at ullamcorper risus.</p>
</div>
</div>
<div class="couses-button-and-price">
<div class="couses-button">
<a href="#" class="btn-md bo-ra-5">Donate</a>
</div>
<div class="couses-price">
<h5>$ 25,000 / $ 50,000</h5>
</div>
</div>
</div>
</div>
<!-- End single couses -->
<!-- Start single couses -->
<div class="col-sm-4">
<div class="single-couses">
<div class="single-couses-image-text">
<div class="couses-image">
<img src="img/couses/couses-two.jpg" alt="">
</div>
<div class="couses-text text-center">
<h3>Bring Electric and Light</h3>
<p>Lorem ipsum dolor sit amet, onsectetur adipiscing cons ectetur nulla. Sed at ullamcorper risus.</p>
</div>
</div>
<div class="couses-button-and-price">
<div class="couses-button">
<a href="#" class="btn-md bo-ra-5">Donate</a>
</div>
<div class="couses-price">
<h5>$ 45,000 / $ 90,000</h5>
</div>
</div>
</div>
</div>
<!-- End single couses -->
<!-- Start single couses -->
<div class="col-sm-4">
<div class="single-couses">
<div class="single-couses-image-text">
<div class="couses-image">
<img src="img/couses/couses-three.jpg" alt="">
</div>
<div class="couses-text text-center">
<h3>Water carrier items</h3>
<p>Lorem ipsum dolor sit amet, onsectetur adipiscing cons ectetur nulla. Sed at ullamcorper risus.</p>
</div>
</div>
<div class="couses-button-and-price">
<div class="couses-button">
<a href="#" class="btn-md bo-ra-5">Donate</a>
</div>
<div class="couses-price">
<h5>$ 35,000 / $ 70,000</h5>
</div>
</div>
</div>
</div>
<!-- End single couses -->
</div>
</div>
</div>
</section>
<!-- End our couses area -->
<!-- Start help us area -->
<section class="help-us-area pt-80 pb-80">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="section-title-style-two text-center">
<h2>HOW CAN YOU HELP US?</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin imperdiet interdum erat, a pulvinar nibh sodales ac. Pellentesque quis augue non nunc sagittis rutrum. </p>
</div>
</div>
<div class="help-us-content-area">
<!-- Start single help -->
<div class="col-sm-4">
<div class="single-help">
<div class="help-icon">
<i class="fa fa-university" aria-hidden="true"></i>
</div>
<div class="help-text">
<h3>Donator</h3>
<p>Lorem ipsum dolor sit amet, risus adipiscing elit. Praesent laoreet condimentum quam, sit amet congue risus lobortis quis.</p>
<a href="#" class="btn-sm bo-ra-3">Learn More</a>
</div>
</div>
</div>
<!-- End single help -->
<!-- Start single help -->
<div class="col-sm-4">
<div class="single-help">
<div class="help-icon">
<i class="fa fa-money" aria-hidden="true"></i>
</div>
<div class="help-text">
<h3>Funrising</h3>
<p>Lorem ipsum dolor sit amet, risus adipiscing elit. Praesent laoreet condimentum quam, sit amet congue risus lobortis quis.</p>
<a href="#" class="btn-sm bo-ra-3">Learn More</a>
</div>
</div>
</div>
<!-- End single help -->
<!-- Start single help -->
<div class="col-sm-4">
<div class="single-help">
<div class="help-icon">
<i class="fa fa-users" aria-hidden="true"></i>
</div>
<div class="help-text">
<h3>Volunteer</h3>
<p>Lorem ipsum dolor sit amet, risus adipiscing elit. Praesent laoreet condimentum quam, sit amet congue risus lobortis quis.</p>
<a href="#" class="btn-sm bo-ra-3">Learn More</a>
</div>
</div>
</div>
<!-- End single help -->
</div>
</div>
</div>
</section>
<!-- End help us area -->
<!-- Start our gallery -->
<section class="our-gallery pt-90 pb-60">
<div class="container">
<div class="row">
<!-- Start section title -->
<div class="col-sm-12">
<div class="section-title text-center">
<h2>OUR <span>Gallery</span></h2>
<img src="img/title-bottom.png" alt="">
<p>We create events aiming to pear to the voice for children and gather for support. <br>Please update with our events and confirm you presence.</p>
</div>
</div>
<!-- End section title -->
<div class="gallery-area">
<div class="col-sm-12">
<div class="gallery-menu text-center">
<nav>
<ul>
<li class="filter" data-filter="all">All</li>
<li class="filter" data-filter="Charity">Charity</li>
<li class="filter" data-filter="Nature">Nature</li>
<li class="filter" data-filter="Wildlife">Wildlife</li>
<li class="filter" data-filter="Video">Video</li>
<li class="filter" data-filter="Children">Children</li>
</ul>
</nav>
</div>
</div>
<div id="gallery-filter">
<!-- Start single gallery -->
<div class="col-sm-3 mb-30 single-gallery mix all Charity Wildlife ">
<div class="gallery-image-and-text">
<img class="img-responsive" src="img/gallery/gallery-one.jpg" alt="" />
<a class="image-link text-center" href="img/gallery/gallery-one.jpg">
<i class="fa fa-plus-square-o" aria-hidden="true"></i>
<p>Poor Nature</p>
</a>
</div>
</div>
<!-- End single gallery -->
<!-- Start single gallery -->
<div class="col-sm-3 mb-30 single-gallery mix all Nature Video">
<div class="gallery-image-and-text">
<img class="img-responsive" src="img/gallery/gallery-two.jpg" alt="" />
<a class="image-link text-center" href="img/gallery/gallery-two.jpg">
<i class="fa fa-plus-square-o" aria-hidden="true"></i>
<p>Poor Nature</p>
</a>
</div>
</div>
<!-- End single gallery -->
<!-- Start single gallery -->
<div class="col-sm-3 mb-30 single-gallery mix all Charity Wildlife Children">
<div class="gallery-image-and-text">
<img class="img-responsive" src="img/gallery/gallery-three.jpg" alt="" />
<a class="image-link text-center" href="img/gallery/gallery-three.jpg">
<i class="fa fa-plus-square-o" aria-hidden="true"></i>
<p>Poor Nature</p>
</a>
</div>
</div>
<!-- End single gallery -->
<!-- Start single gallery -->
<div class="col-sm-3 mb-30 single-gallery mix all Nature Video">
<div class="gallery-image-and-text">
<img class="img-responsive" src="img/gallery/gallery-four.jpg" alt="" />
<a class="image-link text-center" href="img/gallery/gallery-four.jpg">
<i class="fa fa-plus-square-o" aria-hidden="true"></i>
<p>Poor Nature</p>
</a>
</div>
</div>
<!-- End single gallery -->
<!-- Start single gallery -->
<div class="col-sm-3 mb-30 single-gallery mix all Charity Wildlife Video Children">
<div class="gallery-image-and-text">
<img class="img-responsive" src="img/gallery/gallery-five.jpg" alt="" />
<a class="image-link text-center" href="img/gallery/gallery-five.jpg">
<i class="fa fa-plus-square-o" aria-hidden="true"></i>
<p>Poor Nature</p>
</a>
</div>
</div>
<!-- End single gallery -->
<!-- Start single gallery -->
<div class="col-sm-3 mb-30 single-gallery mix all Nature Children">
<div class="gallery-image-and-text">
<img class="img-responsive" src="img/gallery/gallery-six.jpg" alt="" />
<a class="image-link text-center" href="img/gallery/gallery-six.jpg">
<i class="fa fa-plus-square-o" aria-hidden="true"></i>
<p>Poor Nature</p>
</a>
</div>
</div>
<!-- End single gallery -->
<!-- Start single gallery -->
<div class="col-sm-3 mb-30 single-gallery mix all Charity Wildlife Video">
<div class="gallery-image-and-text">
<img class="img-responsive" src="img/gallery/gallery-seven.jpg" alt="" />
<a class="image-link text-center" href="img/gallery/gallery-seven.jpg">
<i class="fa fa-plus-square-o" aria-hidden="true"></i>
<p>Poor Nature</p>
</a>
</div>
</div>
<!-- End single gallery -->
<!-- Start single gallery -->
<div class="col-sm-3 mb-30 single-gallery mix all Nature Children">
<div class="gallery-image-and-text">
<img class="img-responsive" src="img/gallery/gallery-eight.jpg" alt="" />
<a class="image-link text-center" href="img/gallery/gallery-eight.jpg">
<i class="fa fa-plus-square-o" aria-hidden="true"></i>
<p>Poor Nature</p>
</a>
</div>
</div>
<!-- End single gallery -->
</div>
</div>
</div>
</div>
</section>
<!-- End our gallery -->
<!-- Start countdown area -->
<section class="countdown-area pt-60 pb-60">
<div class="container">
<div class="row">
<div class="col-sm-5 col-md-4">
<div class="countdown-side-area">
<div class="countdown-icon">
<i class="fa fa-calendar-check-o" aria-hidden="true"></i>
</div>
<div class="countdown-text">
<h3>Up comming event</h3>
<p>SCHOOL OF CRITIVITY</p>
</div>
</div>
</div>
<div class="col-sm-7 col-md-8">
<div class="count-down">
<div id="simple_timer"></div>
</div>
</div>
</div>
</div>
</section>
<!-- End countdown area -->
<!-- Start our volunteers area -->
<section class="our-volunteers-area pt-90 pb-90">
<div class="container">
<div class="row">
<!-- Start section title -->
<div class="col-sm-12">
<div class="section-title text-center">
<h2>OUR <span>VOLUNTEERS</span></h2>
<img src="img/title-bottom.png" alt="">
<p>We create events aiming to pear to the voice for children and gather for support. <br>Please update with our events and confirm you presence.</p>
</div>
</div>
<!-- End section title -->
<div class="our-volunteers">
<!-- Start single volunteer -->
<div class="col-sm-3">
<div class="single-volunteer">
<div class="volunteer-image-and-social">
<img src="img/volunteers/volunteers-one.jpg" alt="">
<div class="volunteer-social">
<a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
</div>
</div>
<div class="volunteer-title text-center">
<h5>Farnado rotia</h5>
<p>Secretery</p>
</div>
</div>
</div>
<!-- End single volunteer -->
<!-- Start single volunteer -->
<div class="col-sm-3">
<div class="single-volunteer">
<div class="volunteer-image-and-social">
<img src="img/volunteers/volunteers-two.jpg" alt="">
<div class="volunteer-social">
<a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
</div>
</div>
<div class="volunteer-title text-center">
<h5>Serena sanion</h5>
<p>Secretery</p>
</div>
</div>
</div>
<!-- End single volunteer -->
<!-- Start single volunteer -->
<div class="col-sm-3">
<div class="single-volunteer">
<div class="volunteer-image-and-social">
<img src="img/volunteers/volunteers-three.jpg" alt="">
<div class="volunteer-social">
<a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
</div>
</div>
<div class="volunteer-title text-center">
<h5>Peterson smith</h5>
<p>Secretery</p>
</div>
</div>
</div>
<!-- End single volunteer -->
<!-- Start single volunteer -->
<div class="col-sm-3">
<div class="single-volunteer">
<div class="volunteer-image-and-social">
<img src="img/volunteers/volunteers-four.jpg" alt="">
<div class="volunteer-social">
<a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
</div>
</div>
<div class="volunteer-title text-center">
<h5>Anabari koy</h5>
<p>Secretery</p>
</div>
</div>
</div>
<!-- End single volunteer -->
</div>
</div>
</div>
</section>
<!-- End our volunteers area -->
<!-- Start people says area -->
<section class="people-says-area pt-54 pb-20">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="people-asy-title text-center">
<h2>WHAT PEOPLE SAYS</h2>
<img src="img/title-bottom.png" alt="">
</div>
<div class="people-say-slide">
<!-- Start single people -->
<div class="single-people text-center">
<div class="people-say-image">
<img src="img/testimonial.jpg" alt="">
</div>
<div class="peoplp-say-text text-center">
<p>Lorem ipsum dolor sit amet, con sectetur adipiscing elit. Vestibulum varius semper ligula, et molestie metus.</p>
<h5>Zafari Jamith</h5>
<h6>Director</h6>
</div>
</div>
<!-- End single people -->
<!-- Start single people -->
<div class="single-people text-center">
<div class="people-say-image">
<img src="img/testimonial.jpg" alt="">
</div>
<div class="peoplp-say-text text-center">
<p>Lorem ipsum dolor sit amet, con sectetur adipiscing elit. Vestibulum varius semper ligula, et molestie metus.</p>
<h5>Zafari Jamith</h5>
<h6>Director</h6>
</div>
</div>
<!-- End single people -->
<!-- Start single people -->
<div class="single-people text-center">
<div class="people-say-image">
<img src="img/testimonial.jpg" alt="">
</div>
<div class="peoplp-say-text text-center">
<p>Lorem ipsum dolor sit amet, con sectetur adipiscing elit. Vestibulum varius semper ligula, et molestie metus.</p>
<h5>Zafari Jamith</h5>
<h6>Director</h6>
</div>
</div>
<!-- End single people -->
</div>
</div>
</div>
</div>
</section>
<!-- End people says area -->
<!-- Start blog area -->
<section class="blog-area pt-90 pb-90">
<div class="container">
<div class="row">
<!-- Start section title -->
<div class="col-sm-12">
<div class="section-title text-center">
<h2>LATEST FROM <span>BLOG</span></h2>
<img src="img/title-bottom.png" alt="">
<p>We create events aiming to spear the voice for children and gather for <br>support Please update with our events</p>
</div>
</div>
<!-- End section title -->
<!-- Start blog -->
<div class="blog">
<!-- Start single blog -->
<div class="col-sm-4">
<div class="single-blog">
<div class="blo-image-and-date">
<img src="img/blog/blog-one.jpg" alt="">
<a href="#">24 may</a>
</div>
<div class="blog-info">
<div class="admin">
<a href="#"><i class="fa fa-user" aria-hidden="true"></i> By: Admin</a>
</div>
<div class="comment">
<a href="#"><i class="fa fa-heart" aria-hidden="true"></i> 15</a>
<a href="#"><i class="fa fa-comment" aria-hidden="true"></i> 25</a>
</div>
</div>
<div class="blog-text">
<h3><a href="#">Lorem ipsum dolor sit amet</a></h3>
<p>Lorem ipsum dolor sit amet, consectetur adipicing elit. Nullam feugiat dignissim metus, id vestibulum tellus Cras ante commodo.</p>
<a href="#">Read More...</a>
</div>
</div>
</div>
<!-- End single blog -->
<!-- Start single blog -->
<div class="col-sm-4">
<div class="single-blog">
<div class="blo-image-and-date">
<img src="img/blog/blog-two.jpg" alt="">
<a href="#">24 may</a>
</div>
<div class="blog-info">
<div class="admin">
<a href="#"><i class="fa fa-user" aria-hidden="true"></i> By: Admin</a>
</div>
<div class="comment">
<a href="#"><i class="fa fa-heart" aria-hidden="true"></i> 15</a>
<a href="#"><i class="fa fa-comment" aria-hidden="true"></i> 25</a>
</div>
</div>
<div class="blog-text">
<h3><a href="#">Lorem ipsum dolor sit amet</a></h3>
<p>Lorem ipsum dolor sit amet, consectetur adipicing elit. Nullam feugiat dignissim metus, id vestibulum tellus Cras ante commodo.</p>
<a href="#">Read More...</a>
</div>
</div>
</div>
<!-- End single blog -->
<!-- Start single blog -->
<div class="col-sm-4">
<div class="single-blog">
<div class="blo-image-and-date">
<img src="img/blog/blog-three.jpg" alt="">
<a href="#">24 may</a>
</div>
<div class="blog-info">
<div class="admin">
<a href="#"><i class="fa fa-user" aria-hidden="true"></i> By: Admin</a>
</div>
<div class="comment">
<a href="#"><i class="fa fa-heart" aria-hidden="true"></i> 15</a>
<a href="#"><i class="fa fa-comment" aria-hidden="true"></i> 25</a>
</div>
</div>
<div class="blog-text">
<h3><a href="#">Lorem ipsum dolor sit amet</a></h3>
<p>Lorem ipsum dolor sit amet, consectetur adipicing elit. Nullam feugiat dignissim metus, id vestibulum tellus Cras ante commodo.</p>
<a href="#">Read More...</a>
</div>
</div>
</div>
<!-- End single blog -->
</div>
<!-- End blog -->
</div>
</div>
</section>
<!-- End blog area -->
<!-- Start brand logo area -->
<section class="brand-logo-area pb-90">
<div class="container">
<div class="row">
<!-- Start section title -->
<div class="col-sm-12">
<div class="section-title text-center">
<h2>OUR <span>SPONSORS</span></h2>
<img src="img/title-bottom.png" alt="">
</div>
</div>
<!-- End section title -->
<!-- Start brand logo -->
<div class="brand-logo">
<div class="col-sm-2">
<div class="b-logo">
<a href="http://psdrightsell.com/"><img src="img/brand-logo/b-logo-one.png" alt="psdrightsell"></a>
</div>
</div>
<div class="col-sm-2">
<div class="b-logo">
<a href="http://hastech.company/"><img src="img/brand-logo/b-logo-two.png" alt="hastech"></a>
</div>
</div>
<div class="col-sm-2">
<div class="b-logo">
<a href="https://devitems.com/"><img src="img/brand-logo/b-logo-three.png" alt="devitems"></a>
</div>
</div>
<div class="col-sm-2">
<div class="b-logo">
<a href="https://themeforest.net/user/power-boosts"><img src="img/brand-logo/b-logo-four.png" alt="power boosts"></a>
</div>
</div>
<div class="col-sm-2">
<div class="b-logo">
<a href="https://themeforest.net/user/hastech/portfolio"><img src="img/brand-logo/b-logo-five.png" alt="hastech"></a>
</div>
</div>
<div class="col-sm-2">
<div class="b-logo">
<a href="https://themeforest.net/user/codecarnival"><img src="img/brand-logo/b-logo-six.png" alt="codecarnival"></a>
</div>
</div>
</div>
<!-- End brand logo -->
</div>
</div>
</section>
<!-- End brand logo area -->
<!-- Start footer -->
<footer>
<div class="footer-top pt-50 pb-50">
<div class="container">
<div class="row">
<div class="footer-widget-area">
<!-- Start footer widget -->
<div class="col-sm-4">
<div class="footer-widget widget-one">
<div class="footer-widget-title">
<h3>ABOUT US</h3>
</div>
<div class="widget-about-content">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id tincidunt risus. </p>
</div>
<div class="widget-contact-content">
<h3>CONTACT US</h3>
<a href="tel:+0012345678">Phone : +(00) 1234-5678</a>
<a href="mailto:[email protected]">Email : [email protected]</a>
<p>Address : 122, New road, South Zone Country.</p>
</div>
</div>
</div>
<!-- End footer widget -->
<!-- Start footer widget -->
<div class="col-sm-2">
<div class="footer-widget widget-two">
<div class="footer-widget-title">
<h3>OUR PROJECT</h3>
</div>
<nav>
<ul>
<li><a href="#">Water Surve</a></li>
<li><a href="#">Education for all</a></li>
<li><a href="#">Treatment</a></li>
<li><a href="#">Food Serving</a></li>
<li><a href="#">Cloth</a></li>
<li><a href="#">Selter Project</a></li>
</ul>
</nav>
</div>
</div>
<!-- End footer widget -->
<!-- Start footer widget -->
<div class="col-sm-2">
<div class="footer-widget widget-two">
<div class="footer-widget-title">
<h3>QUCIK LINK</h3>