-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1132 lines (1130 loc) · 61.9 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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="images/favicon.png">
<title>ECO HTML</title>
<!-- CSS FILES START -->
<link href="css/custom.css" rel="stylesheet">
<link href="css/color.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="css/owl.carousel.min.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/all.min.css" rel="stylesheet">
<!-- CSS FILES End -->
</head>
<body>
<div class="wrapper home2">
<!--Header Start-->
<header class="header-style-2">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index-2.html"><img src="images/h2logo.png" alt=""></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <i class="fas fa-bars"></i> </button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="index-2.html" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Home </a>
<ul class="dropdown-menu" >
<li><a href="index-2.html">Home One</a></li>
<li><a href="home-two.html">Home Two</a></li>
<li><a href="home-three.html">Home Three</a></li>
</ul>
</li>
<li class="nav-item"> <a class="nav-link" href="about.html">About</a> </li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="events-grid.html" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Events </a>
<ul class="dropdown-menu" >
<li><a href="events-grid.html">Events Grid</a></li>
<li><a href="events-grid-2.html">Events Grid Two</a></li>
<li><a href="events-grid-3.html">Events Grid Three</a></li>
<li><a href="events-list.html">Events List</a></li>
<li><a href="events-list-two.html">Events List Two</a></li>
<li><a href="event-details.html">Event Details</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="causes.html" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Causes </a>
<ul class="dropdown-menu" >
<li><a href="causes.html">Causes Grid</a></li>
<li><a href="causes-list.html">Causes List</a></li>
<li><a href="causes-details.html">Causes Details</a> </li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="blog.html" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Blogs </a>
<ul class="dropdown-menu" >
<li><a href="blog.html">Blog Default</a></li>
<li><a href="blog-list.html">Blog List</a> </li>
<li><a href="blog-grid.html">Blog Grid</a></li>
<li><a href="blog-two-col.html">Blog Two Columns</a> </li>
<li><a href="blog-three-col.html">Blog Three Columns</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Pages </a>
<ul class="dropdown-menu" >
<li>
<a href="#">Projects</a>
<ul class="dropdown-menu" >
<li><a href="projects.html">Projects</a> </li>
<li><a href="projects-grid.html">Projects Grid</a> </li>
<li><a href="projects-grid-two.html">Projects Grid Two</a> </li>
<li><a href="projects-list.html">Projects List</a> </li>
<li><a href="projects-details.html">Project Details</a> </li>
</ul>
</li>
<li>
<a href="#">Shop</a>
<ul class="dropdown-menu" >
<li><a href="shop.html">Shop</a> </li>
<li><a href="shop-two.html">Shop Two</a> </li>
<li><a href="shop-details.html">Shop Details</a> </li>
</ul>
</li>
<li>
<a href="team.html">Team</a>
<ul class="dropdown-menu" >
<li><a href="team.html">Team One</a> </li>
<li><a href="team-two.html">Team Two</a> </li>
<li><a href="team-details.html">Team Details</a> </li>
</ul>
</li>
<li>
<a href="#">Gallery</a>
<ul class="dropdown-menu" >
<li><a href="gallery-grid.html">Gallery Grid</a> </li>
<li><a href="gallery-full.html">Gallery Full</a> </li>
<li><a href="gallery-masonry.html">Gallery Masonry</a> </li>
</ul>
</li>
<li><a href="testimonials.html">Testimonials</a> </li>
<li><a href="donation.html">Donation</a> </li>
<li><a href="my-account.html">My Account</a> </li>
<li><a href="coming-soon.html">Coming Soon</a> </li>
<li><a href="page-404.html">404 Error</a> </li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="contact.html" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Contact </a>
<ul class="dropdown-menu" >
<li><a href="contact-one.html">Contact One</a> </li>
<li><a href="contact-two.html">Contact Two</a> </li>
</ul>
</li>
</ul>
<ul class="topnav-right">
<li> <a class="mdonate" href="donation.html"><span>Make a Donation</span></a> </li>
<li> <a class="search-icon" href="#search"> <i class="fas fa-search"></i> </a> </li>
<li class="dropdown">
<a class="cart-icon" href="#" role="button" id="cartdropdown" data-toggle="dropdown"> <i class="fas fa-shopping-cart"></i></a>
<div class="dropdown-menu cart-box" aria-labelledby="cartdropdown">
Recently added item(s)
<ul class="list">
<li class="item">
<a href="#" class="preview-image"><img class="preview" src="images/pro.jpg" alt=""></a>
<div class="description"> <a href="#">Sample Course</a> <strong class="price">1 x $44.95</strong> </div>
</li>
<li class="item">
<a href="#" class="preview-image"><img class="preview" src="images/pro.jpg" alt=""></a>
<div class="description"> <a href="#">Sample Course</a> <strong class="price">1 x $44.95</strong> </div>
</li>
</ul>
<div class="total">Total: <strong>$44.95</strong></div>
<div class="view-link"><a href="#">Proceed to Checkout</a> <a href="#">View cart </a></div>
</div>
</li>
<li class="login-reg"> <a href="my-account.html">Login</a> | <a href="my-account.html">Signup</a> </li>
</ul>
</div>
</nav>
</header>
<div id="search">
<button type="button" class="close">×</button>
<form class="search-overlay-form">
<input type="search" value="" placeholder="type keyword(s) here" />
<button type="submit" class="btn btn-primary"><i class="fas fa-search"></i></button>
</form>
</div>
<!--Header End-->
<!--Slider Start-->
<section id="home-slider" class="owl-carousel owl-theme wf100">
<div class="item">
<div class="slider-caption h2slider">
<div class="container">
<strong>Ecova<span> is the Best</span></strong>
<h1>Eco Friendly</h1>
<p>Nonprofit WordPress Theme</p>
<a href="#" class="active">Find Out More</a> <a href="#">Join us Now</a>
</div>
</div>
<img src="images/h2-slide1.jpg" alt="">
</div>
<div class="item">
<div class="slider-caption h2slider">
<div class="container">
<strong><span>Please</span> Stop Hunting & </strong>
<h1>Save WildLife</h1>
<p>of <strong>endangered animals</strong> in the world</p>
<a href="#" class="active">Find Out More</a> <a href="#">Join us Now</a>
</div>
</div>
<img src="images/h2-slide2.jpg" alt="">
</div>
<div class="item">
<div class="slider-caption h2slider">
<div class="container">
<strong>Save <span> & don’t waste our life</span> partner</strong>
<h1>Water Resource</h1>
<p>Before <strong>it’s too late</strong> for us...</p>
<a href="#" class="active">Find Out More</a> <a href="#">Join us Now</a>
</div>
</div>
<img src="images/h2-slide3.jpg" alt="">
</div>
</section>
<!--Slider End-->
<!--Service Area Start-->
<section class="services-area wf100">
<div class="container">
<ul>
<!--box start-->
<li>
<div class="sinfo">
<img src="images/sericon1.png" alt="">
<h6>Recycling</h6>
<p>Waste Management</p>
</div>
</li>
<!--box end-->
<!--box start-->
<li>
<div class="sinfo">
<img src="images/sericon2.png" alt="">
<h6>Wind Energy</h6>
<p>Polar, Prevailing, Tropical</p>
</div>
</li>
<!--box end-->
<!--box start-->
<li>
<div class="sinfo">
<img src="images/sericon3.png" alt="">
<h6>Pure Water</h6>
<p>Save Water Resources</p>
</div>
</li>
<!--box end-->
<!--box start-->
<li class="active">
<div class="sinfo">
<img src="images/sericon4.png" alt="">
<h6>Solar Panels</h6>
<p>Save Natural Engery</p>
</div>
</li>
<!--box end-->
<!--box start-->
<li>
<div class="sinfo">
<img src="images/sericon5.png" alt="">
<h6>Forest Planting</h6>
<p>Make Plants Alive for Life</p>
</div>
</li>
<!--box end-->
</ul>
</div>
</section>
<!--Service Area End-->
<!--About Section Start-->
<section class="home2-about wf100 p100 gallery">
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="video-img"> <a href="http://vimeo.com/43338103&width=700" data-rel="prettyPhoto" title="Vimeo video"><i class="fas fa-play"></i></a> <img src="images/h2about.jpg" alt=""> </div>
</div>
<div class="col-md-7">
<div class="h2-about-txt">
<h3>About ecova</h3>
<h2>Eco-friendly products can be made from scratch.</h2>
<p> If anything’s hot in today’s economy, it’s saving money, including a broad range of green businesses helping people save energy, water, and other resources. </p>
<a class="aboutus" href="#">More About us</a>
</div>
</div>
</div>
</div>
<div class="home-facts counter pt80">
<div class="container">
<div class="row">
<div class="col-lg-3 col-sm-6 col-md-3">
<div class="counter-box">
<p class="counter-count">89000</p>
<p class="ctxt">Trees Planted</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-md-3">
<div class="counter-box">
<p class="counter-count">79000</p>
<p class="ctxt">Solar Panels in 2017</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-md-3">
<div class="counter-box">
<p class="counter-count">69000</p>
<p class="ctxt">Wildlife Saved</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-md-3">
<div class="counter-box">
<p class="counter-count">59000</p>
<p class="ctxt">Served Water Gallons</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--About Section End-->
<!--Urgent Causes Start-->
<section class="urgent-causes wf100 p80">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="section-title-2 white">
<h5>Urgent Cause</h5>
<h2>Stop Global Warming</h2>
</div>
<p> We need your support and help to Stop Globar Warning. Few generations ago it to seemed like the world’s resources were infinite, and the people needed only. </p>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 55%" aria-valuenow="55" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<ul class="funds">
<li class="text-left"><strong>73%</strong> Funded</li>
<li class="text-center"><strong>$948.00</strong> Raised</li>
<li class="text-right"><strong>$1750.00</strong> Required</li>
</ul>
</div>
<div class="col-md-6">
<div class="donation-amount">
<h5>Donation Amount</h5>
<form>
<ul class="radio-boxes">
<li>
<div class="radio custom">
<input name="donation" id="d1" type="radio" class="css-radio">
<label for="d1" class="css-label">$5</label>
</div>
</li>
<li>
<div class="radio custom">
<input name="donation" id="d2" type="radio" class="css-radio">
<label for="d2" class="css-label">$20</label>
</div>
</li>
<li>
<div class="radio custom">
<input name="donation" id="d3" type="radio" class="css-radio">
<label for="d3" class="css-label">$50</label>
</div>
</li>
<li>
<div class="radio custom">
<input name="donation" id="d4" type="radio" class="css-radio">
<label for="d4" class="css-label">$100</label>
</div>
</li>
<li>
<div class="radio custom">
<input name="donation" id="d5" type="radio" class="css-radio">
<label for="d5" class="css-label">$250</label>
</div>
</li>
<li>
<div class="radio custom">
<input name="donation" id="d6" type="radio" class="css-radio">
<label for="d6" class="css-label">$500</label>
</div>
</li>
<li>
<div class="radio custom">
<input name="donation" id="d7" type="radio" class="css-radio">
<label for="d7" class="css-label">$1000</label>
</div>
</li>
<li>
<div class="inputs">
<input class="enter" type="text" placeholder="$ Other">
</div>
</li>
<li class="form-submit">
<button type="submit">Continue to Donate</button>
</li>
</ul>
</form>
</div>
</div>
</div>
</div>
</section>
<!--Urgent Causes End-->
<!--Current Projects Start-->
<section class="wf100 p80 current-projects">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="section-title-2">
<h5>We are working these</h5>
<h2>Current Projects</h2>
</div>
</div>
<div class="col-lg-6">
<ul class="nav" id="myTab" role="tablist">
<li class="nav-item"> <a class="nav-link active" id="wildlife-tab" data-toggle="tab" href="#wildlife" role="tab" aria-controls="wildlife-tab" aria-selected="true">Wildlife</a> </li>
<li class="nav-item"> <a class="nav-link" id="water-tab" data-toggle="tab" href="#water" role="tab" aria-controls="water-tab" aria-selected="false">Water Resources</a> </li>
<li class="nav-item"> <a class="nav-link" id="solar-tab" data-toggle="tab" href="#solar" role="tab" aria-controls="solar-tab" aria-selected="false">Solar Energy</a> </li>
<li class="nav-item"> <a class="nav-link" id="recycling-tab" data-toggle="tab" href="#recycling" role="tab" aria-controls="recycling-tab" aria-selected="false">Recycling</a> </li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="tab-content" id="myTabContent">
<!--WildLife Slider Start-->
<div class="tab-pane fade show active" id="wildlife" role="tabpanel" aria-labelledby="wildlife-tab">
<div class="cpro-slider owl-carousel owl-theme">
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro1.jpg" alt="">
<h5>Forest & Tree Planting</h5>
<div class="pro-hover">
<h6>Forest & Tree Planting</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro2.jpg" alt="">
<h5>Recycling & Waste Management</h5>
<div class="pro-hover">
<h6>Recycling & Waste Management</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro3.jpg" alt="">
<h5>Solar & Wind
Energy
</h5>
<div class="pro-hover">
<h6>Solar & Wind
Energy
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro4.jpg" alt="">
<h5>Saving Wildlife
& their Cubs
</h5>
<div class="pro-hover">
<h6>Saving Wildlife
& their Cubs
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro5.jpg" alt="">
<h5>Forest & Tree Planting</h5>
<div class="pro-hover">
<h6>Forest & Tree Planting</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro6.jpg" alt="">
<h5>Recycling & Waste Management</h5>
<div class="pro-hover">
<h6>Recycling & Waste Management</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro7.jpg" alt="">
<h5>Solar & Wind
Energy
</h5>
<div class="pro-hover">
<h6>Solar & Wind
Energy
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro8.jpg" alt="">
<h5>Saving Wildlife
& their Cubs
</h5>
<div class="pro-hover">
<h6>Saving Wildlife
& their Cubs
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
</div>
</div>
<!--WildLife Slider End-->
<!--Water Resources Slider Start-->
<div class="tab-pane fade" id="water" role="tabpanel" aria-labelledby="water-tab">
<div class="cpro-slider owl-carousel owl-theme">
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro5.jpg" alt="">
<h5>Forest & Tree Planting</h5>
<div class="pro-hover">
<h6>Forest & Tree Planting</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro6.jpg" alt="">
<h5>Recycling & Waste Management</h5>
<div class="pro-hover">
<h6>Recycling & Waste Management</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro7.jpg" alt="">
<h5>Solar & Wind
Energy
</h5>
<div class="pro-hover">
<h6>Solar & Wind
Energy
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro8.jpg" alt="">
<h5>Saving Wildlife
& their Cubs
</h5>
<div class="pro-hover">
<h6>Saving Wildlife
& their Cubs
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro1.jpg" alt="">
<h5>Forest & Tree Planting</h5>
<div class="pro-hover">
<h6>Forest & Tree Planting</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro2.jpg" alt="">
<h5>Recycling & Waste Management</h5>
<div class="pro-hover">
<h6>Recycling & Waste Management</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro3.jpg" alt="">
<h5>Solar & Wind
Energy
</h5>
<div class="pro-hover">
<h6>Solar & Wind
Energy
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro4.jpg" alt="">
<h5>Saving Wildlife
& their Cubs
</h5>
<div class="pro-hover">
<h6>Saving Wildlife
& their Cubs
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
</div>
</div>
<!--Water Resources Slider End-->
<!--Solar Energy Slider Start-->
<div class="tab-pane fade" id="solar" role="tabpanel" aria-labelledby="solar-tab">
<div class="cpro-slider owl-carousel owl-theme">
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro7.jpg" alt="">
<h5>Solar & Wind
Energy
</h5>
<div class="pro-hover">
<h6>Solar & Wind
Energy
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro8.jpg" alt="">
<h5>Saving Wildlife
& their Cubs
</h5>
<div class="pro-hover">
<h6>Saving Wildlife
& their Cubs
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro5.jpg" alt="">
<h5>Forest & Tree Planting</h5>
<div class="pro-hover">
<h6>Forest & Tree Planting</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro6.jpg" alt="">
<h5>Recycling & Waste Management</h5>
<div class="pro-hover">
<h6>Recycling & Waste Management</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro3.jpg" alt="">
<h5>Solar & Wind
Energy
</h5>
<div class="pro-hover">
<h6>Solar & Wind
Energy
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro4.jpg" alt="">
<h5>Saving Wildlife
& their Cubs
</h5>
<div class="pro-hover">
<h6>Saving Wildlife
& their Cubs
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro1.jpg" alt="">
<h5>Forest & Tree Planting</h5>
<div class="pro-hover">
<h6>Forest & Tree Planting</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro2.jpg" alt="">
<h5>Recycling & Waste Management</h5>
<div class="pro-hover">
<h6>Recycling & Waste Management</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
</div>
</div>
<!--Solar Energy Slider End-->
<!--Recycling Slider Start-->
<div class="tab-pane fade" id="recycling" role="tabpanel" aria-labelledby="recycling-tab">
<div class="cpro-slider owl-carousel owl-theme">
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro7.jpg" alt="">
<h5>Solar & Wind
Energy
</h5>
<div class="pro-hover">
<h6>Solar & Wind
Energy
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro8.jpg" alt="">
<h5>Saving Wildlife
& their Cubs
</h5>
<div class="pro-hover">
<h6>Saving Wildlife
& their Cubs
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro3.jpg" alt="">
<h5>Solar & Wind
Energy
</h5>
<div class="pro-hover">
<h6>Solar & Wind
Energy
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro4.jpg" alt="">
<h5>Saving Wildlife
& their Cubs
</h5>
<div class="pro-hover">
<h6>Saving Wildlife
& their Cubs
</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro1.jpg" alt="">
<h5>Forest & Tree Planting</h5>
<div class="pro-hover">
<h6>Forest & Tree Planting</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box-->
<div class="item">
<div class="pro-box">
<img src="images/current-pro2.jpg" alt="">
<h5>Recycling & Waste Management</h5>
<div class="pro-hover">
<h6>Recycling & Waste Management</h6>
<p>We are working over 20 years on Waste Management & Material Recycling Projects.</p>
<a href="#">Read More</a>
</div>
</div>
</div>
<!--Pro Box End-->
</div>
</div>
<!--Recycling Slider End-->
</div>
</div>
</div>
</div>
</section>
<!--Current Projects End-->
<!--News & Articles Start-->
<section class="h2-news wf100 p80">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="section-title-2">
<h5>Read Our Latest</h5>
<h2>News & Articles</h2>
</div>
</div>
<div class="col-md-6"> <a href="#" class="view-more">View More News</a> </div>
</div>
<div class="row">
<div class="col-md-6">
<div class="blog-post-large">
<div class="post-thumb"> <a href="#"><i class="fas fa-link"></i></a> <img src="images/h2news1.jpg" alt=""></div>
<div class="post-txt">
<ul class="post-meta">
<li><i class="fas fa-calendar-alt"></i> 29 September, 2018</li>
<li><i class="fas fa-comments"></i> 134 Comments</li>
</ul>
<h5><a href="#">Planting Trees for Better Future</a></h5>
</div>
</div>
</div>
<div class="col-md-6">
<!--Blog Small Post Start-->
<div class="blog-small-post">
<div class="post-thumb"> <a href="#"><i class="fas fa-link"></i></a> <img src="images/h2news2.jpg" alt=""> </div>
<div class="post-txt">
<span class="pdate"> <i class="fas fa-calendar-alt"></i> 29 September, 2018</span>
<h5><a href="#">How you can keep alive wildlife long.</a></h5>
<p>According to a survey the perceived higher cost of environmentally.</p>
<a href="#" class="rm">Read More</a>
</div>
</div>
<!--Blog Small Post End-->
<!--Blog Small Post Start-->
<div class="blog-small-post">
<div class="post-thumb"> <a href="#"><i class="fas fa-link"></i></a> <img src="images/h2news3.jpg" alt=""> </div>
<div class="post-txt">
<span class="pdate"> <i class="fas fa-calendar-alt"></i> 29 September, 2018</span>
<h5><a href="#">The effort GoGreen has been felt across</a></h5>
<p>Majority have suffered alteration in some form by injected humour.</p>
<a href="#" class="rm">Read More</a>
</div>
</div>
<!--Blog Small Post End-->
</div>
</div>
</div>
</section>
<!--News & Articles End-->
<!--Why Ecova + Facts Start-->
<section class="why-ecova wf100">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1> Why Ecova!</h1>
<p>Let’s Join us to do something awesome to Save Water, Energey, Control Pollution &
Environment, Wildlife, Forest Planting Implant for Solar System.
</p>
<a href="#" class="cus">Signup to Join us</a>
</div>
</div>
</div>
</section>
<!--Why Ecova + Facts End-->
<!--Online Products Start-->
<section class="online-shop wf100 p80">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-title-2 text-center">
<h5>Read Our Latest</h5>
<h2>News & Articles</h2>
</div>
</div>
</div>
<div class="row">
<!--Pro Box Start-->
<div class="col-md-3 col-sm-6">
<div class="product-box">
<div class="pro-thumb"> <a href="#">Add To Cart</a> <img src="images/pro1.jpg" alt=""></div>
<div class="pro-txt">
<h6><a href="#">Happy Ninja Shirt</a></h6>
<p class="pro-price"><del>$25.00</del> $19.00</p>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box Start-->
<div class="col-md-3 col-sm-6">
<div class="product-box">
<div class="pro-thumb"> <a href="#">Add To Cart</a> <img src="images/pro2.jpg" alt=""></div>
<div class="pro-txt">
<h6><a href="#">Woo corlor shirt</a></h6>
<p class="pro-price"><del>$25.00</del> $19.00</p>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box Start-->
<div class="col-md-3 col-sm-6">
<div class="product-box">
<div class="pro-thumb"> <a href="#">Add To Cart</a> <img src="images/pro3.jpg" alt=""></div>
<div class="pro-txt">
<h6><a href="#">Premium Quality</a></h6>
<p class="pro-price"><del>$25.00</del> $19.00</p>
</div>
</div>
</div>
<!--Pro Box End-->
<!--Pro Box Start-->
<div class="col-md-3 col-sm-6">
<div class="product-box">
<div class="pro-thumb"> <a href="#">Add To Cart</a> <img src="images/pro4.jpg" alt=""></div>
<div class="pro-txt">
<h6><a href="#">Ninja Silhouette</a></h6>