-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
871 lines (834 loc) · 54 KB
/
index.php
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
<?php include 'header.php'; ?>
<div class="body-innerwrapper">
<!--Top Contact info-->
<section id="sp-top-info">
<div class="container">
<div class="row">
<div class="col-sm-12 top-base no-padding">
<div class="col-sm-6 top-block">
<p><i class="fa fa-map-marker"><i class="hidden">address</i></i> 14 Brookpark Rd - Cleveland, Ohio 44130</p>
</div>
<div class="col-sm-6 top-block text-right">
<ul class="social-icons">
<li><a target="_blank" href="#"><i class="fa fa-facebook"></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-twitter"></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-google-plus"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--Top bar-->
<section id="sp-top-bar">
<div class="container">
<div class="row">
<div id="logo" class="col-sm-3 col-md-3">
<a href="#">
<img class="logo" src="/assets/img/servicepro-logo.svg" alt="Service Pro"></a>
</div>
<div id="sp-top2" class="col-sm-9 col-md-9 hidden-xs">
<ul class="sp-contact-info">
<li class="sp-contact-time"><i class="ti-timer"></i>
<p class="contact-content"> <span class="contact-title">Hours:</span> <span class="time">Mon-Sat: 9AM-6PM</span></p>
</li>
<li class="sp-contact-phone"><i class="icon-call-in"></i>
<p class="contact-content"> <span class="contact-title">Phone:</span> <span>216-352-3027</span></p>
</li>
<li class="sp-contact-email"><i class="icon-envelope-letter"></i>
<p class="contact-content"> <span class="contact-title">Email:</span> <span>info@servicepro.com</span></p>
</li>
</ul>
</div>
</div>
</div>
</section>
<!--header-->
<header id="sp-header">
<div class="container">
<div class="row">
<div id="sp-menu" class="col-sm-12 col-md-12">
<div class="sp-column ">
<div class='sp-megamenu-wrapper'>
<a id="offcanvas-toggler" href="#"><i class="fa fa-bars"></i></a>
<ul class="sp-megamenu-parent menu-fade-up hidden-xs">
<li class="sp-menu-item current-item active"><a style="padding-left: 0px;" href="#">Home</a></li>
<li class="sp-menu-item sp-has-child"><a href="#">Services</a>
<div class="sp-dropdown sp-dropdown-main sp-menu-right">
<div class="sp-dropdown-inner">
<ul class="sp-dropdown-items">
<li class="sp-menu-item"><a href="https://vuedesign.co/portfolio/servicepro/maintenance">Maintenance</a></li>
<li class="sp-menu-item"><a href="#">Management</a></li>
<li class="sp-menu-item"><a href="#">Engineering</a></li>
</ul>
</div>
</div>
</li>
<li class="sp-menu-item"><a href="#">About</a></li>
<li class="sp-menu-item"><a href="#">Projects</a></li>
<!-- <li class="sp-menu-item current-item sp-has-child"><a href="#">News</a>
<div class="sp-dropdown sp-dropdown-main sp-menu-right">
<div class="sp-dropdown-inner">
<ul class="sp-dropdown-items">
<li class="sp-menu-item"><a href="#">Blog Work</a></li>
<li class="sp-menu-item"><a href="#">Single Blog</a></li>
<li class="sp-menu-item"><a href="#">Single Blog</a></li>
</ul>
</div>
</div>
</li> -->
<li class="sp-menu-item"><a href="#">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</header>
<!--Banner-->
<section id="banner">
<div class="container-fluid">
<div class="row">
<!-- START REVOLUTION SLIDER 4.6.5 b1 fullwidth mode -->
<div id="rev_slider_1_1_wrapper" class="rev_slider_wrapper fullwidthbanner-container" style="margin:0px auto;background-color:#E9E9E9;padding:0px;margin-top:0px;margin-bottom:0px;max-height:550px;">
<div id="rev_slider_1_1" class="rev_slider fullwidthabanner" style="display:none;max-height:550px;height:550px;">
<ul>
<!-- SLIDE 1-->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-thumb="/assets/img/hero-1.jpg" data-saveperformance="off" data-title="Slide">
<!-- MAIN IMAGE -->
<img src="/assets/img/hero-1.jpg" alt="" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat">
<!-- LAYERS -->
<div class="tp-caption large_bold_black sft tp-resizeme" data-x="86" data-y="158" data-speed="300" data-start="500" data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 5; max-width: auto; max-height: auto; white-space: nowrap;">Welcome to servicePRO
</div>
<div class="tp-caption smalltext sfr tp-resizeme" data-x="88" data-y="209" data-speed="300" data-start="500" data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 7; max-width: auto; max-height: auto; white-space: nowrap;">BRING VALUE TO YOUR INDUSTRY
<br> ONE PROJECT AT A TIME
</div>
<div class="tp-caption medium_text sfb tp-resizeme" data-x="88" data-y="312" data-speed="300" data-start="500" data-easing="Sine.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 6; max-width: auto; max-height: auto; white-space: nowrap;"><a href='#' class='sppb-btn sppb-btn-default sppb-btn-'>Contact Us</a>
</div>
<div class="tp-caption medium_text sfb tp-resizeme" data-x="244" data-y="312" data-speed="300" data-start="500" data-easing="Sine.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 8; max-width: auto; max-height: auto; white-space: nowrap;"><a href='#' class='sppb-btn sppb-btn-primary sppb-btn-'>Read More</a>
</div>
</li>
<!-- SLIDE 2-->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-thumb="/assets/img/hero-2.jpg" data-saveperformance="off" data-title="Slide">
<!-- MAIN IMAGE -->
<img src="/assets/img/hero-2.jpg" alt="" data-bgposition="center bottom" data-bgfit="cover" data-bgrepeat="no-repeat">
<!-- LAYERS -->
<div class="tp-caption smalltext tp-fade tp-resizeme" data-x="86" data-y="128" data-speed="300" data-start="500" data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 6; max-width: auto; max-height: auto; white-space: nowrap;">PLANNING
<br> FOR THE FUTURE
</div>
<div class="tp-caption small_text tp-fade tp-resizeme" data-x="90" data-y="234" data-speed="300" data-start="500" data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 7; max-width: auto; max-height: auto; white-space: nowrap;"><!--Whether you require mobile commercial hiring in Cleveland
<br>or transport hire for your project on, contact us today for a free quote.-->We pride ourselves on our equipment and ensure all services are well maintained <br>and inspected annually. If we don’t have the service to suit your project requirements we <br>will source the right one for the job every time.
</div>
<div class="tp-caption medium_text tp-fade tp-resizeme" data-x="88" data-y="337" data-speed="300" data-start="500" data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 5; max-width: auto; max-height: auto; white-space: nowrap;"><a href='#' class='sppb-btn sppb-btn-default sppb-btn-'>Free Quote</a>
</div>
<div class="tp-caption medium_text tp-fade tp-resizeme" data-x="245" data-y="336" data-speed="300" data-start="500" data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 8; max-width: auto; max-height: auto; white-space: nowrap;"><a href='#' class='sppb-btn sppb-btn-primary sppb-btn-'>Read More</a>
</div>
</li>
<!-- SLIDE 3-->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-thumb="/assets/img/hero-3.jpg" data-saveperformance="off" data-title="Slide">
<!-- MAIN IMAGE -->
<img src="/assets/img/hero-3.jpg" alt="" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat">
<!-- LAYERS -->
<div class="tp-caption smalltext tp-fade tp-resizeme" data-x="86" data-y="128" data-speed="300" data-start="500" data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 6; max-width: auto; max-height: auto; white-space: nowrap;">GROWING
<br> YOUR DREAMS.
</div>
<div class="tp-caption small_text tp-fade tp-resizeme" data-x="90" data-y="234" data-speed="300" data-start="500" data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 7; max-width: auto; max-height: auto; white-space: nowrap;">At ServicePRO we want to work with our customers to ensure your
<br>project is a success, and in doing so we build strong business relationships
<br>that all stakeholders can benefit from.
</div>
<div class="tp-caption medium_text tp-fade tp-resizeme" data-x="88" data-y="337" data-speed="300" data-start="500" data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 5; max-width: auto; max-height: auto; white-space: nowrap;"><a href='#' class='sppb-btn sppb-btn-default sppb-btn-'>Contact Us</a>
</div>
<div class="tp-caption medium_text tp-fade tp-resizeme" data-x="245" data-y="336" data-speed="300" data-start="500" data-easing="Power3.easeInOut" data-splitin="none" data-splitout="none" data-elementdelay="0.1" data-endelementdelay="0.1" data-endspeed="300" style="z-index: 8; max-width: auto; max-height: auto; white-space: nowrap;"><a href='#' class='sppb-btn sppb-btn-primary sppb-btn-'>Read More</a>
</div>
</li>
</ul>
<div class="tp-bannertimer"></div>
</div>
<script type="text/javascript">
/** PREPARE PLACEHOLDER FOR SLIDER **/
var setREVStartSize = function() {
var tpopt = new Object();
tpopt.startwidth = 1200;
tpopt.startheight = 550;
tpopt.container = jQuery('#rev_slider_1_1');
tpopt.fullScreen = "off";
tpopt.forceFullWidth = "off";
tpopt.container.closest(".rev_slider_wrapper").css({
height: tpopt.container.height()
});
tpopt.width = parseInt(tpopt.container.width(), 0);
tpopt.height = parseInt(tpopt.container.height(), 0);
tpopt.bw = tpopt.width / tpopt.startwidth;
tpopt.bh = tpopt.height / tpopt.startheight;
if (tpopt.bh > tpopt.bw) tpopt.bh = tpopt.bw;
if (tpopt.bh < tpopt.bw) tpopt.bw = tpopt.bh;
if (tpopt.bw < tpopt.bh) tpopt.bh = tpopt.bw;
if (tpopt.bh > 1) {
tpopt.bw = 1;
tpopt.bh = 1
}
if (tpopt.bw > 1) {
tpopt.bw = 1;
tpopt.bh = 1
}
tpopt.height = Math.round(tpopt.startheight * (tpopt.width / tpopt.startwidth));
if (tpopt.height > tpopt.startheight && tpopt.autoHeight != "on") tpopt.height = tpopt.startheight;
if (tpopt.fullScreen == "on") {
tpopt.height = tpopt.bw * tpopt.startheight;
var cow = tpopt.container.parent().width();
var coh = jQuery(window).height();
if (tpopt.fullScreenOffsetContainer != undefined) {
try {
var offcontainers = tpopt.fullScreenOffsetContainer.split(",");
jQuery.each(offcontainers, function(e, t) {
coh = coh - jQuery(t).outerHeight(true);
if (coh < tpopt.minFullScreenHeight) coh = tpopt.minFullScreenHeight
})
} catch (e) {}
}
tpopt.container.parent().height(coh);
tpopt.container.height(coh);
tpopt.container.closest(".rev_slider_wrapper").height(coh);
tpopt.container.closest(".forcefullwidth_wrapper_tp_banner").find(".tp-fullwidth-forcer").height(coh);
tpopt.container.css({
height: "100%"
});
tpopt.height = coh;
} else {
tpopt.container.height(tpopt.height);
tpopt.container.closest(".rev_slider_wrapper").height(tpopt.height);
tpopt.container.closest(".forcefullwidth_wrapper_tp_banner").find(".tp-fullwidth-forcer").height(tpopt.height);
}
};
/* CALL PLACEHOLDER */
setREVStartSize();
var tpj = jQuery;
tpj.noConflict();
var revapi1;
tpj(document).ready(function() {
if (tpj('#rev_slider_1_1').revolution == undefined) {
revslider_showDoubleJqueryError('#rev_slider_1_1');
} else {
revapi1 = tpj('#rev_slider_1_1').show().revolution({
dottedOverlay: "none",
delay: 9000,
startwidth: 1200,
startheight: 550,
hideThumbs: 200,
thumbWidth: 100,
thumbHeight: 50,
thumbAmount: 3,
simplifyAll: "off",
navigationType: "bullet",
navigationArrows: "solo",
navigationStyle: "preview1",
touchenabled: "on",
onHoverStop: "on",
nextSlideOnWindowFocus: "off",
swipe_threshold: 75,
swipe_min_touches: 1,
drag_block_vertical: false,
keyboardNavigation: "off",
navigationHAlign: "center",
navigationVAlign: "bottom",
navigationHOffset: 0,
navigationVOffset: 20,
soloArrowLeftHalign: "left",
soloArrowLeftValign: "center",
soloArrowLeftHOffset: 20,
soloArrowLeftVOffset: 0,
soloArrowRightHalign: "right",
soloArrowRightValign: "center",
soloArrowRightHOffset: 20,
soloArrowRightVOffset: 0,
shadow: 0,
fullWidth: "on",
fullScreen: "off",
spinner: "spinner0",
stopLoop: "off",
stopAfterLoops: -1,
stopAtSlide: -1,
shuffle: "off",
autoHeight: "off",
forceFullWidth: "off",
hideThumbsOnMobile: "off",
hideNavDelayOnMobile: 1500,
hideBulletsOnMobile: "off",
hideArrowsOnMobile: "off",
hideThumbsUnderResolution: 0,
hideSliderAtLimit: 0,
hideCaptionAtLimit: 0,
hideAllCaptionAtLilmit: 0,
startWithSlide: 0,
isJoomla: true
});
}
}); /*ready*/
</script>
</div>
<!-- END REVOLUTION SLIDER -->
</div>
</div>
</section>
<!--Action-->
<section class="action">
<div class="container">
<div class="row">
<div class="col-sm-9 action-block">
<h2 class="title">Do you need experts to build your dream projects?</h2>
</div>
<div class="col-sm-3 action-block text-right">
<a target="_parent" href="#" class="sppb-btn sppb-btn-default sppb-btn-">Contact Us</a>
</div>
</div>
</div>
</section>
<!--Services-->
<section id="services" class="space">
<div class="container">
<div class="row">
<div class="service-block col-sm-4">
<img class="sppb-img-responsive" src="/assets/img/survey-worker.jpg" alt="">
<a href="#" target="_parent">
<h3 class="title">Business Needs</h3>
</a>
<p>Choosing the right partner can be a taxing experience and it can be helpful to have a few ideas before you begin. Our guide can help you with your next project or client.</p>
<a target="_parent" href="#" class="simple">Read More<i class="fa fa-long-arrow-right"></i> </a>
</div>
<div class="service-block col-sm-4">
<img class="sppb-img-responsive" src="/assets/img/worker-and-saw.jpg" alt="">
<a href="#" target="_parent">
<h3 class="title">Home Renovation</h3>
</a>
<p>The Bottom Line on The Cost to Finish a Basement. Understand and budget for the costs to finish your basement before you start If you have an unfinished basement, your home has untapped potential.</p>
<a target="_parent" href="#" class="simple">Read More<i class="fa fa-long-arrow-right"></i> </a>
</div>
<div class="service-block col-sm-4">
<div class="service-list">
<div class="pull-left">
<img class="img-responsive" src="/assets/img/architectual-design.jpg" alt="">
</div>
<div class="media-body">
<h4 class="title">
<a href="#" target="_parent">Architecture & Design</a>
</h4>
<p>See the latest in Architecture Design trends.</p>
</div>
</div>
<div class="service-list">
<div class="pull-left">
<img class="img-responsive" src="/assets/img/guy-with-saw.jpg" alt="">
</div>
<div class="media-body">
<h4 class="title">
<a href="#" target="_parent">General Construction</a>
</h4>
<p>From everyday to the more advanced, here's a list of projects.</p>
</div>
</div>
<div class="service-list">
<div class="pull-left">
<img class="img-responsive" src="/assets/img/wood-flooring.jpg" alt="">
</div>
<div class="media-body">
<h4 class="title">
<a href="#" target="_parent">Hardwood Flooring</a>
</h4>
<p>Remodel that special room in your home today with a hardwood floor.</p>
</div>
</div>
<div class="service-list">
<div class="pull-left">
<img class="img-responsive" src="/assets/img/condo.jpg" alt="">
</div>
<div class="media-body">
<h4 class="title">
<a href="#" target="_parent">Condo Remodeling</a>
</h4>
<p>Condo remolding made easy: See our list of ideas.</p>
</div>
</div>
<div class="button">
<a target="_parent" href="#" class="simple">Show all<i class="fa fa-long-arrow-right"></i> </a>
</div>
</div>
</div>
</div>
</section>
<!--Portfolio-->
<section id="portfolio" class="space bg-color">
<div class="container">
<!--Main Heading-->
<div class="col-sm-12 no-padding main-heading text-center">
<h2>Featured Projects</h2>
</div>
<div class="row">
<div id="mod-sp-simpleportfolio" class="sp-simpleportfolio sp-simpleportfolio-view-items layout-gallery-space ">
<div class="sp-simpleportfolio-filter">
<ul>
<li class="active" data-group="all"><a href="#">Show All</a></li>
<li data-group="renovation"><a href="#">Renovation</a></li>
<li data-group="interior"><a href="#">Interior Design</a></li>
<li data-group="architechture"><a href="#">Architechture</a></li>
</ul>
</div>
<div class="sp-simpleportfolio-items sp-simpleportfolio-columns-4">
<div class="sp-simpleportfolio-item" data-groups='["renovation","architechture"]'>
<div class="sp-simpleportfolio-overlay-wrapper clearfix">
<img class="sp-simpleportfolio-img" src="/assets/img/project-1.jpg" alt="">
<div class="sp-simpleportfolio-overlay">
<div class="sp-vertical-middle">
<div>
<div class="sp-simpleportfolio-btns">
<a class="btn-zoom" href="./img/project-1.jpg" data-featherlight="image">Zoom</a>
<a class="btn-view" href="#">View</a>
</div>
<h3 class="sp-simpleportfolio-title">
<a href="#">
CLE Tunnel</a>
</h3>
<div class="sp-simpleportfolio-tags">
Architechture </div>
</div>
</div>
</div>
</div>
</div>
<div class="sp-simpleportfolio-item" data-groups='["interior"]'>
<div class="sp-simpleportfolio-overlay-wrapper clearfix">
<img class="sp-simpleportfolio-img" src="/assets/img/project-2.jpg" alt="">
<div class="sp-simpleportfolio-overlay">
<div class="sp-vertical-middle">
<div>
<div class="sp-simpleportfolio-btns">
<a class="btn-zoom" href="./img/project-2.jpg" data-featherlight="image">Zoom</a>
<a class="btn-view" href="#">View</a>
</div>
<h3 class="sp-simpleportfolio-title">
<a href="#">
Barstool Bathroom</a>
</h3>
<div class="sp-simpleportfolio-tags">
Interior Design </div>
</div>
</div>
</div>
</div>
</div>
<div class="sp-simpleportfolio-item" data-groups='["renovation","interior"]'>
<div class="sp-simpleportfolio-overlay-wrapper clearfix">
<img class="sp-simpleportfolio-img" src="/assets/img/project-3.jpg" alt="">
<div class="sp-simpleportfolio-overlay">
<div class="sp-vertical-middle">
<div>
<div class="sp-simpleportfolio-btns">
<a class="btn-zoom" href="./img/project-3.jpg" data-featherlight="image">Zoom</a>
<a class="btn-view" href="#">View</a>
</div>
<h3 class="sp-simpleportfolio-title">
<a href="#">
UH Kitchens</a>
</h3>
<div class="sp-simpleportfolio-tags">
Renovation, Interior Design </div>
</div>
</div>
</div>
</div>
</div>
<div class="sp-simpleportfolio-item" data-groups='["renovation"]'>
<div class="sp-simpleportfolio-overlay-wrapper clearfix">
<img class="sp-simpleportfolio-img" src="/assets/img/project-4.jpg" alt="">
<div class="sp-simpleportfolio-overlay">
<div class="sp-vertical-middle">
<div>
<div class="sp-simpleportfolio-btns">
<a class="btn-zoom" href="./img/project-4.jpg" data-featherlight="image">Zoom</a>
<a class="btn-view" href="#">View</a>
</div>
<h3 class="sp-simpleportfolio-title">
<a href="#">
Busy Dog Office</a>
</h3>
<div class="sp-simpleportfolio-tags">
Renovation </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--about-->
<section id="about" class="space">
<div class="container">
<div class="row">
<div class="about-block col-sm-5">
<img class="sppb-img-responsive" src="/assets/img/our-services.jpg" alt="">
<h2 class="title">Who we are? </h2>
<p>We have extensive experience in a wide range of building, renovation and maintenance engineering services. Servicing the Cleveland and Akron areas since 2001.</p>
</div>
<div class="about-block col-sm-7">
<div class="heading">
<h2 class="title">Our Services</h2>
<p>With over 20 years experience, we are the leading provider of mobile construction hire, renovation, and industrial management services. We deliver a broad range of services across multiple industry sectors including Business, Property, Construction, Facility Management and Operation Maintenance.</p>
</div>
<div class="about-item">
<div class="col-sm-6 no-padding">
<div class="about-list">
<div class="pull-left">
<div class="sppb-icon">
<span class="icon-badge"></span>
</div>
</div>
<div class="sppb-media-body">
<h4 class="title">Management</h4>
<p>On-site or remote.</p>
</div>
</div>
<div class="about-list">
<div class="pull-left">
<div class="sppb-icon">
<span class="icon-trophy"></span>
</div>
</div>
<div class="sppb-media-body">
<h4 class="title">Maintanance</h4>
<p>24/7 on call.</p>
</div>
</div>
<div class="about-list">
<div class="pull-left">
<div class="sppb-icon">
<span class="icon-badge"></span>
</div>
</div>
<div class="sppb-media-body">
<h4 class="title">Planning</h4>
<p>Design and planning.</p>
</div>
</div>
</div>
<div class="col-sm-6 no-padding">
<div class="about-list">
<div class="pull-left">
<div class="sppb-icon">
<span class="icon-trophy"></span>
</div>
</div>
<div class="sppb-media-body">
<h4 class="title">Engineering</h4>
<p>Hire an engineer today.</p>
</div>
</div>
<div class="about-list">
<div class="pull-left">
<div class="sppb-icon">
<span class="icon-badge"></span>
</div>
</div>
<div class="sppb-media-body">
<h4 class="title">Design</h4>
<p>New and classic trends.</p>
</div>
</div>
<div class="about-list">
<div class="pull-left">
<div class="sppb-icon">
<span class="icon-trophy"></span>
</div>
</div>
<div class="sppb-media-body">
<h4 class="title">Operations</h4>
<p>Management in industry.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--counter-->
<section id="counter" class="space blue-overlay parallax1">
<div class="container">
<div class="row">
<div class="counter-heading col-sm-7">
<div class="heading">
<h2 class="title">We offer the best engineers and builders
<span>to support your business or develop your dream home.</span></h2>
</div>
<div class="counter-base col-sm-12 no-padding">
<div class="col-sm-4 counter-block">
<div class="count">1200</div>
<h3>Projects Finished</h3>
</div>
<div class="col-sm-4 counter-block">
<div class="count">44</div>
<h3>Awards Achieved</h3>
</div>
<div class="col-sm-4 counter-block">
<div class="count">26</div>
<h3>Expert Engineers</h3>
</div>
</div>
</div>
<div class="counter col-sm-5">
<img style="max-width: 200px; margin-left: 80px;" class="img-responsive" src="/assets/img/engineer.png" alt="">
</div>
</div>
</div>
</section>
<!--News-->
<section class="recent-news space">
<div class="container">
<div class="col-sm-12 no-padding main-heading text-center">
<h2 class="title">Recent News</h2>
</div>
<div class="row">
<article class="col-sm-6 news-block">
<div class="article-thumb">
<a href="/" target="_parent">
<img class="img-responsive" src="/assets/img/news-main.jpg" alt="Achived trophy on Industrial managment.">
</a>
</div>
<div class="article-info">
<h3 class="article-title">
<a href="#" target="_parent">The Benefits of Investing in Sustainable Business Practices</a></h3>
<ul class="meta">
<li> <i class="fa fa-calendar"></i>
<span class="sppb-meta-date">20 April 2021</span></li>
<li> <i class="fa fa-user"></i>
<span class="sppb-meta-author">Admin</span></li>
</ul>
<p>Environmental, social and governance practices are a hot topic in the corporate world. Here's why you should consider...</p>
</div>
</article>
<div class="col-sm-6 blog-list">
<article class="col-sm-12 news-block no-padding">
<div class="article-thumb pull-left">
<a href="#" target="_parent">
<img class="img-responsive" src="/assets/img/news-1.jpg" alt="">
</a>
</div>
<div class="article-info">
<h3 class="article-title">
<a href="#" target="_parent">Best Practices That Will Make Contractors Happy</a></h3>
<ul class="meta">
<li> <i class="fa fa-calendar"></i>
<span class="sppb-meta-date">21 December 2020</span></li>
<li> <i class="fa fa-user"></i>
<span class="sppb-meta-author">Admin</span></li>
</ul>
<p>There are many ways to make your business or home much safer than it is today. Here's a list of ways that you...</p>
</div>
</article>
<article class="col-sm-12 news-block no-padding">
<div class="article-thumb pull-left">
<a href="#" target="_parent">
<img class="img-responsive" src="/assets/img/news-2.jpg" alt="">
</a>
</div>
<div class="article-info">
<h3 class="article-title">
<a href="#" target="_parent">How Best Welding Practices Can You Time and Money</a></h3>
<ul class="meta">
<li> <i class="fa fa-calendar"></i>
<span class="sppb-meta-date">14 Janurary 2021</span></li>
<li> <i class="fa fa-user"></i>
<span class="sppb-meta-author">Admin</span></li>
</ul>
<p>Welding is the base of any metal works project and can end up being the most expensive asset when planning...</p>
</div>
</article>
<article class="col-sm-12 news-block no-padding">
<div class="article-thumb pull-left">
<a href="#" target="_parent">
<img class="img-responsive" src="/assets/img/news-3.jpg" alt="">
</a>
</div>
<div class="article-info">
<h3 class="article-title">
<a href="#" target="_parent">Sustainable Energy is Here: How To Take Advantage</a></h3>
<ul class="meta">
<li> <i class="fa fa-calendar"></i>
<span class="sppb-meta-date">11 April 2021</span></li>
<li> <i class="fa fa-user"></i>
<span class="sppb-meta-author">Admin</span></li>
</ul>
<p>Sustainable energy is here and here to stay. There are many ways to take advantage of the many ways you can...</p>
</div>
</article>
<article class="col-sm-12 news-block no-padding">
<div class="article-thumb pull-left">
<a href="#" target="_parent">
<img class="img-responsive" src="/assets/img/news-4.jpg" alt="">
</a>
</div>
<div class="article-info">
<h3 class="article-title">
<a href="#" target="_parent">Plan for the Future and Invest In Your Business Today</a></h3>
<ul class="meta">
<li> <i class="fa fa-calendar"></i>
<span class="sppb-meta-date">20 May 2016</span></li>
<li> <i class="fa fa-user"></i>
<span class="sppb-meta-author">Super User</span></li>
</ul>
<p>Planning in your future can be one of the best investments you can make today without having to come up with...</p>
</div>
</article>
</div>
</div>
</div>
</section>
<!--Testimonials-->
<section id="testimonials" class="blue-overlay parallax4">
<div class="container">
<div class="col-sm-12 main-heading text-center">
<h2 class="title">Testimonials</h2>
<i class="fa fa-quote-right "></i>
</div>
<div class="row">
<div class="col-sm-12 testimonial-block">
<div id="sync1" class="owl-carousel owl-theme text-center">
<div class="item">
<p>Service Pro is one of the best general contractors we've worked with. The entire team tactfully delivered a project of exceptional quality while staying on schedule and under budget.</p>
<div class="name">Bill Stewart</div>
</div>
<div class="item">
<p>Part of the challenge of going into a new market is committing to build a relationship with a General Contractor. Service Pro has exceeded our expectations, and we consider them one of our trusted partners.</p>
<div class="name">Dan Smith</div>
</div>
<div class="item">
<p>Thank you for guiding us through the construction process, being kind, understanding, and always ready to accommodate our needs. We love our new space and know that it was built by the very best.</p>
<div class="name">Rob Ruben</div>
</div>
</div>
<div id="sync2" class="owl-carousel">
<div class="item">
<img src="/assets/img/testimonial-1.jpg" alt="">
</div>
<div class="item ">
<img src="/assets/img/testimonial-2.jpg" alt="">
</div>
<div class="item">
<img src="/assets/img/testimonial-3.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<!--partner logo -->
<section class="partner-logo space">
<div class="container">
<div class="row">
<div class="col-sm-2">
<a target="_parent" href="#"><img class="img-responsive" src="/assets/img/partner-1.jpg" alt="Client 1"></a>
</div>
<div class="col-sm-2">
<a target="_parent" href="#"><img class="img-responsive" src="/assets/img/partner-2.jpg" alt="Client 2"></a>
</div>
<div class="col-sm-2">
<a target="_parent" href="#"><img class="img-responsive" src="/assets/img/partner-3.jpg" alt="Client 3"></a>
</div>
<div class="col-sm-2">
<a target="_parent" href="#"><img class="img-responsive" src="/assets/img/partner-4.jpg" alt="Client 4"></a>
</div>
<div class="col-sm-2">
<a target="_parent" href="#"><img class="img-responsive" src="/assets/img/partner-5.jpg" alt="Client 5"></a>
</div>
<div class="col-sm-2">
<a target="_parent" href="#"><img class="img-responsive" src="/assets/img/partner-6.jpg" alt="Client 6"></a>
</div>
</div>
</div>
</section>
<!--Footer upper-->
<section id="sp-bottom">
<div class="container">
<div class="row">
<div id="sp-bottom1" class="col-sm-6 col-md-3">
<h3 class="sp-module-title">Address</h3>
<ul class="textwidget">
<li><i class="fa fa-map-marker"><i class="hidden">address</i></i> 14 Brookpark Rd
<br> Cleveland, Ohio 44130</li>
<li><i class="fa fa-phone"></i> 216-352-3027</li>
<li><i class="fa fa-envelope"></i> info@servicepro.com</li>
<li><i class="fa fa-fax"></i> 216-352-3028</li>
<li><i class="fa fa-clock-o"></i> Mon-Sat: 9AM-6PM</li>
</ul>
</div>
<div id="sp-bottom2" class="col-sm-6 col-md-3">
<h3 class="sp-module-title">Usefull Links</h3>
<ul class="textwidget">
<li><i class="ti-arrow-right"></i><a href="#" target="_parent"> About Us</a></li>
<li><i class="ti-arrow-right"></i><a href="#" target="_parent"> Our Adviser</a></li>
<li><i class="ti-arrow-right"></i><a href="#" target="_parent"> Behind Scene</a></li>
<li><i class="ti-arrow-right"></i><a href="#" target="_parent"> Partners</a></li>
<li><i class="ti-arrow-right"></i><a href="#" target="_parent"> Quick links</a></li>
</ul>
</div>
<div id="sp-bottom3" class="col-sm-6 col-md-3">
<h3 class="sp-module-title">Tag Cloud</h3>
<div class="tagspopular">
<ul>
<li> <a href="/" target="_parent">Business</a></li>
<li> <a href="/" target="_parent">Operation Maintenance</a></li>
<li> <a href="/" target="_parent">Home Renovation</a></li>
<li> <a href="/" target="_parent">Industrial Management</a></li>
<li> <a href="/" target="_parent">Construction</a></li>
<li> <a href="/" target="_parent">Analysis</a></li>
</ul>
</div>
</div>
<!-- <div id="sp-bottom4" class="col-sm-3 col-md-3">
<h3 class="sp-module-title">Gallery</h3>
<div class="sp-flickr-gallery ">
<div class="sp-flickr-gallery-content">
<ul class="sp-flickr-gallery" data-id="83573762@N05" data-count="0" data-setid="72157663666458186">
<li><a target="_blank" href="http://www.flickr.com/photos/rusafy/24486097205/in/set-72157663666458186/" title="12"><span class="flickr-gallery-wrap"><img class="img-responsive" alt="12" src="http://farm2.staticflickr.com/1712/24486097205_356793e3e0_s.jpg"></span></a></li>
<li><a target="_blank" href="http://www.flickr.com/photos/rusafy/24459895706/in/set-72157663666458186/" title="23"><span class="flickr-gallery-wrap"><img class="img-responsive" alt="23" src="http://farm2.staticflickr.com/1512/24459895706_923897c084_s.jpg"></span></a></li>
<li><a target="_blank" href="http://www.flickr.com/photos/rusafy/24403696971/in/set-72157663666458186/" title="1"><span class="flickr-gallery-wrap"><img class="img-responsive" alt="1" src="http://farm2.staticflickr.com/1524/24403696971_45bd9fb9c8_s.jpg"></span></a></li>
<li><a target="_blank" href="http://www.flickr.com/photos/rusafy/24403694221/in/set-72157663666458186/" title="martin-soto-climent-unknown-feldschlösschen"><span class="flickr-gallery-wrap"><img class="img-responsive" alt="martin-soto-climent-unknown-feldschlösschen" src="http://farm2.staticflickr.com/1592/24403694221_7087f01892_s.jpg"></span></a></li>
<li><a target="_blank" href="http://www.flickr.com/photos/rusafy/24377806572/in/set-72157663666458186/" title="20110927064108-Web-Rachel-Install-1"><span class="flickr-gallery-wrap"><img class="img-responsive" alt="20110927064108-Web-Rachel-Install-1" src="http://farm2.staticflickr.com/1491/24377806572_fa803e71c1_s.jpg"></span></a></li>
<li><a target="_blank" href="http://www.flickr.com/photos/rusafy/24377806372/in/set-72157663666458186/" title="cd188c0f23f595a6ee643b4491276c59-1110x730"><span class="flickr-gallery-wrap"><img class="img-responsive" alt="cd188c0f23f595a6ee643b4491276c59-1110x730" src="http://farm2.staticflickr.com/1685/24377806372_2ef47198ac_s.jpg"></span></a></li>
<li><a target="_blank" href="http://www.flickr.com/photos/rusafy/24190548210/in/set-72157663666458186/" title="7"><span class="flickr-gallery-wrap"><img class="img-responsive" alt="7" src="http://farm2.staticflickr.com/1641/24190548210_a0791ea8bf_s.jpg"></span></a></li>
<li><a target="_blank" href="http://www.flickr.com/photos/rusafy/24190546860/in/set-72157663666458186/" title="21"><span class="flickr-gallery-wrap"><img class="img-responsive" alt="21" src="http://farm2.staticflickr.com/1579/24190546860_5c5c7b8e11_s.jpg"></span></a></li>
</ul>
</div>
</div>
</div> -->
</div>
</div>
</section>
<!--Side Menu-->
<div class="offcanvas-menu">
<a href="#" class="close-offcanvas"><i class="fa fa-remove"></i></a>
<div class="offcanvas-inner">
<div class="sp-module ">
<h3 class="sp-module-title">off canvas menu</h3>
<div class="sp-module-content">
<ul class="nav menu">
<li class="item-101 current active"><a href="#">Home</a></li>
<li class="item-165 deeper parent"><a href="#">Services</a>
<ul class="nav-child unstyled small">
<li class="item-167"><a href="https://vuedesign.co/portfolio/servicepro/maintenance">Maintenance</a></li>
<li class="item-168"><a href="#">Management</a></li>
<li class="item-170"><a href="#">Engineering</a></li>
</ul>
</li>
<li class="item-166"><a href="#">About</a></li>
<li class="item-111"><a href="#">Projects</a></li>
<!--<li class="item-109"><a href="#">News</a></li>-->
<li class="item-110"><a href="#">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<?php include 'footer.php';