forked from Technocrats-WT/SolarNova
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1082 lines (1047 loc) · 40.2 KB
/
index.html
File metadata and controls
1082 lines (1047 loc) · 40.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Solartec - Renewable Energy Website Template</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<!-- Favicon -->
<link href="./img/favicon (Logo).png" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&family=Roboto:wght@500;700;900&display=swap"
rel="stylesheet"
/>
<!-- Icon Font Stylesheet -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css"
rel="stylesheet"
/>
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet" />
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet" />
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet" />
<style>
.info {
margin: 0;
padding: 0;
max-width: 100%;
text-align: center;
margin-top: 120px;
}
.contact-txt {
margin-top: 20px;
}
.info h1 {
max-width: 100%;
}
.info p {
padding: 0 60px;
margin-left: 80px;
}
.contact-icon {
padding: 0 85px;
}
.contact-icon p {
padding-right: 80px;
}
.message-phone p {
padding-left: 0;
}
/* footer cta styling starts */
.calc_calc h4 {
text-transform: uppercase;
font-size: 15px;
}
.calc_calc {
padding: 10px 5px;
}
.container_calc {
position: relative;
border: 3px solid #ef800d;
border-radius: 25px;
padding: 10px 0;
margin: 20px auto;
width: 50vw;
align-self: center;
z-index: 2;
margin-bottom: -130px;
text-align: center;
background-color: #f5f6f7;
}
.plan_btn {
height: 40px;
width: 150px;
background-color: #024697;
color: #fff;
border: none;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
transition: background-color 0.2s;
}
.plan_btn:hover {
background-color: #02254e;
}
.plan_btn:active {
opacity: 0.7;
}
body {
overflow-x: hidden;
}
/* footer cta styling ends */
</style>
</head>
<body>
<!-- Spinner Start -->
<div
id="spinner"
class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center"
>
<div
class="spinner-border text-primary"
style="width: 3rem; height: 3rem"
role="status"
>
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Spinner End -->
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg bg-white navbar-light sticky-top p-0">
<a
href="index.html"
class="navbar-brand d-flex align-items-center border-end px-4 px-lg-5"
>
<img
class="logo"
src="./img/SOLARNOVA (1).svg"
alt="logo"
width="200px"
/>
</a>
<button
type="button"
class="navbar-toggler me-4"
data-bs-toggle="collapse"
data-bs-target="#navbarCollapse"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto p-4 p-lg-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="products.html" class="nav-item nav-link">Products</a>
<a href="blog.html" class="nav-item nav-link">Blog</a>
<a href="about.html" class="nav-item nav-link">About</a>
</div>
<a
href="quote.html"
class="btn btn-primary rounded-0 py-4 px-lg-5 d-none d-lg-block"
>Calculate Load<i class="fa fa-arrow-right ms-3"></i
></a>
</div>
</nav>
<!-- Navbar End -->
<!-- Carousel Start -->
<div class="container-fluid p-0 pb-5 wow fadeIn" data-wow-delay="0.1s">
<div class="owl-carousel header-carousel position-relative">
<div
class="owl-carousel-item position-relative"
data-dot="<img src='img\blog8.jpg'>"
>
<img class="img-fluid" src="img\blog8.jpg" alt="" />
<div class="owl-carousel-inner">
<div class="container">
<div class="row justify-content-start">
<div class="col-10 col-lg-8">
<h1 class="display-2 text-white animated slideInDown">
Harnessing the Power of Renewable Energy
</h1>
<p class="fs-5 fw-medium text-white mb-4 pb-3">
We help you live your best life through the use of renewable
energy technologies, services and products with
environmental impact for both rural and urban communities.
</p>
<a
href=""
class="btn btn-primary rounded-pill py-3 px-5 animated slideInLeft"
>Read More</a
>
</div>
</div>
</div>
</div>
</div>
<div
class="owl-carousel-item position-relative"
data-dot="<img src='img/carousel-2.jpg'>"
>
<img class="img-fluid" src="img/carousel-2.jpg" alt="" />
<div class="owl-carousel-inner">
<div class="container">
<div class="row justify-content-start">
<div class="col-10 col-lg-8">
<h1 class="display-2 text-white animated slideInDown">
Green Living and Clean Energy
</h1>
<p class="fs-5 fw-medium text-white mb-4 pb-3">
Our primary aim is to provide energy with 100% wind,water
and solar power thus helping mankind live a better,
healthier and sustainable life.
</p>
<a
href=""
class="btn btn-primary rounded-pill py-3 px-5 animated slideInLeft"
>Read More</a
>
</div>
</div>
</div>
</div>
</div>
<div
class="owl-carousel-item position-relative"
data-dot="<img src='./img/water irrigation 1.jpg'>"
>
<img class="img-fluid" src="./img/water irrigation 1.jpg" alt="" />
<div class="owl-carousel-inner">
<div class="container">
<div class="row justify-content-start">
<div class="col-10 col-lg-8">
<h1 class="display-2 text-white animated slideInDown">
A Step Towards a Sustainable Future
</h1>
<p class="fs-5 fw-medium text-white mb-4 pb-3">
Building a sustainable foundation for our future by
accelerating the implementation of renewable energy
technologies and encouraging green living.
</p>
<a
href=""
class="btn btn-primary rounded-pill py-3 px-5 animated slideInLeft"
>Read More</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel End -->
<!-- Feature Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="row g-5">
<div class="col-md-6 col-lg-3 wow fadeIn" data-wow-delay="0.1s">
<div class="d-flex align-items-center mb-4">
<div class="btn-lg-square bg-primary rounded-circle me-3">
<i class="fa fa-users text-white"></i>
</div>
<h1 class="mb-0" data-toggle="counter-up">5473</h1>
</div>
<h5 class="mb-3">Happy Customers</h5>
<span
>Our customers keep returning as we remain valuable to them</span
>
</div>
<div class="col-md-6 col-lg-3 wow fadeIn" data-wow-delay="0.3s">
<div class="d-flex align-items-center mb-4">
<div class="btn-lg-square bg-primary rounded-circle me-3">
<i class="fa fa-check text-white"></i>
</div>
<h1 class="mb-0" data-toggle="counter-up">4234</h1>
</div>
<h5 class="mb-3">Communities Reached</h5>
<span
>We have partnered with organisations to fund and deploy free
solar solutions to poor, unelectrified communities</span
>
</div>
<div class="col-md-6 col-lg-3 wow fadeIn" data-wow-delay="0.5s">
<div class="d-flex align-items-center mb-4">
<div class="btn-lg-square bg-primary rounded-circle me-3">
<i class="fa fa-award text-white"></i>
</div>
<h1 class="mb-0" data-toggle="counter-up">7184</h1>
</div>
<h5 class="mb-3">Successful Transactions</h5>
<span>Times we have provided solar solutions to households</span>
</div>
<div class="col-md-6 col-lg-3 wow fadeIn" data-wow-delay="0.7s">
<div class="d-flex align-items-center mb-4">
<div class="btn-lg-square bg-primary rounded-circle me-3">
<i class="fa fa-users-cog text-white"></i>
</div>
<h1 class="mb-0" data-toggle="counter-up">1821</h1>
</div>
<h5 class="mb-3">Exceptional Workers</h5>
<span
>We have wide range of experienced workers tailored tp customer
needs</span
>
</div>
</div>
</div>
</div>
<!-- Feature End-->
<!-- About Start -->
<div class="container-fluid bg-light overflow-hidden my-5 px-lg-0">
<div class="container about px-lg-0">
<div class="row g-0 mx-lg-0">
<div
class="col-lg-6 ps-lg-0 wow fadeIn"
data-wow-delay="0.1s"
style="min-height: 400px"
>
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="./img/public-power.jpg"
style="object-fit: cover"
alt=""
/>
</div>
</div>
<div
class="col-lg-6 about-text py-5 wow fadeIn"
data-wow-delay="0.5s"
>
<div class="p-lg-5 pe-lg-0">
<h6 class="text-primary">Who We Are</h6>
<h1 class="mb-4">
The Leading Renewable Energy Company in Africa
</h1>
<p>
We believe everyone deserves to have access to affordable
electricity and clean water. Integrity, innovation, expertise
and passion for customer service are at the heart of our value
proposition to customers.
</p>
<p>
<i class="fa fa-check-circle text-primary me-3"></i>Energy
management Systems
</p>
<p>
<i class="fa fa-check-circle text-primary me-3"></i>Carbon
neutrality
</p>
<p>
<i class="fa fa-check-circle text-primary me-3"></i>Nature based
solutions
</p>
<a href="" class="btn btn-primary rounded-pill py-3 px-5 mt-3"
>Explore More</a
>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Service Start -->
<div class="container-xxl py-5">
<div class="container">
<div
class="text-center mx-auto mb-5 wow fadeInUp"
data-wow-delay="0.1s"
style="max-width: 600px"
>
<h6 class="text-primary">Our Services</h6>
<h1 class="mb-4">
Charting a path to a zero carbon future for communities, industries
and citizens.
</h1>
</div>
<div class="row g-4">
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item rounded overflow-hidden">
<img class="img-fluid" src="img/img-600x400-5.jpg" alt="" />
<div class="position-relative p-4 pt-0">
<div class="service-icon">
<i class="fa fa-solar-panel fa-3x"></i>
</div>
<h4 class="mb-3">Solar PV System Installation</h4>
<p>
Our installations are typically solar PV (photovoltaic)
systems. These are systems which are common throughout the UK
and are now Nigeria has the opportunity to harness the Sun’s
energy to save on electricity bills.
</p>
<a class="small fw-medium" href=""
>Read More<i class="fa fa-arrow-right ms-2"></i
></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.3s">
<div class="service-item rounded overflow-hidden">
<img class="img-fluid" src="./img/main 2.jpg" alt="" />
<div class="position-relative p-4 pt-0">
<div class="service-icon">
<i class="fa fa-wind fa-3x"></i>
</div>
<h4 class="mb-3">Consultancy</h4>
<p>
We carry out renewable energy feasibility studies as well sv
pol modelling, energy design and renewable energy planning
permission.
</p>
<a class="small fw-medium" href=""
>Read More<i class="fa fa-arrow-right ms-2"></i
></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.5s">
<div class="service-item rounded overflow-hidden">
<img class="img-fluid" src="./img/water irrigation2.jpg" alt="" />
<div class="position-relative p-4 pt-0">
<div class="service-icon">
<i class="fa fa-lightbulb fa-3x"></i>
</div>
<h4 class="mb-3">Solar PV Water Plants</h4>
<p>
Ground-mount Solar systems are ideal if you have ample
property space within a back garden or farmland. It is an
excellent alternative to a roof-mounted system
</p>
<a class="small fw-medium" href=""
>Read More<i class="fa fa-arrow-right ms-2"></i
></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item rounded overflow-hidden">
<img class="img-fluid" src="./img/p2.png" alt="" />
<div class="position-relative p-4 pt-0">
<div class="service-icon">
<i class="fa fa-solar-panel fa-3x"></i>
</div>
<h4 class="mb-3">SV Batteries/Inverters</h4>
<p>
We use only the best products in the solar industry. Our
inverters come with Wifi capability to monitor system
performance on desktops, tablets or smartphone devices. The
inverter changes the DC electricity (collected from the solar
panels) to AC electricity so that it can be used in the home.
</p>
<a class="small fw-medium" href=""
>Read More<i class="fa fa-arrow-right ms-2"></i
></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.3s">
<div class="service-item rounded overflow-hidden">
<img class="img-fluid" src="./img/img-9.jpg" alt="" />
<div class="position-relative p-4 pt-0">
<div class="service-icon">
<i class="fa fa-wind fa-3x"></i>
</div>
<h4 class="mb-3">Community Energy</h4>
<p>
As a social enterprise, working on community energy projects
across Africa is an integral part of what we do. We support
communities in shaping the energy transition. We spearheaded
Kenya’s only community solar water pump farm and we are
excellently placed to support more communities in becoming
renewable energy generators that supply and sell power.
</p>
<a class="small fw-medium" href=""
>Read More<i class="fa fa-arrow-right ms-2"></i
></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.5s">
<div class="service-item rounded overflow-hidden">
<img class="img-fluid" src="./img/images (12).jpeg" alt="" />
<div class="position-relative p-4 pt-0">
<div class="service-icon">
<i class="fa fa-lightbulb fa-3x"></i>
</div>
<h4 class="mb-3">Trainings and Education</h4>
<p>
Since the company's inception, events are organised and
trainings delivered to communities, SME’s, energy
professionals and citizens across Africa. We try to trainings
and events that encourages nature based solutions. One of the
ways we’ve achieved this is by organising Energy Tours where
attendees can see first-hand our work, our impacts and our
contribution to a sustainable zero carbon future.
</p>
<a class="small fw-medium" href=""
>Read More<i class="fa fa-arrow-right ms-2"></i
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Service End -->
<!-- Feature Start -->
<div class="container-fluid bg-light overflow-hidden my-5 px-lg-0">
<div class="container feature px-lg-0">
<div class="row g-0 mx-lg-0">
<div
class="col-lg-6 feature-text py-5 wow fadeIn"
data-wow-delay="0.1s"
>
<div class="p-lg-5 ps-lg-0">
<h6 class="text-primary">Why Choose Us!</h6>
<h1 class="mb-4">
Our singular aim is to unlock sustainability in our communities
</h1>
<p class="mb-4 pb-2">
We focus on renewable energy technologies and best practices in
delivering services that chart a path for communities,
businesses and citizens to net carbon neutrality.
</p>
<div class="row g-4">
<div class="col-6">
<div class="d-flex align-items-center">
<div class="btn-lg-square bg-primary rounded-circle">
<i class="fa fa-check text-white"></i>
</div>
<div class="ms-4">
<p class="mb-0">Quality</p>
<h5 class="mb-0">Services</h5>
</div>
</div>
</div>
<div class="col-6">
<div class="d-flex align-items-center">
<div class="btn-lg-square bg-primary rounded-circle">
<i class="fa fa-user-check text-white"></i>
</div>
<div class="ms-4">
<p class="mb-0">Expert</p>
<h5 class="mb-0">Workers</h5>
</div>
</div>
</div>
<div class="col-6">
<div class="d-flex align-items-center">
<div class="btn-lg-square bg-primary rounded-circle">
<i class="fa fa-drafting-compass text-white"></i>
</div>
<div class="ms-4">
<p class="mb-0">Cost</p>
<h5 class="mb-0">Efficient</h5>
</div>
</div>
</div>
<div class="col-6">
<div class="d-flex align-items-center">
<div class="btn-lg-square bg-primary rounded-circle">
<i class="fa fa-headphones text-white"></i>
</div>
<div class="ms-4">
<p class="mb-0">Customer</p>
<h5 class="mb-0">Support</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="col-lg-6 pe-lg-0 wow fadeIn"
data-wow-delay="0.5s"
style="min-height: 400px"
>
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/feature.jpg"
style="object-fit: cover"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
<!-- Feature End -->
<!-- Quote Start -->
<div class="container-fluid bg-light overflow-hidden my-5 px-lg-0">
<div class="container quote px-lg-0">
<!-- Contact Start -->
<div
class="container-fluid bg-light overflow-hidden px-lg-0"
style="margin: 6rem 0"
id="contact"
>
<div class="container contact px-lg-0">
<div class="row g-0 mx-lg-0">
<div
class="col-lg-6 contact-text py-5 wow fadeIn"
data-wow-delay="0.5s"
>
<div class="p-lg-5 ps-lg-0">
<h6 class="text-primary">Contact Us</h6>
<h1 class="mb-4">Feel Free To Contact Us</h1>
<form>
<div class="row g-3">
<div class="col-md-6">
<div class="form-floating">
<input
type="text"
class="form-control"
id="name"
placeholder="Your Name"
required
/>
<label for="name">Your Name</label>
</div>
</div>
<div class="col-md-6">
<div class="form-floating">
<input
type="email"
class="form-control"
id="email"
placeholder="Your Email"
required
/>
<label for="email">Your Email</label>
</div>
</div>
<div class="col-12">
<div class="form-floating">
<input
type="text"
class="form-control"
id="subject"
placeholder="Subject"
/>
<label for="subject">Subject</label>
</div>
</div>
<div class="col-12">
<div class="form-floating">
<textarea
class="form-control"
placeholder="Leave a message here"
id="message"
style="height: 100px"
required
></textarea>
<label for="message">Message</label>
</div>
</div>
<div class="col-12">
<button
class="btn btn-primary rounded-pill py-3 px-5"
type="submit"
>
Send Message
</button>
</div>
</div>
</form>
</div>
</div>
<div class="col-lg-6 pe-lg-0" style="min-height: 400px">
<div class="info">
<h1>
Switch To The
<span style="color: #ef800d" class="span">Sunny</span> side
</h1>
<p>
For quote & any query. Please fill the form. We will get
back to you soon.
</p>
<h2>Contact Information</h2>
<div class="contact-icon">
<a href="http://" class="message-phone">
<img
src="https://img.icons8.com/color/2x/message-squared.png"
alt=""
/>
<p>info@solarnova.com</p>
</a>
<a href="#" class="message-phone">
<img
src="https://assets.website-files.com/62da9c7167f1ceba4e1435f0/62da9c7167f1cef89d14378c_icon-contact-02-growth-template.svg"
alt=""
/>
<p>+0123-456-7890</p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact End -->
</div>
</div>
<!-- Quote End -->
<!-- Team Start -->
<div class="container-xxl py-5">
<div class="container">
<div
class="text-center mx-auto mb-5 wow fadeInUp"
data-wow-delay="0.1s"
style="max-width: 600px"
>
<h6 class="text-primary">Team Member</h6>
<h1 class="mb-4">Experienced Team Members</h1>
</div>
<div class="row g-4">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="team-item rounded overflow-hidden">
<div class="d-flex">
<img class="img-fluid w-75" src="./img/Engf.jpg" alt="" />
<div class="team-social w-25">
<a
class="btn btn-lg-square btn-outline-primary rounded-circle mt-3"
href=""
><i class="fab fa-facebook-f"></i
></a>
<a
class="btn btn-lg-square btn-outline-primary rounded-circle mt-3"
href=""
><i class="fab fa-twitter"></i
></a>
<a
class="btn btn-lg-square btn-outline-primary rounded-circle mt-3"
href=""
><i class="fab fa-instagram"></i
></a>
</div>
</div>
<div class="p-4">
<h5>Femi B. Ogundayo</h5>
<span>CEO, SolarNova</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="team-item rounded overflow-hidden">
<div class="d-flex">
<img class="img-fluid w-75" src="./img/EngW.jpg" alt="" />
<div class="team-social w-25">
<a
class="btn btn-lg-square btn-outline-primary rounded-circle mt-3"
href=""
><i class="fab fa-facebook-f"></i
></a>
<a
class="btn btn-lg-square btn-outline-primary rounded-circle mt-3"
href=""
><i class="fab fa-twitter"></i
></a>
<a
class="btn btn-lg-square btn-outline-primary rounded-circle mt-3"
href=""
><i class="fab fa-instagram"></i
></a>
</div>
</div>
<div class="p-4">
<h5>Rihannah Genti</h5>
<span>Lead Engineer, SolarNova</span>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="team-item rounded overflow-hidden">
<div class="d-flex">
<img class="img-fluid w-75" src="./img/Engff.jpg" alt="" />
<div class="team-social w-25">
<a
class="btn btn-lg-square btn-outline-primary rounded-circle mt-3"
href=""
><i class="fab fa-facebook-f"></i
></a>
<a
class="btn btn-lg-square btn-outline-primary rounded-circle mt-3"
href=""
><i class="fab fa-twitter"></i
></a>
<a
class="btn btn-lg-square btn-outline-primary rounded-circle mt-3"
href=""
><i class="fab fa-instagram"></i
></a>
</div>
</div>
<div class="p-4">
<h5>Prince Wilson</h5>
<span>Lead Supervisor, SolarNova</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Team End -->
<!-- Testimonial Start -->
<div class="container-xxl py-5">
<div class="container">
<div
class="text-center mx-auto mb-5 wow fadeInUp"
data-wow-delay="0.1s"
style="max-width: 600px"
>
<h6 class="text-primary">Testimonial</h6>
<h1 class="mb-4">What Our Clients Say!</h1>
</div>
<div
class="owl-carousel testimonial-carousel wow fadeInUp"
data-wow-delay="0.1s"
>
<div class="testimonial-item text-center">
<div class="testimonial-img position-relative">
<img
class="img-fluid rounded-circle mx-auto mb-5"
src="./img/tes 3.jpg"
/>
<div class="btn-square bg-primary rounded-circle">
<i class="fa fa-quote-left text-white"></i>
</div>
</div>
<div class="testimonial-text text-center rounded p-4">
<p>
My community, situated in a very remote town, had never been electrified. We used kerosene lit lanterns and more or less lived in the dark age. Thanks to the solar solutions
provided by SolarNova, Solar panels are serving the purpose in
a very nice, clean and efficient way.
</p>
<h5 class="mb-1">Ihotu Anna</h5>
<span class="fst-italic">Trader</span>
</div>
</div>
<div class="testimonial-item text-center">
<div class="testimonial-img position-relative">
<img
class="img-fluid rounded-circle mx-auto mb-5"
src="./img/tes 1.jpg"
/>
<div class="btn-square bg-primary rounded-circle">
<i class="fa fa-quote-left text-white"></i>
</div>
</div>
<div class="testimonial-text text-center rounded p-4">
<p>
I'm grateful to SolarNova for coming to rescue our electricity
issue. Before the outreach, we didn't have light for weeks. But
because of Solar Nova we have reliable electricity at an affordable price.
</p>
<h5 class="mb-1">Abiodun Dammilola</h5>
<span class="fst-italic">Student</span>
</div>
</div>
<div class="testimonial-item text-center">
<div class="testimonial-img position-relative">
<img
class="img-fluid rounded-circle mx-auto mb-5"
src="./img/tes 2.jpg"
/>
<div class="btn-square bg-primary rounded-circle">
<i class="fa fa-quote-left text-white"></i>
</div>
</div>
<div class="testimonial-text text-center rounded p-4">
<p>
Thanks to SolarNova, my hospital never has to struggle with power problems, all the better for the health of our patients.
</p>
<h5 class="mb-1">Paul Samuel</h5>
<span class="fst-italic">Medical Doctor</span>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Footer Start -->
<div class="container_calc">
<div class="calc_calc">
<h4>
Need to know what solar solution would fit your electricity needs?
</h4>
<p>
Use our electrical load calculator to find the best system for you
</p>
<a href="quote.html">
<button class="plan_btn">CALCULATE LOAD</button>
</a>
</div>
</div>
<div
class="container-fluid bg-dark text-body footer mt-5 pt-5 wow fadeIn"
data-wow-delay="0.1s"
>
<div class="container py-5" style="margin-top: 50px">
<div class="row g-5">
<div class="col-lg-3 col-md-6">
<h5 class="text-white mb-4">Address</h5>
<p class="mb-2" style="color: #ef800d">
<i class="fa fa-map-marker-alt me-3" style="color: #ef800d"></i
>123 Sahara Desert, Africa
</p>
<p class="mb-2" style="color: #ef800d">
<i class="fa fa-phone-alt me-3" style="color: #ef800d"></i>+012
345 67890
</p>
<p class="mb-2" style="color: #ef800d">
<i class="fa fa-envelope me-3" style="color: #ef800d"></i
>solarnova@wt.com
</p>
<div class="d-flex pt-2">
<a class="btn btn-square btn-outline-light btn-social" href=""
><i class="fab fa-twitter" style="color: #ef800d"></i
></a>
<a
class="btn btn-square btn-outline-light btn-social"
href=""
style="color: #ef800d"
><i class="fab fa-facebook-f"></i
></a>
<a
class="btn btn-square btn-outline-light btn-social"
href=""
style="color: #ef800d"
><i class="fab fa-youtube"></i
></a>
<a
class="btn btn-square btn-outline-light btn-social"
href=""
style="color: #ef800d"
><i class="fab fa-linkedin-in"></i
></a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<h5 class="text-white mb-4">Quick Links</h5>
<a class="btn btn-link" href="index.html">Home</a>
<a class="btn btn-link" href="about.html">About Us</a>
<a class="btn btn-link" href="#">Contact Us</a>
<a class="btn btn-link" href="products.html">Our Products</a>
<a class="btn btn-link" href="quote.html">Calculate Load</a>
<a class="btn btn-link" href="blog.html">Blog</a>
</div>
<div class="col-lg-3 col-md-6">
<h5 class="text-white mb-4">Product Gallery</h5>
<div class="row g-2">
<div class="col-4">
<img
class="img-fluid rounded"
src="./img/500-liter-ETC-solar-water-heater.jpg"
alt=""
width="100px"
/>
</div>
<div class="col-4">
<img
class="img-fluid rounded"
src="./img/img-4.jpg"
width="120px"
alt=""
/>
</div>
<div class="col-4">
<img
class="img-fluid rounded"
src="img/water irrigation 1.jpg"
width="100px"
alt=""
/>
</div>
<div class="col-4">
<img class="img-fluid rounded" src="img/gallery-4.jpg" alt="" />