-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·965 lines (888 loc) · 53.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>STAY REAL LIMITED | Entrepreneur | Consulting | Development | Training</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="STAY REAL LIMITED | Entrepreneur | Consulting | Development | Training" />
<meta property="og:description" content="We are a team of talented people, with Internet companies background in Google, Microsoft, GoDaddy, Tencent, General Assembly and others. We understand the pains of starting a start up. We will help you get through the process by providing consultation, training, develoepment and design services." />
<meta property="og:url" content="http://www.stayrealhk.com/" />
<meta property="og:image" content="http://www.stayrealhk.com/img/screenshot.png" />
<!--bootstrap css-->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!--custom css-->
<link href="css/style.css" rel="stylesheet" type="text/css">
<!--flex slider css-->
<link href="css/flexslider.css" rel="stylesheet">
<!--google web fonts css-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800' rel='stylesheet' type='text/css'>
<!-- icons css-->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!--animated css-->
<link href="css/animate.css" rel="stylesheet">
<!--owl carousel css-->
<link href="css/owl.carousel.css" rel="stylesheet" type="text/css" media="screen">
<link href="css/owl.theme.css" rel="stylesheet" type="text/css" media="screen">
<!-- The HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target="#navigation" data-offset="80">
<section id="home" data-stellar-background-ratio="0.5">
<div class="parallax-overlay"></div>
<div class="home-content text-center">
<div class="container">
<h1 class=" slide-logo">STAY REAL</h1>
<div class="main-flex-slider">
<ul class="slides">
<li>
<h1>LET'S WORK TOGETHER</h1>
</li>
<li>
<h1>fast idea to market</h1>
</li>
<li>
<h1>Clean Modern design</h1>
</li>
<li>
<h1>takes ONLY 24 hours</h1>
</li>
</ul>
</div>
<h2 class="slide-btm-text">Prototype your startup ideas in 24 hours</h2>
<div class="home-arrow-down text-center">
<p class="scrollto"><a href="#about" class="btn btn-lg btn-theme-color" onClick="ga('send', 'event', { eventCategory: 'Navigation', eventAction: 'about', eventLabel: 'Clicked'});">let's Start </a></p>
</div>
</div>
</div>
</section>
<section id="navigation">
<div class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">STAY REAL</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right scrollto">
<li><a href="#home" onClick="ga('send', 'event', { eventCategory: 'Navigation', eventAction: 'home', eventLabel: 'Clicked'});">Home</a></li>
<li><a href="#about" onClick="ga('send', 'event', { eventCategory: 'Navigation', eventAction: 'about', eventLabel: 'Clicked'});">About</a></li>
<li><a href="#services" onClick="ga('send', 'event', { eventCategory: 'Navigation', eventAction: 'services', eventLabel: 'Clicked'});">Services</a></li>
<li><a href="#work" onClick="ga('send', 'event', { eventCategory: 'Navigation', eventAction: 'work', eventLabel: 'Clicked'});">Work</a></li>
<li><a href="#contact" onClick="ga('send', 'event', { eventCategory: 'Navigation', eventAction: 'contact', eventLabel: 'Clicked'});">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div>
</section><!--navigation section end here-->
<section id="about" class="padding-80">
<!--about page content-->
<div class="about-section">
<div class="container">
<div class="section-heading text-center">
<h4 class="small section-title"><span>We love what we do?</span></h4>
<h2 class="large section-title">About us</h2>
</div><!--section heading-->
</div><!--container-->
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="about-box wow animated fadeInDown" data-wow-duration="0.3s">
<div class="about-box-icon">
<i class="fa fa-lightbulb-o"></i>
</div>
<div class="about-box-text">
<h4>Creative ideas </h4>
<p>
We have a lot of ideas, thus we love to build them quickly.
</p>
</div>
</div><!--about us box end-->
</div>
<div class="col-md-6 col-sm-6">
<div class="about-box wow animated fadeInDown" data-wow-delay="0.5">
<div class="about-box-icon">
<i class="fa fa-code"></i>
</div>
<div class="about-box-text">
<h4>Clean Code</h4>
<p>
We care about the sustainability of the projects, clean code is always important.
</p>
</div>
</div><!--about us box end-->
</div>
</div><!--about services row end-->
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="about-box wow animated fadeInDown" data-wow-delay="0.6s">
<div class="about-box-icon">
<i class="fa fa-image"></i>
</div>
<div class="about-box-text">
<h4>Training</h4>
<p>
We share ideas on entrepreneurships, startups, validations, bootstrap. Lean Startup, Design Thinking and Agile Development are our core concepts.
</p>
</div>
</div><!--about us box end-->
</div>
<div class="col-md-6 col-sm-6">
<div class="about-box wow animated fadeInDown" data-wow-delay="0.8s">
<div class="about-box-icon">
<i class="fa fa-hand-o-up"></i>
</div>
<div class="about-box-text">
<h4>Creative Team </h4>
<p>
We have a young and energetic team. The talented team can work on both design and development for Mobile and Web technologies.
</p>
</div>
</div><!--about us box end-->
</div>
</div><!--about services row end-->
<div class="about-section-more">
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="about-more-info wow animated fadeInUp" data-wow-delay="0.3s">
<p>
We are a team of talented people, with Internet companies background in Google, Microsoft, GoDaddy, Tencent, General Assembly and others. We understand the pains of starting a start up. We will help you get through the process by providing consultation, training, develoepment and design services.
</p>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="skills-wrapper wow animated bounceIn" data-wow-delay="0.6s">
<h3 class="heading-progress">Web Development <span class="pull-right">88%</span></h3>
<div class="progress">
<div class="progress-bar" style="width: 88%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="88" role="progressbar">
</div>
</div>
<h3 class="heading-progress">Mobile Development <span class="pull-right">80%</span></h3>
<div class="progress">
<div class="progress-bar" style="width: 80%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="80" role="progressbar">
</div>
</div>
<h3 class="heading-progress">UI / UX Design <span class="pull-right">82%</span></h3>
<div class="progress">
<div class="progress-bar" style="width: 82%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="82" role="progressbar">
</div>
</div>
</div>
</div>
</div>
<div class="row easy-pie-chart-row">
<div class="col-sm-3 text-center">
<div class="progress-circle">
<div class="chart" data-percent="95" data-scale-color="#35bdf6">
<span>95%</span>
<canvas height="120" width="120"></canvas>
</div>
<p class="progress-text">HTML5 / CSS3</p>
</div>
</div>
<div class="col-sm-3 text-center">
<div class="progress-circle">
<div class="chart" data-percent="85" data-scale-color="#35bdf6">
<span>85%</span>
<canvas height="120" width="120"></canvas>
</div>
<p class="progress-text">Ruby on Rails</p>
</div>
</div>
<div class="col-sm-3 text-center">
<div class="progress-circle">
<div class="chart" data-percent="75" data-scale-color="#35bdf6">
<span>75%</span>
<canvas height="120" width="120"></canvas>
</div>
<p class="progress-text">Meteor</p>
</div>
</div>
<div class="col-sm-3 text-center">
<div class="progress-circle">
<div class="chart" data-percent="89" data-scale-color="#35bdf6">
<span>89%</span>
<canvas height="120" width="120"></canvas>
</div>
<p class="progress-text">Design</p>
</div>
</div>
</div>
</div><!--section about 3 end-->
</div>
</div>
<div class="purchase-now parallax" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-sm-8">
<h1 class="wow animated fadeInLeft" data-wow-delay="0.3s">Using Design as a <strong>Business</strong> Strategy</h1>
</div>
<div class="col-sm-4">
<a href="#" class="btn btn-lg btn-theme-color wow animated bounceIn" data-wow-delay="0.6s"> Contact Us Now</a>
</div>
</div>
</div>
</div>
<!--page about content end here-->
</section>
<!--about section end here-->
<!--section services start here-->
<section id="services" class="padding-80">
<div class="services-section-1">
<div class="container">
<div class="section-heading text-center">
<h4 class="small section-title"><span>What we do?</span></h4>
<h2 class="large section-title">Our Services</h2>
</div><!--section heading-->
</div><!--container-->
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="margin-btm-40">
<h4>We help you to solve problems</h4>
<p>
With our professions, we help you to identify key factors of problems, and then give you suggestions with feasible step-by-step solutions and reasonable time frame. We highly value time and efficiency.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 wow animated fadeInLeft" data-wow-delay="0.3s">
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-image"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3>Business Model Design</h3>
<p>
By using the business model canvas, we help you to define the key components of your business.
</p>
</div>
</div>
</div><!--.services row end-->
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-plane"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3>Value Proposition Design</h3>
<p>
We help you to identify the customer segments with their pain points, then provide you suggestions on focusing the value for the target customers.
</p>
</div>
</div>
</div><!--.services row end-->
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-leaf"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3>Training</h3>
<p>
We regularly run workshops and 1-on-1 training. We ensure your ideas would be covered by non-disclosure agreement.
</p>
</div>
</div>
</div><!--.services row end-->
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-paper-plane"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3>Product Prototyping</h3>
<p>
In order to better validate your idea, we help you to build product prototypes, either as web or mobile applications.
</p>
</div>
</div>
</div><!--.services row end-->
</div>
<div class="col-md-6 wow animated fadeInRight" data-wow-delay="0.6s">
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-image"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3>Website design</h3>
<p>
We use design as business strategy, focusing on both User Experience and User Interface Design.
</p>
</div>
</div>
</div><!--.services row end-->
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-plane"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3>Mobile / Web Development</h3>
<p>
Our team equips with cutting edge web and mobile technologies, which can help you creating the product as soon as possible.
</p>
</div>
</div>
</div><!--.services row end-->
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-leaf"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3>Internet Marketing</h3>
<p>
With our unique experience in Internet Marketing, we provide customized solution on Internet Marketing for your startup idea.
</p>
</div>
</div>
</div><!--.services row end-->
<div class="row margin-btm-20">
<div class="col-md-2">
<div class="services-icon">
<i class="fa fa-paper-plane"></i>
</div>
</div>
<div class="col-md-10">
<div class="services-info">
<h3>Search engine optimization (SEO) </h3>
<p>
We help you to improve search rankings, and save cost in long term.
</p>
</div>
</div>
</div><!--.services row end-->
</div>
</div>
</div>
</div><!--services section 1 end-->
<div class="services-section-2 parallax" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>Subscribe to Newsletter</h1>
<form class="newsletter-form">
<div class="row">
<div class="col-sm-4 col-sm-offset-4">
<div class="input-group">
<label class="sr-only" for="subscribe-email">Email address</label>
<input type="email" class="form-control" id="subscribe-email" placeholder="Enter your email">
<span class="input-group-btn">
<button type="submit" class="btn btn-theme-color btn-lg">OK</button>
</span>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div><!--services section 1 end-->
</section>
<!--section services end here-->
<!--our work section start here-->
<section id="work" class="padding-80">
<div class="work-section-1">
<div class="container">
<div class="section-heading text-center">
<h4 class="small section-title"><span>Latest portfolio</span></h4>
<h2 class="large section-title">Our work</h2>
</div><!--section heading-->
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<ul class="portfolio-filters text-center">
<li class="filter active" data-filter="all">all</li>
<li class="filter" data-filter="design">design</li>
<li class="filter" data-filter="mobile">mobile</li>
<li class="filter" data-filter="meteor">meteor</li>
<li class="filter" data-filter="ruby-on-rails">ruby on rails</li>
<li class="filter" data-filter="seo">seo</li>
</ul><!--.portfolio-filter nav-->
<div id="grid" class="row">
<div class="mix col-md-3 col-sm-6 design ruby-on-rails margin-btm-20">
<a href="single-work.html">
<div class="image-wrapper">
<img src="img/client-poleluxe.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div><!--.image-overlay-->
</div><!--.image-wrapper-->
</a>
<div class="work-sesc">
<p>
Ruby on Rails / Web design
</p>
</div><!--.work-desc-->
</div><!--work item-->
<div class="mix col-md-3 col-sm-6 ruby-on-rails margin-btm-20">
<a href="single-work.html">
<div class="image-wrapper">
<img src="img/client-variably.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div><!--.image-overlay-->
</div><!--.image-wrapper-->
</a>
<div class="work-sesc">
<p>
Ruby on Rails
</p>
</div><!--.work-desc-->
</div><!--work item-->
<div class="mix col-md-3 col-sm-6 design margin-btm-20">
<a href="single-work.html">
<div class="image-wrapper">
<img src="img/client-singleaccess.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div><!--.image-overlay-->
</div><!--.image-wrapper-->
</a>
<div class="work-sesc">
<p>
web design
</p>
</div><!--.work-desc-->
</div><!--work item-->
<div class="mix col-md-3 col-sm-6 seo design margin-btm-20">
<a href="single-work.html">
<div class="image-wrapper">
<img src="img/client-clubdes5.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div><!--.image-overlay-->
</div><!--.image-wrapper-->
</a>
<div class="work-sesc">
<p>
seo / web design
</p>
</div><!--.work-desc-->
</div><!--work item-->
<div class="mix col-md-3 col-sm-6 meteor margin-btm-20">
<a href="single-work.html">
<div class="image-wrapper">
<img src="img/client-ehk.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div><!--.image-overlay-->
</div><!--.image-wrapper-->
</a>
<div class="work-sesc">
<p>
Meteor
</p>
</div><!--.work-desc-->
</div><!--work item-->
<div class="mix col-md-3 col-sm-6 ruby-on-rails margin-btm-20">
<a href="single-work.html">
<div class="image-wrapper">
<img src="img/client-moneycircle.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div><!--.image-overlay-->
</div><!--.image-wrapper-->
</a>
<div class="work-sesc">
<p>
Ruby on Rails
</p>
</div><!--.work-desc-->
</div><!--work item-->
<div class="mix col-md-3 col-sm-6 mobile margin-btm-20">
<a href="single-work.html">
<div class="image-wrapper">
<img src="img/client-mreferral.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div><!--.image-overlay-->
</div><!--.image-wrapper-->
</a>
<div class="work-sesc">
<p>
Mobile
</p>
</div><!--.work-desc-->
</div><!--work item-->
<div class="mix col-md-3 col-sm-6 mobile margin-btm-20">
<a href="single-work.html">
<div class="image-wrapper">
<img src="img/client-midland-calc.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div><!--.image-overlay-->
</div><!--.image-wrapper-->
</a>
<div class="work-sesc">
<p>
Mobile
</p>
</div><!--.work-desc-->
</div><!--work item-->
<div class="mix col-md-3 col-sm-6 seo margin-btm-20">
<a href="single-work.html">
<div class="image-wrapper">
<img src="img/client-makeup.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div><!--.image-overlay-->
</div><!--.image-wrapper-->
</a>
<div class="work-sesc">
<p>
seo
</p>
</div><!--.work-desc-->
</div><!--work item-->
<div class="mix col-md-3 col-sm-6 seo margin-btm-20">
<a href="single-work.html">
<div class="image-wrapper">
<img src="img/client-dance.jpg" class="img-responsive" alt="work-1">
<div class="image-overlay">
<p>
View Detail
</p>
</div><!--.image-overlay-->
</div><!--.image-wrapper-->
</a>
<div class="work-sesc">
<p>
seo
</p>
</div><!--.work-desc-->
</div><!--work item-->
</div><!--#grid for filter items-->
</div><!--.col-md-12 of portfolio filter-->
</div><!--.row-->
</div><!--.contianer-->
</div><!--work section 1-->
<!--testimonials-->
<div class="testi parallax" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center">
<div id="testi-carousel" class="owl-carousel">
<div>
<h4>
STAY REAL has done a great job, delivering high quality of work with reasonable price.
</h4>
<p>-Pôle Luxe</p>
</div><!--testimonials item like paragraph-->
<div>
<h4>
Harry and his team are so passionate with the cutting edge technologies, thanks for the hard work.
</h4>
<p>-Money Circle</p>
</div><!--testimonials item like paragraph-->
<div>
<h4>
It was a great experience in working with the team, the project was completed with high effienciency.
</h4>
<p>-Dance Union</p>
</div><!--testimonials item like paragraph-->
</div>
</div>
</div>
</div>
</div>
<!--testimonials-->
<div class="work-section-2">
<div class="container">
<div class="row">
<div class="col-md-12 text-center margin-btm-40">
<div class="section-heading text-center">
<h2 class="large section-title">Our valuable team</h2>
</div><!--section heading-->
</div>
<div class="col-md-12 team-line margin-btm-40 wow animated fadeInDown" data-wow-delay=".4s">
<div class="row">
<div class="col-md-2 col-sm-4 col-xs-12">
<img src="img/team-harry.jpg" alt="team" data-toggle="tooltip" title="" data-original-title="Harry Ng - CEO">
</div>
<div class="col-md-2 col-sm-4 col-xs-12">
<img src="img/team-deven.jpg" alt="team" data-toggle="tooltip" title="" data-original-title="Deven - Designer">
</div>
<div class="col-md-2 col-sm-4 col-xs-12">
<img src="img/team-kevin.jpg" alt="team" data-toggle="tooltip" title="" data-original-title="Kevin - Training Specialist">
</div>
<div class="col-md-2 col-sm-4 col-xs-12">
<img src="img/team-joseph.jpg" alt="team" data-toggle="tooltip" title="" data-original-title="Joseph - Developer">
</div>
<div class="col-md-2 col-sm-4 col-xs-12">
<img src="img/team-clifford.jpg" alt="team" data-toggle="tooltip" title="" data-original-title="Clifford - Product Manager">
</div>
<div class="col-md-2 col-sm-4 col-xs-12">
<img src="img/team-richard.jpg" alt="team" data-toggle="tooltip" title="" data-original-title="Richard - Business Development">
</div>
</div>
</div><!--team line -->
</div><!--.row-->
</div><!--.container-->
</div><!--team section end-->
<!--fun facts-->
<div class="parallax fun-facts" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-md-3 margin-btm-20">
<div class="fact-inner">
<h2 class="counter">95</h2>
<h4>Projects Complete</h4>
</div>
</div><!--fun col-->
<div class="col-md-3 margin-btm-20">
<div class="fact-inner">
<h2 class="counter">121599</h2>
<h4>Happy Users</h4>
</div>
</div><!--fun col-->
<div class="col-md-3 margin-btm-20">
<div class="fact-inner">
<h2 class="counter">12378</h2>
<h4>Songs Listen</h4>
</div>
</div><!--fun col-->
<div class="col-md-3 margin-btm-20">
<div class="fact-inner">
<h2 class="counter">2555</h2>
<h4>Cups of coffee</h4>
</div>
</div><!--fun col-->
</div>
</div>
</div>
<!--fun facts-->
</section><!--#work-section-->
<!--our work section end-->
<!--pricing table section start here-->
<section id="contact" class="padding-80">
<div class="contact-sec-1">
<div class="container">
<div class="section-heading text-center">
<h4 class="small section-title"><span>we Love to hear from you </span></h4>
<h2 class="large section-title">Contact Us</h2>
</div><!--section heading-->
</div><!--.container-->
<div class="container">
<div class="row">
<div class="col-md-8">
<h4>Get in touch</h4>
<form name="sentMessage" id="contactForm" method="post" novalidate>
<div class="row">
<div class="col-md-6">
<div class="row control-group">
<div class="form-group col-xs-12 controls">
<label>Name<span>*</span></label>
<input type="text" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name.">
<p class="help-block"></p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row control-group">
<div class="form-group col-xs-12 controls">
<label>Email Address<span>*</span></label>
<input type="email" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address.">
<p class="help-block"></p>
</div>
</div>
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 controls">
<label>Message<span>*</span></label>
<textarea rows="5" class="form-control" placeholder="Message" id="message" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block"></p>
</div>
</div>
<br>
<div id="success"></div>
<div class="row">
<div class="form-group col-xs-12">
<button type="submit" class="btn btn-theme-color btn-lg">Send Message</button>
</div>
</div>
</form>
<!--contact form-->
</div>
<div class="col-md-4">
<h4>Contact info</h4>
<div class="contact-info wow animated fadeInRight" data-wow-delay=".6s">
<p><i class="fa fa-home"></i> 6/F, 88 Des Voeux Road Central, Hong Kong</p>
<p><i class="fa fa-home"></i> +852 9581 2742</p>
<p><i class="fa fa-envelope"></i> <a href="#">[email protected]</a></p>
<hr>
<h4>Elsewhere</h4>
<ul class="list-inline social-colored">
<li><a href="#"><i class="fa fa-facebook icon-fb" data-toggle="tooltip" title="" data-original-title="Facebook" data-placement="top"></i></a></li>
<li><a href="#"><i class="fa fa-twitter icon-twit" data-toggle="tooltip" title="" data-original-title="Twitter" data-placement="top"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus icon-plus" data-toggle="tooltip" title="" data-original-title="Google pluse" data-placement="top"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin icon-in" data-toggle="tooltip" title="" data-original-title="Linkedin" data-placement="top"></i></a></li>
</ul> <!--colored social-->
</div>
</div>
</div>
</div>
</div><!--Contact-sec-1 end-->
</section><!--contact section end-->
<div id="map-canvas" style="width:100%; height: 350px;"></div>
<div class="contact-sec-2">
<div class="container text-center">
<div class="row">
<div class="col-sm-4">
<div class="contact-col wow animated flipInY" data-wow-delay=".3s">
<i class="fa fa-phone"></i>
<p>+852 9581 2742</p>
</div>
</div>
<div class="col-sm-4">
<div class="contact-col wow animated flipInY" data-wow-delay=".3s">
<i class="fa fa-envelope"></i>
<p>[email protected]</p>
</div>
</div>
<div class="col-sm-4">
<div class="contact-col wow animated flipInY" data-wow-delay=".3s">
<i class="fa fa-home"></i>
<p>6/F, 88 Des Voeux Road Central, <br/>Hong Kong</p>
</div>
</div>
</div>
</div>
</div><!--Contact-sec-1 end-->
<section id="footer" class="padding-80">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 copyright">
<span>©2015. STAY REAL. All right reserved</span>
</div>
<div class="col-md-6 col-sm-6 footer-nav">
<ul class="list-inline">
<li><a href="http://24.reque.st/">Coding for Startups</a></li>
<li><a href="http://www.reque.st/">Reque.st</a></li>
<li><a href="http://www.rememberthere.com/">Remember There</a></li>
<li>
<a href="https://mixpanel.com/f/partner"><img src="//cdn.mxpnl.com/site_media/images/partner/badge_light.png" alt="Mobile Analytics" /></a>
</li>
</ul>
</div>
</div>
</div>
</section><!--footer end-->
<!--back to top-->
<a href="#" class="scrollToTop"><i class="fa fa-angle-up"></i></a>
<!--back to top end-->
<!--script files-->
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.easing.1.3.min.js" type="text/javascript"></script>
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/jquery.mixitup.min.js" type="text/javascript"></script>
<script src="js/jquery.flexslider-min.js" type="text/javascript"></script>
<script src="js/wow.min.js" type="text/javascript"></script>
<script src="js/jquery.sticky.js" type="text/javascript"></script>
<script src="js/bootstrap-hover-dropdown.min.js" type="text/javascript"></script>
<script src="js/jquery.stellar.min.js" type="text/javascript"></script>
<!--new version v1.1 plugins-->
<script src="js/owl.carousel.min.js" type="text/javascript"></script>
<script src="js/jquery.nicescroll.min.js" type="text/javascript"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/easypiechart.js"></script>
<script src="js/jquery.counterup.min.js" type="text/javascript"></script>
<script src="js/jquery.countdown.js" type="text/javascript"></script>
<script src="js/contact_me.js" type="text/javascript"></script>
<script src="js/jqBootstrapValidation.js" type="text/javascript"></script>
<script src="js/custom.js" type="text/javascript"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">
var myLatlng;
var map;
var marker;
function initialize() {
myLatlng = new google.maps.LatLng(22.284730, 114.155510);
var mapOptions = {
zoom: 13,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
scrollwheel: true,
draggable: true
};
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
var contentString = '<p style="line-height: 20px;"><strong>STAY REAL LIMITED</strong></p><p>6/F, 88 Des Voeux Road Central, Hong Kong</p>';
var infowindow = new google.maps.InfoWindow({
content: contentString
});
marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'Marker'
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map, marker);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59943103-1', 'auto');
ga('send', 'pageview');
</script>
<script src="js/jquery.scrolldepth.min.js"></script>
<script>
jQuery(function() {
jQuery.scrollDepth({
elements: ['#home', '#navigation', '#about', '#services', '#work', '#contact', '#footer']
});
});
</script>
</body>
</html>