-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1326 lines (1152 loc) · 60.1 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>
<!--[if IE 8]>
<html lang="en-GB" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html lang="en-GB" class="no-js"> <!--<![endif]-->
<head>
<!-- Meta Tags -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<!-- Title -->
<title>Museum of the Future Government Summit </title>
<link rel="stylesheet" href="wp-content/plugins/sitepress-multilingual-cms/res/css/language-selector.css" type="text/css" media="all" />
<!-- google fonts -->
<link rel="alternate" type="application/rss+xml" title="Museum of Future Government Services » Feed" href="feed/" />
<link rel="alternate" type="application/rss+xml" title="Museum of Future Government Services » Comments Feed" href="comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Museum of Future Government Services » Home Comments Feed" href="introduction/feed/" />
<link rel='stylesheet' id='layerslider-css' href='wp-content/plugins/LayerSlider/static/css/layerslider.css' type='text/css' media='all' />
<link rel='stylesheet' id='ls-google-fonts-css' href='http://fonts.googleapis.com/css?family=Lato:100,300,regular,700,900%7COpen+Sans:300%7CIndie+Flower:regular%7COswald:300,regular,700&subset=latin%2Clatin-ext' type='text/css' media='all' />
<link rel='stylesheet' id='scrollbar-css' href='wp-content/themes/morpheus/css/perfect-scrollbar.css' type='text/css' media='all' />
<link rel='stylesheet' id='googlefonts-css' href='//fonts.googleapis.com/css?family=Bentham%7CPinyon+Script%7CBitter%3A400%2C700%7CRaleway%3A300%2C400%2C500%2C600%7CSacramento%7CLato%3A300%2C400%2C900%7COpen+Sans%3A400%2C700%2C800%7CPacifico%7CLobster%7CRoboto%3A400%2C900%2C700%7COswald%3A400%2C700&ver=4.1.9' type='text/css' media='all' />
<link rel='stylesheet' id='foundation-css' href='wp-content/themes/morpheus/css/foundation.css' type='text/css' media='all' />
<link rel='stylesheet' id='magicpopup-css' href='wp-content/themes/morpheus/css/magnific-popup.css' type='text/css' media='all' />
<link rel='stylesheet' id='icons-css' href='wp-content/themes/morpheus/css/font-awesome.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='superfish-css' href='wp-content/themes/morpheus/css/superfish.css' type='text/css' media='all' />
<link rel='stylesheet' id='flexslider-css' href='wp-content/themes/morpheus/css/flexslider.css' type='text/css' media='all' />
<link rel='stylesheet' id='plugin-css' href='wp-content/themes/morpheus/css/plugin.css' type='text/css' media='all' />
<link rel='stylesheet' id='public-css' href='wp-content/themes/morpheus/css/public.css' type='text/css' media='all' />
<link rel='stylesheet' id='morpheus-css' href='wp-content/themes/morpheus/style.css' type='text/css' media='all' />
<style id='morpheus-inline-css' type='text/css'>
/**** DEV TOOLS *****/
/*****************************************
*.
* general typography
*
*/
@font-face {
font-family: 'HelveticaNeueLTArabic-Roman';
src: url('assets/HelveticaNeueLTArabic-Roman.eot');
src: url('assets/HelveticaNeueLTArabic-Roman.eot?#iefix') format('embedded-opentype'),
url('assets/HelveticaNeueLTArabic-Roman.svg#HelveticaNeueLTArabic-Roman') format('svg'),
url('assets/HelveticaNeueLTArabic-Roman.woff') format('woff'),
url('assets/HelveticaNeueLTArabic-Roman.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'NittiGrotesk-Medium-v20';
src: url('assets/NittiGrotesk-Medium-v20.eot');
src: url('assets/NittiGrotesk-Medium-v20.eot?#iefix') format('embedded-opentype'),
url('assets/NittiGrotesk-Medium-v20.woff') format('woff'),
url('assets/NittiGrotesk-Medium-v20.ttf') format('truetype');
}
.en, .en *, body, body * {
font-family: "NittiGrotesk-Medium-v20", "Helvetica", sans-serif !important;
}
.fa-bars, .fa-bars * {
font-family: FontAwesome !important;
}
.ar, .ar *, body, .ar h2, h2.ar {
font-family: "HelveticaNeueLTArabic-Roman", "Helvetica", sans-serif !important;
position: relative;
top: 0.65em;
}
.rtl .entry-content p, .rtl .entry-content h2, .rtl .entry-content h3, .rtl .entry-title h2, .rtl .entry-title h3 {
font-family: "HelveticaNeueLTArabic-Roman", "Helvetica", sans-serif !important;
}
.quote {
font-size: 4.0em;
line-height: 0.9em;
display: block;
margin-bottom: 24px;
}
.long-quote {
font-size: 2.2em;
line-height: 1.25em;
display: block;
margin-bottom: 5px;
}
.secondary-quote {
font-size: 1.25em;
line-height: 1.5em;
display: block;
width: 80%;
}
.quote .iquo {
position: absolute;
left: -0.2em;
}
.attribution {
font-size: 1.0em;
display: block;
width: 70%;
}
p {
font-size: 1.25em;
}
/***************************************************
*
* general layout
*
*/
h3 {
color: #ffffff;
}
.entry-content h2, .entry-content h3, .entry-content h4, .entry-content p, .entry-content .left, .entry-content .right, .entry-title h2, .entry-title h3, .entry-title h4 {
width: 300px; /* the grid's column width */
}
@media all and (min-width: 500px) {
.entry-content h2, .entry-content h3, .entry-content h4, .entry-content p, .entry-content .left, .entry-content .right, .entry-title h2, .entry-title h3, .entry-title h4 {
width: 380px; /* the grid's column width */
}
}
.rtl .section-content .entry-title h2, .rtl .section-content .entry-title h3 {
text-align: right;
}
.entry-content .left {
float: right;
clear: top;
}
.entry-content .right {
float: right;
clear: top;
}
.entry-content .centered {
text-align: center;
}
.entry-content .right.centered {
}
.entry-title {
margin-top: 0px;
padding-bottom: 0px;
}
a.launch, a.launch:visited, a.launch:link {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
color: white;
border: 1px solid #CECECE;
text-transform: uppercase;
padding: 20px;
padding-bottom: 23px;
font-size: 1.5em;
font-weight: bold;
}
a.launch:hover {
border: 4px solid #ffffff;
}
a.launch:active {
color: black;
background-color: white;
}
a.launch .icon {
position: absolute;
}
a.launch .icon img {
position: relative;
top: -250px;
left: -80px;
}
.section-content {
padding-top: 60px;
padding-bottom: 80px;
}
.section-content h2 {
font-size: 3.0em;
}
@media all and (min-width: 500px) {
.section-content h2 {
font-size: 4.0em !important;
}
}
.section-content h2 {
text-align: left;
color: #ffffff !important;
/* background: rgba(0,0,0,0.5); */
line-height: 0.97em;
font-weight: 300;
/* padding-right: 15px;
padding-left: 15px; */
padding-top: 0px;
padding-bottom: 20px;
border-bottom: 1px solid #ffffff;
margin-top: 0px;
margin-bottom: 0px;
/* position: relative;
left: -15px; */
}
.ar .section-content h2 {
text-align: right !important;
}
/* .exhibit-block {
width: 300px;
} */
/***************************************************
*
* menus
*
*/
.sf-menu .menu-item {
/*border: white 1px solid;*/
float: left;
}
.rtl .sf-menu li.menu-item {
float: right !important;
}
.menu-item a {
/*padding-top: 0.2em !important;
padding-bottom: 0.2em !important;*/
}
ul.sf-menu li.menu-item-object-page:last-child {
margin-right: 200px !important;
/*border: 1px solid red;*/
}
.site-header.static {
background-color: white;
top: 0px;
padding-top: 80px;
padding-bottom: 20px;
}
header.site-header.mobile {
min-height: 50px;
}
.mainmenu {
top: 5px !important;
}
/***************************************************
*
* introduction
*
*/
.chevron {
/*border: 1px solid white;*/
position: relative;
top: 0px;
color: #DA7F7F;
}
#introduction-body-2-3 * {
color: #333333 !important;
font-family: "NittiGrotesk-Medium-v20", "Helvetica", sans-serif !important;
}
.rtl #introduction-body-2-3 * {
font-family: "HelveticaNeueLTArabic-Roman", "Helvetica", sans-serif !important;
}
.intro-block {
float: right;
font-family: "NittiGrotesk-Medium-v20", "Helvetica", sans-serif !important;
}
.intro-body {
text-align: center;
font-family: "NittiGrotesk-Medium-v20", "Helvetica", sans-serif !important;
}
/* set the top line of body blocks */
.intro-body {
padding-top: 60px;
}
.intro-body h1, h2 {
font-size: 2.5em;
line-height: 1.1em;
padding-bottom: 47px;
font-weight: lighter;
margin-bottom: 0px;
}
.intro-body h1.ar {
/* because the Arabic title is visually smaller */
/* font-size: 56px;
font-weight: normal; */
position: relative;
top: 0.25em;
}
.intro-body .body-block {
width: 300px;
margin-top: 150px;
margin-left: 0px;
margin-right: 0px;
}
.intro-body .body-block.en {
float: left;
}
.intro-body .body-block.ar {
position: relative;
top: -1em;
direction: rtl;
float: right;
clear: top;
}
#introduction .intro-body p {
width: 100%;
}
@media all and (min-width: 1680px) {
.chevron {
/*border: 1px solid white;*/
position: relative;
top: 60px;
color: #DA7F7F;
}
}
@media all and (min-width: 500px) {
#sponsor-lockup {
/*border: 1px white solid;*/
margin-left: -10px;
width: 290px;
height: 56px;
}
}
@media all and (max-width: 499px) {
#sponsor-lockup {
/*border: 1px white solid;*/
margin-left: 0px;
width: 200px;
height: 47px;
}
.intro-body {
padding-top: 0px;
}
.intro-body h1, h2 {
font-size: 2em;
line-height: 1em;
padding-bottom: 10px;
font-weight: lighter;
margin-bottom: 0px;
}
}
#introduction .section-content {
margin-top: 100px;
}
.scroll-chevron {
text-align: center;
padding: 10px;
height: 30px;
width: 200px;
/* position */
position: absolute;
bottom: 100px;
left: 50%;
-webkit-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
-o-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.scroll-chevron i {
position: relative;
z-index: 99;
font-style: normal;
text-transform: uppercase;
display: block;
text-align:center;
color: white;
top: 50%;
font-size: 1em;
}
.scroll-chevron:before {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 51%;
background: rgb(42,190,216);
-webkit-transform: skew(0deg, 20deg);
-moz-transform: skew(0deg, 20deg);
-ms-transform: skew(0deg, 20deg);
-o-transform: skew(0deg, 20deg);
transform: skew(0deg, 20deg);
}
.scroll-chevron:after {
content: '';
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 50%;
background: rgb(42,190,216);
-webkit-transform: skew(0deg, -20deg);
-moz-transform: skew(0deg, -20deg);
-ms-transform: skew(0deg, -20deg);
-o-transform: skew(0deg, -20deg);
transform: skew(0deg, -20deg);
}
/**************************************************
*
* Towards Tomorrow
*
*/
#towards-tomorrow h2, #towards-tomorrow h2.title {
float: right !important;
/* position: relative;
left: 30px; */
}
/****************************************************
*
* Augmentation Spa
*
*/
#augmentation-spa-title-question {
height: 800px;
width: 100%;
line-height: 800px;
text-align: center;
border: 0px white solid;
font-size: 3.0em;
}
/****************************************************
*
* Caring Machines
*
*/
#caring-machines-title-question {
height: 800px;
width: 100%;
line-height: 800px;
text-align: center;
border: 0px white solid;
font-size: 3.0em;
}
/****************************************************
*
* The UAE Hypermind
*
*/
#the-uae-hypermind-title-question {
height: 800px;
width: 100%;
line-height: 800px;
text-align: center;
border: 0px white solid;
font-size: 3.0em;
}
/****************************************************
*
* Eye Share
*
*/
#eye-share *, #eye-share h3 {
color: #fff;
}
#eye-share .exhibit-block {
float: right;
}
/****************************************************
*
* Mood View
*
*/
#mood-view *, #mood-view h3 {
color: #fff;
}
#mood-view .exhibit-block {
float: right;
}
/****************************************************
*
* New Knees
*
*/
.ar #new-knees .exhibit-block {
float: left;
}
/****************************************************
*
* PharmaCafe
*
*/
#pharma-cafe-3 h2 {
float: right;
}
#pharma-cafe-3 .exhibit-block {
float: right;
}
/***************************************************
*
* Applied Robotics
*
*/
#applied-robotics h2 {
float: right;
/* position: relative;
left: 30px; */
}
#applied-robotics .exhibit-block {
}
/***************************************************
*
* About
*
*/
#about h2 {
display: none;
padding: 0px;
background: none;
border: none;
}
#about img.partner {
position: relative;
top: -29px;
left: -6px;
}
.ar #about img.partner {
top: -29px;
left: 6px;
}
</style>
<script type='text/javascript' src='wp-content/plugins/LayerSlider/static/js/greensock.js'></script>
<script type='text/javascript' src='wp-includes/js/jquery/jquery.js'></script>
<script type='text/javascript' src='wp-includes/js/jquery/jquery-migrate.min.js'></script>
<script type='text/javascript' src='wp-content/plugins/LayerSlider/static/js/layerslider.kreaturamedia.jquery.js'></script>
<script type='text/javascript' src='wp-content/plugins/LayerSlider/static/js/layerslider.transitions.js'></script>
<script type='text/javascript' src='wp-content/themes/morpheus/js/vendor/custom.modernizr.js'></script>
<script type='text/javascript' src='wp-content/themes/morpheus/js/foundation.min.js'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.1.9" />
<link rel='shortlink' href='' />
<meta name="generator" content="WPML ver:3.1.8.4 stt:1,5;0" />
<link rel="alternate" hreflang="en-GB" href="#" />
<link rel="alternate" hreflang="ar" href="lang=ar" />
<!-- Theme Custom Styling -->
<style type="text/css" id="theme-custom">
body {
color: #ffffff;
letter-spacing: 0em;
}
h1 {
color: #ffffff;
}
h2 {
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}
.sf-menu a {
}
.coll-single .navigation-container .arrow:hover > div.info > label,
.coll-single .navigation-container .arrow:hover > div.info > .title-text
{
color: #7ee08e;
}
.coll-button.coll-accent-color:hover,
.coll-single.lightbox,
.comment-reply-link:hover,
.coll-single .navigation-container .arrow:hover .fa,
.coll-single .title-wrapper .icons .link:hover,
.coll-post-info .categories a:hover
{
border-color: #7ee08e;
}
.coll-single .navigation-container .arrow:hover .fa,
.coll-button.coll-accent-color:hover,
.comment-reply-link:hover,
.coll-single .title-wrapper .icons .link:hover,
.coll-shortcode-portfolio .items .hentry .wrapper .under
{
background-color: #7ee08e;
}
</style>
<!-- Other Custom Styling -->
<style type="text/css" id="other-custom">
.coll-site-preloader .spinner {
background-color: #000000;
}
.coll-site-preloader {
background-color: #FFFFFF;
}
.site-header {
height: 30px;
}
.site-header .background {
background-color: #000;
background-repeat: repeat;
background-position: left top;
/*background-image: url(wp-content/uploads/2016/01/white.png);*/
}
.site-header.skrollable {
border-bottom-color: #ffffff;
}
.site-header .logo {
top: 20px;
right:20px;
}
.site-header .mainmenu {
top: 20px;
right:0px;
}
.sf-menu a, .sf-menu a:visited {
/*color: #36bdb5; */
color: #DA7F7F;
}
.sf-menu a:hover, .sf-menu .current-menu-item > a {
/*color: #26827c; */
color: #A55B5B;
}
.site-header.mobile #coll-menu-icon {
/*color: #36bdb5;*/
color: #DA7F7F;
}
.site-header.mobile .sf-menu li {
border-color: #ffffff;
}
.site-header.mobile .sf-menu ul > li > a:before {
color: #ffffff;
}
.site-header.mobile .sf-menu .mobnav-subarrow {
color: #ffffff;
}
.site-footer .background {
background-color: #333333;
}
@media only screen and (min-width : 1025px) {
.coll-footer-wrapper {
padding: 0px 20px;
}
}
@media only screen (max-width: 330px) {
.wrap-video{
width: 320px ;
height: 480px ;
border: 3px white solid;
background-repeat: no-repeat;
background-size: cover;
background-image: url("bd.jpg");
margin-top: -40px;
}
}
.site-footer .bottom {
border-top-color: #333333;
}
</style>
<link rel="shortcut icon" href="wp-content/uploads/2016/01/unnamed.png"/>
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
</head>
<body class="home page page-id-30 page-template page-template-template-sectioned page-template-template-sectioned-php coll-custom-structure">
<header class="site-header ">
<div class="background"></div>
<div class="">
<div class="logo coll-right">
<a class="no-border" href="">
<img class="logo-img" src="wp-content/uploads/2016/01/transparent.png" title="" alt="Museum of the Future Government Summit">
</a>
</div>
<nav class="mainmenu coll-center">
<ul id="menu-main-nav-en" class="sf-menu"><li id="menu-item-417" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-417"><a class="js-coll-local-link" href="#introduction">Introduction</a></li>
<li id="menu-item-420" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-420"><a class="js-coll-local-link" href="#towards-tomorrow">Exhibits</a>
<ul class="sub-menu">
<li id="menu-item-367" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-367"><a class="js-coll-local-link" href="#towards-tomorrow">Towards Tomorrow</a></li>
<li id="menu-item-368" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-368"><a class="js-coll-local-link" href="#augmentation-spa">Augmentation Spa</a></li>
<li id="menu-item-400" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-400"><a class="js-coll-local-link" href="#caring-machines">Caring Machines</a></li>
<li id="menu-item-343" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-343"><a class="js-coll-local-link" href="#the-uae-hypermind">The UAE Hypermind</a></li>
<!--
<li id="menu-item-352" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-352"><a class="js-coll-local-link" href="#pharma-cafe-3">PharmaCafé</a></li>
<li id="menu-item-370" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-370"><a class="js-coll-local-link" href="#learning-lab">Learning Lab</a></li>
<li id="menu-item-405" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-405"><a class="js-coll-local-link" href="#applied-robotics">Applied Robotics</a></li>
-->
</ul>
</li>
<li id="menu-item-83" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83"><a class="js-coll-local-link" title="Contact" href="#about">About</a></li>
<li id="menu-item-458" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-458"><a class="no-border" href="http://museum.governmentsummit.org/2015/">2015 Museum</a></li>
<li class="menu-item menu-item-language menu-item-language-current"><a href="#" onclick="return false">EN</a></li>
<!-- <li class="menu-item menu-item-language menu-item-language-current"><a href="index-ar.html">عربي</a></li> -->
</ul>
</nav>
</div>
</header>
<header class="site-header mobile">
<div class="background"></div>
<div class="row">
<div class="logo">
<a class="no-border" href="">
<img class="logo-img" src="wp-content/uploads/2016/01/transparent.png" title="" alt="Museum of the Future Government Summit">
</a>
</div>
<a id="coll-menu-icon" class="no-border" href=""><i class="fa fa-bars"></i></a>
<nav class="mainmenu">
<ul id="menu-main-nav-en-1" class="sf-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-417"><a class="js-coll-local-link" href="#introduction">Introduction</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-420"><a class="js-coll-local-link" href="#towards-tomorrow">Exhibits</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-367"><a class="js-coll-local-link" href="#towards-tomorrow">Towards Tomorrow</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-368"><a class="js-coll-local-link" href="#augmentation-spa">Augmentation Spa</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-400"><a class="js-coll-local-link" href="#caring-machines">Caring Machines</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-343"><a class="js-coll-local-link" href="#the-uae-hypermind">The UAE Hypermind</a></li>
<!--
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-352"><a class="js-coll-local-link" href="#pharma-cafe-3">PharmaCafé</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-370"><a class="js-coll-local-link" href="#learning-lab">Learning Lab</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-405"><a class="js-coll-local-link" href="#applied-robotics">Applied Robotics</a></li>
-->
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83"><a class="js-coll-local-link" title="Contact" href="#about">About</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-458"><a class="no-border" href="http://museum.governmentsummit.org/2015/">2015 Museum</a></li>
<li class="menu-item menu-item-language menu-item-language-current"><a href="#" onclick="return false">EN</a></li>
<!-- <li class="menu-item menu-item-language menu-item-language-current"><a href="lang=ar">عربي</a></li></ul> -->
</nav>
</div>
</header>
<div id="skrollr-body" role="main" class="wrapper common">
<section id="introduction" class="post-7 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min">
<a name="introduction"></a>
<div class="coll-section-background js-coll-parallax" style="background-color: #636363" >
<div class="coll-bg-video wrap-video">
<iframe src="static/video/embed.html" class="intro-vid"></iframe>
</div>
<div class="coll-bg-video-overlay"></div>
<div class="overlay" style="background: #000; opacity:0.8;" ></div>
</div>
<div class="section-content row ">
<div class="columns entry-title coll-hide-title" >
<h2 class="title" style="color: #fff">00 Introduction Title</h2>
<h4 class="subtitle" style="color: #fff"></h4>
</div>
<div class="entry-content columns">
<div class="intro-body">
<h1 class="ar">متحف الخدمات<br />الحكومية المستقبلية</h1>
<h1 class="en">Museum of the Future<br />Government Summit</h1>
<p><img id="sponsor-lockup" src="wp-content/uploads/2016/01/du_logo_microsite_sm.png" alt="In partnership with Du" /></p>
<div class="chevron">Scroll Down<br /><img style="height: 20px" src="wp-content/uploads/2016/01/arrow-01.png" alt="V" /></div>
</div>
</div>
</div>
</section>
<section id="introduction-body-1-3" class="post-233 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min"><a name="introduction-body-1-3"></a><div class="coll-section-background js-coll-parallax" style="background-color: #fff" ><img class="coll-bg-image js-coll-lazy"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII="
width="1280"
height="853"
data-coll-ar="1.5005861664713"
data-coll-src="wp-content/uploads/2016/01/GS16_slides/0_introduction.jpg"
alt="bg image" /><div class="overlay" style="background-color: #000;
opacity:.4" ></div></div><div class="section-content row "><div class="columns entry-title coll-hide-title" ><h2 class="title" style="color: #fff">01_A Introduction Body 1</h2><h4 class="subtitle" style="color: #fff"></h4></div><div class="entry-content columns"><div class="intro-block">
<p class="long-quote">“The future belongs to those who can imagine it, design it, and execute it…<br />
It isn’t something you await, but rather create”</p>
<p class="attribution">His Highness Sheikh Mohammed bin Rashid Al Maktoum</p>
</div>
</div></div></section><section id="introduction-body-2-3" class="post-239 coll-page-section type-coll-page-section status-publish hentry page-section "><a name="introduction-body-2-3"></a><div class="coll-section-background js-coll-parallax" style="background-color: #ffffff" ><div class="overlay" style="" ></div></div><div class="section-content row "><div class="columns entry-title coll-hide-title" ><h2 class="title" style="color: #fff">01_B Introduction Body 2</h2><h4 class="subtitle" style="color: #fff"></h4></div><div class="entry-content columns"><div class="left">
<span class="quote"><span class="iquo">“</span>Innovate or stagnate”</span><br />
<span class="attribution">His Highness Sheikh Mohammed bin Rashid Al Maktoum </span>
</div>
<div class="intro-block">
<p>
The Museum of Future Government Services is a collaboration between the UAE government and the world’s leading futurists, academics, and designers. It is meant to inspire and educate and provoke questions.
</p>
<p>
The future is uncertain, but the Museum highlights a positive vision of the future with governments and society working together to create a more hopeful world. Join us on this inspiring journey into the future.
</p>
</div>
</div></div></section>
<section id="towards-tomorrow" class="post-9 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window"><a name="towards-tomorrow"></a><div class="coll-section-background js-coll-parallax" style="background-color: #fff" ><img class="coll-bg-image js-coll-lazy"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII="
width="1280"
height="853"
data-coll-ar="1.5005861664713"
data-coll-src="wp-content/uploads/2016/01/GS16_slides/S1.jpg"
alt="bg image" /><div class="overlay" style="" ></div></div><div class="section-content row ">
<div class="columns entry-title " >
<h2 class="title" style="color: #fff">Towards Tomorrow</h2>
<h4 class="subtitle" style="color: #fff"></h4></div>
<div class="entry-content columns">
<div class="exhibit-block right">
<p>Real objects from today that show how tomorrow might be</p>
</div>
</div></div></section>
<section id="towards-tomorrow-img-1" class="post-667 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min"><a name="towards-tomorrow-img-1"></a><div class="coll-section-background js-coll-parallax" style="background-color: #fff" ><img class="coll-bg-image js-coll-lazy"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII="
width="1280"
height="853"
data-coll-ar="1.5005861664713"
data-coll-src="wp-content/uploads/2016/01/GS16_slides/S2.jpg"
alt="bg image" /><div class="overlay" style="" ></div></div><div class="section-content row coll-hide-content"><div class="columns entry-title coll-hide-title" ><h2 class="title" style="color: #fff">People with monolith</h2><h4 class="subtitle" style="color: #fff"></h4></div><div class="entry-content columns"></div></div></section>
<section id="towards-tomorrow-img-2" class="post-669 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min"><a name="towards-tomorrow-img-2"></a><div class="coll-section-background js-coll-parallax" style="background-color: #fff" ><img class="coll-bg-image js-coll-lazy"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII="
width="1280"
height="853"
data-coll-ar="1.5005861664713"
data-coll-src="wp-content/uploads/2016/01/GS16_slides/S3.jpg"
alt="bg image" /><div class="overlay" style="" ></div></div><div class="section-content row coll-hide-content"><div class="columns entry-title coll-hide-title" ><h2 class="title" style="color: #fff">People in street</h2><h4 class="subtitle" style="color: #fff"></h4></div><div class="entry-content columns"></div></div></section>
<!-- video divider -->
<section id="augmentation-spa" class="post-11 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min">
<a name="augmentation-spa"></a>
<div class="coll-section-background js-coll-parallax" style="background-color: #636363" >
<div class="coll-bg-video">
<iframe src="static/video/embed.html" class="intro-vid"></iframe>
</div>
<div class="coll-bg-video-overlay"></div>
<div class="overlay" style="background: #000; opacity:0.8;" >
<div id="augmentation-spa-title-question">Would you augment your child to give them a better life?</div>
</div>
</div>
</section>
<!-- img divier -->
<!-- <section id="augmentation-spa" class="post-11 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min">
<a name="augmentation-spa"></a>
<div class="coll-section-background js-coll-parallax" style="background-color: #fff" >
<img class="coll-bg-image js-coll-lazy"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII="
width="1280"
height="853"
data-coll-ar="1.5005861664713"
data-coll-src="wp-content/uploads/2016/01/GS16_slides/S4.jpg"
alt="bg image" />
<div class="overlay" style="background: #000; opacity:0.8;">
<div id="augmentation-spa-title-question">Would you augment your child to give them a better life?</div>
</div>
</div>
</section> -->
<section id="augmentation-spa-description" class="post-203 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min"><a name="fitzania"></a><div class="coll-section-background js-coll-parallax" style="background-color: #fff" ><img class="coll-bg-image js-coll-lazy"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII="
width="1280"
height="853"
data-coll-ar="1.5005861664713"
data-coll-src="wp-content/uploads/2016/01/GS16_slides/S4.jpg"
alt="bg image" /><div class="overlay" style="" ></div></div><div class="section-content row "><div class="columns entry-title " ><h2 class="title" style="color: #fff">Augmentation Spa</h2><h4 class="subtitle" style="color: #fff"></h4></div><div class="entry-content columns"><div class="exhibit-block">
<p>
Today, our phones are never far from our hands. Tomorrow, our phones will be -in- our hands.
<br>
Step into the Personal Augmentation Spa; a cross between a spa and an Apple store.
<br>
Choose from a range of physical, cognitive and social upgrades, and experience what the future of human augmentation may be like.
<br>
</p>
</div>
</div></div></section>
<section id="eye-share" class="post-217 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window"><a name="eye-share"></a><div class="coll-section-background js-coll-parallax" style="background-color: #fff" ><img class="coll-bg-image js-coll-lazy"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII="
width="1280"
height="853"
data-coll-ar="1.5005861664713"
data-coll-src="wp-content/uploads/2016/01/GS16_slides/S5.jpg"
alt="bg image" /><div class="overlay" style="" ></div></div><div class="section-content row "><div class="columns entry-title coll-hide-title" ><h2 class="title" style="color: #fff">03_C Eye Share</h2><h4 class="subtitle" style="color: #fff"></h4></div><div class="entry-content columns"><div class="exhibit-block">
<h3>Eye Share</h3>
<p>The social network brought to you by Du that lets you broadcast your visual and sensory feed to your friends or colleagues, or tune into the vision stream of millions of others.</p>
</div>
</div></div>
</section>
<section id="mood-view" class="post-216 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min"><a name="mood-view"></a><div class="coll-section-background js-coll-parallax" style="background-color: #fff" ><img class="coll-bg-image js-coll-lazy"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII="
width="1280"
height="853"
data-coll-ar="1.5005861664713"
data-coll-src="wp-content/uploads/2016/01/GS16_slides/S6.jpg"
alt="bg image" /><div class="overlay" style="" ></div></div><div class="section-content row "><div class="columns entry-title coll-hide-title" ><h2 class="title" style="color: #fff">03_B Gym Car</h2><h4 class="subtitle" style="color: #fff"></h4></div><div class="entry-content columns"><div class="exhibit-block">
<h3>Mood View</h3>
<p>Boosts your social intelligence by giving you real-time analysis of the emotions of those around you, and then provides provides instant feedback on what to say and how to act for maximum social impact.</p>
</div>
</div></div></section>
<section id="new-knees" class="post-215 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min"><a name="new-knees"></a><div class="coll-section-background js-coll-parallax" style="background-color: #fff" ><img class="coll-bg-image js-coll-lazy"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII="
width="1280"
height="853"
data-coll-ar="1.5005861664713"
data-coll-src="wp-content/uploads/2016/01/GS16_slides/S7.jpg"
alt="bg image" /><div class="overlay" style="" ></div></div><div class="section-content row "><div class="columns entry-title coll-hide-title" ><h2 class="title" style="color: #fff">03_D New Knees</h2><h4 class="subtitle" style="color: #fff"></h4></div><div class="entry-content columns"><div class="exhibit-block">
<h3>New Knees</h3>
<p>Reengineers your lower body skeletomuscular system to give you the ability to run at superhuman speeds, jump over 5 metres, or lift staggering weight without breaking a sweat.</p>
</div>
</div></div>
</section>
<section id="augmentation-spa-img-1" class="post-614 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min"><a name="augmentation-spa-img-1"></a><div class="coll-section-background js-coll-parallax" style="background-color: #fff" ><img class="coll-bg-image js-coll-lazy"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII="
width="1280"
height="853"
data-coll-ar="1.5005861664713"
data-coll-src="wp-content/uploads/2016/01/GS16_slides/S8.jpg"
alt="bg image" /><div class="overlay" style="" ></div></div><div class="section-content row coll-hide-content"><div class="columns entry-title coll-hide-title" ><h2 class="title" style="color: #fff">New Knees OTS</h2><h4 class="subtitle" style="color: #fff"></h4></div><div class="entry-content columns"><p>New Knees over the shoulder</p>
</div></div></section>
<!-- video divider -->
<section id="caring-machines" class="post-11 coll-page-section type-coll-page-section status-publish hentry page-section js-coll-window-min"><a name="caring-machines"></a>
<div class="coll-section-background js-coll-parallax" style="background-color: #fff" >
<div class="coll-bg-video">
<iframe src="static/video/embed.html" class="intro-vid"></iframe>
</div>
<div class="coll-bg-video-overlay"></div>
<div class="overlay" style="background: #000; opacity:0.8;" >
<div id="caring-machines-title-question">Would you let a machine take care of you?</div>