-
Notifications
You must be signed in to change notification settings - Fork 2
/
index-16.html
984 lines (836 loc) · 50.4 KB
/
index-16.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
<!DOCTYPE html>
<html lang="en">
<!-- Moxx.co.ke -->
<head>
<meta charset="utf-8">
<title>Structural Engineering</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Moxx.co.ke">
<meta name="keywords" content="moxx.co.ke, Moxx Construction, MoxxKe, Moxx, Moxx Kenya, Bernard Mosiere, Construction companies in Kenya, Brian Wanjala, Construction projects in Kenya, Real Estate">
<meta name="author" content="Moxx">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!-- CSS Files
================================================== -->
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/jpreloader.css" type="text/css">
<link rel="stylesheet" href="css/animate.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="demo/demo.css" type="text/css">
<link rel="icon" type="image/png/icon" href="images/favicon.ico" alt="BSMS Icon">
<!-- custom background -->
<link rel="stylesheet" href="css/bg.css" type="text/css">
<!-- color scheme -->
<link rel="stylesheet" href="css/color.css" type="text/css" id="colors">
<!-- RS5.0 Main Stylesheet -->
<link rel="stylesheet" type="text/css" href="revolution/css/settings.css">
<!-- RS5.0 Layers and Navigation Styles -->
<link rel="stylesheet" type="text/css" href="revolution/css/layers.css">
<link rel="stylesheet" type="text/css" href="revolution/css/navigation.css">
</head>
<body id="homepage">
<div id="wrapper">
<!-- header begin -->
<header>
<div class="info">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="col"><span class="id-color"><i class="fa fa-map-marker"></i></span>G6/3, P.h 923062925821, Islamabad, Pakistan </div>
<div class="col"><span class="id-color"><i class="fa fa-clock-o"></i></span>Monday - Friday 08:00-16:00</div>
<div class="col"><span class="id-color"><i class="fa fa-phone"></i></span>
<style>
#link {
color: #ffffff;
}
/* CSS link color */
</style><a id="link" href="tel:+923062925821">+923062925821</a></div>
<div class="col">
<div id="lang-selector" class="dropdown">
<a href="#" class="btn-selector">English</a>
<ul>
<li class="active"><a href="#">English</a></li>
<li><a href="#">French</a></li>
<li><a href="#">Germany</a></li>
<li><a href="#">Spanish</a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 text-right">
<!-- social icons -->
<div class="col social">
<a href="https://www.facebook.com/moxx.co.ke"><i class="fa fa-facebook"></i></a>
<a href="https://www.twitter.com/MoxxKe"><i class="fa fa-twitter"></i></a>
<a href="https://www.instagram.com/MoxxConstruction"><i class="fa fa-instagram"></i></a>
<a href="https://wa.me/+254722534780"><i class="fa fa-whatsapp"></i></a>
<a href="https://www.youtube.com/channel/UCX-cDMbyQF68Ohkx14m7eSw"><i class="fa fa-youtube"></i></a>
</div>
<!-- social icons close -->
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- logo begin -->
<div id="logo">
<a href="index.html">
<img class="logo" src="images/Daco_1650933.png" alt="moxx Construction">
<img class="logo-2" src="images/Daco_1650933.png" alt="moxx Construction">
</a>
</div>
<!-- logo close -->
<!-- small button begin -->
<span id="menu-btn"></span>
<!-- small button close -->
<!-- mainmenu begin -->
<nav>
<ul id="mainmenu">
<li><a href="index.html">Structural Engineering</a>
<ul>
<li><a href="index-14.html">Architecture</a></li>
<li><a href="index-onepage-1.html">Civil Engineering</a></li>
<!--<li><a href="index-16.html">Structural Engineering</a></li>-->
<li><a href="index-3.html">Water Engineering</a></li>
<li><a href="index-4.html">Electrical Engineering</a></li>
<li><a href="index-5.html">Mechanical Engineering</a></li>
<li><a href="index-6.html">Project Management</a></li>
<li><a href="index-7.html">Interior Design</a></li>
<li><a href="index-8.html">Exterior Design</a></li>
<li><a href="index-9.html">Landscape Design</a></li>
<li><a href="index-10.html">Roofing</a></li>
<li><a href="index-11.html">Doors</a></li>
<li><a href="index-12.html">Windows</a></li>
<li><a href="index-13.html">Gutters</a></li>
<li><a href="index-2.html">Reconstruction</a></li>
</ul>
</li>
<li><a href="projects.html">Projects</a>
<ul>
<li><a href="projects.html">Projects Fullwidth</a>
</li>
<li><a href="projects-grid-4-cols.html">Projects Grid</a>
</li>
<li><a href="gallery-4-cols.html">Gallery</a>
</li>
</ul>
</li>
<li><a href="services.html">Services</a>
<ul>
<li><a href="service-1.html">General Consulting</a></li>
<li><a href="service-2.html">Construction Management</a></li>
<li><a href="service-3.html">Design and Build</a></li>
<li><a href="service-4.html">Preconstruction Consulting</a></li>
<li><a href="service-5.html">Special Projects</a></li>
<li><a href="service-6.html">Renovations</a></li>
<li><a href="services.html">All Services</a></li>
</ul>
</li>
<li><a href="about.html">About Us</a>
<ul>
<li><a href="about.html">Company</a></li>
<li><a href="about-history.html">History</a></li>
<li><a href="about-team.html">Team</a></li>
</ul>
</li>
<li><a href="blog.html">Blog</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
<!-- mainmenu close -->
</div>
</div>
</header>
<!-- header close -->
<!-- content begin -->
<div id="content" class="no-bottom no-top">
<!-- revolution slider begin -->
<section id="section-slider" class="fullwidthbanner-container" aria-label="section-slider">
<div id="revolution-slider">
<ul>
<li data-transition="parallaxhorizontal" data-slotamount="10" data-masterspeed="1500" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/wide7.jpg" alt="" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="10" />
<div class="tp-caption very-big-white" data-x="0" data-y="200" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_in="x:50px;opacity:0;s:1000;e:Power3.easeOut;" data-transform_out="opacity:0;x:-10;px;s:800;e:Power3.easeInOut;"
data-start="700" data-splitin="none" data-splitout="none" data-responsive_offset="on">
Modern Design<span class="id-color">.</span>
</div>
<div class="tp-caption" data-x="0" data-y="260" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_in="y:100px;opacity:0;s:500;e:Power3.easeOut;" data-transform_out="opacity:0;x:-10;s:800;e:Power3.easeInOut;" data-start="1100">
For the successful execution of a project, effective planning is essential. Our team
<br> ensure the building continues to operate in accordance with its design.
</div>
<div class="tp-caption" data-x="0" data-y="350" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_in="y:100px;opacity:0;s:500;e:Power3.easeOut;" data-transform_out="opacity:0;x:-10;s:800;e:Power3.easeInOut;" data-start="1200">
<a href="contact.html" class="btn-slider">Contact Us
</a>
</div>
</li>
<li data-transition="parallaxhorizontal" data-slotamount="10" data-masterspeed="1500" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/wide8.jpg" alt="" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="10" />
<div class="tp-caption very-big-white" data-x="0" data-y="200" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_in="x:50px;opacity:0;s:1000;e:Power3.easeOut;" data-transform_out="opacity:0;x:-10;px;s:800;e:Power3.easeInOut;"
data-start="700" data-splitin="none" data-splitout="none" data-responsive_offset="on">
Solid Teamworks<span class="id-color">.</span>
</div>
<div class="tp-caption" data-x="0" data-y="260" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_in="y:100px;opacity:0;s:500;e:Power3.easeOut;" data-transform_out="opacity:0;x:-10;s:800;e:Power3.easeInOut;" data-start="1100">
For the successful execution of a project, effective planning is essential. Our team
<br> ensure the building continues to operate in accordance with its design.
</div>
<div class="tp-caption" data-x="0" data-y="350" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_in="y:100px;opacity:0;s:500;e:Power3.easeOut;" data-transform_out="opacity:0;x:-10;s:800;e:Power3.easeInOut;" data-start="1200">
<a href="contact.html" class="btn-slider">Contact Us
</a>
</div>
</li>
<li data-transition="parallaxhorizontal" data-slotamount="10" data-masterspeed="1500" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/wide9.jpg" alt="" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="10" />
<div class="tp-caption very-big-white" data-x="0" data-y="200" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_in="x:50px;opacity:0;s:1000;e:Power3.easeOut;" data-transform_out="opacity:0;x:-10;px;s:800;e:Power3.easeInOut;"
data-start="700" data-splitin="none" data-splitout="none" data-responsive_offset="on">
We Build It<span class="id-color">.</span>
</div>
<div class="tp-caption" data-x="0" data-y="260" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_in="y:100px;opacity:0;s:500;e:Power3.easeOut;" data-transform_out="opacity:0;x:-10;s:800;e:Power3.easeInOut;" data-start="1100">
For the successful execution of a project, effective planning is essential. Our team
<br> ensure the building continues to operate in accordance with its design.
</div>
<div class="tp-caption" data-x="0" data-y="350" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_in="y:100px;opacity:0;s:500;e:Power3.easeOut;" data-transform_out="opacity:0;x:-10;s:800;e:Power3.easeInOut;" data-start="1200">
</div>
</li>
</ul>
</div>
</section>
<!-- revolution slider close -->
<!-- section begin -->
<section id="section-about" class="no-top z-index100">
<div class="container">
<div class="row">
<div class="col-md-4">
<figure class="pic-hover hover-scale mt-40 mb20">
<span class="center-xy">
<a class="popup-youtube" href="https://www.youtube.com/watch?v=rwvmru5JmXk">
<i class="fa fa-play btn-action btn-play btn-action-hide"></i></a>
</span>
<span class="bg-overlay"></span>
<img src="images/misc/pic_1.jpg" class="img-responsive" alt="">
</figure>
<h3>Planning</h3>
<p>
For the successful execution of a project, effective planning is essential. Those involved with the design and execution of the infrastructure in question must consider zoning requirements.
<br>
</p>
</div>
<div class="col-md-4" data-wow-delay=".2s">
<figure class="pic-hover hover-scale mt-40 mb20">
<span class="center-xy">
<a class="image-popup" href="images/misc/pic_1.jpg">
<i class="fa fa-image btn-action btn-action-hide"></i></a>
</span>
<span class="bg-overlay"></span>
<img src="images/misc/pic_2.jpg" class="img-responsive" alt="">
</figure>
<h3>Constructing</h3>
<p>
A construction project must fit into the legal framework governing the property. These include governmental regulations on the use of property and obligations that are created in the process of construction.
<br>
</p>
</div>
<div class="col-md-4">
<figure class="pic-hover hover-scale mt-40 mb20">
<span class="center-xy">
<a class="image-popup" href="images/misc/pic_3.jpg">
<i class="fa fa-image btn-action btn-action-hide"></i></a>
</span>
<span class="bg-overlay"></span>
<img src="images/misc/pic_3.jpg" class="img-responsive" alt="">
</figure>
<h3>Rebuilding</h3>
<p>
Our team ensure the building continues to operate in accordance with its design, including replacing elements which are approaching the end of their useful life to make it effective and functioning.
<br>
</p>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="explore-1" class="side-bg text-light" data-bgcolor="#222222">
<div class="col-md-6 image-container">
<div class="background-image"></div>
</div>
<div class="container">
<div class="row">
<div class="col-md-5 col-md-offset-7">
<h2>Our Skills<span class="tiny-border"></span></h2>
<div class="skill-bar">
<h3>General Consulting</h3>
<div class="de-progress">
<div class="progress-bar" data-value="80%">
</div>
</div>
</div>
<div class="spacer-single"></div>
<div class="skill-bar">
<h3>Construction Management</h3>
<div class="de-progress">
<div class="progress-bar" data-value="70%">
</div>
</div>
</div>
<div class="spacer-single"></div>
<div class="skill-bar">
<h3>Design & Build</h3>
<div class="de-progress">
<div class="progress-bar" data-value="90%">
</div>
</div>
</div>
<div class="spacer-single"></div>
<div class="skill-bar">
<h3>Special Projects</h3>
<div class="de-progress">
<div class="progress-bar" data-value="60%">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-features" class="text-light no-padding" data-stellar-background-ratio=".2">
<div class="color-overlay pt80 pb80">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Why Choose Us<span class="tiny-border"></span></h2>
</div>
<div class="spacer-single"></div>
<!-- feature box begin -->
<div class="feature-box-small-icon col-md-4 wow fadeIn" data-wow-delay="0">
<div class="inner">
<span class="number wow fadeIn" data-wow-delay=".4s">1</span>
<div class="text">
<h3>Professional Staff</h3>
We have developed expertise and capacity to offer a wide range of professional consulting engineering services.
</div>
</div>
</div>
<!-- feature box close -->
<!-- feature box begin -->
<div class="feature-box-small-icon col-md-4 wow fadeIn" data-wow-delay=".2s">
<div class="inner">
<span class="number wow fadeIn" data-wow-delay=".6s">2</span>
<div class="text">
<h3>Save Time and Money</h3>
With the expertise on board, we make sure that the projects we undertake take the shortest time possibble to develop. We make sure that the money plus time injected in the projects is worth the client's specifications.
</div>
</div>
</div>
<!-- feature box close -->
<!-- feature box begin -->
<div class="feature-box-small-icon col-md-4 wow fadeIn" data-wow-delay=".4s">
<div class="inner">
<span class="number wow fadeIn" data-wow-delay=".8s">3</span>
<div class="text">
<h3>Realistic Approach</h3>
A facilitated approach will have clarity on uncertainties, role requirements, and buying-in of completion time by all stakeholders.
</div>
</div>
</div>
<!-- feature box close -->
<div class="spacer-single"></div>
<!-- feature box begin -->
<div class="feature-box-small-icon col-md-4 wow fadeIn" data-wow-delay=".6s">
<div class="inner">
<span class="number wow fadeIn" data-wow-delay="1s">4</span>
<div class="text">
<h3>On Time Completion</h3>
Duration for projects, which are meticulously planned, well executed and deliverables show visible signs of client satisfaction in the time allocated as per the client's preference.
</div>
</div>
</div>
<!-- feature box close -->
<!-- feature box begin -->
<div class="feature-box-small-icon col-md-4 wow fadeIn" data-wow-delay=".8s">
<div class="inner">
<span class="number wow fadeIn" data-wow-delay="1.2s">5</span>
<div class="text">
<h3>No Hidden Cost</h3>
We serve our clients with utmost transparency, ensuring that we present all the costs incurred to them with detailed evidence.
</div>
</div>
</div>
<!-- feature box close -->
<!-- feature box begin -->
<div class="feature-box-small-icon col-md-4 wow fadeIn" data-wow-delay="1s">
<div class="inner">
<span class="number wow fadeIn" data-wow-delay="1.4s">6</span>
<div class="text">
<h3>Zero Complaints</h3>
For over the years we have served our clients, we have managed to serve fully to the customers' satisfaction.
</div>
</div>
</div>
<!-- feature box close -->
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-portfolio" class="no-bottom" aria-label="section-portfolio">
<div class="container">
<h2>Recent Works<span class="tiny-border"></span></h2>
<!-- portfolio filter begin -->
<div class="row">
<div class="col-md-12">
<ul id="filters">
<li><a href="#" data-filter=".commercial">Commercial</a></li>
<li><a href="#" data-filter=".education">Education</a></li>
<li><a href="#" data-filter=".hospitaly">Hospitaly</a></li>
<li><a href="#" data-filter=".office">Office</a></li>
<li><a href="#" data-filter=".residential">Residential</a></li>
<li class="pull-right"><a href="#" data-filter="*" class="selected">All Projects</a></li>
</ul>
</div>
</div>
<!-- portfolio filter close -->
</div>
<div id="gallery" class="gallery full-gallery de-gallery pf_full_width">
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a href="project-details-1.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Green House</span>
</span>
</span>
</a>
<img src="images/portfolio/pf%20(1).jpg" alt="" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item commercial education">
<div class="picframe">
<a href="project-details-2.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Contemporary Building</span>
</span>
</span>
</a>
<img src="images/portfolio/pf%20(2).jpg" alt="" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item commercial hospitaly">
<div class="picframe">
<a href="project-details-3.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Twin Tower</span>
</span>
</span>
</a>
<img src="images/portfolio/pf%20(3).jpg" alt="" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item commercial hospitaly">
<div class="picframe">
<a href="project-details-4.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Modern Skyline</span>
</span>
</span>
</a>
<img src="images/portfolio/pf%20(4).jpg" alt="" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item office commercial">
<div class="picframe">
<a href="project-details-5.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Modern Office</span>
</span>
</span>
</a>
<img src="images/portfolio/pf%20(5).jpg" alt="" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a href="project-details-1.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Country Side House</span>
</span>
</span>
</a>
<img src="images/portfolio/pf%20(6).jpg" alt="" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item office education">
<div class="picframe">
<a href="project-details-2.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Cube Office</span>
</span>
</span>
</a>
<img src="images/portfolio/pf%20(7).jpg" alt="" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a href="project-details-3.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">London Luxury House</span>
</span>
</span>
</a>
<img src="images/portfolio/pf%20(8).jpg" alt="" />
</div>
</div>
<!-- close gallery item -->
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section class="call-to-action bg-color dark pt30 pb30" aria-label="call-to-action">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<a href="projects.html" class="btn btn-line-black btn-fx">View All Works</a>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-deco-1" class="text-light no-top no-bottom" data-bgcolor="#333" data-stellar-background-ratio=".2">
<div class="color-overlay pt80 pb60">
<div class="container">
<div class="row">
<div class="col-md-6">
<h2>We Proud To Be a <span class="id-color">Prospective Award Winning</span> Construction Company<span class="tiny-border"></span></h2>
<div class="row">
<div class="col-md-6">
<h3>Our Vision</h3>
<p>
<ul>
<li>To provide engineering solutions that satisfy the needs of our clients.</li>
<li>To improve the quality of life of our people.</li>
<li>To be a leading consulting architecture and engineering company.</li>
<li>To be a consulting architecture, engineering and project management company of choice for employers.</li>
</ul>
</p>
</div>
<div class="col-md-6">
<h3>Our Mission</h3>
<p>To provide the highest Innovative and Quality Consulting architectural, engineering and project management services that will ensure Client satisfaction, long-term benefits to beneficiaries and Clients, the upliftment
of communities, maximise equity and skills transfer by adding value through the employment and application of world-class resources, practices and technologies.</p>
</div>
</div>
</div>
<div class="col-md-6">
<figure class="pic-hover hover-scale mb30">
<span class="center-xy">
<a class="popup-youtube" href="https://www.youtube.com/watch?v=LE7MCx6MQgs">
<i class="fa fa-play btn-action btn-play"></i></a>
</span>
<span class="bg-overlay"></span>
<img src="images/misc/pic_8.jpg" class="img-responsive" alt="">
</figure>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<!--<section id="section-news">
<div class="container">
<div class="row">
<div class="col-md-12">
<ul id="blog-carousel" class="blog-list blog-snippet">
<li class="col-md-6 item">
<div class="post-content">
<div class="date-box">
<div class="day">26</div>
<div class="month">FEB</div>
</div>
<div class="post-text">
<h3><a href="css/index.html#">5 Things That Take a Room from Good to Great</a></h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
<br>
<a href="#" class="read_more mt10">read more <i class="fa fa-chevron-right id-color"></i></a>
</p>
</div>
</div>
</li>
<li class="col-md-6 item">
<div class="post-content">
<div class="date-box">
<div class="day">20</div>
<div class="month">FEB</div>
</div>
<div class="post-text">
<h3><a href="css/index.html#">Functional and Stylish Wall-to-Wall Shelves</a></h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
<br>
<a href="#" class="read_more mt10">read more <i class="fa fa-chevron-right id-color"></i></a>
</p>
</div>
</div>
</li>
<li class="col-md-6 item">
<div class="post-content">
<div class="date-box">
<div class="day">16</div>
<div class="month">FEB</div>
</div>
<div class="post-text">
<h3><a href="css/index.html#">The 5 Secrets to Pulling Off Simple, Minimal Design</a></h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
<br>
<a href="#" class="read_more mt10">read more <i class="fa fa-chevron-right id-color"></i></a>
</p>
</div>
</div>
</li>
<li class="col-md-6 item">
<div class="post-content">
<div class="date-box">
<div class="day">08</div>
<div class="month">FEB</div>
</div>
<div class="post-text">
<h3><a href="css/index.html#">How to Make a Huge Impact With Multiples</a></h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
<br>
<a href="#" class="read_more mt10">read more <i class="fa fa-chevron-right id-color"></i></a>
</p>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>-->
<!-- section close -->
<!-- section begin -->
<section id="section-fun-facts" class="bg-color no-top no-bottom">
<div class="pt20 pb20">
<div class="container">
<div class="row">
<div class="col-md-3 wow fadeIn" data-wow-delay="0">
<div class="de_count">
<h3 class="timer" data-to="8350" data-speed="2500">0</h3>
<span>Hours of Works</span>
</div>
</div>
<div class="col-md-3 wow fadeIn" data-wow-delay=".25s">
<div class="de_count">
<h3 class="timer" data-to="240" data-speed="2500">0</h3>
<span>Projects Complete</span>
</div>
</div>
<div class="col-md-3 wow fadeIn" data-wow-delay=".5s">
<div class="de_count">
<h3 class="timer" data-to="120" data-speed="2500">0</h3>
<span>Feedback Received</span>
</div>
</div>
<div class="col-md-3 wow fadeIn" data-wow-delay=".75s">
<div class="de_count">
<h3 class="timer" data-to="73" data-speed="2500">0</h3>
<span>Satisfied Clients</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
</div>
<!-- footer begin -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<img src="images/logo.png" class="logo-small" alt="Moxx Logo"><br>
</div>
<div class="col-md-4">
<div class="widget widget_recent_post">
<h3>Latest News</h3>
<ul>
<li><a href="#">5 Things That Take a Room from Good to Great</a></li>
<li><a href="#">Functional and Stylish Wall-to-Wall Shelves</a></li>
<li><a href="#">9 Unique and Unusual Ways to Display Your TV</a></li>
<li><a href="#">The 5 Secrets to Pulling Off Simple, Minimal Design</a></li>
<li><a href="#">How to Make a Huge Impact With Multiples</a></li>
</ul>
</div>
</div>
<div class="col-md-4">
<h3>Contact Us</h3>
<div class="widget widget-address">
<address>
<span>G6/3, P.h 923062925821, Islamabad, Pakistan </span>
<span><strong>Phone:</strong>+923062925821</span>
<span><strong>Email:</strong><a href="mailto:salmanqaiser860@gmail.com">salmanqaiser860@gmail.com</a></span>
<span><strong>Web:</strong><a href="https://www.moxx.co.ke">https://www.moxx.co.ke</a></span>
</address>
</div>
</div>
</div>
</div>
<div class="subfooter">
<div class="container">
<div class="row">
<div class="col-md-6">
© All Rights Reserved. Copyright Building Survey Management System 2023
</div>
<div class="col-md-6 text-right">
<div class="social-icons">
<a href="https://www.facebook.com/moxx.co.ke"><i class="fa fa-facebook"></i></a>
<a href="https://www.twitter.com/MoxxKe"><i class="fa fa-twitter"></i></a>
<a href="https://www.instagram.com/MoxxConstruction"><i class="fa fa-instagram"></i></a>
<a href="https://wa.me/+254722534780"><i class="fa fa-whatsapp"></i></a>
<a href="https://www.youtube.com/channel/UCX-cDMbyQF68Ohkx14m7eSw"><i class="fa fa-youtube"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- footer close -->
<a href="#" id="back-to-top"></a>
</div>
<!-- style switcher
================================================== -->
<div id="switcher">
<span class="custom-close"></span>
<span class="custom-show"></span>
<span class="sw-title">Header Style</span>
<select name="switcher" id="de-header-style">
<option value="opt-1">Solid</option>
<option value="opt-2" selected>Transparent</option>
</select>
<div class="clearfix"></div>
<span class="sw-title">Header Layout</span>
<select name="switcher" id="de-header-layout">
<option value="opt-1">Simple</option>
<option value="opt-2" selected>Extended</option>
</select>
<div class="clearfix"></div>
<span class="sw-title">Menu Style</span>
<select name="switcher" id="de-menu">
<option value="opt-1">Dotted Separator</option>
<option value="opt-2">Line Separator</option>
<option value="opt-3">Circle Separator</option>
<option value="opt-4">Square Separator</option>
<option value="opt-5">Plus Separator</option>
<option value="opt-6">Strip Separator</option>
<option value="opt-0" selected>No Separator</option>
</select>
<div class="clearfix"></div>
<span class="sw-title">Color :</span>
<ul id="de-color">
<li class="bg1"></li>
<li class="bg2"></li>
<li class="bg3"></li>
<li class="bg4"></li>
<li class="bg5"></li>
<li class="bg6"></li>
<li class="bg7"></li>
<li class="bg8"></li>
<li class="bg9"></li>
<li class="bg10"></li>
</ul>
</div>
<!-- Javascript Files
================================================== -->
<script src="js/jquery.min.js"></script>
<script src="js/jpreLoader.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.isotope.min.js"></script>
<script src="js/easing.js"></script>
<script src="js/owl.carousel.js"></script>
<script src="js/jquery.countTo.js"></script>
<script src="js/validation.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/enquire.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/designesia.js"></script>
<script src="demo/demo.js"></script>
<!-- RS5.0 Core JS Files -->
<script type="text/javascript" src="revolution/js/jquery.themepunch.tools.min838f.js?rev=5.0"></script>
<script type="text/javascript" src="revolution/js/jquery.themepunch.revolution.min838f.js?rev=5.0"></script>
<!-- RS5.0 Extensions Files -->
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.video.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.slideanims.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.layeranimation.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.navigation.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.actions.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.kenburn.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.migration.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.parallax.min.js"></script>
<script>
jQuery(document).ready(function() {
jQuery("#revolution-slider").revolution({
sliderType: "standard",
sliderLayout: "fullwidth",
delay: 3500,
navigation: {
arrows: {
enable: true
}
},
parallax: {
type: "mouse",
origo: "slidercenter",
speed: 2000,
levels: [2, 3, 4, 5, 6, 7, 12, 16, 10, 50],
},
spinner: "off",
gridwidth: 1140,
gridheight: 510,
disableProgressBar: "on"
});
});
</script>
</body>
<!-- Mirrored from www.designesia.com/themes/buildpro/index-4.html by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 11 Jan 2021 15:57:39 GMT -->
</html>