-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
807 lines (720 loc) · 34.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Eco Homes Solutions</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link rel="icon" type="image/x-icon" href="./assets/img/eco-homes-logo.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,700,700i&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css"> -->
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="./assets/css/style.css"> -->
<!-- Template Main CSS File -->
<link href="./assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center header-transparent">
<div class="container d-flex justify-content-between align-items-center">
<div class="logo">
<h1 class="text-light"><a href="index.html"><span><img src="./assets/img/eco-homes-logo.png"
alt="logo"></span></a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav id="navbar" class="navbar">
<ul>
<li><a class="active " href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./services.html">Services</a></li>
<li><a href="./portfolio.html">GBIS</a></li>
<li><a href="./team.html">ECO4</a></li>
<li><a href="./blog.html">Blog</a></li>
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a href="./contact.html">Contact Us</a></li>
<li class="nav-item">
<a class="nav-link " href="javascript:void(0)"><b class="custom-success-btn1">Access Eligibility</b></a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex justify-cntent-center align-items-center">
<div id="heroCarousel" class="container carousel carousel-fade" data-bs-ride="carousel" data-bs-interval="5000">
<div class="carousel-item active">
<div class="carousel-container">
<h2 class="animate__animated animate__fadeInDown">Welcome to <span>Eco Homes Solutions</span></h2>
<p class="animate__animated animate__fadeInUp">Eco Homes Solutions offers sustainable housing solutions
designed to reduce environmental impact while enhancing comfort and efficiency. Our innovative designs
integrate eco-friendly materials, energy-efficient systems, and smart technologies to create homes that
prioritize sustainability without compromising style or functionality.</p>
<a href="" class="btn-get-started animate__animated animate__fadeInUp">Contact us</a>
</div>
</div>
<!-- Slide 2 -->
<div class="carousel-item">
<div class="carousel-container">
<h2 class="animate__animated animate__fadeInDown">Empowering Sustainable Living</h2>
<p class="animate__animated animate__fadeInUp">Join us in empowering sustainable living practices. At Eco
Homes Solutions, we're dedicated to providing innovative solutions that prioritize environmental
conservation without compromising on quality and comfort. By choosing our eco-friendly homes, you're not
just investing in a property; you're embracing a lifestyle that nurtures both people and the planet.
Together, let's create a brighter, more sustainable future.</p>
<a href="#" class="btn-get-started animate__animated animate__fadeInUp">Contact us</a>
</div>
</div>
<!-- Slide 3 -->
<div class="carousel-item">
<div class="carousel-container">
<h2 class="animate__animated animate__fadeInDown">Commitment to Sustainability</h2>
<p class="animate__animated animate__fadeInUp">At Eco Homes Solutions, we are dedicated to sustainability in
every aspect of our work. Our commitment extends from the materials we use to the technologies we integrate.
With a focus on reducing environmental impact, our homes are designed to conserve energy, minimize waste,
and promote eco-friendly living.</p>
<a href="" class="btn-get-started animate__animated animate__fadeInUp">Contact us</a>
</div>
</div>
<a class="carousel-control-prev" href="#heroCarousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon bx bx-chevron-left" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#heroCarousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon bx bx-chevron-right" aria-hidden="true"></span>
</a>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= Services Section ======= -->
<section class="services">
<div class="container">
<h2 class="title good-stuff">GOOD STUFF FOR YOU</h2>
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch" data-aos="fade-up">
<div class="icon-box icon-box-pink">
<div class="icon"><i class="bx bx-sun"></i></div>
<h4 class="title"><a href="">Solar Energy Solutions</a></h4>
<p class="description">Harness the power of the sun with our comprehensive solar energy solutions tailored
to your needs.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="icon-box icon-box-cyan">
<div class="icon"><i class="bx bx-file"></i></div>
<h4 class="title"><a href="#">Solar-Powered Features</a></h4>
<p class="description">Integrate solar-powered features such as energy-efficient lighting and heating
systems to maximize sustainability and reduce utility costs.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="icon-box icon-box-green">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4 class="title"><a href="#">Solar Landscaping Solutions</a></h4>
<p class="description">Enhance your outdoor spaces with solar landscaping solutions, incorporating
sustainable features like solar-powered lights and water features.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="icon-box icon-box-blue">
<div class="icon"><i class="bx bx-world"></i></div>
<h4 class="title"><a href="#">Investment Opportunities</a></h4>
<p class="description">Discover lucrative investment opportunities in solar energy projects with potential
for sustainable growth and profitability.</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- ======= Projects Section ======= -->
<section class="section-services ">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="title-wrap d-flex justify-content-between">
<div class="title-box">
<h2 class="title" style="margin-bottom: 40px;">Projects Statistics</h2>
</div>
</div>
</div>
</div>
<!-- <div class="container"> -->
<div class="row gy-3 ">
<div class="four col-md-3 col-12">
<div class="counter-box colored">
<i class="fa fa-thumbs-o-up"></i>
<span class="counter">1000 </span>
<p>HAPPY CUSTOMERS</p>
</div>
</div>
<div class="four col-md-3 col-12">
<div class="counter-box">
<i class="fa fa-th"></i>
<span class="counter">50</span>
<p>PROJECTS WE HAVE</p>
</div>
</div>
<div class="four col-md-3 col-12">
<div class="counter-box">
<i class="fa fa-check"></i>
<span class="counter">95</span>
<p>SUCCESS RATE</p>
</div>
</div>
<div class="four col-md-3 col-12">
<div class="counter-box">
<i class="fa fa-group"></i>
<span class="counter">50</span>
<p>TEAM MEMBERS</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Projects Section -->
<!-- ======= Why Us Section ======= -->
<section class="why-us section-bg" data-aos="fade-up" date-aos-delay="200">
<div class="container">
<div class="row">
<div class="col-lg-6 video-box">
<img src="assets/img/why-us.jpg" class="img-fluid" alt="">
<a href="javascript:void(0)" class="venobox play-btn mb-4" data-vbtype="video"
data-autoplay="true"></a>
</div>
<div class="col-lg-6 d-flex flex-column justify-content-center p-5">
<div class="icon-box">
<div class="icon"><i class="bx bx-gift"></i></div>
<h4 class="title"><a href="#">Sustainable Building Practices</a></h4>
<p class="description">At Eco Home Solutions, sustainability is at the core of everything we do. We are
dedicated to implementing eco-conscious practices and materials in our construction process to minimize
environmental impact.</p>
</div>
<div class="icon-box">
<div class="icon"><i class="bx bx-paint"></i></div>
<h4 class="title"><a href="#">Personalized Designs</a></h4>
<p class="description">We believe in creating homes that reflect the unique needs and preferences of our
clients. Our personalized design approach ensures that every detail of your home is tailored to your
lifestyle and vision.</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Why Us Section -->
<!-- ======= Features Section ======= -->
<section class="features">
<div class="container">
<div class="section-title">
<h2>Features</h2>
<p>Discover the outstanding features of Soller System that make it your ideal choice for sustainable living.
</p>
</div>
<div class="row" data-aos="fade-up">
<div class="col-md-5">
<img src="./assets/img/lush-green-space.jpg" class="img-fluid" alt="">
</div>
<div class="col-md-7 pt-4">
<h3>Lush Green Spaces</h3>
<p class="fst-italic">
Experience the harmony of nature with vast green spaces integrated within Soller System.
</p>
<ul>
<li><i class="bi bi-check"></i> Enjoy serene walks amidst beautifully landscaped gardens.</li>
<li><i class="bi bi-check"></i> Connect with nature and foster a sense of well-being.</li>
</ul>
</div>
</div>
<div class="row" data-aos="fade-up">
<div class="col-md-5 order-1 order-md-2">
<img src="assets/img/breathing-solar.jpg" class="img-fluid" alt="">
</div>
<div class="col-md-7 pt-5 order-2 order-md-1">
<h3>Breathtaking Views of Soller</h3>
<p class="fst-italic">
Immerse yourself in the breathtaking views that Soller has to offer.
</p>
<p>
From the majestic Tramuntana mountains to the sparkling Mediterranean Sea, Soller boasts unparalleled
natural beauty that will leave you awe-struck.
</p>
</div>
</div>
<div class="row" data-aos="fade-up">
<div class="col-md-5">
<img src="./assets/img/explore-pristine.jpg" class="img-fluid" alt="">
</div>
<div class="col-md-7 pt-5">
<h3>Explore Pristine Beaches in Soller</h3>
<p>Discover the charm of Soller's pristine beaches, where golden sands meet crystal-clear waters.</p>
<ul>
<li><i class="bi bi-check"></i> Relax under the warm Mediterranean sun on secluded beaches.</li>
<li><i class="bi bi-check"></i> Dive into turquoise waters perfect for swimming and water sports.</li>
<li><i class="bi bi-check"></i> Explore hidden coves and coastal trails for unforgettable adventures.</li>
</ul>
</div>
</div>
<div class="row" data-aos="fade-up">
<div class="col-md-5 order-1 order-md-2">
<img src="./assets/img/discover-scenic.jpg" class="img-fluid" alt="">
</div>
<div class="col-md-7 pt-5 order-2 order-md-1">
<h3>Discover Scenic Trails in Soller</h3>
<p class="fst-italic">
Embark on unforgettable adventures along the scenic trails of Soller.
</p>
<p>
Explore lush forests, rugged mountains, and hidden valleys as you immerse yourself in the natural beauty
of Soller. Whether you're a casual hiker or an avid trekker, there's a trail waiting to be discovered.
</p>
</div>
</div>
</div>
</section>
<!-- End Features Section -->
<!-- Testimonial Section Start -->
<section class="User-reviews text-center ">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="title-wrap d-flex justify-content-center">
<div class="title-box ">
<h2 class="title ">What do our customers think?</h2>
</div>
</div>
</div>
</div>
</div>
<!-- TESTIMONIALS -->
<section class="testimonials">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<div id="customers-testimonials" class="owl-carousel">
<!--TESTIMONIAL 1 -->
<div class="item">
<div class="shadow-effect">
<img class="img-circle" src="http://themes.audemedia.com/html/goodgrowth/images/testimonial3.jpg"
alt="">
<p>Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely
synergize resource taxing relationships via premier niche markets. Professionally cultivate.</p>
</div>
<div class="testimonial-name">EMILIANO AQUILANI</div>
</div>
<!--END OF TESTIMONIAL 1 -->
<!--TESTIMONIAL 2 -->
<div class="item">
<div class="shadow-effect">
<img class="img-circle" src="http://themes.audemedia.com/html/goodgrowth/images/testimonial3.jpg"
alt="">
<p>Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely
synergize resource taxing relationships via premier niche markets. Professionally cultivate.</p>
</div>
<div class="testimonial-name">ANNA ITURBE</div>
</div>
<!--END OF TESTIMONIAL 2 -->
<!--TESTIMONIAL 3 -->
<div class="item">
<div class="shadow-effect">
<img class="img-circle" src="http://themes.audemedia.com/html/goodgrowth/images/testimonial3.jpg"
alt="">
<p>Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely
synergize resource taxing relationships via premier niche markets. Professionally cultivate.</p>
</div>
<div class="testimonial-name">LARA ATKINSON</div>
</div>
<!--END OF TESTIMONIAL 3 -->
<!--TESTIMONIAL 4 -->
<div class="item">
<div class="shadow-effect">
<img class="img-circle" src="http://themes.audemedia.com/html/goodgrowth/images/testimonial3.jpg"
alt="">
<p>Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely
synergize resource taxing relationships via premier niche markets. Professionally cultivate.</p>
</div>
<div class="testimonial-name">IAN OWEN</div>
</div>
<!--END OF TESTIMONIAL 4 -->
<!--TESTIMONIAL 5 -->
<div class="item">
<div class="shadow-effect">
<img class="img-circle" src="http://themes.audemedia.com/html/goodgrowth/images/testimonial3.jpg"
alt="">
<p>Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely
synergize resource taxing relationships via premier niche markets. Professionally cultivate.</p>
</div>
<div class="testimonial-name">MICHAEL TEDDY</div>
</div>
<!--END OF TESTIMONIAL 5 -->
</div>
</div>
</div>
</div>
</section>
<!-- END OF TESTIMONIALS -->
</section>
<!-- Testimonial Section End -->
<!-- faqs section start -->
<section id="questions" >
<div class="container my-md-5 my-2">
<div class="container-fluid">
<div class="row my-md-5 my-2">
<div class="col-md-5">
<a class="btn custom-success-btn" href="javascript:void(0)"><b>QUESTION</b></a>
<a class="btn" href="javascript:void(0)"><b>FOR US</b></a>
<h2 class="mb-3 mt-5"><b>Some General Question?</b></h2>
<p class="">Exploring the newly launched ECO4 grants may spark various questions. Below are key frequently
asked questions to assist in gaining a comprehensive understanding. Delving into these inquiries
addresses uncertainties and aids navigation.</p>
<img src="./assets/img/faqs.jpg" class="img-fluid" alt="">
</div>
<div class="col-md-1"></div>
<div class="col-md-6">
<div class="card-body shadow-sm p-0 my-5">
<h2>
<button class="btn w-100 collapse-btn collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseExample1" aria-expanded="false" aria-controls="collapseExample1"
style="font-weight: 500;">
<span class="float-start"><b>What is the ECO4 grant? </b></span><span
class="plus-minus float-end"><img src="./assets/img/add-circle-blue-512.webp" alt=""></span>
</button>
</h2>
<div class="collapse custom-collapse p-3" id="collapseExample1">
<div class="accordion-body">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. ...
</div>
</div>
</div>
<div class="card-body shadow-sm p-0 my-5">
<h2>
<button class="btn w-100 collapse-btn collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseExample2" aria-expanded="false" aria-controls="collapseExample2"
style="font-weight: 500;">
<span class="float-start"><b>What's the EPC minimum requirement? </b></span><span
class="plus-minus float-end"><img src="./assets/img/add-circle-blue-512.webp" alt=""></span>
</button>
</h2>
<div class="collapse custom-collapse p-3" id="collapseExample2">
he EPC minimum requirements vary depending on the type of property. Residential Properties: In England
and Wales, landlords of privately rented properties are required to achieve a minimum EPC rating of E.
This means that the property must have an energy
rating of E or above. This requirement was introduced in 2018 for new tenancies.
</div>
</div>
<div class="card-body shadow-sm p-0 my-5">
<h2>
<button class="btn w-100 collapse-btn collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseExample3" aria-expanded="false" aria-controls="collapseExample"
style="font-weight: 500;">
<span class="float-start"><b>What are the qualifying benefits? </b></span><span
class="plus-minus float-end"><img src="./assets/img/add-circle-blue-512.webp" alt=""></span>
</button>
</h2>
<div class="collapse custom-collapse p-3" id="collapseExample3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. ...
</div>
</div>
<div class="card-body shadow-sm p-0 my-5">
<h2>
<button class="btn w-100 collapse-btn collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseExample4" aria-expanded="false" aria-controls="collapseExample"
style="font-weight: 500;">
<span class="float-start"><b>How is ECO4 different from ECO3? </b></span><span
class="plus-minus float-end"><img src="./assets/img/add-circle-blue-512.webp" alt=""></span>
</button>
</h2>
<div class="collapse custom-collapse p-3" id="collapseExample4">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. ...
</div>
</div>
<div class="card-body shadow-sm p-0 my-5">
<h2>
<button class="btn w-100 collapse-btn collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseExample5" aria-expanded="false" aria-controls="collapseExample"
style="font-weight: 500;">
<span class="float-start"><b>How to minimize my carbon footprint? </b></span><span
class="plus-minus float-end"><img src="./assets/img/add-circle-blue-512.webp" alt=""></span>
</button>
</h2>
<div class="collapse custom-collapse p-3" id="collapseExample5">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. ...
</div>
</div>
<div class="card-body shadow-sm p-0 my-5">
<h2>
<button class="btn w-100 collapse-btn collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseExample6" aria-expanded="false" aria-controls="collapseExample"
style="font-weight: 500;">
<span class="float-start"><b>Which energy companies offer ECO? </b></span><span
class="plus-minus float-end"><img src="./assets/img/add-circle-blue-512.webp" alt=""></span>
</button>
</h2>
<div class="collapse custom-collapse p-3" id="collapseExample6">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. ...
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- our partners section start -->
<section class="my-md-0 my-2 shadow" >
<div class="container pt-0">
<div class="container-fluid my-md-0 my-2">
<!-- <center> -->
<!-- <a class="btn custom-success-btn" href="javascript:void(0)"><b>RECENT</b></a> -->
<!-- <a class="btn" href="javascript:void(0)"><b>INSTALL</b></a> -->
<h2 class="text-center" style="margin-bottom: 40px;"><b>Certified Energy Provider</b></h2>
<!-- <p style="font-size:13px;">Explore a showcase of our recent accomplishments and projects.</p> -->
<!-- </center> -->
</div>
</div>
<div class="owl-carousel" id="owl-carousel-2">
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner1.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner2.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner3.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner4.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner5.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner6.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner7.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner8.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner9.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner10.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner11.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner12.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner13.webp">
</a>
</div>
<div class="item">
<a class="popup-youtube" href="javascript:void(0)">
<img src="./assets/img/partner14.webp">
</a>
</div>
</div>
</section>
</main>
<!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer" data-aos="fade-up" data-aos-easing="ease-in-out" data-aos-duration="500">
<!-- <div class="footer-newsletter">
<div class="container">
<div class="row">
<div class="col-lg-6">
<a href=""><img src="./assets/img/eco-homes-logo.png" alt="" style="width: 200px;"></a>
</div>
<div class="col-lg-6">
<form action="" method="post">
<input type="email" name="email"><input type="submit" value="Subscribe">
</form>
</div>
</div>
</div>
</div> -->
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<a href=""><img src="./assets/img/eco-homes-logo.png" alt="" style="width: 220px;"></a>
<p>Trading style of Eco homes solutions, a company registered in England and Wales with the Company Number
12685974.</p>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Company</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="javascript:void(0)">Contact us</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="javascript:void(0)">About us</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="javascript:void(0)">Services</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="javascript:void(0)">Blogs</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="javascript:void(0)">Privacy policy</a></li>
</ul>
</div>
<!-- <div class="col-lg-3 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="javascript:void(0)">Solar Panel Installation
</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Solar Energy System Design</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Energy Efficiency Consultation</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Solar Battery Storage Solutions</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Solar Maintenance and Repair Services</a></li>
</ul>
</div> -->
<div class="col-lg-3 col-md-6 footer-contact">
<h4>Pakistan</h4>
<p>
Rawalpindi Islamabad<br>
Behriya town<br>
Pakistan<br><br>
<strong>Phone:</strong>1234567890<br>
<strong>Email:</strong> example@example.com<br>
</p>
</div>
<div class="col-lg-3 col-md-6 footer-info">
<h3>About eco homes solutions</h3>
<p>Eco Homes Solutions is committed to revolutionizing the concept of sustainable living. With a vision to
create homes that harmonize with nature while embracing modern comforts, we strive to redefine the way
people live and interact with their environment.</p>
<div class="social-links mt-3">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong><span>Eco homes solutions</span></strong>. All Rights Reserved
</div>
<!-- <div class="credits">
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div> -->
</div>
</footer>
<!-- End Footer -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><img
src="./assets/img/whatsapp-logo.png" alt="" style="width: 70px;"></a>
<div id="preloader"></div>
<!-- Vendor JS Files -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/waypoints/noframework.waypoints.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<!-- counter script start -->
<script>
$(document).ready(function () {
$('.counter').each(function () {
$(this).prop('Counter', 0).animate({
Counter: $(this).text()
}, {
duration: 4000,
easing: 'swing',
step: function (now) {
$(this).text(Math.ceil(now));
}
});
});
});
</script>
<!-- counter script end -->
<!-- testimonial script start -->
<script>
jQuery(document).ready(function ($) {
"use strict";
// TESTIMONIALS CAROUSEL HOOK
$('#customers-testimonials').owlCarousel({
loop: true,
center: true,
items: 3,
margin: 0,
autoplay: true,
dots: true,
autoplayTimeout: 8500,
smartSpeed: 450,
responsive: {
0: {
items: 1
},
768: {
items: 2
},
1170: {
items: 3
}
}
});
});
</script>
<!-- testimonial script end -->
</body>
</html>