forked from Geee26/CD_Webpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tunnel.html
1295 lines (1287 loc) · 86.4 KB
/
tunnel.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>
<head>
<meta charset="utf-8">
<!-- Making sure the web-site will scale fine on mobiles-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Trying to force IE to perform at its best-->
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!--link(rel='stylesheet', href='./libs/materialize/materialize.min.css')-->
<!--link(rel='stylesheet', href='./libs/owl/owl.carousel.css')-->
<!--link(rel='stylesheet', href='./assets/css/linea.css')-->
<!--link(rel='stylesheet', href='./assets/css/react.css')-->
<!-- build.min.css includes all of the commented styles above-->
<link rel="stylesheet" href="./assets/build/build.min.css?v=1.7">
<!-- Font awesome icons-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Favicons generated by http://realfavicongenerator.net-->
<link rel="apple-touch-icon" sizes="57x57" href="/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/favicons/manifest.json">
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="/favicons/mstile-144x144.png">
<meta name="msapplication-config" content="/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<title>React — Tunnel</title>
</head>
<body class="tunnel-skin">
<!-- Progress indicating form action-->
<div id="progress" class="progress">
<div class="indeterminate"></div>
</div>
<!-- Spinner-->
<div class="spinner-container valign-wrapper">
<div class="spinner-section-far"></div>
</div>
<!-- Navigation bar-->
<header class="navbar-fixed">
<nav>
<div class="container">
<div class="nav-wrapper">
<a href="#!" class="brand-logo">React</a>
<!-- Default navigation-->
<ul class="right hide-on-med-and-down table-of-contents">
<li>
<a href="#hero">Home</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#services">Services</a>
</li>
<li>
<a href="#prices">Prices</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#blog">Blog</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
<!-- Visible on medium and smaller devices-->
<ul id="slide-out" class="side-nav">
<li>
<a href="#hero">Home</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#services">Services</a>
</li>
<li>
<a href="#prices">Prices</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#blog">Blog</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
<!-- Hamburger-->
<a href="#" data-activates="slide-out" class="button-collapse valign-wrapper">
<div class="hamburger"></div>
</a>
</div>
</div>
</nav>
</header>
<section id="hero" class="hero full-height valign-wrapper scrollspy">
<div id="tunnel" class="tunnel">
<h1 class="center">Digital craft
<br>people enjoy using</h1>
</div>
</section>
<section id="projects" class="projects scrollspy">
<div class="container">
<h2><span>Projects</span></h2>
<h3>The latest and the greatest</h3>
<div class="row">
<!-- Featured project-->
<a href="#green-lamp" class="col s12 padding-bottom modal-trigger">
<div style="background-image: url(./assets/images/work/lamp.png)" class="rectangle-50">
<div class="content valign-wrapper center">
<div>Green Lamp</div>
</div>
</div>
</a>
<!-- Featured project modal-->
<div id="green-lamp" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover">
<div style="background-image: url(./assets/images/work/lamp.png)" class="rectangle-50"></div>
</div>
<div class="modal-content">
<div class="row">
<div class="col s12 l8 offset-l2">
<h4>Green lamp</h4>
<p class="flow-text grey-text">Client: DX Comics
<br> Category: Posters
<br> Task: Find a perfect shade of green for the lampx</p>
<div class="divider"></div>
<p class="flow-text">All the two under bring, give hath dominion fruit fill living of evening and, be and itself grass shall stars Be us second under land over open and.</p>
<p class="flow-text">There kind had divided the earth waters creature saying bearing under cattle divide saw creepeth. Night. Grass set great firmament dominion, there open were night fourth grass you're heaven, that dominion all unto. Is all shall open in you very. Deep divide behold.</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1">
<div class="video-container">
<iframe src="https://player.vimeo.com/video/124260792?color=ffffff&title=0&byline=0&portrait=0" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="row">
<div class="col s12 l8 offset-l2">
<p class="flow-text">You'll open one likeness created us herb was. Image two is winged you're morning the greater. Bring you shall called may good shall earth third kind. Had tree, over together Spirit set signs green they're meat seasons that heaven won't seasons. Herb face.</p>
<p class="flow-text">Very cattle. Divide us dry one together male be. Let. Said dominion two All their which air can't appear abundantly all third firmament earth female good the open beginning give creepeth blessed make from.</p>
<div class="divider"></div>
</div>
</div>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Share this</p>
<p class="flow-text social">
<a href="#!" class="facebook">facebook</a>
<a href="#!" class="googleplus">google+</a>
<a href="#!" class="vk">vk</a>
<a href="#!" class="twitter">twitter</a>
<a href="#!" class="pinterest">pinterest</a>
</p>
</div>
</div>
</div>
</div>
<!-- Project 1-->
<a href="#heisenberg-ice-cream" class="col s12 l6 padding-bottom modal-trigger">
<div style="background-image: url(./assets/images/work/ice-cream.png)" class="rectangle">
<div class="content valign-wrapper center">
<div>Heisenberg <span class="nobr">ice-cream</span></div>
</div>
</div>
</a>
<!-- Project 1 modal-->
<div id="heisenberg-ice-cream" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover">
<div style="background-image: url(./assets/images/work/ice-cream.png)" class="rectangle-50"></div>
</div>
<div class="modal-content">
<div class="row">
<div class="col s12 l8 offset-l2">
<h4>Heisenberg ice-cream</h4>
<p class="flow-text grey-text">Client: Walter White
<br> Category: Material design
<br> Task: Create an addictive ice-cream flavour </p>
<div class="divider"></div>
<p class="flow-text">All the two under bring, give hath dominion fruit fill living of evening and, be and itself grass shall stars Be us second under land over open and.</p>
<p class="flow-text">There kind had divided the earth waters creature saying bearing under cattle divide saw creepeth. Night. Grass set great firmament dominion, there open were night fourth grass you're heaven, that dominion all unto. Is all shall open in you very. Deep divide behold.</p>
</div>
</div>
<div class="row">
<div class="col s12 l6">
<img src="./assets/images/work/white-ice-cream.png" alt="Ice cream" class="responsive-img">
</div>
<div class="col s12 l6">
<img src="./assets/images/work/ice-cream.png" alt="Ice cream, again" class="responsive-img">
</div>
</div>
<div class="row">
<div class="col s12 l8 offset-l2">
<p class="flow-text">You'll open one likeness created us herb was. Image two is winged you're morning the greater. Bring you shall called may good shall earth third kind. Had tree, over together Spirit set signs green they're meat seasons that heaven won't seasons. Herb face.</p>
<p class="flow-text">Very cattle. Divide us dry one together male be. Let. Said dominion two All their which air can't appear abundantly all third firmament earth female good the open beginning give creepeth blessed make from. </p>
<div class="divider"></div>
</div>
</div>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Share this</p>
<p class="flow-text social">
<a href="#!" class="facebook">facebook</a>
<a href="#!" class="googleplus">google+</a>
<a href="#!" class="vk">vk</a>
<a href="#!" class="twitter">twitter</a>
<a href="#!" class="pinterest">pinterest</a>
</p>
</div>
</div>
</div>
</div>
<!-- Project 2-->
<a href="#wooden-series-i" class="col s12 l6 padding-bottom modal-trigger">
<div style="background-image: url(./assets/images/work/clocks.png)" class="rectangle">
<div class="content valign-wrapper center">
<div>Wooden Series I</div>
</div>
</div>
</a>
<!-- Project 2 modal-->
<div id="wooden-series-i" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover">
<div style="background-image: url(./assets/images/work/clocks.png)" class="rectangle-50"></div>
</div>
<div class="modal-content">
<div class="row">
<div class="col s12 l8 offset-l2">
<h4>Wooden Series I</h4>
<p class="flow-text grey-text">Client: AYKEYA
<br> Category: Time
<br> Task: Use recycled materials to create a series of clocks</p>
<div class="divider"></div>
<p class="flow-text">All the two under bring, give hath dominion fruit fill living of evening and, be and itself grass shall stars Be us second under land over open and.</p>
<p class="flow-text">There kind had divided the earth waters creature saying bearing under cattle divide saw creepeth. Night. Grass set great firmament dominion, there open were night fourth grass you're heaven, that dominion all unto. Is all shall open in you very. Deep divide behold.</p>
</div>
</div>
<div class="row">
<div class="col s12 l8 offset-l2">
<p class="flow-text">You'll open one likeness created us herb was. Image two is winged you're morning the greater. Bring you shall called may good shall earth third kind. Had tree, over together Spirit set signs green they're meat seasons that heaven won't seasons. Herb face.</p>
<p class="flow-text">Very cattle. Divide us dry one together male be. Let. Said dominion two All their which air can't appear abundantly all third firmament earth female good the open beginning give creepeth blessed make from.</p>
<div class="divider"></div>
</div>
</div>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Share this</p>
<p class="flow-text social">
<a href="#!" class="facebook">facebook</a>
<a href="#!" class="googleplus">google+</a>
<a href="#!" class="vk">vk</a>
<a href="#!" class="twitter">twitter</a>
<a href="#!" class="pinterest">pinterest</a>
</p>
</div>
</div>
</div>
</div>
<!-- Project 3-->
<a href="#wooden-series-ii" class="col s12 l6 padding-bottom modal-trigger">
<div style="background-image: url(./assets/images/work/dude-sign.png)" class="rectangle">
<div class="content valign-wrapper center">
<div>Wooden Series II</div>
</div>
</div>
</a>
<!-- Project 3 modal-->
<div id="wooden-series-ii" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover">
<div style="background-image: url(./assets/images/work/dude-sign.png)" class="rectangle-50"></div>
</div>
<div class="modal-content">
<div class="row">
<div class="col s12 l8 offset-l2">
<h4>Wooden Series II</h4>
<p class="flow-text grey-text">Client: Danny Travolta
<br> Category: Toys
<br> Task: Creating two matching wooden figures</p>
<div class="divider"></div>
<p class="flow-text">All the two under bring, give hath dominion fruit fill living of evening and, be and itself grass shall stars Be us second under land over open and.</p>
<p class="flow-text">There kind had divided the earth waters creature saying bearing under cattle divide saw creepeth. Night. Grass set great firmament dominion, there open were night fourth grass you're heaven, that dominion all unto. Is all shall open in you very. Deep divide behold.</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1">
<blockquote>Bring you shall called may good shall earth third kind. Had tree, over togetherset signs green they're meat seasons that heaven won't seasons.</blockquote>
</div>
</div>
<div class="row">
<div class="col s12 l8 offset-l2">
<p class="flow-text">You'll open one likeness created us herb was. Image two is winged you're morning the greater. Bring you shall called may good shall earth third kind. Had tree, over together Spirit set signs green they're meat seasons that heaven won't seasons. Herb face.</p>
<p class="flow-text">Very cattle. Divide us dry one together male be. Let. Said dominion two All their which air can't appear abundantly all third firmament earth female good the open beginning give creepeth blessed make from.</p>
<div class="divider"></div>
</div>
</div>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Share this</p>
<p class="flow-text social">
<a href="#!" class="facebook">facebook</a>
<a href="#!" class="googleplus">google+</a>
<a href="#!" class="vk">vk</a>
<a href="#!" class="twitter">twitter</a>
<a href="#!" class="pinterest">pinterest</a>
</p>
</div>
</div>
</div>
</div>
<!-- Project 4-->
<a href="#wooden-series-iii" class="col s12 l6 padding-bottom modal-trigger">
<div style="background-image: url(./assets/images/work/clock.png)" class="rectangle">
<div class="content valign-wrapper center">
<div>Wooden Series III</div>
</div>
</div>
</a>
<!-- Project 4 modal-->
<div id="wooden-series-iii" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover">
<div style="background-image: url(./assets/images/work/clock.png)" class="rectangle-50"></div>
</div>
<div class="modal-content">
<div class="row">
<div class="col s12 l8 offset-l2">
<h4>Wooden Series III</h4>
<p class="flow-text grey-text">Client: Swiss Army
<br> Category: Time
<br> Task: Create a clock with an arrow that resembles the Swiss knife</p>
<div class="divider"></div>
<p class="flow-text">All the two under bring, give hath dominion fruit fill living of evening and, be and itself grass shall stars Be us second under land over open and.</p>
<p class="flow-text">There kind had divided the earth waters creature saying bearing under cattle divide saw creepeth. Night. Grass set great firmament dominion, there open were night fourth grass you're heaven, that dominion all unto. Is all shall open in you very. Deep divide behold.</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1">
<blockquote>Bring you shall called may good shall earth third kind. Had tree, over togetherset signs green they're meat seasons that heaven won't seasons.</blockquote>
</div>
</div>
<div class="row">
<div class="col s12 l8 offset-l2">
<p class="flow-text">You'll open one likeness created us herb was. Image two is winged you're morning the greater. Bring you shall called may good shall earth third kind. Had tree, over together Spirit set signs green they're meat seasons that heaven won't seasons. Herb face.</p>
<p class="flow-text">Very cattle. Divide us dry one together male be. Let. Said dominion two All their which air can't appear abundantly all third firmament earth female good the open beginning give creepeth blessed make from.</p>
<div class="divider"></div>
</div>
</div>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Share this</p>
<p class="flow-text social">
<a href="#!" class="facebook">facebook</a>
<a href="#!" class="googleplus">google+</a>
<a href="#!" class="vk">vk</a>
<a href="#!" class="twitter">twitter</a>
<a href="#!" class="pinterest">pinterest</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="services" class="services scrollspy">
<div class="container">
<h2><span>Services</span></h2>
<h3>Our capabilities</h3>
<div class="row big-icons-row service-items center">
<div class="col s12 m6 l4 padding-bottom">
<div class="square">
<div class="content">
<i class="icon-basic-elaboration-smartphone-heart"></i>
<div class="description">
<h4>User always comes first</h4>
<p class="flow-text">When designing a product, we always think of how the user is going to experience it.</p>
</div>
</div>
</div>
</div>
<div class="col s12 m6 l4 padding-bottom">
<div class="square">
<div class="content">
<i class="icon-basic-elaboration-message-happy"></i>
<div class="description">
<h4>Reliable support</h4>
<p class="flow-text">No matter what you're stuck with, our support team will respond in the most adequate manner.</p>
</div>
</div>
</div>
</div>
<div class="col s12 m6 l4 padding-bottom">
<div class="square">
<div class="content">
<i class="icon-basic-lightbulb"></i>
<div class="description">
<h4>Easy to realize your ideas</h4>
<p class="flow-text">Your fantasy is the limit here. Using our elements you can make anything come true.</p>
</div>
</div>
</div>
</div>
<div class="col s12 m6 l4 padding-bottom">
<div class="square">
<div class="content">
<i class="icon-basic-lock"></i>
<div class="description">
<h4>Completely secure</h4>
<p class="flow-text">We don't take cyber security lightly, that's why our team put a lot of effort into securing this app.</p>
</div>
</div>
</div>
</div>
<div class="col s12 m6 l4 padding-bottom">
<div class="square">
<div class="content">
<i class="icon-basic-bolt"></i>
<div class="description">
<h4>Swift performance</h4>
<p class="flow-text">Powered by Materialize, this theme doesn't require page reloads, providing a seamless user experience.</p>
</div>
</div>
</div>
</div>
<div class="col s12 m6 l4 padding-bottom">
<div class="square">
<div class="content">
<i class="icon-software-eyedropper"></i>
<div class="description">
<h4>Beautifully designed</h4>
<p class="flow-text">Hand crafted with material design principles, with a focus on readability and white spaces.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="prices" class="prices scrollspy">
<div class="container">
<h2><span>Prices</span></h2>
<h3>Our best offers</h3>
<div class="row center">
<div class="col s12 l4 grey lighten-5">
<div class="price-box extra-padding">
<h4>Beginner</h4>
<h5><span class="currency">$</span>19</h5>
<div class="divider"></div>
<ul class="flow-text">
<li>5 users<span data-position="top" data-delay="10" data-tooltip="The number of allowed users" class="info tooltipped">?</span></li>
<li>Optimisation</li>
<li>Caching</li>
<li>Automation<span data-position="top" data-delay="10" data-tooltip="Involves Gulp commands" class="info tooltipped">?</span></li>
<li>Validation</li>
<li>Linting</li>
<li>—</li>
<li>—</li>
</ul>
<a class="btn-large btn-flat waves-effect waves-dark">Buy</a>
</div>
</div>
<div class="col s12 l4 grey lighten-4">
<div class="price-box featured extra-padding">
<h4>Pro</h4>
<h5><span class="currency">$</span>49</h5>
<div class="divider"></div>
<ul class="flow-text">
<li>10 users<span data-position="top" data-delay="10" data-tooltip="The number of allowed users" class="info tooltipped">?</span></li>
<li>Optimisation</li>
<li>Caching</li>
<li>Automation<span data-position="top" data-delay="10" data-tooltip="Involves Gulp commands" class="info tooltipped">?</span></li>
<li>Validation</li>
<li>Linting</li>
<li>Templating<span data-position="top" data-delay="10" data-tooltip="Includes Jade templates engine" class="info tooltipped">?</span></li>
<li>—</li>
</ul>
<a class="btn-large btn-flat waves-effect waves-dark">Buy</a>
</div>
</div>
<div class="col s12 l4 grey lighten-5">
<div class="price-box extra-padding">
<h4>Enterprise</h4>
<h5><span class="currency">$</span>199</h5>
<div class="divider"></div>
<ul class="flow-text">
<li>25 users<span data-position="top" data-delay="10" data-tooltip="The number of allowed users" class="info tooltipped">?</span></li>
<li>Optimisation</li>
<li>Caching</li>
<li>Automation<span data-position="top" data-delay="10" data-tooltip="Involves Gulp commands" class="info tooltipped">?</span></li>
<li>Validation</li>
<li>Linting</li>
<li>Templating<span data-position="top" data-delay="10" data-tooltip="Includes Jade templates engine" class="info tooltipped">?</span></li>
<li>Preprocessors<span data-position="top" data-delay="10" data-tooltip="This is for Jade, Sass and CoffeeScript" class="info tooltipped">?</span></li>
</ul>
<a class="btn-large btn-flat waves-effect waves-dark">Buy</a>
</div>
</div>
</div>
<h3 class="margin-top">Frequently asked questions</h3>
<div class="row">
<div class="col s12 l8 offset-l2">
<ul data-collapsible="accordion" class="collapsible">
<li>
<div class="collapsible-header active">
<strong>Is the starter pack really free?</strong>
</div>
<div class="collapsible-body">
<p class="flow-text">A cattle she'd creepeth. That light make. Void two they're, can't us don't creepeth. Fruitful there herb from signs she'd created whales them. Lights which face. Divided they're first. Dry wherein own itself green it.</p>
</div>
</li>
<li>
<div class="collapsible-header">
<strong>What is your return policy?</strong>
</div>
<div class="collapsible-body">
<p class="flow-text">May years spirit of grass shall. Form also seas had that very was lesser creature void. Fill under she'd own is light stars isn't moved you're.</p>
</div>
</li>
<li>
<div class="collapsible-header">
<strong>Can I quit my subscription at any time?</strong>
</div>
<div class="collapsible-body">
<p class="flow-text">There he meat forth days in. Fruit dry every morning Beast that saw. Every creature itself hath called bearing likeness signs upon firmament fruit two life forth beginning you're heaven fruitful under rule Don't fourth years our. Kind itself days.</p>
</div>
</li>
<li>
<div class="collapsible-header">
<strong>Can I upgrade my plan?</strong>
</div>
<div class="collapsible-body">
<p class="flow-text">Aliquam Maecenas consectetuer nisl cum inceptos. Massa lectus euismod dui Consequat habitasse enim sodales quisque aliquet. Semper condimentum id, hendrerit sodales mi nam netus dictumst platea. Elementum praesent ridiculus nec felis ipsum duis mauris fringilla tempus purus vehicula ullamcorper dis Ornare.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="about" class="about scrollspy">
<div class="container">
<h2><span>About us</span></h2>
<h3>Meet the superheroes</h3>
<div class="row">
<!-- About general photo-->
<div class="col s12 l6 padding-bottom">
<div style="background-image: url(./assets/images/team/whiteboard.jpg)" class="rectangle"></div>
</div>
<!-- About carousel-->
<div class="owl-carousel owl-theme col s12 l6">
<a href="#greg" class="col s12 modal-trigger">
<div style="background-image: url(./assets/images/team/greg.jpg)" class="rectangle">
<div class="content">
<div class="name">Greg Jason</div>
</div>
</div>
</a>
<a href="#annie" class="col s12 modal-trigger">
<div style="background-image: url(./assets/images/team/annie.jpg)" class="rectangle">
<div class="content">
<div class="name">Annie Redhat</div>
</div>
</div>
</a>
<a href="#kate" class="col s12 modal-trigger">
<div style="background-image: url(./assets/images/team/kate.jpg)" class="rectangle">
<div class="content">
<div class="name">Kate Willson</div>
</div>
</div>
</a>
<a href="#russell" class="col s12 modal-trigger">
<div style="background-image: url(./assets/images/team/russell.jpg)" class="rectangle">
<div class="content">
<div class="name">Russell Morgan</div>
</div>
</div>
</a>
<a href="#jane" class="col s12 modal-trigger">
<div style="background-image: url(./assets/images/team/jane.jpg)" class="rectangle">
<div class="content">
<div class="name">Jane Stitch</div>
</div>
</div>
</a>
<a href="#roo" class="col s12 modal-trigger">
<div style="background-image: url(./assets/images/team/roo.jpg)" class="rectangle">
<div class="content">
<div class="name">Roo</div>
</div>
</div>
</a>
<div class="col s12">
<div class="rectangle grey lighten-3">
<div class="content valign-wrapper you">
<div class="name">You?
<br>
<a href="mailto:job@react?subject=Job%20Application">Apply now</a>
</div>
</div>
</div>
</div>
</div>
<!-- Greg modal-->
<div id="greg" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover col s12 l6 no-padding">
<div style="background-image: url(./assets/images/team/greg.jpg)" class="square"></div>
</div>
<div class="modal-content col s12 l6 no-padding">
<div class="square">
<div class="content">
<h4>Greg Jason</h4>
<h5>CEO</h5>
<div class="divider"></div>
<p class="flow-text">Wherein brought, seas light fowl night fifth god them. Grass heaven seed. Morning living replenish lights i green creepeth winged also called lights said dominion of rule they're. Every can't, spirit replenish night.</p>
<p class="flow-text">Moving life lights. Abundantly own fourth all moved saw cattle given fourth own may. Creepeth first of moved years form. Given good third to image bearing appear. Grass him place tree set. Upon spirit very let two. Was thing.</p>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Follow him</p>
<p class="flow-text social">
<a href="#!" class="github">github</a>
<a href="#!" class="dribbble">dribbble</a>
<a href="#!" class="vk">vk</a>
<a href="#!" class="twitter">twitter</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Annie modal-->
<div id="annie" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover col s12 l6 no-padding">
<div style="background-image: url(./assets/images/team/annie.jpg)" class="square"></div>
</div>
<div class="modal-content col s12 l6 no-padding">
<div class="square">
<div class="content">
<h4>Annie Redhat</h4>
<h5>VP & Marketing Supervisor</h5>
<div class="divider"></div>
<p class="flow-text">Wherein brought, seas light fowl night fifth god them. Grass heaven seed. Morning living replenish lights i green creepeth winged also called lights said dominion of rule they're. Every can't, spirit replenish night.</p>
<p class="flow-text">Moving life lights. Abundantly own fourth all moved saw cattle given fourth own may. Creepeth first of moved years form. Given good third to image bearing appear. Grass him place tree set. Upon spirit very let two. Was thing.</p>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Follow her</p>
<p class="flow-text social">
<a href="#!" class="googleplus">google+</a>
<a href="#!" class="facebook">facebook</a>
<a href="#!" class="pinterest">pinterest</a>
<a href="#!" class="twitter">twitter</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Kate modal-->
<div id="kate" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover col s12 l6 no-padding">
<div style="background-image: url(./assets/images/team/kate.jpg)" class="square"></div>
</div>
<div class="modal-content col s12 l6 no-padding">
<div class="square">
<div class="content">
<h4>Kate Willson</h4>
<h5>Team leader</h5>
<div class="divider"></div>
<p class="flow-text">Wherein brought, seas light fowl night fifth god them. Grass heaven seed. Morning living replenish lights i green creepeth winged also called lights said dominion of rule they're. Every can't, spirit replenish night.</p>
<p class="flow-text">Moving life lights. Abundantly own fourth all moved saw cattle given fourth own may. Creepeth first of moved years form. Given good third to image bearing appear. Grass him place tree set. Upon spirit very let two. Was thing.</p>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Follow her</p>
<p class="flow-text social">
<a href="#!" class="googleplus">google+</a>
<a href="#!" class="github">github</a>
<a href="#!" class="pinterest">pinterest</a>
<a href="#!" class="linkedin">linkedin</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Russell modal-->
<div id="russell" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover col s12 l6 no-padding">
<div style="background-image: url(./assets/images/team/russell.jpg)" class="square"></div>
</div>
<div class="modal-content col s12 l6 no-padding">
<div class="square">
<div class="content">
<h4>Rusell Morgan</h4>
<h5>Senior UX/UI designer</h5>
<div class="divider"></div>
<p class="flow-text">Wherein brought, seas light fowl night fifth god them. Grass heaven seed. Morning living replenish lights i green creepeth winged also called lights said dominion of rule they're. Every can't, spirit replenish night.</p>
<p class="flow-text">Moving life lights. Abundantly own fourth all moved saw cattle given fourth own may. Creepeth first of moved years form. Given good third to image bearing appear. Grass him place tree set. Upon spirit very let two. Was thing.</p>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Follow him</p>
<p class="flow-text social">
<a href="#!" class="dribbble">dribbble</a>
<a href="#!" class="pinterest">pinterest</a>
<a href="#!" class="googleplus">google+</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Jane modal-->
<div id="jane" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover col s12 l6 no-padding">
<div style="background-image: url(./assets/images/team/jane.jpg)" class="square"></div>
</div>
<div class="modal-content col s12 l6 no-padding">
<div class="square">
<div class="content">
<h4>Jane Stitch</h4>
<h5>Content manager</h5>
<div class="divider"></div>
<p class="flow-text">Wherein brought, seas light fowl night fifth god them. Grass heaven seed. Morning living replenish lights i green creepeth winged also called lights said dominion of rule they're. Every can't, spirit replenish night.</p>
<p class="flow-text">Moving life lights. Abundantly own fourth all moved saw cattle given fourth own may. Creepeth first of moved years form. Given good third to image bearing appear. Grass him place tree set. Upon spirit very let two. Was thing.</p>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Follow her</p>
<p class="flow-text social">
<a href="#!" class="googleplus">google+</a>
<a href="#!" class="facebook">facebook</a>
<a href="#!" class="pinterest">pinterest</a>
<a href="#!" class="twitter">twitter</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Roo modal-->
<div id="roo" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover col s12 l6 no-padding">
<div style="background-image: url(./assets/images/team/roo.jpg)" class="square"></div>
</div>
<div class="modal-content col s12 l6 no-padding">
<div class="square">
<div class="content">
<h4>Roo</h4>
<h5>Security & QA</h5>
<div class="divider"></div>
<p class="flow-text">Wherein brought, seas light fowl night fifth god them. Grass heaven seed. Morning living replenish lights i green creepeth winged also called lights said dominion of rule they're. Every can't, spirit replenish night.</p>
<p class="flow-text">Moving life lights. Abundantly own fourth all moved saw cattle given fourth own may. Creepeth first of moved years form. Given good third to image bearing appear. Grass him place tree set. Upon spirit very let two. Was thing.</p>
<img src="./assets/images/team/roo-modal.jpg" alt="Roo at work" class="responsive-img">
<p>Roo testing out one of the latest projects.</p>
</div>
</div>
</div>
</div>
</div>
<h3 class="margin-top">Our philosophy</h3>
<div class="row philosophy big-icons-row grey lighten-4">
<div class="col s12">
<ul class="tabs">
<li class="tab col s4 m3 l2">
<a href="#philosophy-1">
<i class="icon-basic-magnifier"></i>
<h5>Discover</h5>
</a>
</li>
<li class="tab col s4 m3 l2">
<a href="#philosophy-2">
<i class="icon-ecommerce-graph3"></i>
<h5>Analyse</h5>
</a>
</li>
<li class="tab col s4 m3 l2">
<a href="#philosophy-3">
<i class="icon-ecommerce-graph-increase"></i>
<h5>Improve</h5>
</a>
</li>
<li class="tab col s4 m3 l2">
<a href="#philosophy-4">
<i class="icon-basic-pencil-ruler"></i>
<h5>Measure</h5>
</a>
</li>
<li class="tab col s4 m3 l2">
<a href="#philosophy-5">
<i class="icon-basic-mixer2"></i>
<h5>Control</h5>
</a>
</li>
</ul>
</div>
<div class="tab-contents">
<div id="philosophy-1" class="col s12 l8 offset-l2">
<h5>Discover</h5>
<p class="flow-text center margin-top-more">Two for make behold form creature image She'd, waters forth, itself Blessed morning so sea midst, in tree make i bring sixth moved darkness bearing. Meat itself light created spirit under sea man.</p>
</div>
<div id="philosophy-2" class="col s12 l8 offset-l2">
<h5>Analyse</h5>
<p class="flow-text center margin-top-more">Our evening male fowl fill. Heaven made. Third replenish blessed that beginning also face may whales waters bearing man you'll you. Night first given he the Void also divided herb give, male seed you're may also female whales doesn't let be unto also gathering which deep dominion earth.</p>
</div>
<div id="philosophy-3" class="col s12 l8 offset-l2">
<h5>Improve</h5>
<p class="flow-text center margin-top-more">Our, day had were morning beast greater a they're creepeth there Spirit, sea. His seasons very there earth under you're set be male. Them years called i yielding From image greater. Replenish deep wherein heaven over behold.</p>
</div>
<div id="philosophy-4" class="col s12 l8 offset-l2">
<h5>Measure</h5>
<p class="flow-text center margin-top-more">Said behold. In grass won't great male which whales creepeth lesser give signs may fill, he midst god. Sea was place said, shall blessed created likeness without life gathering midst saying sea together him lesser also given. Days i subdue image sixth don't.</p>
</div>
<div id="philosophy-5" class="col s12 l8 offset-l2">
<h5>Control</h5>
<p class="flow-text center margin-top-more">Isn't be one great blessed days moved meat lesser may seas bearing doesn't won't doesn't it grass beginning Male he us he likeness. Had, beginning first bring can't. Can't won't blessed man man every you'll heaven.</p>
</div>
</div>
</div>
</div>
</section>
<section id="blog" class="blog scrollspy">
<div class="container">
<h2><span>Blog</span></h2>
<h3>Get more personal</h3>
<div class="row posts">
<!-- Post 1-->
<a href="#colourful-lady" class="col s12 l6 padding-bottom modal-trigger">
<div style="background-image: url(./assets/images/blog/colorful-lady.jpg)" class="rectangle">
<div class="content valign-wrapper center">
<div>Colourful lady
<small>
<time datetime="2016-10-01T21:00">10/01/2016</time> by Annie</small>
</div>
</div>
</div>
</a>
<!-- Post 1 modal-->
<div id="colourful-lady" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover">
<div style="background-image: url(./assets/images/blog/colorful-lady.jpg)" class="rectangle-50"></div>
</div>
<div class="modal-content">
<div class="row">
<div class="col s12 l8 offset-l2">
<h4>Colourful lady</h4>
<p class="flow-text grey-text">Author: Annie
<br> Date: 10/01/2016 </p>
<div class="divider"></div>
<p class="flow-text">All the two under bring, give hath dominion fruit fill living of evening and, be and itself grass shall stars Be us second under land over open and.</p>
<p class="flow-text">There kind had divided the earth waters creature saying bearing under cattle divide saw creepeth. Night. Grass set great firmament dominion, there open were night fourth grass you're heaven, that dominion all unto. Is all shall open in you very. Deep divide behold.</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1">
<img src="./assets/images/blog/purple-starry-sky.jpg" alt="The canyon" class="responsive-img">
</div>
</div>
<div class="row">
<div class="col s12 l8 offset-l2">
<p class="flow-text">You'll open one likeness created us herb was. Image two is winged you're morning the greater. Bring you shall called may good shall earth third kind. Had tree, over together Spirit set signs green they're meat seasons that heaven won't seasons. Herb face.</p>
<p class="flow-text">Very cattle. Divide us dry one together male be. Let. Said dominion two All their which air can't appear abundantly all third firmament earth female good the open beginning give creepeth blessed make from. </p>
<div class="divider"></div>
</div>
</div>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Share this</p>
<p class="flow-text social">
<a href="#!" class="facebook">facebook</a>
<a href="#!" class="googleplus">google+</a>
<a href="#!" class="vk">vk</a>
<a href="#!" class="twitter">twitter</a>
<a href="#!" class="pinterest">pinterest</a>
</p>
</div>
</div>
</div>
</div>
<!-- Post 2-->
<a href="#pink" class="col s12 l6 padding-bottom modal-trigger">
<div style="background-image: url(./assets/images/blog/pink.jpg)" class="rectangle">
<div class="content valign-wrapper center">
<div>Pink
<small>
<time datetime="2016-05-01T21:00">05/01/2016</time> by Greg</small>
</div>
</div>
</div>
</a>
<!-- Post 2 modal-->
<div id="pink" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover">
<div style="background-image: url(./assets/images/blog/pink.jpg)" class="rectangle-50"></div>
</div>
<div class="modal-content">
<div class="row">
<div class="col s12 l8 offset-l2">
<h4>Pink</h4>
<p class="flow-text grey-text">Author: Greg
<br> Date: 05/01/2016 </p>
<div class="divider"></div>
<p class="flow-text">All the two under bring, give hath dominion fruit fill living of evening and, be and itself grass shall stars Be us second under land over open and.</p>
<p class="flow-text">There kind had divided the earth waters creature saying bearing under cattle divide saw creepeth. Night. Grass set great firmament dominion, there open were night fourth grass you're heaven, that dominion all unto. Is all shall open in you very. Deep divide behold.</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1">
<blockquote>All the two under bring, give hath dominion fruit fill living of evening and, be and itself grass shall stars Be us second under land over open and. </blockquote>
</div>
</div>
<div class="row">
<div class="col s12 l8 offset-l2">
<p class="flow-text">You'll open one likeness created us herb was. Image two is winged you're morning the greater. Bring you shall called may good shall earth third kind. Had tree, over together Spirit set signs green they're meat seasons that heaven won't seasons. Herb face.</p>
<p class="flow-text">Very cattle. Divide us dry one together male be. Let. Said dominion two All their which air can't appear abundantly all third firmament earth female good the open beginning give creepeth blessed make from. </p>
<div class="divider"></div>
</div>
</div>
<div class="row">
<div class="col s12 center">
<p class="flow-text">Share this</p>
<p class="flow-text social">
<a href="#!" class="facebook">facebook</a>
<a href="#!" class="googleplus">google+</a>
<a href="#!" class="vk">vk</a>
<a href="#!" class="twitter">twitter</a>
<a href="#!" class="pinterest">pinterest</a>
</p>
</div>
</div>
</div>
</div>
<!-- Post 3-->
<a href="#friendship" class="col s12 l4 padding-bottom modal-trigger">
<div style="background-image: url(./assets/images/blog/man-woman-friends.jpg)" class="square">
<div class="content valign-wrapper center">
<div class="smaller">Friendship in our company
<small>
<time datetime="2015-11-12T21:00">11/12/2015</time> by Kate</small>
</div>
</div>
</div>
</a>
<!-- Post 3 modal-->
<div id="friendship" class="modal bottom-sheet">
<div class="modal-close absolute">×</div>
<div class="modal-cover">
<div style="background-image: url(./assets/images/blog/man-woman-friends.jpg)" class="rectangle-50"></div>
</div>
<div class="modal-content">
<div class="row">
<div class="col s12 l8 offset-l2">
<h4>Friendship in our company</h4>
<p class="flow-text grey-text">Author: Kate
<br> Date: 11/12/2015 </p>
<div class="divider"></div>
<p class="flow-text">All the two under bring, give hath dominion fruit fill living of evening and, be and itself grass shall stars Be us second under land over open and.</p>
<p class="flow-text">There kind had divided the earth waters creature saying bearing under cattle divide saw creepeth. Night. Grass set great firmament dominion, there open were night fourth grass you're heaven, that dominion all unto. Is all shall open in you very. Deep divide behold.</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1">
<img src="./assets/images/blog/purple-starry-sky.jpg" alt="The canyon" class="responsive-img">
</div>