-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1428 lines (1145 loc) · 48.3 KB
/
index.html
File metadata and controls
1428 lines (1145 loc) · 48.3 KB
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" />
<title>Rocket Elevators | Homepage</title>
<meta name="description" content="" />
<meta name="Author" content="Lapoyade Yanni]" />
<!-- mobile settings -->
<meta name="viewport" content="width=device-width, maximum-scale=1, initial-scale=1, user-scalable=0" />
<!-- CORE CSS -->
<link href="assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<!-- REVOLUTION SLIDER -->
<link href="assets/plugins/slider.revolution/css/extralayers.css" rel="stylesheet" type="text/css" />
<link href="assets/plugins/slider.revolution/css/settings.css" rel="stylesheet" type="text/css" />
<!-- THEME CSS -->
<link href="assets/css/essentials.css" rel="stylesheet" type="text/css" />
<link href="assets/css/layout.css" rel="stylesheet" type="text/css" />
<link href="assets/css/custom.css" rel="stylesheet" type="text/css" />
<!-- PAGE LEVEL SCRIPTS -->
<link href="assets/css/header-1.css" rel="stylesheet" type="text/css" />
<link href="assets/css/color_scheme/yellow.css" rel="stylesheet" type="text/css" id="color_scheme" />
</head>
<!--
AVAILABLE BODY CLASSES:
smoothscroll = create a browser smooth scroll
enable-animation = enable WOW animations
bg-grey = grey background
grain-grey = grey grain background
grain-blue = blue grain background
grain-green = green grain background
grain-blue = blue grain background
grain-orange = orange grain background
grain-yellow = yellow grain background
boxed = boxed layout
pattern1 ... patern11 = pattern background
menu-vertical-hide = hidden, open on click
BACKGROUND IMAGE [together with .boxed class]
data-background="assets/images/_smarty/boxed_background/1.jpg"
-->
<body class="smoothscroll enable-animation">
<!-- SLIDE TOP -->
<div id="slidetop">
<div class="container">
<div class="row">
<div class="col-md-4">
<h6><i class="icon-heart"></i> WHY ROCKET ELEVATORS ?</h6>
<p>We are an old company who were able to adapt and take advantage of our experiences and works. We are maybe not the cheapest ones but we can be trusted, keep your mind in peace about quality of our services, we'll not disappoint you. </p>
</div>
<div class="col-md-4">
<h6><i class="fa-facheck"></i> TYPES OF ELEVATOR</h6>
<ul class="list-unstyled">
<li><a href="#"><i class="fa fa-angle-right"></i> Traction Elevator</a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> Hydraulic Elevator</a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> Machine-Room-Less (MRL) Elevator</a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> Vacuum (Air Driven) Home Elevator</a></li>
</ul>
</div>
<div class="col-md-4">
<h6><i class="icon-envelope"></i> CONTACT INFO</h6>
<ul class="list-unstyled">
<li><span class="block"><strong><i class="fa fa-map-marker"></i> Address:</strong> <a href="https://goo.gl/maps/34cN9qJWmPArMVvm6">4468 Wellington St Suite 204, Verdun, Quebec H4G 1W5, Canada </a></span> </li>
<li><span class="block"><strong><i class="fa fa-phone"></i> Phone:</strong> <a href="tel:+1 800-887-2497">+1 800-887-2497</a></span></li>
<li><span class="block"><strong><i class="fa fa-envelope"></i> Email:</strong> <a href="mailto:yulbrains@codeboxx.biz">yulbrains@codeboxx.biz</a></span></li>
</ul>
</div>
</div>
</div>
<a class="slidetop-toggle" href="#"><!-- toggle button --></a>
</div>
<!-- /SLIDE TOP -->
<!-- wrapper -->
<div id="wrapper">
<!--
AVAILABLE HEADER CLASSES
Default nav height: 96px
.header-md = 70px nav height
.header-sm = 60px nav height
.b-0 = remove bottom border (only with transparent use)
.transparent = transparent header
.translucent = translucent header
.sticky = sticky header
.static = static header
.dark = dark header
.bottom = header on bottom
shadow-before-1 = shadow 1 header top
shadow-after-1 = shadow 1 header bottom
shadow-before-2 = shadow 2 header top
shadow-after-2 = shadow 2 header bottom
shadow-before-3 = shadow 3 header top
shadow-after-3 = shadow 3 header bottom
.clearfix = required for mobile menu, do not remove!
Example Usage: class="clearfix sticky header-sm transparent b-0"
-->
<div id="header" class="navbar-toggleable-md sticky header-md clearfix">
<!-- TOP NAV -->
<header id="topNav">
<div class="container">
<!-- Mobile Menu Button -->
<button class="btn btn-mobile" data-toggle="collapse" data-target=".nav-main-collapse">
<i class="fa fa-bars"></i>
</button>
<!-- Logo -->
<a class="logo float-left scrollTo" href="#top">
<img src="Rocket_Elevator_Assets/R2.png" alt="Logo" />
</a>
<!--
Top Nav
AVAILABLE CLASSES:
submenu-dark = dark sub menu
-->
<div class="navbar-collapse collapse float-right nav-main-collapse submenu-dark">
<nav class="nav-main">
<!--
.nav-onepage
Required for onepage navigation links
Add .external for an external link!
-->
<ul id="topMain" class="nav nav-pills nav-main nav-onepage">
<li class="dropdown active"><!-- HOME -->
<a class="dropdown-toggle scrollTo" href="#top">
HOME
</a>
<ul class="dropdown-menu">
<li class="active">
<a href="index-corporate.html">
HOME CORPORATE
</a>
</li>
<li class="active">
<a href="index-residential.html">
HOME RESIDENTIAL
</a>
</li>
</ul>
<li><!-- SERVICES -->
<a href="#services">
SERVICES
</a>
</li>
<li><!-- PORTFOLIO -->
<a href="#portfolio">
PORTFOLIO
</a>
</li>
<li><!-- NEWS -->
<a href="#news">
NEWS
</a>
</li>
<li><!-- CLIENTS -->
<a href="#clients">
CLIENTS
</a>
</li>
<li><!-- CONTACT -->
<a href="#contact">
CONTACT
</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- /Top Nav -->
</div>
<!-- REVOLUTION SLIDER -->
<div class="slider fullwidthbanner-container roundedcorners">
<!--
Navigation Styles:
data-navigationStyle="" theme default navigation
data-navigationStyle="preview1"
data-navigationStyle="preview2"
data-navigationStyle="preview3"
data-navigationStyle="preview4"
Bottom Shadows
data-shadow="1"
data-shadow="2"
data-shadow="3"
Slider Height (do not use on fullscreen mode)
data-height="300"
data-height="350"
data-height="400"
data-height="450"
data-height="500"
data-height="550"
data-height="600"
data-height="650"
data-height="700"
data-height="750"
data-height="800"
-->
<div class="fullwidthbanner" data-height="600" data-shadow="0" data-navigationStyle="preview2">
<ul class="hide">
<!-- SLIDE -->
<li data-transition="parallaxtobottom" data-slotamount="7" data-masterspeed="600" data-saveperformance="off" data-title="Elevator View">
<!-- MAIN IMAGE -->
<img src="Rocket_Elevator_Assets/AdobeStock_122227340.jpeg" alt="cover image" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat">
<div class="tp-caption white_big skewfromleft tp-resizeme"
data-x="471"
data-y="80"
data-speed="400"
data-start="1500"
data-easing="Power3.easeInOut"
data-splitin="words"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="600"
style="z-index: 2; color:#fff; font-size:65px; line-height:85px; font-weight:bold; letter-spacing:0; text-shadow:none;">
Elevator View
</div>
<div class="tp-caption content_text_center skewfromleft tp-resizeme"
data-x="530"
data-y="195"
data-speed="500"
data-start="2000"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="600"
style="z-index: 3; font-size:20px; color:#fff; font-weight:300; text-shadow:none;">
Eleve yourself to space with safety, speed and style.
</div>
<div class="tp-caption skewfromleft tp-resizeme un-button-2-lg"
data-x="530"
data-y="300"
data-speed="300"
data-start="2500"
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 class="btn btn-info btn-lg scrollTo" href="#services">OUR SERVICES <i class="fa fa-angle-right"></i></a>
</div>
<div class="tp-caption skewfromleft tp-resizeme un-button-2-lg"
data-x="730"
data-y="300"
data-speed="300"
data-start="2500"
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 class="btn btn-default btn-lg" href="index_quote.html"> GET A QUOTE <i class="fa fa-angle-right"></i></a>
</div>
</li>
<!-- SLIDE -->
<li data-transition="parallaxtotop" data-slotamount="7" data-masterspeed="300" data-saveperformance="off" data-title="Corporate building">
<!-- MAIN IMAGE -->
<img src="Rocket_Elevator_Assets/AdobeStock_103570025.jpeg" alt="cover image" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat">
<div class="overlay dark-4"><!-- dark overlay [0 to 9 opacity] --></div>
<div class="tp-caption font-roboto skewfromleft tp-resizeme"
data-x="50"
data-y="100"
data-speed="500"
data-start="1500"
data-easing="Cubic.easeOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="500"
style="z-index: 2; color:#fff; font-size:65px; line-height:85px; font-weight:bold; letter-spacing:0; text-shadow:none;">
Corporate building
</div>
<div class="tp-caption skewfromrightshort tp-resizeme"
data-x="50"
data-y="300"
data-speed="500"
data-start="1000"
data-easing="easeInCirc"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="500"
style="z-index: 3; font-size:20px; color:#fff; font-weight:300; text-shadow:none;">
Don't waste travel time and productivity when you can have sophisticated elevators <br >that will help your employees being on schedule at their office.
</div>
<div class="tp-caption sfb tp-resizeme"
data-x="50"
data-y="410"
data-speed="500"
data-start="1500"
data-easing="Power3.easeIn"
data-splitin="none"
data-splitout="none"
data-elementdelay="1"
data-endelementdelay="0.1"
data-endspeed="500"
style="z-index: 4; max-width: auto;">
<a class="btn btn-info btn-lg" href="index-corporate.html">CORPORATE SERVICES <i class="fa fa-angle-right"></i></a>
</div>
</li>
<!-- SLIDE -->
<li data-transition="parallaxtobottom" data-slotamount="7" data-masterspeed="600" data-saveperformance="off" data-title="Residential building">
<!-- MAIN IMAGE -->
<img src="Rocket_Elevator_Assets/AdobeStock_33298664.jpeg" alt="cover image" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat">
<div class="tp-caption white_big skewfromleft tp-resizeme"
data-x="471"
data-y="100"
data-speed="400"
data-start="1500"
data-easing="Power3.easeInOut"
data-splitin="words"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="600"
style="z-index: 2; color:#fff; font-size:65px; line-height:85px; font-weight:bold; letter-spacing:0; text-shadow:none;">
Residential building
</div>
<div class="tp-caption content_text_center skewfromleft tp-resizeme"
data-x="530"
data-y="195"
data-speed="500"
data-start="2000"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="600"
style="z-index: 3; font-size:20px; color:#fff; font-weight:300; text-shadow:none;">
After years and years we know that steirs affects a lot your daily lives, <br >but with our residential elevators you'll notice in a second how great <br > it is to be carried by human ingenuity.
</div>
<div class="tp-caption skewfromleft tp-resizeme un-button-2-lg"
data-x="530"
data-y="300"
data-speed="300"
data-start="2500"
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 class="btn btn-info btn-lg" href="index-residential.html">RESIDENTIAL SERVICES <i class="fa fa-angle-right"></i></a>
</div>
</li>
</ul>
</div>
</div>
<!-- /REVOLUTION SLIDER -->
<!-- Services -->
<section id="services">
<div class="container">
<div class="heading-title heading-dotted text-center">
<h2> Services </h2>
</div>
<div class="row">
<div class="col-sm-4">
<a class="image-hover lightbox" href="https://www.youtube.com/watch?v=bKyU-hi0WCs" data-plugin-options='{"type":"iframe"}'>
<span class="image-hover-icon image-hover-dark"><!-- image-hover-light | image-hover-dark -->
<i class="fa fa-youtube-square"><!-- video icon --></i>
</span>
<img class="img-fluid" src="Rocket_Elevator_Assets/AdobeStock_66781279.jpeg" alt="img" />
</a>
<h3 class="mt-10">Major projects</h3>
<p>Our company has won numerous awards that guarantee to our customers safety and show off our outstanding designs, as you can see on our major projects below.</p>
<a class="btn btn-outline-dark scrollTo" href="#portfolio" class="btn btn-default">OUR PROJETCS</a>
</div>
<div class="col-sm-4">
<a class="image-hover lightbox" href="https://www.youtube.com/watch?v=VpJcrdoNibk" data-plugin-options='{"type":"iframe"}'>
<span class="image-hover-icon image-hover-dark"><!-- image-hover-light | image-hover-dark -->
<i class="fa fa-youtube-square"><!-- video icon --></i>
</span>
<img class="img-fluid" src="Rocket_Elevator_Assets/AdobeStock_130711085.jpeg" alt="img" />
</a>
<h3 class="mt-10">Residential buildings</h3>
<p>Our company is listening on customers requests and offers special services for residential buildings. You can check it out on the link below.</p>
<a class="btn btn-outline-dark" href="index-residential.html" class="btn btn-default">SERVICES FOR RESIDENTIALS</a>
</div>
<div class="col-sm-4">
<a class="image-hover lightbox" href="https://www.youtube.com/watch?v=ywCpGFqeurk" data-plugin-options='{"type":"iframe"}'>
<span class="image-hover-icon image-hover-dark"><!-- image-hover-light | image-hover-dark -->
<i class="fa fa-youtube-square"><!-- video icon --></i>
</span>
<img class="img-fluid" src="Rocket_Elevator_Assets/AdobeStock_179073967.jpeg" alt="img" />
</a>
<h3 class="mt-10">Corporate buildings</h3>
<p>For companies or corporates, Rocket Elevators elaborate different kind of elevators that allow to employee and clients to be confortable when they get to your offices and buildings. Please follow steps threw that link to see our services.</p>
<a class="btn btn-outline-dark" href="index-corporate.html" class="btn btn-default">SERVICES FOR CORPORATES</a>
</div>
</div>
</div>
</section>
<!-- /Services -->
<!-- Parallax -->
<section class="parallax parallax-1" style="background-image: url('Rocket_Elevator_Assets/AdobeStock_162479912.jpeg');">
<div class="overlay dark-5"><!-- dark overlay [1 to 9 opacity] --></div>
<div class="container">
<div class="text-center">
<h2 class="fs-40 fw-300">In business since 1976</h2>
<a class="btn btn-default btn-lg" href="index_quote.html">REQUEST A QUOTE <i class="fa fa-angle-right"></i></a>
OR
<a class="btn btn-info btn-lg scrollTo" href="#contact">CONTACT US <i class="fa fa-angle-right"></i></a>
</div>
</div>
</section>
<!-- /Parallax -->
<!-- PORTFOLIO -->
<section id="portfolio">
<div class="container">
<div class="heading-title heading-dotted text-center">
<h2> Portfolio </h2>
</div>
<div class="text-center">
<ul class="nav nav-pills mix-filter mb-60">
<li data-filter="all" class="filter active"><a href="#">All</a></li>
<li data-filter="award" class="filter"><a href="#">Awards</a></li>
<li data-filter="photography" class="filter"><a href="#">Photography</a></li>
<li data-filter="design" class="filter"><a href="#">Design</a></li>
<li data-filter="corporate" class="filter"><a href="#">Corporate</a></li>
<li data-filter="residential" class="filter"><a href="#">Residential</a></li>
</ul>
</div>
</div>
<div id="portfolio" class="portfolio-nogutter">
<div class="row mix-grid">
<div class="col-md-3 col-sm-3 mix design corporate"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/1-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/1-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>Wood Project</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Architecture</a></li>
<li><a href="#">Corporate</a></li>
<li><a href="#">40 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix award corporate"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/2-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/2-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>Space Design</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Future</a></li>
<li><a href="#">Corporate</a></li>
<li><a href="#">50 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix award residential"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/3-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/3-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>Mobile Development</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Development</a></li>
<li><a href="#">Residential</a></li>
<li><a href="#">45 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix photography residential"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/4-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/4-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>Iron Design</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Photography</a></li>
<li><a href="#">Residential</a></li>
<li><a href="#">22 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix photography corporate"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/5-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/5-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>Hole Project</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Design</a></li>
<li><a href="#">Corporate</a></li>
<li><a href="#">34 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix photography residential"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/6-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/6-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>To The Sky</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Architecture</a></li>
<li><a href="#">Residential</a></li>
<li><a href="#">18 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix award corporate"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/7-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/7-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>Iron Tower</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Iron</a></li>
<li><a href="#">Corporate</a></li>
<li><a href="#">36 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix design residential"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/8-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/8-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>Iron Twins</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Architecture</a></li>
<li><a href="#">Residential</a></li>
<li><a href="#">20 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix award residential"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/9-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/9-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>Future Lights</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Future</a></li>
<li><a href="#">Residential</a></li>
<li><a href="#">28 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix design residential"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/10-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/10-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>Classical</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Photography</a></li>
<li><a href="#">Residential</a></li>
<li><a href="#">13 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix design corporate"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/11-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/11-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>Top Of the World</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Iron</a></li>
<li><a href="#">Corporate</a></li>
<li><a href="#">31 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
<div class="col-md-3 col-sm-3 mix design residential"><!-- item -->
<div class="item-box">
<figure>
<span class="item-hover">
<span class="overlay dark-5"></span>
<span class="inner">
<!-- lightbox -->
<a class="ico-rounded lightbox" href="Rocket_Elevator_Assets/12-unsplash.jpg" data-plugin-options='{"type":"image"}'>
<span class="fa fa-plus fs-20"></span>
</a>
</span>
</span>
<img class="img-fluid samesize" src="Rocket_Elevator_Assets/12-unsplash.jpg" width="600" height="399" alt="">
</figure>
<div class="item-box-desc">
<h3>On The Inside</h3>
<ul class="list-inline categories m-0">
<li><a href="#">Design</a></li>
<li><a href="#">Residential</a></li>
<li><a href="#">14 000$</a></li>
</ul>
</div>
</div>
</div><!-- /item -->
</div>
</div>
</section>
<!-- /PORTFOLIO -->
<!-- Testimonials -->
<section class="section-xs dark">
<div class="container">
<div class="owl-carousel text-center owl-testimonial m-0" data-plugin-options='{"singleItem": true, "autoPlay": 7000, "navigation": false, "pagination": true, "transitionStyle":"fade"}'>
<div class="testimonial">
<figure>
<img class="rounded" src="Rocket_Elevator_Assets/CEO_Rocket_Elevators.jpg" alt="" />
</figure>
<div class="testimonial-content p-0">
<p class="lead">At Rocket Elevators we are proud of what we achieved and how we've done our works until now. Maybe one day we'll build some elevators that rise to stars ! </p>
<cite>
Eileen Ai
<span>CEO of Rocket Elevetors</span>
</cite>
</div>
</div>
<div class="testimonial">
<figure>
<img class="rounded" src="Rocket_Elevator_Assets/Employee_of_the_month.jpeg" alt="" />
</figure>
<div class="testimonial-content p-0">
<p class="lead">I'm proud being part of this huge company, it's so exciting to take part in a life-change work for people. </p>
<cite>
Yanni Lapoyade
<span>Employee of the month</span>
</cite>
</div>
</div>
</div>
</div>
</section>
<!-- /Testimonials -->
<!-- News -->
<section id="news">
<div class="container">
<div class="heading-title heading-dotted text-center">
<h2>Recent News</h2>
</div>
<!--
controlls-over = navigation buttons over the image
buttons-autohide = navigation buttons visible on mouse hover only
data-plugin-options:
"singleItem": true
"autoPlay": true (or ms. eg: 4000)
"navigation": true
"pagination": true
"items": "4"
owl-carousel item paddings
.owl-padding-0
.owl-padding-3
.owl-padding-6
.owl-padding-10
.owl-padding-15
.owl-padding-20
-->
<div class="owl-carousel owl-padding-10 buttons-autohide controlls-over" data-plugin-options='{"singleItem": false, "items":"4", "autoPlay": 4000, "navigation": true, "pagination": false}'>
<div class="img-hover">
<a href="https://www.wsj.com/articles/going-up-the-elevator-as-a-service-business-11570440600">
<img class="img-fluid samesize-2" src="Rocket_Elevator_Assets/articles-1.jpg" alt="">
</a>
<h4 class="text-left mt-20"><a href="blog-single-default.html">Going Up?</a></h4>
<p class="text-left">Elevators are going more and more and more higher these days with the evolution of building.</p>
<ul class="text-left fs-12 list-inline list-separator">
<li>
<i class="fa fa-calendar"></i>
October 9, 2019
</li>
</ul>
</div>
<div class="img-hover">
<a href="https://www.entrepreneur.com/en-in/news-and-trends/rise-of-elevator-escalator-industry-whats-in-store-for/365145">
<img class="img-fluid samesize-2" src="Rocket_Elevator_Assets/articles-2.jpg" alt="">
</a>
<h4 class="text-left mt-20"><a href="blog-single-default.html">Rise Of Elevator</a></h4>