-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1005 lines (995 loc) · 59.2 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlueCollar</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header class="header">
<section class="header-top-great">
<div class="header-top container">
<div class="header-top-main">
<div class="header-top-hours">
<span class="header-top-hours-title">Opening Hours: 06:00 to 20:00</span>
</div>
<div class="header-top-social">
<ul class="header-social">
<li class="header-social-item"><a href="#"><img src="./icons/facebook.png" alt="facebook"></a></li>
<li class="header-social-item"><a href="#"><img src="./icons/twitter.png" alt="twitter"></a></li>
<li class="header-social-item"><a href="#"><img src="./icons/printest.png" alt="printest"></a></li>
<li class="header-social-item"><a href="#"><img src="./icons/instagram.png" alt="instagram"></a></li>
</ul>
</div>
</div>
</div>
</section>
<section class="header-mid">
<div class="header-mid-main container">
<div class="header-mid-main-item">
<div class="header-mid-logo">
<img src="./icons/logo.png" alt="logo">
</div>
<div class="header-burger">
<span></span>
</div>
<div class="header-mid-col">
<div class="header-mid-email">
<div class="mid-email-logo">
<img src="./icons/email.png" class="header-email-item" alt="email">
</div>
<div class="mid-email">
<div class="mid-email-item-one">Mail Us</div>
<div class="mid-email-item-two"> <a href="mailto:Info@bluecollar.com">Info@bluecollar.com</a></div>
</div>
</div>
<div class="header-mid-phone">
<div class="mid-email-logo">
<img src="./icons/phone.png" class="header-email-item" alt="phone">
</div>
<div class="mid-email">
<div class="mid-email-item-one">Call Us</div>
<div class="mid-email-item-two"> <a href="tel:+01569896654">+01 569 896 654</a></div>
</div>
</div>
</div>
</div>
<div class="header-list-main">
<div class="header-list-col">
<div class="header-list">
<ul class="header-list-list">
<li class="header-list-item"><a data-goto=".moveToHero" href="#">Home</a></li>
<li class="header-list-item"><a data-goto=".moveToProfessional" href="#">About Us</a></li>
<li class="header-list-item"><a data-goto=".moveToService" href="#">Pages</a></li>
<li class="header-list-item"><a data-goto=".moveToFeedback" href="#">Blog</a></li>
<li class="header-list-item"><a data-goto=".moveToFooter" href="#">Contact Us</a></li>
</ul>
</div>
<div class="header-list-btn">
<div class="header-btn-item">
<button id="btn-cabinet" class="header-btn">Have Any Questions?</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Modal window content here -->
<div class="modal-window-cab">
<div class="modal-window-content">
<button id="modal-close-cab"><img src="./icons/close.svg" width="18" alt=""></button>
<span class="log-in" >Please Ask Questions </span>
<textarea name="text" placeholder="Ask Questions"></textarea>
<div class="open-close-btn">
<button type="submit" id="send-btn">Send</button>
</div>
</div>
</div>
</header>
<main>
<section class="hero moveToHero">
<div class="hero-main container">
<div class="hero-title">
<div class="hero-title-col">
<img src="./icons/hero-icon.png" class="hero-icon" alt="hero-icon">
<p class="hero-title-item">Improve our customers’ lives by providing effective solutions.</p>
</div>
</div>
<div class="hero-subtitle">
<p class="hero-subtitle-item">A recognized leader in <br> services industry</p>
</div>
<div class="hero-btn">
<button type="button" class="hero-btn-item">View Services</button>
</div>
</div>
</section>
<section class="provide-future">
<div class="provide-future-main container">
<div class="provide-future-col">
<div class="provide-future-img">
<img src="./img/future-img.png" alt="provide-future">
</div>
<div class="future-main-text">
<div class="future-logo">
<div class="future-logo-col">
<img src="./icons/future-logo.png" alt="logo">
<p class="future-logo-text">Welcome BlueCollar</p>
</div>
</div>
<div class="future-title">
<span>We Provide Your Future</span>
</div>
<div class="future-text-one">
<p>Bluecollar Electrical services was established in 2008. We are trusted and reliable electricians who serve customers in the city as well as throughout United States Of America.</p>
</div>
<div class="future-text-two">
<p>We have extensive experience of domestic and business electrical installations and no job is too small. Our customers value our professionalism, work ethic and our competitive prices.</p>
</div>
<div class="future-years-col">
<div class="future-years-main">
<div class="future-years-number">35</div>
<div class="future-years-text">Years Of <br> Experience</div>
</div>
<div class="future-years-list">
<ul class="future-years-list-list">
<li class="future-years-list-item">For all your system requirements</li>
<li class="future-years-list-item">All work undertaken by qualified</li>
<li class="future-years-list-item">Experienced office staff on hand</li>
<li class="future-years-list-item">A Full Guarantee On Workmanship</li>
<li class="future-years-list-item">Properties at a reasonable price.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="professional moveToProfessional">
<div class="profi-main container">
<div class="profi-logo-main">
<div class="profi-logo-col">
<span class="profi-logo">
<img src="./icons/future-logo.png" alt="logo">
</span>
<span class="profi-logo-title">
<p>What We Offer</p>
</span>
</div>
</div>
<div class="profi-main-title">
<p>Professional Main Services</p>
</div>
<div class="profi-main-subtitle">
<p>
We have extensive experience of domestic and business electrical installations and no job is too small. Our customers value our professionalism, work ethic and our competitive prices.
</p>
</div>
<div class="profi-btn">
<div class="profi-btn-col">
<button class="profi-btn-item active" data-id="commercial"><img src="./icons/commercial.png" alt="logo"> Commercial</button>
<button class="profi-btn-item" data-id="residential"> <img src="./icons/residential.png" alt="logo">Residential</button>
<button class="profi-btn-item" data-id="industrial"> <img src="./icons/industrial.png" alt="logo"> Industrial</button>
</div>
</div>
<div class="profi-tabs">
<div class="profi-tabs-main">
<div class="profi-tabs-col">
<div class="profi-section-center">
<div class="profi-tabs-text active" id="commercial">
<div class="profi-tabs-heading">
<div class="tabs-text-heading-col">
<span><img src="./icons/commercial.png" class="tabs-logo" alt="logo"></span>
<span class="tabs-img-text">Electrical Installation</span>
</div>
</div>
<div class="profi-tabs-title">
Commercial
</div>
<div class="profi-tabs-subtitle">
<p class="tabs-subtitle-text-one">Electrical & Maintenance Services Ltd offers a full range of electrical services to suit your needs – from moving a light switch to complete house rewires.</p>
<p class="tabs-subtitle-text-two">In addition to providing fully qualified, competent electricians in and around London, the company also runs an electrical wholesale shop.</p>
<p class="tabs-subtitle-text-three">Maintenancel & Electrical Services Ltd offers a full range of electrical services to suit your needs – from moving a light switch to complete house rewires.</p>
</div>
<div class="tabs-btn">
<button type="button" class="tabs-btn-item">Read More</button>
</div>
</div>
<div class="profi-tabs-text" id="residential">
<div class="profi-tabs-heading">
<div class="tabs-text-heading-col">
<span><img src="./icons/residential.png" class="tabs-logo" alt="logo"></span>
<span class="tabs-img-text">Residential Installation</span>
</div>
</div>
<div class="profi-tabs-title">
Residential
</div>
<div class="profi-tabs-subtitle">
<p class="tabs-subtitle-text-one">In addition to providing fully qualified, competent electricians in and around London, the company also runs an electrical wholesale shop.</p>
<p class="tabs-subtitle-text-two">Electrical & Maintenance Services Ltd offers a full range of electrical services to suit your needs – from moving a light switch to complete house rewires.</p>
<p class="tabs-subtitle-text-three">Maintenancel & Electrical Services Ltd offers a full range of electrical services to suit your needs – from moving a light switch to complete house rewires.</p>
</div>
<div class="tabs-btn">
<button type="button" class="tabs-btn-item">Read More</button>
</div>
</div>
<div class="profi-tabs-text" id="industrial">
<div class="profi-tabs-heading">
<div class="tabs-text-heading-col">
<span><img src="./icons/industrial.png" class="tabs-logo" alt="logo"></span>
<span class="tabs-img-text">Industrial Installation</span>
</div>
</div>
<div class="profi-tabs-title">
Industrial
</div>
<div class="profi-tabs-subtitle">
<p class="tabs-subtitle-text-one">Electrical & Maintenance Services Ltd offers a full range of electrical services to suit your needs – from moving a light switch to complete house rewires.</p>
<p class="tabs-subtitle-text-two">In addition to providing fully qualified, competent electricians in and around London, the company also runs an electrical wholesale shop.</p>
<p class="tabs-subtitle-text-three">Maintenance & Electrical Services Ltd offers a full range of electrical services to suit your needs – from moving a light switch to complete house rewires.</p>
</div>
<div class="tabs-btn">
<button type="button" class="tabs-btn-item">Read More</button>
</div>
</div>
</div>
<div class="tabs-img">
<img src="./img/tabs-img.png" alt="tabs-img">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="service moveToService">
<div class="service-container container">
<div class="service-main">
<div class="service-title-heading">
<div class="service-title-col">
<span><img src="./icons/service-logo.png" alt=""></span>
<span class="service-title-text">Area Of Service</span>
</div>
</div>
<div class="service-title-main">
Our Services
</div>
<div class="service-subtitle">
We offers a comprehensive range of electrical services for domestic and commercial properties at a reasonable price.
</div>
</div>
<div class="service-grid">
<div class="service-grid-container">
<div class="service-grid-item">
<div class="grid-item-item">
<div class="grid-item-icon">
<img src="./icons/icon-1.png" alt="">
</div>
<div class="grid-item-title">
Air condition service
</div>
<div class="grid-item-subtitle">
Services are able to service your entire electrical infrastructure from Thermal Imaging of your air condition from switch boards.
</div>
<div class="grid-item-subtitle-two">
The art electrical installations that provide all the necessary electrical solutions to suit your business, home or industrial premises.
</div>
<div class="grid-item-btn">
<button class="grid-btn">View More</button>
</div>
</div>
</div>
<div class="service-grid-item">
<div class="grid-item-item">
<div class="grid-item-icon">
<img src="./icons/icon-2.png" alt="">
</div>
<div class="grid-item-title">
Electrical installation
</div>
<div class="grid-item-subtitle">
The art electrical installations that provide all the necessary electrical solutions to suit your business, home or industrial premises.
</div>
<div class="grid-item-subtitle-two">
Services are able to service your entire electrical infrastructure from Thermal Imaging of your air condition from switch boards.
</div>
<div class="grid-item-btn">
<button class="grid-btn">View More</button>
</div>
</div>
</div>
<div class="service-grid-item">
<div class="grid-item-item">
<div class="grid-item-icon">
<img src="./icons/icon-3.png" alt="">
</div>
<div class="grid-item-title">
General Builder
</div>
<div class="grid-item-subtitle">
We provide impeccable safety assessments to both commercial, residential properties. Our adept & knowledgeable electricians.
</div>
<div class="grid-item-subtitle-two">
Utilized for measuring flow, temperature level & pressure in the manufacturing industry array of technology is ensure productivity.
</div>
<div class="grid-item-btn">
<button class="grid-btn">View More</button>
</div>
</div>
</div>
<div class="service-grid-item">
<div class="grid-item-item">
<div class="grid-item-icon">
<img src="./icons/icon-4.png" alt="">
</div>
<div class="grid-item-title">
Security System
</div>
<div class="grid-item-subtitle">
Utilized for measuring flow, temperature level & pressure in the manufacturing industry array of technology is ensure productivity.
</div>
<div class="grid-item-subtitle-two">
We provide impeccable safety assessments to both commercial, residential properties. Our adept & knowledgeable electricians.
</div>
<div class="grid-item-btn">
<button class="grid-btn">View More</button>
</div>
</div>
</div>
<div class="service-grid-item">
<div class="grid-item-item">
<div class="grid-item-icon">
<img src="./icons/icon-5.png" alt="">
</div>
<div class="grid-item-title">
Service & maintenance
</div>
<div class="grid-item-subtitle">
Electrical Services are able to service your entire electrical infrastructure from Thermal Imaging of your switch boards.
</div>
<div class="grid-item-subtitle-two">
Traditionally, electricity is supplied through overhead network poles, where the cable is connected to your building.
</div>
<div class="grid-item-btn">
<button class="grid-btn">View More</button>
</div>
</div>
</div>
<div class="service-grid-item">
<div class="grid-item-item">
<div class="grid-item-icon">
<img src="./icons/icon-6.png" alt="">
</div>
<div class="grid-item-title">
House Extensions
</div>
<div class="grid-item-subtitle">
Traditionally, electricity is supplied through overhead network poles, where the cable is connected to your building.
</div>
<div class="grid-item-subtitle-two">
Electrical Services are able to service your entire electrical infrastructure from Thermal Imaging of your switch boards.
</div>
<div class="grid-item-btn">
<button class="grid-btn">View More</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="reasons">
<div class="reasons-main">
<div class="reasons-main-col">
<div class="reasons-col-item-one">
<div class="reasons-img-col">
<div class="reasons-img-text">
<div class="reasons-img-main">
<span class="img-num">3956</span>
<span class="img-text">Project Done</span>
</div>
<div class="reasons-img-main">
<span class="img-num">854</span>
<span class="img-text">People Working</span>
</div>
<div class="reasons-img-main">
<span class="img-num">265</span>
<span class="img-text">Business Partners</span>
</div>
<div class="reasons-img-main">
<span class="img-num">845+</span>
<span class="img-text">Happy Customers</span>
</div>
</div>
</div>
</div>
<div class="reasons-col-item-two">
<div class="reasons-item-logo">
<div class="reasons-item-logo-col">
<span> <img src="./icons/service-logo.png" alt=""></span>
<span class="reasons-logo-text">Why Choose Us</span>
</div>
</div>
<div class="reasons-item-title">
Few Reasons Why You Should Choose Us
</div>
<div class="reasons-item-subtitle">
We are offering the following information's about us that what we actually do in the electrical sector. To Improve our customers’ lives by providing creative and cost-effective solutions to their needs.
</div>
<div class="reasons-item-desc-main">
<div class="reasons-item-desc-col">
<span><img src="./icons/tick.png" alt="tick-logo"></span>
<span class="reasons-item-desc-title">35 Years Experience</span>
</div>
<div class="reasons-item-desc-subtitle">
Effective communication is the key to success for any business. From our office staff, to our field.
</div>
</div>
<div class="reasons-item-desc-main">
<div class="reasons-item-desc-col">
<span><img src="./icons/tick.png" alt="tick-logo"></span>
<span class="reasons-item-desc-title">Excellence Certificate</span>
</div>
<div class="reasons-item-desc-subtitle">
We understand fully that your time is of extreme value. We are committed to meeting deadlines.
</div>
</div>
<div class="reasons-item-desc-main">
<div class="reasons-item-desc-col">
<span><img src="./icons/tick.png" alt="tick-logo"></span>
<span class="reasons-item-desc-title">Affordable Price</span>
</div>
<div class="reasons-item-desc-subtitle">
We adhere strictly to the current National Electrical Code, and we conduct regular in-house sessions.
</div>
</div>
</div>
</div>
</div>
</section>
<section class="projects">
<div class="project-container">
<div class="project-main">
<div class="project-logo-main">
<div class="project-logo-col">
<span> <img src="./icons/service-logo.png" alt="icon"></span>
<span class="project-logo-text">The Gallery</span>
</div>
</div>
<div class="project-title">
Our Recent Projects
</div>
<div class="project-cards-col">
<div class="project-card-item">
<div class="project-img">
<img src="./img/project-1.png" alt="">
</div>
<div class="project-card-title">
Fiber Cable Change
</div>
<div class="project-subtitle">
Commercial
</div>
</div>
<div class="project-card-item">
<div class="project-img">
<img src="./img/project-2.png" alt="">
</div>
<div class="project-card-title">
Industry Machine Issue
</div>
<div class="project-subtitle">
Industry
</div>
</div>
<div class="project-card-item">
<div class="project-img">
<img src="./img/project-3.png" alt="">
</div>
<div class="project-card-title">
Wheel Alloy Change
</div>
<div class="project-subtitle">
Residential
</div>
</div>
<div class="project-card-item">
<div class="project-img">
<img src="./img/project4.png" alt="">
</div>
<div class="project-card-title">
Roof Cleaning
</div>
<div class="project-subtitle">
Commercial
</div>
</div>
</div>
</div>
</div>
</section>
<section class="feedback moveToFeedback">
<div class="feedback-main container">
<div class="feedback-main-col">
<div class="feedback-main-customer">
<div class="customer-icon-main">
<div class="customer-icon-col">
<span> <img src="./icons/service-logo.png" alt="icon"></span>
<span class="customer-logo-text">Testimonial</span>
</div>
</div>
<div class="customer-title">
Customers Says
</div>
<div class="customer-main customer-container">
<div class="customer-main-item-col">
<div class="customer-img">
<div class="customer-img-main-col">
<div class="customer-img-item">
<img src="./img/Img_1.png" id="person-img" alt="img">
</div>
<div class="customer-img-name">
<div class="customer-name">Nancy Luther</div>
<div class="customer-city">New York</div>
</div>
</div>
<div class="customer-img-logo">
<img src="./icons/customer-icon.png" alt="">
</div>
</div>
</div>
<div class="customer-comment-item">
We have had several good experiences with Blue Collar team. Most recently, they replaced our 20-year-old HVAC system with a new, modern, and more efficient system & it worked fine.
</div>
<div class="customer-btn">
<button class="customer-btn-item" id="arrow-right"><img src="./icons/arrow-right.png" alt=""></button>
<button class="customer-btn-item" id="arrow-left"><img src="./icons/arrow-left.png" alt=""></button>
</div>
</div>
<div class="customer-number-main customer-container">
<div class="customer-number-icon">
<div class="customer-icon-col">
<span> <img src="./icons/service-logo.png" alt="icon"></span>
<span class="customer-logo-text">Any Questions?</span>
</div>
</div>
<div class="customer-number-title">
99.9% Customer Satisfaction Based
</div>
<div class="customer-number-subtitle">
If you have any questions or need help contact with our team, or call
</div>
<div class="customer-number-number">
<span><img src="./icons/call-icon.png" alt="call-icon"></span>
<span class="customer-number-item"> <a href="tel:+31234567890">(003) 123 456 7890</a> </span>
</div>
</div>
</div>
<div class="customer-form-main">
<div class="customer-icon-main">
<div class="customer-icon-col">
<span> <img src="./icons/service-logo.png" alt="icon"></span>
<span class="customer-logo-text">Meet Us</span>
</div>
</div>
<div class="customer-title">
Appointment Form
</div>
<div class="customer-main-form">
<div class="customer-form-item">
<form class="form" action="#">
<div class="input-name">
<input type="text" placeholder="Your name">
</div>
<div class="input-name">
<input type="text" placeholder="Your email">
</div>
<div class="input-name">
<input type="number" placeholder="Your number">
</div>
<div class="input-name">
<input type="text" placeholder="Date">
</div>
<div class="input-textarea">
<textarea name="text" placeholder="Service Description"></textarea>
</div>
<div class="form-btn">
<button type="submit" class="form-btn-item">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="customer-clients">
<div class="clients-main">
<div class="clients-icon-main">
<div class="clients-icon-col">
<span> <img src="./icons/service-logo.png" alt="icon"></span>
<span class="customer-logo-text">Clients</span>
</div>
</div>
<div class="clients-title">
Our Trusted Big Clients!
</div>
<div class="clients-logo-col">
<div class="clients-logo-item"><img src="./icons/client-1.png" alt="clients-logo"></div>
<div class="clients-logo-item"><img src="./icons/client-2.png" alt="clients-logo"></div>
<div class="clients-logo-item"><img src="./icons/client-3.png" alt="clients-logo"></div>
<div class="clients-logo-item"><img src="./icons/client-4.png" alt="clients-logo"></div>
</div>
</div>
</div>
</div>
</section>
<section class="prize">
<div class="prize-main container">
<div class="prize-top">
<div class="prize-top-col">
<div class="prize-top-logo-main">
<div class="prize-top-logo">
<span> <img src="./icons/service-logo.png" alt="icon"></span>
<span class="customer-logo-text">Prize Plan</span>
</div>
<div class="prize-top-title">
Let’s Customize Work With Affordable Price
</div>
</div>
<div class="prize-top-subtitle">
This is passionate about delivering growth and the new possibilities in the field of electrical services. We have extensive experience of domestic and business electrical installations and no job is too small.
</div>
</div>
</div>
<div class="prize-mid">
<div class="prize-mid-col">
<div class="prize-mid-item">
<div class="prize-mid-item-main">
<div class="prize-mid-item-title">
Basic Plan
</div>
<div class="prize-mid-item-prize">
<span>$ 599.00</span>
<span>Per Visit Charge</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Electrical Service</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Distribution Power Systems</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>High & Medium Voltages</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Industrial Control Systems</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Switch Installation</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Generator Installations</span>
</div>
<div class="prize-btn">
<button class="prize-btn-item" type="submit">Buy Now</button>
</div>
</div>
</div>
<div class="prize-mid-item">
<div class="prize-mid-item-main">
<div class="prize-mid-item-title">
<span>Standard</span>
<span class="prize-mid-popular">POPULAR</span>
</div>
<div class="prize-mid-item-prize">
<span>$ 699.00</span>
<span>Per Visit Charge</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>PLC Controls</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Conveyor Systems</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Wiring Renovations</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Electric Water Heater Repair</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Service And Panel Upgrades</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Efficient Lighting Solutions</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Site Lighting</span>
</div>
<div class="prize-btn">
<button class="prize-btn-item" type="submit">Buy Now</button>
</div>
</div>
</div>
<div class="prize-mid-item">
<div class="prize-mid-item-main">
<div class="prize-mid-item-title">
Professional
</div>
<div class="prize-mid-item-prize">
<span>$ 799.00</span>
<span>Per Visit Charge</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Cable Tray Installations</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Wiring Upgrades</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Energy Efficient Lighting</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Emergency Generating</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Pools And Hot Tubs</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Air Conditioning Units</span>
</div>
<div class="prize-mid-item-list">
<span><img src="./icons/prize-icon.png" alt="icon"></span>
<span>Generating Systems</span>
</div>
<div class="prize-btn">
<button class="prize-btn-item" type="submit">Buy Now</button>
</div>
</div>
</div>
</div>
</div>
<div class="prize-bottom">
<div class="prize-bottom-col">
<div class="prize-bottom-item-col">
<div class="prize-bottom-icon">
<img src="./icons/tick.png" alt="">
</div>
<div class="prize-bottom-text">
<p>Affordable Price</p>
<p>We adhere strictly to the current National Electrical Code, and we conduct regular in-house sessions with our technicians to review any code changes and applications.</p>
</div>
</div>
<div class="prize-bottom-item-col">
<div class="prize-bottom-icon">
<img src="./icons/tick.png" alt="">
</div>
<div class="prize-bottom-text">
<p>Fixed Plan</p>
<p>We understand fully that your time is of extreme value. You will never have to worry about waiting around for our trained technicians.24/7 Service Providers Affordable Price.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="news">
<div class="news-main container">
<div class="news-icon-main">
<div class="news-icon-col">
<span> <img src="./icons/service-logo.png" alt="icon"></span>
<span class="customer-logo-text">Stay Updated</span>
</div>
</div>
<div class="news-title">
Latest News & Articles
</div>
<div class="news-main-col">
<div class="news-main-col-item">
<div class="news-img-item">
<img src="./img/news-1.png" alt="news-img">
</div>
<div class="news-date-col-main">
<div class="news-date-col">
<div class="news-date-item-one">
<span><img src="./icons/person.png" alt=""></span>
<span> Alex Louis</span>
</div>
<div class="news-date-item-two">
<span><img src="./icons/time.png" alt=""></span>
<span>October 18, 2022</span>
</div>
</div>
</div>
<div class="news-subtitle">
How Outside Lighting can Transform Your Summer Garden
</div>
<div class="news-text">
Capitalize on low-hanging fruit to identify a ballpark value added matrix economically activity to beta test override the multiple touchpoints for offshoring the digital divide with DevOps.
</div>
<div class="news-text-two">
Strategies on low-hanging fruit to identify a ballpark value added activity matrix economically to beta test override multiple touchpoints for offshoring the digital divide with DevOps.
</div>
<div class="news-btn">
<span>View More</span>
<span class="news-arrow"><img src="./icons/arrow-left.png" alt=""></span>
</div>
</div>
<div class="news-main-col-item">
<div class="news-img-item">
<img src="./img/news-2.png" alt="news-img">
</div>
<div class="news-date-col-main">
<div class="news-date-col">
<div class="news-date-item-one">
<span><img src="./icons/person.png" alt=""></span>
<span>John Christian</span>
</div>
<div class="news-date-item-two">
<span><img src="./icons/time.png" alt=""></span>
<span>October 25, 2022</span>
</div>
</div>
</div>
<div class="news-subtitle">
Easy Energy Saving Solutions for Industrial Businesses
</div>
<div class="news-text">
Strategies on low-hanging fruit to identify a ballpark value added activity matrix economically to beta test override multiple touchpoints for offshoring the digital divide with DevOps.
</div>
<div class="news-text-two">
Capitalize on low-hanging fruit to identify a ballpark value added matrix economically activity to beta test override the multiple touchpoints for offshoring the digital divide with DevOps.
</div>
<div class="news-btn">
<span>View More</span>
<span class="news-arrow"><img src="./icons/arrow-left.png" alt=""></span>
</div>
</div>
</div>
</div>
<div class="news-bottom-main">
<div class="news-bottom container">
<div class="news-bottom-col">
<div class="news-bottom-item-one">
<div class="news-bottom-title">
Subscribe Our Newsletter
</div>
<div class="news-bottom-text">
Stay in touch with us to get latest news. We are here to fit the needs of your electrical services for your dream building.
</div>
</div>
<div class="news-bottom-item-two">
<input type="text" class="news-input" placeholder="Enter your email address">
<button class="news-bottom-btn">Subscribe</button>
</div>
<div class="modal-window-news">
<div class="modal-window-content-2">
<button id="modal-close-icon"><img src="./icons/close.svg" width="18" alt=""></button>
<span class="log-in-news">Thank you for Subscribe!</span>
<span class="news-value-main"> Your email is: <span class="news-value"></span></span>
<div class="open-close-btn-2">
<button type="submit" id="confirm-btn">Confirm</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer moveToFooter">
<div class="footer-main container">
<div class="footer-top-col">
<div class="footer-top-item-one">
<img src="./icons/footer-logo.png" alt="logo" class="footer-logo">
</div>
<div class="footer-top-item-two">
<div class="footer-top-item-icon">
<img src="./icons/email.png" alt="">
</div>
<div class="footer-top-item-text">
<div>Mail Us</div>
<div> <a href="mailto:Info@bluecollar.com">Info@bluecollar.com</a></div>
</div>
</div>
<div class="footer-top-item-two">
<div class="footer-top-item-icon">
<img src="./icons/phone.png" alt="">
</div>
<div class="footer-top-item-text">
<div>Call Us</div>
<div> <a href="tel:+01569896654">+01 569 896 654</a></div>
</div>
</div>
<div class="footer-top-item-two">
<div class="footer-top-item-icon">
<img src="./icons/location.png" alt="">
</div>
<div class="footer-top-item-text">
<div>Location</div>
<div>Amsterdam, 109-74</div>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="footer-bottom-main">
<div class="footer-bottom-col">
<div class="footer-bottom-item-one">
<div class="footer-bottom-item-one-text">
We are here to fit the needs of your basic services for your dream building whether its a commercial, residential or industry.
</div>
<div class="footer-bottom-social">
<div class="footer-bottom-social-item">
<a href="#"> <img src="./icons/footer-instagram.png" alt="instagram-logo"></a>
</div>
<div class="footer-bottom-social-item">
<a href="#"> <img src="./icons/footer-facebook.png" alt="facebook-logo"></a>
</div>
<div class="footer-bottom-social-item">
<a href="#"> <img src="./icons/footer-twitter.png" alt="twitter-logo"></a>
</div>
<div class="footer-bottom-social-item">
<a href="#"> <img src="./icons/footer-printest.png" alt="printest-logo"></a>
</div>
</div>
</div>
<div class="footer-bottom-links-main">
<span>Explore</span>
<span class="arrow-links"></span>
<ul class="footer-links">
<li class="footer-links-item"><a href="#">About Us</a> </li>
<li class="footer-links-item"><a href="#">Pricing</a> </li>
<li class="footer-links-item"><a href="#">Team</a> </li>
<li class="footer-links-item"><a href="#">Blog</a></li>
<li class="footer-links-item"><a href="#">Contact Us</a> </li>
</ul>
</div>
<div class="footer-bottom-links-main">
<span>Quick Links</span>
<span class="arrow-links"></span>
<ul class="footer-links">
<li class="footer-links-item"><a href="#">Home</a> </li>
<li class="footer-links-item"><a href="#">Services</a> </li>
<li class="footer-links-item"><a href="#">Service Single</a> </li>
<li class="footer-links-item"><a href="#">Projects</a> </li>
<li class="footer-links-item"><a href="#">Projects Single</a></li>
</ul>
</div>
<div class="footer-bottom-links-main">
<span>Utility Pages</span>
<span class="arrow-links"></span>
<ul class="footer-links">
<li class="footer-links-item"><a href="#">Style Guide</a> </li>
<li class="footer-links-item"><a href="#">Changelog</a> </li>
<li class="footer-links-item"><a href="#">Licenses</a> </li>
<li class="footer-links-item"><a href="#">Projected</a> </li>
<li class="footer-links-item"><a href="#">404 Page</a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>