-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1373 lines (1256 loc) · 70.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
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>DSGN Awwwards</title>
<!-- <link rel='stylesheet' href='css/custombs4.min.css' /> -->
<link rel='stylesheet' href='css/custombs4.css' />
<link rel='stylesheet' href='css/style.min.css' />
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700,700i" rel="stylesheet">
<script src='libs/svg4everybody.min.js'></script>
<script>svg4everybody();</script>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="manifest.json">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#fe7c7c">
<meta name="apple-mobile-web-app-title" content="DSGN-APP">
<meta name="application-name" content="DSGN-APP">
<meta name="theme-color" content="#fe7c7c">
</head>
<body>
<header class='container header'>
<div class='row no-gutters'>
<div class='col-8 header__l1'>
<div class='face-company face-company--header position-absolute'>
<h1 class='sr-only'>You have ideas, but you do not know how to implement them, then we go to you, our experience is fixed by a lot of awards, our design studio is in the top 3 in USA.</h1>
<picture>
<source media="(min-width: 1300px)" srcset='img/logo.png 1x, img/2x/logo@2x.png 2x, img/3x/logo@3x.png 3x'/>
<source media="(min-width: 950px)" srcset='img/logo.png 1x, img/2x/logo@2x.png 2x, img/3x/logo@3x.png 3x' />
<source media="(min-width: 550px)" srcset='img/logo.png 1x, img/2x/logo@2x.png 2x, img/3x/logo@3x.png 3x' />
<img src='img/logo.png' srcset='img/logo.png 1x, img/2x/logo@2x.png 2x, img/3x/logo@3x.png 3x' alt='Design studio from California' class='face-company__logo mb-1' />
</picture>
<ul class='face-company__list list-unstyled mb-4'>
<li><a class='face-company__link' href='#00'>Associates</a></li>
<li><a class='face-company__link' href='#01'>Studio</a></li>
<li><a class='face-company__link' href='#02'>Design</a></li>
</ul>
<div class='face-company__social'>
<a class='face-company__social-link' href='https://facebook.com' target='_blank'>
<svg class='face-company__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#fb'></use>
</svg>
</a>
<a class='face-company__social-link' href='https://twitter.com' target='_blank'>
<svg class='face-company__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#tw'></use>
</svg>
</a>
<a class='face-company__social-link' href='https://linkedin.com' target='_blank'>
<svg class='face-company__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#li'></use>
</svg>
</a>
<a class='face-company__social-link' href='https://plus.google.com' target='_blank'>
<svg class='face-company__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#gp'></use>
</svg>
</a>
</div>
</div>
<img src='img/projects/l0.png' class='img img--l0 position-absolute' alt='Two wooden chairs' />
</div>
<div class='col-4 header__r1'>
<address class='address header__address'>
<p class='header__address-info'>
<span class='d-block text-uppercase'>90802 California</span>
<span class='d-block text-uppercase'>Long beach</span>
<span class='d-block text-uppercase'>PO Box 68789</span>
<span class='d-block text-uppercase'>300 East Ocean</span>
<span class='d-block text-uppercase'>Boulevard</span>
</p>
<div class='address__mail header__mail'>
<a class='text-uppercase' href='tel:+64-9-345-6758'>+64 9 345 6758</a>
<a class='text-uppercase' href='mailto:info@dsgn-studio.com '>info@dsgn-studio.com</a>
</div>
</address>
<div class='header__btn-wrapper position-absolute'>
<button class='btn header__btn-hamburger collapsed' type='button' data-toggle='collapse' data-target='#main-menu' aria-expanded='false' aria-controls='Toggle navigation'>
<span class='header__btn-icon'></span>
</button>
<div class='collapse bg-warning' id='main-menu'>
<ul class='nav'>
<li><a class='my__link' href='#001'>home</a></li>
<li><a class='my__link' href='#002'>projects</a></li>
<li><a class='my__link' href='#003'>studio</a></li>
<li><a class='my__link' href='#004'>news</a></li>
<li><a class='my__link' href='#005'>contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class='container project' >
<div class='row no-gutters'>
<div class='col-8 d-flex flex-wrap' >
<div class='col-5 d-flex project__l0'>
<ul class='project-list'>
<li class='project-list__item '>
<i id='fixjump-1'></i>
<a class='project-list__link' href='#fixjump-1'>All</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--white' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</li>
<li class='project-list__item '>
<i id='fixjump-2'></i>
<a class='project-list__link' href='#fixjump-2'>House</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--white' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</li>
<li class='project-list__item '>
<i id='fixjump-3'></i>
<a class='project-list__link' href='#fixjump-3'>Commercial</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--white' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</li>
<li class='project-list__item '>
<i id='fixjump-4'></i>
<a class='project-list__link' href='#fixjump-4'>Studio Lab</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--white' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</li>
</ul>
<h2 class='project__caption'>Projects</h2>
</div>
<div class='col-7 d-flex project__l1'>
<div class='project__item position-absolute project__item--l1'>
<h3 class='project__name'>Fondue</h3>
<div class='project__type'>
<p class='project__assistant m-0 p-0 text-uppercase'>Project Assistant: <span class='font-weight-light'>Francesco Dompieri</span></p>
<p class='project__material m-0 p-0 text-uppercase'>Material: <span class='font-weight-light'>Glass and Metal</span></p>
<p class='project__typology m-0 p-0 text-uppercase'>Typology: <span class='font-weight-light'>Suspension lamp</span></p>
<p class='project__client m-0 p-0 text-uppercase'>Client: <span class='font-weight-light'>David Design</span></p>
<p class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2017</span></p>
</div>
<div class='project__view project__view--l1 position-absolute'>
<a href='#v1' data-target='#modal-project__l1' data-toggle="modal">View Project</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--yellow' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</div>
<div class='project__like project__like--l1 position-absolute font-weight-light'>
<span class='custom333'>+333</span>
<div class='project__svg-wr'>
<svg class='sprite4 sprite4__favorite sprite4__favorite--l1' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#favorite></use>
</svg>
</div>
</div>
</div>
<img class='img img--l1 position-absolute' src='img/projects/l1.png' alt='Magical yellow light' />
</div>
<div class='col-4 d-flex project__l2'>
<div class='project__item position-absolute project__item--l2'>
<h3 class='project__name'>Louis XX</h3>
<div class='project__type'>
<div class='project__designer m-0 p-0 text-uppercase'>Designer: <span class='font-weight-light'>Philippe Starck</span></div>
<div class='project__typology m-0 p-0 text-uppercase'>Typology: <span class='font-weight-light'>Suspension lamp</span></div>
<div class='project__client m-0 p-0 text-uppercase'>Client: <span class='font-weight-light'>David Design</span></div>
<div class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2017</span></div>
</div>
<div class='project__view project__view--l2 position-absolute'>
<a href='#v1' data-target='#modal-project__l2' data-toggle="modal">View Project</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--yellow' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</div>
<div class='project__like project__like--l2 position-absolute font-weight-light'>
<span class=''>+171</span>
<div class='project__svg-wr'>
<svg class='sprite4 sprite4__favorite sprite4__favorite--l2' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#favorite></use>
</svg>
</div>
</div>
</div>
<img class='img img--l2 position-absolute' src='img/projects/l2.png' alt='Stylish office chair' />
</div>
<div class='col-8 d-flex project__l3'>
<div class='project__item position-absolute project__item--l3'>
<h3 class='project__name'>395-396 P22</h3>
<div class='project__type'>
<div class='project__designer m-0 p-0 text-uppercase'>Designer: <span class='font-weight-light'>philippe starck</span></div>
<div class='project__typology m-0 p-0 text-uppercase'>Typology: <span class='font-weight-light'>Suspension lamp</span></div>
<div class='project__client m-0 p-0 text-uppercase'>Client: <span class='font-weight-light'>David Design</span></div>
<div class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2017</span></div>
</div>
<div class='project__view project__view--l3 position-absolute'>
<a href='#v1' data-target='#modal-project__l3' data-toggle="modal">View Project</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--yellow' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</div>
<div class='project__like project__like--l3 position-absolute font-weight-light'>
<span class=''>+166</span>
<div class='project__svg-wr'>
<svg class='sprite4 sprite4__favorite sprite4__favorite--l3' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#favorite></use>
</svg>
</div>
</div>
</div>
<img class='img img--l3 position-absolute' src='img/projects/l3.png' alt='Soft armchair with stand' />
</div>
<div class='col-8 d-flex project__l4'>
<div class='project__item position-absolute project__item--l4'>
<h3 class='project__name'>Sesann</h3>
<div class='project__type'>
<div class='project__material m-0 p-0 text-uppercase'>Material: <span class='font-weight-light'>Glass and Metal</span></div>
<div class='project__typology m-0 p-0 text-uppercase'>Typology: <span class='font-weight-light'>Suspension lamp</span></div>
<div class='project__client m-0 p-0 text-uppercase'>Client: <span class='font-weight-light'>David Design</span></div>
<div class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2017</span></div>
</div>
<div class='project__view project__view--l4 position-absolute'>
<a href='#v1' data-target='#modal-project__l4' data-toggle="modal">View Project</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--yellow' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</div>
<div class='project__like project__like--l4 position-absolute font-weight-light'>
<span class=''>+183</span>
<div class='project__svg-wr'>
<svg class='sprite4 sprite4__favorite sprite4__favorite--l4' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#favorite></use>
</svg>
</div>
</div>
</div>
<img class='img img--l4 position-absolute' src='img/projects/l4.png' alt='Deep and comfortable black puffs' />
</div>
<div class='col-4 d-flex project__l5'>
<div class='project__item position-absolute project__item--l5'>
<h3 class='project__name'>Alessi</h3>
<div class='project__type'>
<div class='project__designer m-0 p-0 text-uppercase'>Designer: <span class='font-weight-light'>Piero Lissoni</span></div>
<div class='project__client m-0 p-0 text-uppercase'>Client: <span class='font-weight-light'>Alessi</span></div>
<div class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2017</span></div>
</div>
<div class='project__view project__view--l5 position-absolute'>
<a href='#v1' data-target='#modal-project__l5' data-toggle="modal">View Project</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--yellow' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</div>
<div class='project__like project__like--l5 position-absolute font-weight-light'>
<span class=''>+224</span>
<div class='project__svg-wr'>
<svg class='sprite4 sprite4__favorite sprite4__favorite--l5' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#favorite></use>
</svg>
</div>
</div>
</div>
<img class='img img--l5 position-absolute' src='img/projects/l5.png' alt='Stylish and metallic thing' />
</div>
</div>
<div class='col-4'>
<div class='col project__r1'>
<div class='project__item position-absolute project__item--r1'>
<h3 class='project__name'>Potter</h3>
<div class='project__type'>
<div class='project__title text-uppercase'>For <span class='font-weight-light'>Stelton</span></div>
<div class='project__sub-title font-weight-light'>Potter focuses on the functionality and process of preparing tea. a big sieve allows the flavor of to evenly brewed.</div>
</div>
<div class='project__view project__view--r1 position-absolute'>
<a href='#v1' data-target='#modal-project__r1' data-toggle="modal">View Project</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--yellow' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</div>
<div class='project__like project__like--r1 position-absolute font-weight-light'>
<span class=''>+199</span>
<div class='project__svg-wr'>
<svg class='sprite4 sprite4__favorite sprite4__favorite--r1' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#favorite></use>
</svg>
</div>
</div>
</div>
<img class='img img--r1 position-absolute' src='img/projects/r1.png' alt='Hi Tech black kettle' />
</div>
<div class='col project__r2'>
<div class='project__item position-absolute project__item--r2'>
<h3 class='project__name'>Tabano</h3>
<div class='project__type'>
<div class='project__designer m-0 p-0 text-uppercase'>Designer: <span class='font-weight-light'>Patricia Urquola</span></div>
<div class='project__typology m-0 p-0 text-uppercase'>Typology: <span class='font-weight-light'>Armchairs</span></div>
<div class='project__client m-0 p-0 text-uppercase'>Client: <span class='font-weight-light'>B&B ITALIA</span></div>
<div class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2017</span></div>
</div>
<div class='project__view project__view--r2 position-absolute'>
<a href='#v1' data-target='#modal-project__r2' data-toggle="modal">View Project</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--yellow' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</div>
<div class='project__like project__like--r2 position-absolute font-weight-light'>
<span class=''>+310</span>
<div class='project__svg-wr'>
<svg class='sprite4 sprite4__favorite sprite4__favorite--r2' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#favorite></use>
</svg>
</div>
</div>
</div>
<img class='img img--r2 position-absolute' src='img/projects/r2.png' alt='Executive office chair' />
</div>
<div class='col project__r3'>
<div class='project__item position-absolute project__item--r3'>
<h3 class='project__name'>Fiji</h3>
<div class='project__type'>
<div class='project__designer m-0 p-0 text-uppercase'>Designer: <span class='font-weight-light'>Cuno Frommherz</span></div>
<div class='project__typology m-0 p-0 text-uppercase'>Typology: <span class='font-weight-light'>Armchairs</span></div>
<div class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2016</span></div>
</div>
<div class='project__view project__view--r3 position-absolute'>
<a href='#v1' data-target='#modal-project__r3' data-toggle="modal">View Project</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--yellow' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</div>
<div class='project__like project__like--r3 position-absolute font-weight-light'>
<span class=''>+54</span>
<div class='project__svg-wr'>
<svg class='sprite4 sprite4__favorite sprite4__favorite--r3' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#favorite></use>
</svg>
</div>
</div>
</div>
<img class='img img--r3 position-absolute' src='img/projects/r3.png' alt='Designer yellow armchair' />
</div>
<div class='col project__r4'>
<ul class='timeline-list'>
<li class='timeline-list__item timeline-list__first'>Timeline</li>
<li class='timeline-list__item timeline-list__item--select'>
<a class='timeline-list__link'>All</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--white' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</li>
<li class='timeline-list__item'>
<a class='timeline-list__link' href='#02018'>2018</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--white invisible' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</li>
<li class='timeline-list__item'>
<a class='timeline-list__link' href='#02017'>2017</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--white invisible' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</li>
<li class='timeline-list__item'>
<a class='timeline-list__link' href='#02016'>2016</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--white invisible' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</li>
<li class='timeline-list__item'>
<a class='timeline-list__link' href='#02015'>2015</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--white invisible' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</li>
<li class='timeline-list__item'>
<a class='timeline-list__link' href='#02014'>2014</a>
<svg class='sprite4 sprite4__arrow sprite4__arrow--white invisible' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href=svg-sprites/sprite4.svg#arrow></use>
</svg>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class='container studio'>
<div class='row no-gutters mb-5'>
<div class='col-4 studio__l1'>
<h2 class='studio__caption text-uppercase'>Studio</h2>
</div>
<div class='col-8 d-flex studio__r1'>
<div class='col-5 offset-xl-1 mt-5 pt-5'>
<p class='studio__history font-weight-bold font-italic'>These men promptly escaped from a maximum security stockade to the Los Angeles underground. </p>
<p class='studio__history font-weight-bold font-italic'>Today, still wanted by the government, they survive as soldiers of fortune. If you have a problem and no one else can help, and if you can find them, maybe you can hire the A-team.</p>
<p class='studio__slogan'>Aenean ullamcorper porta nisl, ac lobortis elit commodo placerat.
Vivamus eget laoreet enim. Sed et fringilla urna, vel iaculis velit. Sed ac felis et sem mollis dictum sed id orci.</p>
<p class='studio__slogan'>It's true I hire my body out for pay, hey hey. I've gotten burned over Cheryl Tiegs, blown up for Raquel Welch.</p>
<p class='studio__slogan'>But when I end up in the hay it's only hay, hey hey. I might jump an open drawbridge, or Tarzan from a vine. 'Cause I'm the unknown stuntman that makes Eastwood look so fine.</p>
</div>
<div class='col-7 col-xl-6 mt-5 pt-5'>
<picture>
<source media="(min-width: 1300px)" srcset='img/studio/office.jpg 1x, img/2x/office@2x.jpg 2x, img/3x/office@3x.jpg 3x'/>
<source media="(min-width: 950px)" srcset='img/studio/office.jpg 1x, img/2x/office@2x.jpg 2x, img/3x/office@3x.jpg 3x' />
<source media="(min-width: 550px)" srcset='img/studio/office.jpg 1x, img/2x/office@2x.jpg 2x, img/3x/office@3x.jpg 3x' />
<img src='img/studio/office.jpg' srcset='img/studio/office.jpg 1x, img/2x/office@2x.jpg 2x, img/2x/office@3x.jpg 3x' alt='office-wood' class='studio__office mb-5' />
</picture>
<div class='studio__achivment'>
<div class='studio__awards mb-4 font-weight-bold'>Awrads</div>
<div class='studio__awards-list d-flex flex-wrap'>
<span class='studio__awards-item'>Best Web Design 2018</span>
<span class='studio__awards-item'>Site of the Day</span>
<span class='studio__awards-item'>CSS Design Awards</span>
<span class='studio__awards-item'>Golden Hammer International Advertising Festival</span>
<span class='studio__awards-item'>Best Web Design 2016</span>
<span class='studio__awards-item'>Best Web Design 2015</span>
<span class='studio__awards-item'>Best Web Design 2014</span>
<span class='studio__awards-item'>FWA</span>
</div>
</div>
</div>
</div>
</div>
<div class='row no-gutters'>
<div class='col-4 staff'>
<div class='staff__inner position-absolute'>
<h3 class='personal__caption '>Staff.</h3>
<p class='personal__info font-weight-light'>Children of the sun, see your time has just begun, searching for your ways, through adventures every day.</p>
<p class='personal__info font-weight-light'>Ah-ah-ah-ah-ah... wishing for The Cities of Gold. Ah-ah-ah-ah-ah... some day we will find The Cities of Gold.</p>
<p class='personal__info font-weight-light'>Ten years ago a crack commando unit was sent to prison by a military court for a crime they didn't commit</p>
</div>
</div>
<div class='col-8 personal'>
<div class='personal__img-wr d-flex justify-content-between'>
<picture>
<source media="(min-width: 1300px)" srcset='img/studio/staff-1.jpg 1x, img/2x/staff-1@2x.jpg 2x, img/3x/staff-1@3x.jpg 3x'/>
<source media="(min-width: 950px)" srcset='img/studio/staff-1.jpg 1x, img/2x/staff-1@2x.jpg 2x, img/3x/staff-1@3x.jpg 3x' />
<source media="(min-width: 550px)" srcset='img/studio/staff-1.jpg 1x, img/2x/staff-1@2x.jpg 2x, img/3x/staff-1@3x.jpg 3x' />
<img src='img/studio/staff-1.jpg' srcset='img/studio/staff-1.jpg 1x, img/2x/staff-1@2x.jpg 2x, img/2x/staff-1@3x.jpg 3x' alt='staff-1' class='personal__img personal__img--1' />
</picture>
<picture>
<source media="(min-width: 1300px)" srcset='img/studio/staff-2.jpg 1x, img/2x/staff-2@2x.jpg 2x, img/3x/staff-2@3x.jpg 3x'/>
<source media="(min-width: 950px)" srcset='img/studio/staff-2.jpg 1x, img/2x/staff-2@2x.jpg 2x, img/3x/staff-2@3x.jpg 3x' />
<source media="(min-width: 550px)" srcset='img/studio/staff-2.jpg 1x, img/2x/staff-2@2x.jpg 2x, img/3x/staff-2@3x.jpg 3x' />
<img src='img/studio/staff-2.jpg' srcset='img/studio/staff-2.jpg 1x, img/2x/staff-2@2x.jpg 2x, img/2x/staff-2@3x.jpg 3x' alt='staff-2' class='personal__img personal__img--2' />
</picture>
<picture>
<source media="(min-width: 1300px)" srcset='img/studio/staff-3.jpg 1x, img/2x/staff-3@2x.jpg 2x, img/3x/staff-3@3x.jpg 3x'/>
<source media="(min-width: 950px)" srcset='img/studio/staff-3.jpg 1x, img/2x/staff-3@2x.jpg 2x, img/3x/staff-3@3x.jpg 3x' />
<source media="(min-width: 550px)" srcset='img/studio/staff-3.jpg 1x, img/2x/staff-3@2x.jpg 2x, img/3x/staff-3@3x.jpg 3x' />
<img src='img/studio/staff-3.jpg' srcset='img/studio/staff-3.jpg 1x, img/2x/staff-3@2x.jpg 2x, img/2x/staff-3@3x.jpg 3x' alt='staff-3' class='personal__img personal__img--3' />
</picture>
</div>
<div class='personal__character d-flex flex-wrap'>
<div class='personal__name font-weight-bold text-uppercase'>Philippe Starck</div>
<div class='personal__name font-weight-bold text-uppercase'>Mario Bellini</div>
<div class='personal__name font-weight-bold text-uppercase'>Patricia Urquiola</div>
<div class='personal__position text-uppercase'>Designer</div>
<div class='personal__position text-uppercase'>Designer</div>
<div class='personal__position text-uppercase'>Designer</div>
</div>
<div class='personal__contact d-flex flex-wrap justify-content-between'>
<div class='personal__network d-flex'>
<a class='personal__link px-0' href='#cv1' target='_blank'><span>CV</span></a>
<a class='personal__link mr-auto'>
<svg class='sprite4 sprite4__arrow sprite4__arrow--orange' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#arrow'></use>
</svg>
</a>
<a class='personal__link' href='https://facebook.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#fb'></use>
</svg>
</a>
<a class='personal__link' href='https://twitter.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#tw'></use>
</svg>
</a>
<a class='personal__link' href='https://linkedin.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#li'></use>
</svg>
</a>
<a class='personal__link' href='https://plus.google.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#gp'></use>
</svg>
</a>
</div>
<div class='personal__network d-flex'>
<a class='personal__link px-0' href='#cv2' target='_blank'><span>CV</span></a>
<a class='personal__link mr-auto'>
<svg class='sprite4 sprite4__arrow sprite4__arrow--orange' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#arrow'></use>
</svg>
</a>
<a class='personal__link' href='https://facebook.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#fb'></use>
</svg>
</a>
<a class='personal__link' href='https://twitter.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#tw'></use>
</svg>
</a>
<a class='personal__link' href='https://linkedin.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#li'></use>
</svg>
</a>
<a class='personal__link' href='https://plus.google.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#gp'></use>
</svg>
</a>
</div>
<div class='personal__network d-flex'>
<a class='personal__link px-0' href='#cv3' target='_blank'><span>CV</span></a>
<a class='personal__link mr-auto'>
<svg class='sprite4 sprite4__arrow sprite4__arrow--orange' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#arrow'></use>
</svg>
</a>
<a class='personal__link' href='https://facebook.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#fb'></use>
</svg>
</a>
<a class='personal__link' href='https://twitter.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#tw'></use>
</svg>
</a>
<a class='personal__link' href='https://linkedin.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#li'></use>
</svg>
</a>
<a class='personal__link' href='https://plus.google.com' target='_blank'>
<svg class='studio__sprite-social' xmlns='http://www.w3.org/2000/svg' width='20' height='15'>
<use xlink:href='svg-sprites/sprite4.svg#gp'></use>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
<div class='container news'>
<div class='row no-gutters'>
<div class='col-4 news__l'>
<h2 class='news__l-caption text-uppercase'>News</h2>
</div>
<div class='col-8 news__r'>
<div class='col-12 col-xl-11 offset-xl-1 d-flex justify-content-around mt-5 pt-4'>
<article class='article'>
<h1 class='article__caption'>Mauris et dui sed justo placerat tristique.</h1>
<time datetime='2017-05-25' class='article__time d-block mb-3'>25.05.2017</time>
<picture>
<source media="(min-width: 1300px)" srcset='img/news/news-1.jpg 1x, img/2x/news-1@2x.jpg 2x, img/3x/news-1@3x.jpg 3x'/>
<source media="(min-width: 950px)" srcset='img/news/news-1.jpg 1x, img/2x/news-1@2x.jpg 2x, img/3x/news-1@3x.jpg 3x' />
<source media="(min-width: 550px)" srcset='img/news/news-1.jpg 1x, img/2x/news-1@2x.jpg 2x, img/3x/news-1@3x.jpg 3x' />
<img src='img/news/news-1.jpg' srcset='img/news/news-1.jpg 1x, img/2x/news-1@2x.jpg 2x, img/2x/news-1@3x.jpg 3x' alt='Events one' class='article__img mb-4' />
</picture>
<p class='article__paragraph'>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ex, eius quas fugit est cupiditate neque quibusdam, voluptatum dolores asperiores, necessitatibus natus dolore. Quaerat sunt in facilis iure id nesciunt.</p>
<div class='article__read-more'><a href='#0r1' target='_blank' title='Open NEW Tab'>Read More</a></div>
</article>
<article class='article'>
<h1 class='article__caption'>Proin vehicula nibh massa.</h1>
<time datetime='2017-04-14' class='article__time d-block mb-3'>14.04.2017</time>
<picture>
<source media="(min-width: 1300px)" srcset='img/news/news-2.jpg 1x, img/2x/news-2@2x.jpg 2x, img/3x/news-2@3x.jpg 3x'/>
<source media="(min-width: 950px)" srcset='img/news/news-2.jpg 1x, img/2x/news-2@2x.jpg 2x, img/3x/news-2@3x.jpg 3x' />
<source media="(min-width: 550px)" srcset='img/news/news-2.jpg 1x, img/2x/news-2@2x.jpg 2x, img/3x/news-2@3x.jpg 3x' />
<img src='img/news/news-2.jpg' srcset='img/news/news-2.jpg 1x, img/2x/news-2@2x.jpg 2x, img/2x/news-2@3x.jpg 3x' alt='Events two' class='article__img mb-4' />
</picture>
<p class='article__paragraph'>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ex, eius quas fugit est cupiditate neque quibusdam, voluptatum dolores asperiores, necessitatibus natus dolore. Quaerat sunt in facilis iure id nesciunt.</p>
<div class='article__read-more'><a href='#0r1' target='_blank' title='Open NEW Tab'>Read More</a></div>
</article>
</div>
</div>
</div>
</div>
<footer class='container footer'>
<div class='row no-gutters'>
<div class='col-6'>
<picture>
<source media="(min-width: 1300px)" srcset='img/map/stat-map.jpg 1x, img/2x/stat-map@2x.jpg 2x, img/3x/stat-map@3x.jpg 3x'/>
<source media="(min-width: 950px)" srcset='img/map/stat-map.jpg 1x, img/2x/stat-map@2x.jpg 2x, img/3x/stat-map@3x.jpg 3x' />
<source media="(min-width: 550px)" srcset='img/map/stat-map.jpg 1x, img/2x/stat-map@2x.jpg 2x, img/3x/stat-map@3x.jpg 3x' />
<img src='img/map/stat-map.jpg' srcset='img/map/stat-map.jpg 1x, img/2x/stat-map@2x.jpg 2x, img/2x/stat-map@3x.jpg 3x' alt='Our dislocation, Come to us on, adress Long Beach' class='footer__stat-map' />
</picture>
</div>
<div class='col-6'>
<address class='address footer__address'>
<p class='footer__address-info'>
<span class='d-block text-uppercase'>90802 California</span>
<span class='d-block text-uppercase'>Long beach</span>
<span class='d-block text-uppercase'>PO Box 68789</span>
<span class='d-block text-uppercase'>300 East Ocean</span>
<span class='d-block text-uppercase'>Boulevard</span>
</p>
<div class='address__mail footer__mail'>
<a class='text-uppercase' href='tel:+64-9-345-6758'>+64 9 345 6758</a>
<a class='text-uppercase' href='mailto:info@dsgn-studio.com '>info@dsgn-studio.com</a>
</div>
</address>
<div class='face-company face-company--footer position-absolute'>
<picture>
<source media="(min-width: 1300px)" srcset='img/logo.png 1x, img/2x/logo@2x.png 2x, img/3x/logo@3x.png 3x'/>
<source media="(min-width: 950px)" srcset='img/logo.png 1x, img/2x/logo@2x.png 2x, img/3x/logo@3x.png 3x' />
<source media="(min-width: 550px)" srcset='img/logo.png 1x, img/2x/logo@2x.png 2x, img/3x/logo@3x.png 3x' />
<img src='img/logo.png' srcset='img/logo.png 1x, img/2x/logo@2x.png 2x, img/3x/logo@3x.png 3x' alt='Design studio from California' class='face-company__logo mb-1' />
</picture>
<ul class='face-company__list list-unstyled mb-4'>
<li><a class='face-company__link' href='#00'>Associates</a></li>
<li><a class='face-company__link' href='#01'>Studio</a></li>
<li><a class='face-company__link' href='#02'>Design</a></li>
</ul>
<div class='face-company__social'>
<a class='face-company__social-link' href='https://facebook.com' target='_blank'>
<svg class='face-company__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#fb'></use>
</svg>
</a>
<a class='face-company__social-link' href='https://twitter.com' target='_blank'>
<svg class='face-company__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#tw'></use>
</svg>
</a>
<a class='face-company__social-link' href='https://linkedin.com' target='_blank'>
<svg class='face-company__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#li'></use>
</svg>
</a>
<a class='face-company__social-link' href='https://plus.google.com' target='_blank'>
<svg class='face-company__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#gp'></use>
</svg>
</a>
</div>
</div>
<span class='footer__copyright position-absolute'>© 2018 DSGN. All rights reserved - Designed by anonymous genius</span>
</div>
</div>
</footer>
<custom-modall>
<!-- Modal LEFT1-->
<div class="modal fade bg-white" id="modal-project__l1" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog w-75 mw-100" role="document">
<div class="modal-content">
<button type="button" class="myclose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<div class='project__item'>
<h2 class='project__name'>Fondue</h2>
<div class='project__type'>
<p class='project__assistant m-0 p-0 text-uppercase'>Project Assistant: <span class='font-weight-light'>Francesco Dompieri</span></p>
<p class='project__material m-0 p-0 text-uppercase'>Material: <span class='font-weight-light'>Glass and Metal</span></p>
<p class='project__typology m-0 p-0 text-uppercase'>Typology: <span class='font-weight-light'>Suspension lamp</span></p>
<p class='project__client m-0 p-0 text-uppercase'>Client: <span class='font-weight-light'>David Design</span></p>
<p class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2017</span></p>
</div>
<div class='project__text'>
<p>Somehow, I doubt that. You have a good heart, Dexter. Oh I beg to differ, I think we have a lot to discuss. After all, you are a client. I like seafood. He taught me a code. To survive. Pretend. You pretend the feelings are there, for the world, for the people around you. Who knows? Maybe one day they will be.</p>
<p>Rorschach would say you have a hard time relating to others. I'm really more an apartment person. Pretend. You pretend the feelings are there, for the world, for the people around you. Who knows? Maybe one day they will be. Makes me a … scientist. Only you could make those words cute. Cops, another community I'm not part of. Tell him time is of the essence. I've lived in darkness a long time. Over the years my eyes adjusted until the dark became my world and I could see.</p>
</div>
<div class='modal-social'>
<a class='modal-social__link' href='https://facebook.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#fb'></use>
</svg>
</a>
<a class='modal-social__link' href='https://twitter.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#tw'></use>
</svg>
</a>
<a class='modal-social__link' href='https://linkedin.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#li'></use>
</svg>
</a>
<a class='modal-social__link' href='https://plus.google.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#gp'></use>
</svg>
</a>
</div>
<div id="modal-project__slider--l1" class="carousel slide" data-ride="carousel">
<a class="carousel-control-prev" href="#modal-project__slider--l1" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#modal-project__slider--l1" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="img/unsplash/1.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/2.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/3.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/4.jpg" alt="Fourth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/5.jpg" alt="Fifth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/6.jpg" alt="Sixth slide">
</div>
</div>
</div>
</div> <!-- end project-item -->
<img class='img img--l1 position-absolute' src='img/projects/l1.png' alt='Magical yellow light' />
</div> <!-- end MODAL-CONTENT -->
</div> <!-- end MODAL-DIALOG -->
</div> <!-- end MODAL -->
<!-- Modal LEFT2-->
<div class="modal fade bg-white" id="modal-project__l2" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog w-75 mw-100" role="document">
<div class="modal-content">
<button type="button" class="myclose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<div class='project__item'>
<h2 class='project__name'>Louis XX</h2>
<div class='project__type'>
<div class='project__designer m-0 p-0 text-uppercase'>Designer: <span class='font-weight-light'>Philippe Starck</span></div>
<div class='project__typology m-0 p-0 text-uppercase'>Typology: <span class='font-weight-light'>Suspension lamp</span></div>
<div class='project__client m-0 p-0 text-uppercase'>Client: <span class='font-weight-light'>David Design</span></div>
<div class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2017</span></div>
</div>
<div class='project__text'>
<p>You look…perfect. I've lived in darkness a long time. Over the years my eyes adjusted until the dark became my world and I could see. I'm going to tell you something that I've never told anyone before. I love Halloween. The one time of year when everyone wears a mask … not just me. Tell him time is of the essence. Hello, Dexter Morgan. I love Halloween. The one time of year when everyone wears a mask … not just me</p>
<p>Pretend. You pretend the feelings are there, for the world, for the people around you. Who knows? Maybe one day they will be. I love Halloween. The one time of year when everyone wears a mask … not just me. You're a killer. I catch killers. Makes me a … scientist. I'm partial to air conditioning. I love Halloween. The one time of year when everyone wears a mask … not just me. I'm really more an apartment person.</p>
</div>
<div class='modal-social'>
<a class='modal-social__link' href='https://facebook.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#fb'></use>
</svg>
</a>
<a class='modal-social__link' href='https://twitter.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#tw'></use>
</svg>
</a>
<a class='modal-social__link' href='https://linkedin.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#li'></use>
</svg>
</a>
<a class='modal-social__link' href='https://plus.google.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#gp'></use>
</svg>
</a>
</div>
<div id="modal-project__slider--l2" class="carousel slide" data-ride="carousel">
<a class="carousel-control-prev" href="#modal-project__slider--l2" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#modal-project__slider--l2" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="img/unsplash/1.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/2.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/3.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/4.jpg" alt="Fourth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/5.jpg" alt="Fifth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/6.jpg" alt="Sixth slide">
</div>
</div>
</div>
</div> <!-- end project-item -->
<img class='img img--l2 position-absolute' src='img/projects/l2.png' alt='Stylish office chair' />
</div> <!-- end MODAL-CONTENT -->
</div> <!-- end MODAL-DIALOG -->
</div> <!-- end MODAL -->
<!-- Modal LEFT3-->
<div class="modal fade bg-white" id="modal-project__l3" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog w-75 mw-100" role="document">
<div class="modal-content">
<button type="button" class="myclose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<div class='project__item'>
<h2 class='project__name'>395-396 P22</h2>
<div class='project__type'>
<div class='project__designer m-0 p-0 text-uppercase'>Designer: <span class='font-weight-light'>philippe starck</span></div>
<div class='project__typology m-0 p-0 text-uppercase'>Typology: <span class='font-weight-light'>Suspension lamp</span></div>
<div class='project__client m-0 p-0 text-uppercase'>Client: <span class='font-weight-light'>David Design</span></div>
<div class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2017</span></div>
</div>
<div class='project__text'>
<p>Only you could make those words cute. I'm generally confused most of the time. Finding a needle in a haystack isn't hard when every straw is computerized. I am not a killer. I'm really more an apartment person.</p>
<p>I am not a killer. I feel like a jigsaw puzzle missing a piece. And I'm not even sure what the picture should be. I'm doing mental jumping jacks. You all right, Dexter? You all right, Dexter? Somehow, I doubt that. You have a good heart, Dexter. Tell him time is of the essence. Rorschach would say you have a hard time relating to others. I'm going to tell you something that I've never told anyone before.</p>
</div>
<div class='modal-social'>
<a class='modal-social__link' href='https://facebook.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#fb'></use>
</svg>
</a>
<a class='modal-social__link' href='https://twitter.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#tw'></use>
</svg>
</a>
<a class='modal-social__link' href='https://linkedin.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#li'></use>
</svg>
</a>
<a class='modal-social__link' href='https://plus.google.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#gp'></use>
</svg>
</a>
</div>
<div id="modal-project__slider--l3" class="carousel slide" data-ride="carousel">
<a class="carousel-control-prev" href="#modal-project__slider--l3" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#modal-project__slider--l3" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="img/unsplash/1.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/2.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/3.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/4.jpg" alt="Fourth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/5.jpg" alt="Fifth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/unsplash/6.jpg" alt="Sixth slide">
</div>
</div>
</div>
</div> <!-- end project-item -->
<img class='img img--l3 position-absolute' src='img/projects/l3.png' alt='Soft armchair with stand' />
</div> <!-- end MODAL-CONTENT -->
</div> <!-- end MODAL-DIALOG -->
</div> <!-- end MODAL -->
<!-- Modal LEFT4-->
<div class="modal fade bg-white" id="modal-project__l4" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog w-75 mw-100" role="document">
<div class="modal-content">
<button type="button" class="myclose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<div class='project__item'>
<h2 class='project__name'>Sesann</h2>
<div class='project__type'>
<div class='project__material m-0 p-0 text-uppercase'>Material: <span class='font-weight-light'>Glass and Metal</span></div>
<div class='project__typology m-0 p-0 text-uppercase'>Typology: <span class='font-weight-light'>Suspension lamp</span></div>
<div class='project__client m-0 p-0 text-uppercase'>Client: <span class='font-weight-light'>David Design</span></div>
<div class='project__year m-0 p-0 text-uppercase'>Year: <span class='font-weight-light'>2017</span></div>
</div>
<div class='project__text'>
<p>The way I see it, every life is a pile of good things and bad things.…hey.…the good things don't always soften the bad things; but vice-versa the bad things don't necessarily spoil the good things and make them unimportant. Aw, you're all Mr. Grumpy Face today.</p>
<p>Saving the world with meals on wheels. You know when grown-ups tell you 'everything's going to be fine' and you think they're probably lying to make you feel better? Father Christmas. Santa Claus. Or as I've always known him: Jeff. Did I mention we have comfy chairs?</p>
</div>
<div class='modal-social'>
<a class='modal-social__link' href='https://facebook.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#fb'></use>
</svg>
</a>
<a class='modal-social__link' href='https://twitter.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#tw'></use>
</svg>
</a>
<a class='modal-social__link' href='https://linkedin.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#li'></use>
</svg>
</a>
<a class='modal-social__link' href='https://plus.google.com' target='_blank'>
<svg class='modal-social__svg' xmlns='http://www.w3.org/2000/svg' width='25' height='22'>
<use xlink:href='svg-sprites/sprite4.svg#gp'></use>
</svg>
</a>
</div>
<div id="modal-project__slider--l4" class="carousel slide" data-ride="carousel">
<a class="carousel-control-prev" href="#modal-project__slider--l4" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#modal-project__slider--l4" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
<div class="carousel-inner">