-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1127 lines (1045 loc) · 65.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Constra-Construction</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
<script src="https://kit.fontawesome.com/81bd68d9c5.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Seymour+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/owl.carousel.css">
<link rel="stylesheet" href="./css/owl.theme.default.min.css">
</head>
<body>
<!-- top-bar -->
<div class="container-fluid">
<div class="row">
<div class="col-lg-10 col-md-10 col-sm-12 pt-2 pb-2 top-bar">
<a href="#home"><i class="fas fa-map-marker-alt text-dark pl-5"></i></a>
<i>9051 Constra Incorporate, USA</i>
</div>
<div class="col-lg-2 col-md-2 col-sm-12 top-bar text-center pt-2">
<a href="#"><i class="fab fa-facebook-f text-dark"></i></a>
<a href="#"><i class="fab fa-twitter pl-2 text-dark"></i></a>
<a href="#"><i class="fab fa-instagram pl-2 text-dark"></i></a>
<a href="#"><i class="fab fa-linkedin-in pl-2 text-dark"></i></a>
</div>
</div>
</div>
<!-- top-bar -->
<!-- header -->
<div class="container-fluid">
<div class="row">
<div class="col-lg-5 col-md-5 col-sm-12 header pl-5"><img src="img/logo.png" class="img-fluid" alt="logo">
</div>
<div class="col-7 align-items-center d-flex">
<div class="container-fluid">
<div class="row">
<div class="col-lg col-sm-12 border-right">
<p class="my-0 pt-3">Call Us</p>
<p class="font-weight-bold">(+9) 847-291-4353</p>
</div>
<div class="col-lg col-sm-12 border-right">
<p class="my-0 pt-3">Email Us</p>
<p class="font-weight-bold">office@Constra.com</p>
</div>
<div class="col-lg col-sm-12">
<p class="my-0 pt-3">Global Certificate</p>
<p class="font-weight-bold">ISO 9001:2017</p>
</div>
<div class="col-lg-3 col-md-6 align-self-center"><a href="#" class="header-get-a-quote">Get A
Quote</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- header -->
<!-- navbar -->
<div class="container-fluid site-navigation p-4" id="navbar">
<div class="row">
<div class="col-10">
<ul class="nav">
<li class="nav-item">
<a class="nav-link active text-light font-weight-bold text-style active" href="#">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link text-light font-weight-bold text-style" href="Aboutindex.html">ABOUT US</a>
</li>
<li class="nav-item">
<a class="nav-link text-light font-weight-bold text-style" href="Newssingleindex.html">NEWS
SINGLE</a>
</li>
<li class="nav-item">
<a class="nav-link text-light font-weight-bold text-style" href="contactindex.html">CONTACT</a>
</li>
</ul>
</div>
<div class="col-2 text-right pt-2"><a href="#"><i class="fas fa-search text-secondary"></i></a></div>
</div>
</div>
<!-- navbar -->
<!-- carousel -->
<div class="container-fluid">
<div class="row">
<div class="col pl-0 pr-0">
<div id="carouselExampleCaptions" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active" data-interval="">
<img src="img/bg1.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-md-block content-center">
<p class="h2 text-secondary">17 YEARS OF EXCELLENCE IN</p>
<h1 class="font-weight-bold display-4">CONSTRUCTION INDUSTRY</h1>
<p><a href="#" class="header-get-a-quote">OUR SERVICES</a>
<a href="#" class="btn-style">CONTACT US</a></p>
</div>
</div>
<div class="carousel-item" data-interval="">
<img src="img/bg2.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block content-center-1">
<p><a href="#" class="header-get-a-quote">WORLD CLASS SERVICE</a></p>
<p class="h2 text-secondary">WHEN SERVICE MATTERS</p>
<h1 class="font-weight-bold display-4">YOUR CHOICE IS SIMPLE</h1>
<p><a href="#" class="btn-style">OUR SERVICES</a></p>
</div>
</div>
<div class="carousel-item" data-interval="">
<img src="img/bg3.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block content-center-2">
<p class="h2 text-secondary">MEET OUR ENGINEERS</p>
<h1 class="font-weight-bold display-4">WE BELIEVE SUSTAINABILITY</h1>
<P>We will deal with your failure that determines how you achieve success.</P>
<p><a href="#" class="header-get-a-quote">GET FREE QUOTE</a>
<a href="#" class="btn-style">LEARN MORE</a></p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleCaptions" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleCaptions" role="button" data-slide="next">
<span class="carousel-control-next-icon"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<!-- carousel -->
<!-- overlap section -->
<div class="container overlap">
<div class="row">
<div class="col-9 bg-color height d-flex">
<p class=" text-light h4 my-auto">WE UNDERSTAND YOUR NEEDS ON CONSTRUCTION</p>
</div>
<div class="col-3 bg-color height d-flex"><a href="#"
class="bg-dark p-3 rounded mx-auto my-auto font-weight-bold">REQUEST QUOTE</a></div>
</div>
</div>
<!-- overlap section -->
<!-- second-section -->
<div class="container-fluid mb-5">
<div class="row">
<div class="col-lg-12">
<div class="row mt-4">
<div class="col-lg-6 col-md-12">
<p>ABOUS US</p>
<h2 class="font-weight-bold">WE DELIVER LANDMARK PROJECTS</h2>
<p>We are rethoric question ran over her cheek When she reached the first hills of the Italic
Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the
headline of Alphabet Village and the subline of her <br> own road, the Line Lane.</p>
<div class="row">
<div class="col-lg-6">
<div class="row">
<div class="col-3"><i class="fas fa-trophy text-color"></i></div>
<div class="col-9">
<p class="font-weight-bold">WE'VE REPUTION FOR EXCELLENCE</p
class="font-weight-bold">
</div>
</div>
</div>
<div class="col-6">
<div class="row">
<div class="col-3"><i class="fas fa-sliders-h text-color"></i></div>
<div class="col-9">
<p class="font-weight-bold">WE BUILD <br> PARTNERSHIPS</p
class="font-weight-bold">
</div>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col-6">
<div class="row">
<div class="col-3"><i class="far fa-thumbs-up text-color"></i></div>
<div class="col-9">
<p class="font-weight-bold">GUIDED BY <br> COMMITMENT</p
class="font-weight-bold">
</div>
</div>
</div>
<div class="col-6">
<div class="row">
<div class="col-3"><i class="fas fa-users text-color"></i></div>
<div class="col-9">
<p class="font-weight-bold">A TEAM OF PROFESSIONALS</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12">
<h2 class="font-weight-bold">OUR VALUES</h2>
<p>Minim Austin 3 wolf moon scenester aesthetic, umami odio pariatur bitters.<br> Pop-up
occaecat
taxidermy street art, tattooed beard literally.</p>
<div class="row">
<div class="col-12">
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button class="btn" type="button" data-toggle="collapse"
data-target="#collapseOne" aria-expanded="true"
aria-controls="collapseOne">
<h6 class="font-weight-bold text-color-1">SAFETY <span
class="span-1"><i
class="fas fa-caret-down text-light"></i></span></h6>
</button>
</h2>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne"
data-parent="#accordionExample">
<div class="card-body">
<p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus
terry richardson ad squid. 3 wolf moon officia aute, non cupidata
</p>
</div>
</div>
</div>
<div class="card mt-2">
<div class="card-header" id="headingTwo">
<h2 class="mb-0">
<button class="btn collapsed" type="button" data-toggle="collapse"
data-target="#collapseTwo" aria-expanded="false"
aria-controls="collapseTwo">
<h6 class="font-weight-bold text-color-1">CUSTOMER SERVICE <span
class="span-1"><i
class="fas fa-caret-down text-light"></i></span></h6>
</button>
</h2>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo"
data-parent="#accordionExample">
<div class="card-body">
<p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus
terry richardson ad squid. 3 wolf moon officia aute, non cupidata
</p>
</div>
</div>
</div>
<div class="card mt-2">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button class="btn collapsed" type="button" data-toggle="collapse"
data-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
<h6 class="font-weight-bold text-color-1">INTERGRITY <span
class="span-1"><i
class="fas fa-caret-down text-light"></i></span></h6>
</button>
</h2>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree"
data-parent="#accordionExample">
<div class="card-body">
<p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus
terry richardson ad squid. 3 wolf moon officia aute, non cupidata
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- second-section -->
<!-- Third-section -->
<div class="container-fluid">
<div class="row">
<div class="col-3 bg-dark text-center py-5">
<p><img src="img/fact1.png" alt="" class="img-fluid"></p>
<p class="text-light font-weight-bold h1 count">1789</p>
<p class="text-color-2 font-weight-bold">TOTAL PROJECTS</p>
</div>
<div class="col-3 bg-dark text-center py-5">
<p><img src="img/fact2.png" alt="" class="img-fluid"></p>
<p class="text-light font-weight-bold h1 count">647</p>
<p class="text-color-2 font-weight-bold">STAFF MEMBERS</p>
</div>
<div class="col-3 bg-dark text-center py-5">
<p><img src="img/fact3.png" alt="" class="img-fluid"></p>
<p class="text-light font-weight-bold h1 count">4000</p>
<p class="text-color-2 font-weight-bold">HOURS OF WORK</p>
</div>
<div class="col-3 bg-dark text-center py-5">
<p><img src="img/fact4.png" alt="" class="img-fluid"></p>
<p class="text-light font-weight-bold h1 count">44</p>
<p class="text-color-2 font-weight-bold">COUNTRIES EXPERIENCE</p>
</div>
</div>
</div>
<!-- Third-section -->
<!-- Forth-section -->
<div class="container-fluid">
<div class="row py-5">
<div class="col-12 text-center">
<p>WE ARE SPECIALISTS IN</p>
<p class="font-weight-bold h2">WHAT WE DO</p>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-12">
<div class="row">
<div class="col-3"><img src="img/service-icon1.png" alt="" class="img-fluid"></div>
<div class="col-9">
<h6 class="font-weight-bold">HOME CONSTRUCTION</h6>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit Integer adipiscing erat</p>
</div>
</div>
<div class="row pt-4">
<div class="col-3"><img src="img/service-icon2.png" alt="" class="img-fluid"></div>
<div class="col-9">
<h6 class="font-weight-bold">BUILDING REMODELS</h6>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit Integer adipiscing erat</p>
</div>
</div>
<div class="row pt-4">
<div class="col-3"><img src="img/service-icon3.png" alt="" class="img-fluid"></div>
<div class="col-9">
<h6 class="font-weight-bold">INTERIOR DESIGN</h6>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit Integer adipiscing erat</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12"><img src="img/service-center.jpg" alt="" class="img-fluid"></div>
<div class="col-lg-4 col-md-12">
<div class="row pt-4">
<div class="col-3"><img src="img/service-icon4.png" alt="" class="img-fluid"></div>
<div class="col-9">
<h6 class="font-weight-bold">EXTERIOR DESIGN</h6>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit Integer adipiscing erat</p>
</div>
</div>
<div class="row pt-4">
<div class="col-3"><img src="img/service-icon5.png" alt="" class="img-fluid"></div>
<div class="col-9">
<h6 class="font-weight-bold">RENOVATION</h6>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit Integer adipiscing erat</p>
</div>
</div>
<div class="row pt-4">
<div class="col-3"><img src="img/service-icon6.png" alt="" class="img-fluid"></div>
<div class="col-9">
<h6 class="font-weight-bold">SAFETY MANAGEMENT</h6>
<p>Lorem ipsum dolor sit amet consectetur adipiscing elit Integer adipiscing erat</p>
</div>
</div>
</div>
</div>
</div>
<!-- Forth-section -->
<!-- Fifth-section -->
<div class="container">
<div class="row mt-5">
<div class="col-12 text-center">
<p>WORK OF EXCELLENCE</p>
<p class="h2 font-weight-bold">RECENT PROJECTS</p>
</div>
</div>
<div class="row">
<div class="col-12">
<ul class="nav nav-tabs justify-content-between border-bottom border-warning" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link font-weight-bold text-dark bg-warning border-bottom border-warning"
id="home-tab" data-toggle="tab" href="#show-all" role="tab" aria-controls="home"
aria-selected="true">SHOW ALL</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold text-dark border-0 " id="profile-tab" data-toggle="tab"
href="#commercial" role="tab" aria-controls="profile" aria-selected="false">COMMERCIAL</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold text-dark border-0 " id="contact-tab" data-toggle="tab"
href="#education" role="tab" aria-controls="contact" aria-selected="false">EDUCATION</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold text-dark border-0 " id="contact-tab" data-toggle="tab"
href="#government" role="tab" aria-controls="contact" aria-selected="false">GOVERNMENT</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold text-dark border-0 " id="contact-tab" data-toggle="tab"
href="#infrastructure" role="tab" aria-controls="contact"
aria-selected="false">INFRASTRUCTURE</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold text-dark border-0 " id="contact-tab" data-toggle="tab"
href="#residential" role="tab" aria-controls="contact" aria-selected="false">RESIDENTIAL</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold text-dark border-0 " id="contact-tab" data-toggle="tab"
href="#healthcare" role="tab" aria-controls="contact" aria-selected="false">HEALTHCARE</a>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="show-all" role="tabpanel" aria-labelledby="home-tab">
<div class="row mt-5">
<div class="col-lg-4 col-md-6 px-0 position-rel">
<img src="img/project1.jpg" alt="" class="img-fluid">
<div class="position-abs">
<button type="button" class="btn btn-warning" data-toggle="modal"
data-target="#exampleModalCenter">
<i class="fas fa-plus-square text-l text-light"></i>
</button>
<p class="text-light font-weight-bold">CAPITAL TELTWAY BUILDING</p>
<a href="#" class="header-get-a-quote">COMMERCIAL,INTERIORS</a>
</div>
<!-- Modal -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog"
aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="">
<button type="button" class="close" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div id="carouselExampleControls" class="carousel slide"
data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/project1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project3.jpg" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 px-0 position-rel">
<img src="img/project2.jpg" alt="" class="img-fluid">
<div class="absolute-abs-1 position-abs">
<button type="button" class="btn btn-warning" data-toggle="modal"
data-target="#exampleModalCenter">
<i class="fas fa-plus-square text-l text-light"></i> </button>
</div>
<!-- Modal -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog"
aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="">
<button type="button" class="close" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div id="carouselExampleControls" class="carousel slide"
data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item">
<img src="img/project2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item acti">
<img src="img/project5.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project4.jpg" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="position-abs">
<p class="text-light font-weight-bold">GHUM TOUCH HOSPITAL</p>
<a href="#" class="header-get-a-quote">HEALTHCARE</a>
</div>
</div>
<div class="col-lg col-md px-0 position-rel"><img src="img/project3.jpg" alt=""
class="img-fluid">
<div class="absolute-abs-1 position-abs"><button type="button" class="btn btn-warning"
data-toggle="modal" data-target="#exampleModalCenter">
<i class="fas fa-plus-square text-l text-light"></i>
</button></div>
<!-- Modal -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog"
aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="">
<button type="button" class="close" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div id="carouselExampleControls" class="carousel slide"
data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/project1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project3.jpg" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="position-abs">
<p class="text-light font-weight-bold">TNT EAST FACILITY</p>
<a href="#" class="header-get-a-quote">GOVERNMENT</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg col-md px-0 position-rel"><img src="img/project4.jpg" alt=""
class="img-fluid">
<div class="absolute-abs-1 position-abs"><button type="button" class="btn btn-warning"
data-toggle="modal" data-target="#exampleModalCenter">
<i class="fas fa-plus-square text-l text-light"></i>
</button></div>
<!-- Modal -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog"
aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="">
<button type="button" class="close" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div id="carouselExampleControls" class="carousel slide"
data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/project1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project3.jpg" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="position-abs">
<p class="text-light font-weight-bold">NARRIOT,HEADQUARTERS</p>
<a href="#" class="header-get-a-quote">INFRASTRUCTURE</a>
</div>
</div>
<div class="col-lg-4 col-md-6 px-0 position-rel"><img src="img/project5.jpg" alt=""
class="img-fluid">
<div class="absolute-abs-1 position-abs"><button type="button" class="btn btn-warning"
data-toggle="modal" data-target="#exampleModalCenter">
<i class="fas fa-plus-square text-l text-light"></i>
</button></div>
<!-- Modal -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog"
aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="">
<button type="button" class="close" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div id="carouselExampleControls" class="carousel slide"
data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/project1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project3.jpg" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="position-abs">
<p class="text-light font-weight-bold">KALAS METRORAIL</p>
<a href="#" class="header-get-a-quote">INFRASTRUCTURE</a>
</div>
</div>
<div class="col-lg-4 col-md-6 px-0 position-rel"><img src="img/project6.jpg" alt=""
class="img-fluid">
<div class="absolute-abs-1 position-abs"><button type="button" class="btn btn-warning"
data-toggle="modal" data-target="#exampleModalCenter">
<i class="fas fa-plus-square text-l text-light"></i>
</button></div>
<!-- Modal -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog"
aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="">
<button type="button" class="close" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div id="carouselExampleControls" class="carousel slide"
data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/project1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/project3.jpg" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="position-abs">
<p class="text-light font-weight-bold">ANCRAFT AVENUE HOUSE</p>
<a href="#" class="header-get-a-quote">RESIDENTIAL</a>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="commercial" role="tabpanel" aria-labelledby="profile-tab">
<div class="container">
<div class="row mt-5">
<div class="col-lg-4 col-md-6 px-0 position-rel"><img src="img/project1.jpg" alt=""
class="img-fluid">
<div class="absolute-abs-1 position-abs"><i class="fas fa-plus-square"></i></div>
<div class="position-abs">
<p class="text-light font-weight-bold">CAPITAL TELTWAY BUILDING</p>
<a href="#" class="header-get-a-quote">COMMERCIAL,INTERIORS</a>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="education" role="tabpanel" aria-labelledby="contact-tab">
<div class="container">
<div class="row mt-5">
<div class="col-lg-4 col-md px-0 position-rel"><img src="img/project4.jpg" alt=""
class="img-fluid">
<div class="absolute-abs-1 position-abs"><i class="fas fa-plus-square"></i></div>
<div class="position-abs">
<p class="text-light font-weight-bold">NARRIOT,HEADQUARTERS</p>
<a href="#" class="header-get-a-quote">INFRASTRUCTURE</a>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="government" role="tabpanel" aria-labelledby="contact-tab">
<div class="container">
<div class="row mt-5">
<div class="col-lg-4 col-md px-0 position-rel"><img src="img/project3.jpg" alt=""
class="img-fluid">
<div class="absolute-abs-1 position-abs"><i class="fas fa-plus-square"></i></div>
<div class="position-abs">
<p class="text-light font-weight-bold">TNT EAST FACILITY</p>
<a href="#" class="header-get-a-quote">GOVERNMENT</a>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="infrastructure" role="tabpanel" aria-labelledby="contact-tab">
<div class="container">
<div class="row mt-5">
<div class="col-lg-4 col-md-6 px-0 position-rel"><img src="img/project5.jpg" alt=""
class="img-fluid">
<div class="absolute-abs-1 position-abs"><i class="fas fa-plus-square"></i></div>
<div class="position-abs">
<p class="text-light font-weight-bold">KALAS METRORAIL</p>
<a href="#" class="header-get-a-quote">INFRASTRUCTURE</a>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="residential" role="tabpanel" aria-labelledby="contact-tab">
<div class="container">
<div class="row mt-5">
<div class="col-lg-4 col-md-6 px-0 position-rel"><img src="img/project6.jpg" alt=""
class="img-fluid">
<div class="absolute-abs-1 position-abs"><i class="fas fa-plus-square"></i></div>
<div class="position-abs">
<p class="text-light font-weight-bold">ANCRAFT AVENUE HOUSE</p>
<a href="#" class="header-get-a-quote">RESIDENTIAL</a>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="healthcare" role="tabpanel" aria-labelledby="contact-tab">
<div class="container">
<div class="row mt-5">
<div class="col-lg-4 col-md-6 px-0 position-rel"><img src="img/project2.jpg" alt=""
class="img-fluid">
<div class="absolute-abs-1 position-abs"><i class="fas fa-plus-square"></i></div>
<div class="position-abs">
<p class="text-light font-weight-bold">GHUM TOUCH HOSPITAL</p>
<a href="#" class="header-get-a-quote">HEALTHCARE</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-12 text-center">
<p><a href="#" class="header-get-a-quote font-weight-bold">VIEW ALL PROJECTS</a></p>
</div>
</div>
</div>
<!-- Fifth-section -->
<!-- Sixth-section -->
<div class="container">
<div class="row mt-5">
<div class="col-lg-6 col-md-12">
<div class="row">
<div class="col-12">
<p class="h3 font-weight-bold">TESTIMONIALS</p>
</div>
</div>
<div class="owl-carousel owl-theme">
<div class="item">
<div class="row">
<div class="col-12 text-5">
Question ran over her cheek When she reached the first hills of the Italic Mountains,
she had a
last
view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet
Village and
the
subline of her own road.
</div>
</div>
<div class="row mt-4">
<div class="col-2 px-0 text-center"><img src="img/testimonial1.png" alt=""
class="img-fluid rounded"></div>
<div class="col-9 my-auto">
<P class="my-0 text-color-3">GABRIAL DENIS</P>
<P class="my-0 text-5">Chairman, OKT</P>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 text-5">
Question ran over her cheek When she reached the first hills of the Italic Mountains,
she had a
last
view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet
Village and
the
subline of her own road.
</div>
</div>
<div class="row mt-4">
<div class="col-2 px-0 text-center"><img src="img/testimonial2.png" alt=""
class="img-fluid rounded"></div>
<div class="col-9 my-auto">
<P class="my-0 text-color-3">WELDON CASH</P>
<P class="my-0 text-5">CFO, First Choice</P>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-12 text-5">
Question ran over her cheek When she reached the first hills of the Italic Mountains,
she had a
last
view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet
Village and
the
subline of her own road.
</div>
</div>
<div class="row mt-4">
<div class="col-2 px-0 text-center"><img src="img/testimonial3.png" alt=""
class="img-fluid rounded"></div>
<div class="col-9 my-auto">
<P class="my-0 text-color-3">MINTER PUCHAN</P>
<P class="my-0 text-5">Director, AKT</P>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 ">
<h3 class="font-weight-bold">HAPPY CLIENTS</h3>
<div class="row">
<div class="col-3 border box-style"><img src="img/client1.png" alt="" class="img-fluid"></div>
<div class="col-3 border box-style"><img src="img/client2.png" alt="" class="img-fluid"></div>
<div class="col-3 border box-style"><img src="img/client3.png" alt="" class="img-fluid"></div>
</div>
<div class="row">
<div class="col-3 border box-style"><img src="img/client3.png" alt="" class="img-fluid"></div>
<div class="col-3 border box-style"><img src="img/client5.png" alt="" class="img-fluid"></div>
<div class="col-3 border box-style"><img src="img/client6.png" alt="" class="img-fluid"></div>
</div>
</div>
</div>
</div>
<!-- Sixth-section -->
<!-- Seventh-section -->
<div class="container-fluid">
<div class="row bg-dark">
<div class="col-4 text-color-4 py-2 ">
<p class="font-weight-bold">CAN WE HELP?</p>
<p class="font-weight-bold text-light h4">(+9) 847-291-4353</p>
</div>
<div class="col-8 bg-dark py-2">
<div class="row">
<div class="col-5 py-3">
<p class="font-weight-bold text-light h5">NEWSLETTER SIGN-UP</p>
<p class="text-light">Latest updates and news</p>
</div>
<div class="col-7 py-3 my-auto"><input type="text" name="email" value=""
placeholder="Your Email Here" class="form-control"></div>