-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindustrial.html
700 lines (637 loc) · 35.3 KB
/
industrial.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
<!DOCTYPE html>
<html lang="en" data-bs-theme="light">
<head>
<meta charset="utf-8">
<title>Kuehl Electric, Inc. - Home</title>
<!-- SEO Meta Tags-->
<meta name="description" content="Kuehl Electric INC - Electrical Contractor">
<meta name="keywords"
content="Electrical Contractor, Licensed Electrician, Residential Electrical Services, Commercial Electrical Services, Industrial Electrical Services, Emergency Electrician, Electrical Repair, Electrical Installation, Electrical Wiring, Electrical Inspection, Electrical Maintenance, Energy Efficient Solutions, Electrical Upgrades, Electrical Safety, Local Electrician, Affordable Electrician">
<meta name="author" content="Steve Kuehl">
<!-- Viewport-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Theme switcher (color modes) -->
<script src="assets/js/theme-switcher.js"></script>
<!-- Favicon
<link rel="shortcut icon" href="assets/images/">-->
<!-- Vendor Styles-->
<link rel="stylesheet" media="screen" href="assets/vendor/boxicons/css/boxicons.min.css">
<link rel="stylesheet" media="screen" href="assets/vendor/swiper/swiper-bundle.min.css">
<!-- Main Theme Styles + Bootstrap-->
<link rel="stylesheet" media="screen" href="assets/css/theme.min.css">
<!-- Page loading styles -->
<style>
.page-loading {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all .4s .2s ease-in-out;
transition: all .4s .2s ease-in-out;
background-color: #fff;
opacity: 0;
visibility: hidden;
z-index: 9999;
}
[data-bs-theme="dark"] .page-loading {
background-color: #0b0f19;
}
.page-loading.active {
opacity: 1;
visibility: visible;
}
.page-loading-inner {
position: absolute;
top: 50%;
left: 0;
width: 100%;
text-align: center;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-transition: opacity .2s ease-in-out;
transition: opacity .2s ease-in-out;
opacity: 0;
}
.page-loading.active > .page-loading-inner {
opacity: 1;
}
.page-loading-inner > span {
display: block;
font-size: 1rem;
font-weight: normal;
color: #9397ad;
}
[data-bs-theme="dark"] .page-loading-inner > span {
color: #fff;
opacity: .6;
}
.page-spinner {
display: inline-block;
width: 2.75rem;
height: 2.75rem;
margin-bottom: .75rem;
vertical-align: text-bottom;
border: .15em solid #b4b7c9;
border-right-color: transparent;
border-radius: 50%;
-webkit-animation: spinner .75s linear infinite;
animation: spinner .75s linear infinite;
}
[data-bs-theme="dark"] .page-spinner {
border-color: rgba(255, 255, 255, .4);
border-right-color: transparent;
}
@-webkit-keyframes spinner {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spinner {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
<!-- Page loading scripts -->
<script>
(function () {
window.onload = function () {
const preloader = document.querySelector('.page-loading');
preloader.classList.remove('active');
setTimeout(function () {
preloader.remove();
}, 1000);
};
})();
</script>
</head>
<!-- Body -->
<body>
<!-- Page loading spinner -->
<div class="page-loading active">
<div class="page-loading-inner">
<div class="page-spinner"></div>
<span>Loading...</span>
</div>
</div>
<!-- Page wrapper for sticky footer -->
<!-- Wraps everything except footer to push footer to the bottom of the page if there is little content -->
<main class="page-wrapper">
<!-- Navbar -->
<!-- Remove "fixed-top" class to make navigation bar scrollable with the page -->
<header class="header navbar navbar-expand-lg bg-light shadow-sm fixed-top">
<div class="container px-3">
<a href="index.html" class="navbar-brand pe-3">
<!--<img src="assets/img/logo.svg" width="47" alt="Silicon">-->
Kuehl Electric, Inc.
</a>
<div id="navbarNav" class="offcanvas offcanvas-end">
<div class="offcanvas-header border-bottom">
<h5 class="offcanvas-title">Menu</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a href="index.html" class="nav-link">Home</a>
</li>
<li class="nav-item dropdown">
<a href="industrial.html" class="nav-link active">Industrial</a>
</li>
<li class="nav-item dropdown">
<a href="commercial.html" class="nav-link">Commercial</a>
</li>
<li class="nav-item dropdown">
<a href="specialized.html" class="nav-link">Specialized</a>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link" onclick="openFAQ(this)">FAQ</a>
</li>
<li class="nav-item dropdown">
<a href="contact.html" class="nav-link">Contact</a>
</li>
<script>
function openFAQ(el) {
// Open FAQ modal
var modal = new bootstrap.Modal(document.querySelector('.modal'));
modal.show();
}
</script>
</ul>
</div>
</div>
<div class="form-check form-switch mode-switch pe-lg-1 ms-auto me-4" data-bs-toggle="mode">
<input type="checkbox" class="form-check-input" id="theme-mode">
<label class="form-check-label d-none d-sm-block" for="theme-mode">Light</label>
<label class="form-check-label d-none d-sm-block" for="theme-mode">Dark</label>
</div>
<button type="button" class="navbar-toggler" data-bs-toggle="offcanvas" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</header>
<!-- Hero -->
<section class="vh-100 bg-repeat-0 bg-position-center bg-size-cover overflow-hidden"
style="background-image: url(assets/img/landing/intro/hero/bg.jpg);" data-bs-theme="dark">
<div class="container vh-100">
<div class="row flex-nowrap vh-100">
<div class="col-lg-4 col-md-5 d-flex flex-column text-center text-md-start py-5">
<h1 class="display-3 mt-auto mb-4">Kuehl Electric, Inc.</h1>
<p class="lead text-light opacity-70 pb-5 mb-0 mb-md-3">Industrial, It’ll blow your mind.</p>
<!-- replace img with pill button -->
<a href="https://kuehlelectric.com/contactus.html?industrial"
class="btn rounded-pill btn-primary d-block mx-auto mx-md-0" style="width: 212px;">
<i class="bx bx-envelope me-2"></i>
Contact Us
</a>
<div class="position-relative d-flex align-items-center justify-content-center justify-content-md-start mb-md-4 mb-lg-5 mt-auto">
<div class="btn btn-icon btn-secondary rounded-circle">
<i class="bx bx-chevron-down"></i>
</div>
<a href="#landings" class="nav-link stretched-link text-light fw-normal opacity-80 py-2 px-3"
data-scroll data-scroll-offset="70">View Offerings</a>
</div>
</div>
<div class="d-flex flex-shrink-0 align-items-start">
<img src="assets/img/landing/intro/hero/industrial_1.png" class="rellax d-block flex-shrink-0 mt-n5"
width="486" height="1390" alt="Screens" data-rellax-speed="4" data-disable-parallax-down="md">
<img src="assets/img/landing/intro/hero/industrial_2.png" class="rellax d-block flex-shrink-0 mt-5"
width="486" height="1470" alt="Screens" data-rellax-speed="-4" data-disable-parallax-down="md">
<img src="assets/img/landing/intro/hero/industrial_3.png" class="rellax d-block flex-shrink-0"
width="486" height="1480" alt="Screens" data-rellax-speed="4" data-disable-parallax-down="md">
</div>
</div>
</div>
</section>
<!-- Landings (Grid) id="landings" class="container text-center pt-5 mt-2 mt-md-4 mt-lg-5"-->
<!-- Industries -->
<section class="container pt-5 mt-2 mt-md-4 mt-lg-5 mb-lg-5 pb-5">
<h2 class="h1 text-center pb-3 pb-lg-4">Industrial Services</h2>
<!-- Nav tabs -->
<ul class="nav nav-tabs flex-nowrap justify-content-lg-center overflow-auto pb-2 mb-3 mb-lg-4" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link text-nowrap active" id="foundries-tab" data-bs-toggle="tab"
data-bs-target="#foundries" type="button" role="tab" aria-controls="foundries"
aria-selected="true">
<i class="bx bxs-hard-hat fs-xl opacity-60 me-2"></i>
Foundries
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link text-nowrap" id="machine_shops-tab" data-bs-toggle="tab"
data-bs-target="#machine_shops"
type="button" role="tab" aria-controls="machine_shops" aria-selected="false">
<i class="bx bx-wrench fs-lg opacity-60 me-2"></i>
Machine Shops
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link text-nowrap" id="mcp-tab" data-bs-toggle="tab" data-bs-target="#mcp"
type="button" role="tab" aria-controls="mcp" aria-selected="false">
<i class="bx bx-run fs-xl opacity-60 me-2"></i>
Manufacturing and Converting Plants
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link text-nowrap" id="mwpls-tab" data-bs-toggle="tab"
data-bs-target="#mwpls" type="button" role="tab" aria-controls="mwpls"
aria-selected="false">
<i class="bx bx-water fs-lg opacity-60 me-2"></i>
WTP and Lift Stations
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link text-nowrap" id="PaperMills-tab" data-bs-toggle="tab"
data-bs-target="#PaperMills"
type="button" role="tab" aria-controls="PaperMills" aria-selected="false">
<i class="bx bxs-buildings fs-bse opacity-60 me-2"></i>
Paper Mills
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link text-nowrap" id="powergeneration-tab" data-bs-toggle="tab"
data-bs-target="#powergeneration" type="button" role="tab" aria-controls="powergeneration"
aria-selected="false">
<i class="bx bx-power-off fs-lg opacity-60 me-2"></i>
Power Generation
</button>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content bg-secondary rounded-3 py-4">
<!-- Education -->
<div class="tab-pane fade show active" id="foundries" role="tabpanel" aria-labelledby="foundries-tab">
<div class="row align-items-center pt-3 pt-sm-4 pt-md-0 px-3 px-sm-4 px-lg-0">
<div class="col-lg-4 col-md-5 offset-lg-1 text-center text-md-start">
<h3 class="mb-lg-4">Foundries</h3>
<p>Vestibulum nunc lectus auctor quis. Natoque lectus tortor lacus, eu. Nunc feugiat nisl
maecenas nulla hac morbi. Vitae, donec facilisis sed nunc netus. Venenatis posuere faucibus
enim est. Vel dignissim morbi blandit morbi tellus. Arcu ullamcorper quis enim.</p>
</div>
<div class="col-lg-6 col-md-7 mt-2 mb-3 mt-md-3">
<img src="assets/img/industrial/15.png"
class="d-block rounded-3 my-lg-2 mx-auto me-md-0" width="564" alt="Image">
</div>
</div>
</div>
<!-- E-Commerce -->
<div class="tab-pane fade" id="machine_shops" role="tabpanel" aria-labelledby="machine_shops-tab">
<div class="row align-items-center pt-3 pt-sm-4 pt-md-0 px-3 px-sm-4 px-lg-0">
<div class="col-lg-4 col-md-5 offset-lg-1 text-center text-md-start">
<h3 class="mb-lg-4">Machine Shops</h3>
<p>Curabitur auctor quam ut iaculis suscipit. Morbi ullamcorper tellus eu purus dictum
convallis. Duis posuere dui sit amet pellentesque malesuada. Morbi ultrices tortor ut diam
molestie, vel pharetra lectus lacinia. Lorem ipsum dolor sit amet.</p>
</div>
<div class="col-lg-6 col-md-7 mt-2 mb-3 mt-md-3">
<img src="assets/img/industrial/10.png"
class="d-block rounded-3 my-lg-2 mx-auto me-md-0" width="564" alt="Image">
</div>
</div>
</div>
<!-- Sports -->
<div class="tab-pane fade" id="mcp" role="tabpanel" aria-labelledby="mcp-tab">
<div class="row align-items-center pt-3 pt-sm-4 pt-md-0 px-3 px-sm-4 px-lg-0">
<div class="col-lg-4 col-md-5 offset-lg-1 text-center text-md-start">
<h3 class="mb-lg-4">Manufacturing and Converting Plants</h3>
<p>Etiam vehicula commodo nunc, ut tincidunt risus aliquam sit amet. Vivamus ut velit ut odio
malesuada tincidunt ut non eros. Curabitur vel quam varius, ullamcorper mi quis, ultrices
eros. Nam eget mi ut diam elementum facilisis vehicula eget augue.</p>
</div>
<div class="col-lg-6 col-md-7 mt-2 mb-3 mt-md-3">
<img src="assets/img/industrial/11.png"
class="d-block rounded-3 my-lg-2 mx-auto me-md-0" width="564" alt="Image">
</div>
</div>
</div>
<!-- Construction -->
<div class="tab-pane fade" id="mwpls" role="tabpanel" aria-labelledby="mwpls-tab">
<div class="row align-items-center pt-3 pt-sm-4 pt-md-0 px-3 px-sm-4 px-lg-0">
<div class="col-lg-4 col-md-5 offset-lg-1 text-center text-md-start">
<h3 class="mb-lg-4">WTP and Lift Stations</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec luctus, nunc in iaculis
vestibulum, nunc ex convallis est, ut viverra velit sapien ac erat. Vivamus aliquet mi
tellus, vel viverra ex blandit sed. Sed blandit lobortis risus. Aliquam blandit cursus ex
sed iaculis.</p>
</div>
<div class="col-lg-6 col-md-7 mt-2 mb-3 mt-md-3">
<img src="assets/img/industrial/12.png"
class="d-block rounded-3 my-lg-2 mx-auto me-md-0" width="564" alt="Image">
</div>
</div>
</div>
<!-- Medicine -->
<div class="tab-pane fade" id="PaperMills" role="tabpanel" aria-labelledby="PaperMills-tab">
<div class="row align-items-center pt-3 pt-sm-4 pt-md-0 px-3 px-sm-4 px-lg-0">
<div class="col-lg-4 col-md-5 offset-lg-1 text-center text-md-start">
<h3 class="mb-lg-4">Paper Mills</h3>
<p>In vel nulla ac enim pellentesque tristique vel non dui. Integer vulputate ex leo, in
accumsan purus consectetur quis. Cras scelerisque orci vel dapibus volutpat. In et
consectetur enim. Maecenas lobortis viverra tortor, quis fermentum sem volutpat sit
amet.</p>
</div>
<div class="col-lg-6 col-md-7 mt-2 mb-3 mt-md-3">
<img src="assets/img/industrial/13.png"
class="d-block rounded-3 my-lg-2 mx-auto me-md-0" width="564" alt="Image">
</div>
</div>
</div>
<!-- Real Estate -->
<div class="tab-pane fade" id="powergeneration" role="tabpanel" aria-labelledby="powergeneration-tab">
<div class="row align-items-center pt-3 pt-sm-4 pt-md-0 px-3 px-sm-4 px-lg-0">
<div class="col-lg-4 col-md-5 offset-lg-1 text-center text-md-start">
<h3 class="mb-lg-4">Power Generation</h3>
<p>Donec consequat nibh at urna tincidunt tempor. Integer quis lobortis felis. Nulla id quam
vestibulum, aliquam mauris vitae, auctor ex. Aliquam augue nulla, faucibus sed lacus ac,
placerat elementum nisi. Curabitur enim nunc, dictum et accumsan.</p>
</div>
<div class="col-lg-6 col-md-7 mt-2 mb-3 mt-md-3">
<img src="assets/img/industrial/14.png"
class="d-block rounded-3 my-lg-2 mx-auto me-md-0" width="564" alt="Image">
</div>
</div>
</div>
</div>
</section>
<section class="container pt-2 pt-lg-0 pb-5 mb-md-4 mb-lg-5">
<div class="row">
<div class="col-md-5">
<div class="card h-100 border-0 overflow-hidden px-md-4" style="min-height: 160px;">
<span id="subjectImage" class="position-absolute top-0 start-0 w-100 h-100 d-md-block"
style="opacity: 30%; background-image: url('assets/img/facilitypowerdist.png'); background-position: center; /* Center the image */background-repeat: no-repeat; /* Do not repeat the image */ background-size: cover; /* Resize the background image to cover the entire container */"></span>
<div class="card-body d-flex flex-column align-items-center justify-content-center position-relative zindex-2 p-0 pb-2 p-lg-4">
<h2 id="subjectText" class="h1 text-center text-md-start p-lg-4">Facility Power
Distribution</h2>
</div>
</div>
</div>
<div class="col-md-7">
<div class="card border-0 shadow-sm p-4 p-xxl-5">
<div class="d-flex justify-content-between pb-4 mb-2">
<span class="btn btn-icon btn-primary btn-lg shadow-primary pe-none">
<i class="bx bxs-quote-left"></i>
</span>
<div class="d-flex">
<button type="button" id="testimonials-prev" class="btn btn-prev btn-icon btn-sm me-2"
aria-label="Previous">
<i class="bx bx-chevron-left"></i>
</button>
<button type="button" id="testimonials-next" class="btn btn-next btn-icon btn-sm ms-2"
aria-label="Next">
<i class="bx bx-chevron-right"></i>
</button>
</div>
</div>
<!-- Slider -->
<div class="swiper mx-0 mb-md-n2 mb-xxl-n3">
<div class="swiper-wrapper">
<!-- Item -->
<div class="swiper-slide h-auto">
<figure class="card h-100 position-relative border-0 bg-transparent">
<blockquote class="card-body p-0 mb-0">
<p class="fs-lg mb-0">Mi semper risus ultricies orci pulvinar in at enim orci.
Quis facilisis nunc pellentesque in ullamcorper sit. Lorem blandit arcu
sapien, senectus libero, amet dapibus cursus quam. Eget pellentesque eu
purus volutpat adipiscing malesuada. Purus nisi, tortor vel lacus.</p>
</blockquote>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto">
<figure class="card h-100 position-relative border-0 bg-transparent">
<blockquote class="card-body p-0 mb-0">
<p class="fs-lg mb-0">Vestibulum nunc lectus auctor quis. Natoque lectus tortor
lacus, eu. Nunc feugiat nisl maecenas nulla hac morbi. Vitae, donec
facilisis sed nunc netus. Venenatis posuere faucibus enim est. Vel dignissim
morbi blandit morbi tellus. Arcu ullamcorper quis enim.</p>
</blockquote>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto">
<figure class="card h-100 position-relative border-0 bg-transparent">
<blockquote class="card-body p-0 mb-0">
<p class="fs-lg mb-0">Ac at sed sit senectus massa. Massa ante amet ultrices
magna porta tempor. Aliquet diam in et magna ultricies mi at. Lectus enim,
vel enim egestas nam pellentesque et leo. Elit mi faucibus laoreet aliquam
pellentesque sed aliquet integer massa. Orci leo tortor ornare.</p>
</blockquote>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto">
<figure class="card h-100 position-relative border-0 bg-transparent">
<blockquote class="card-body p-0 mb-0">
<p class="fs-lg mb-0">test4</p>
</blockquote>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto">
<figure class="card h-100 position-relative border-0 bg-transparent">
<blockquote class="card-body p-0 mb-0">
<p class="fs-lg mb-0">test5</p>
</blockquote>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto">
<figure class="card h-100 position-relative border-0 bg-transparent">
<blockquote class="card-body p-0 mb-0">
<p class="fs-lg mb-0">test6</p>
</blockquote>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto">
<figure class="card h-100 position-relative border-0 bg-transparent">
<blockquote class="card-body p-0 mb-0">
<p class="fs-lg mb-0">test7</p>
</blockquote>
</figure>
</div>
<!-- Item -->
<div class="swiper-slide h-auto">
<figure class="card h-100 position-relative border-0 bg-transparent">
<blockquote class="card-body p-0 mb-0">
<p class="fs-lg mb-0">test8</p>
</blockquote>
</figure>
</div>
</div>
<!-- Pagination (bullets) -->
<div class="swiper-pagination position-relative mt-5"></div>
</div>
</div>
</div>
</div>
</section>
<div class="modal" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h2 class="text-center pt-md-1 pt-lg-3 pt-xl-4 pb-4 mt-xl-1 mb-2">Frequently Asked Questions</h2>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- FAQ (Accordion) -->
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
What type of work do you do?
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>Answer:</strong> We are a full service contractor focusing on industrial and commercial applications.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
How large of project can you handle?
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>Answer:</strong> We have completed a wide range of projects from the very small to surprisingly large and complex. Please contact us with the details of your project.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
What geographical areas do you cover?
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>Answer:</strong> Wisconsin
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer border-top">
<div class="container text-center">
<p class="text-muted mb-0">© All rights reserved.</p>
</div>
</footer>
<!-- Back to top button -->
<a href="#top" class="btn-scroll-top" data-scroll>
<span class="btn-scroll-top-tooltip text-muted fs-sm me-2">Top</span>
<i class="btn-scroll-top-icon bx bx-chevron-up"></i>
</a>
<!-- Vendor Scripts -->
<script src="assets/vendor/rellax/rellax.min.js"></script>
<script src="assets/vendor/@lottiefiles/lottie-player/dist/lottie-player.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Main Theme Script -->
<script src="assets/js/theme.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
var mySwiper = new Swiper('.swiper', {
spaceBetween: 24,
loop: true,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
navigation: {
prevEl: '#testimonials-prev',
nextEl: '#testimonials-next',
},
on: {
slideChange: function () {
var currentIndex = this.realIndex; // Swiper's current slide index
console.log("Current slide index: " + currentIndex);
// Example: Perform actions based on currentIndex
switch (currentIndex) {
case 0:
// Actions for slide 1
console.log("Slide 1");
// update text
document.getElementById("subjectText").innerHTML = "Facility Power Distribution";
// update image
document.getElementById("subjectImage").style.backgroundImage = "url('assets/img/industrial/1.png')";
break;
case 1:
// Actions for slide 2
console.log("Slide 2");
// update text
document.getElementById("subjectText").innerHTML = "Buss Duct";
// update image
document.getElementById("subjectImage").style.backgroundImage = "url('assets/img/industrial/2.png')";
break;
case 2:
// Actions for slide 3
console.log("Slide 3");
// update text
document.getElementById("subjectText").innerHTML = "Machine Feeder’s";
// update image
document.getElementById("subjectImage").style.backgroundImage = "url('assets/img/industrial/3.png')";
break;
case 3:
// Actions for slide 4
console.log("Slide 4");
// update text
document.getElementById("subjectText").innerHTML = "A/C and D/C Drives and Line-Ups";
// update image
document.getElementById("subjectImage").style.backgroundImage = "url('assets/img/industrial/4.png')";
break;
case 4:
// Actions for slide 5
console.log("Slide 5");
// update text
document.getElementById("subjectText").innerHTML = "MCC’s";
// update image
document.getElementById("subjectImage").style.backgroundImage = "url('assets/img/industrial/5.png')";
break;
case 5:
// Actions for slide 6
console.log("Slide 6");
// update text
document.getElementById("subjectText").innerHTML = "Custom Machine Control";
// update image
document.getElementById("subjectImage").style.backgroundImage = "url('assets/img/industrial/6.png')";
break;
case 6:
// Actions for slide 7
console.log("Slide 7");
// update text
document.getElementById("subjectText").innerHTML = "PLC’s";
// update image
document.getElementById("subjectImage").style.backgroundImage = "url('assets/img/industrial/7.png')";
break;
case 7:
// Actions for slide 8
console.log("Slide 8");
// update text
document.getElementById("subjectText").innerHTML = "Medium Voltage Substations and Circuits";
// update image
document.getElementById("subjectImage").style.backgroundImage = "url('assets/img/industrial/8.png')";
break;
}
},
},
});
});
</script>
</body>
</html>