forked from thezillion/mecmun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
executable file
·1723 lines (1536 loc) · 121 KB
/
index2.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 class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>MEC Model United Nations</title>
<meta name="description" content="A MUN conference organised by Model Engineering College, Kochi"/>
<meta name="keywords" content="mecmun, mun, model united nations, mecmun 2018, mec, mun kerala circuit"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"/>
<!-- Loading Bootstrap CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Loading Font Icons -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Include all css plugins (below), or include individual files as needed -->
<link href="assets/css/flickity.min.css" rel="stylesheet" type="text/css">
<link href="assets/css/magnific-popup.css" rel="stylesheet" type="text/css">
<!-- Main CSS -->
<link href="assets/css/dione_main.min.css" rel="stylesheet" type="text/css">
<link href="assets/css/dione_style.css" rel="stylesheet" type="text/css">
<!-- Color Skins CSS -->
<link href="assets/css/dione_color_green.css" rel="stylesheet" type="text/css">
<link href="assets/css/switch-style.css" rel="stylesheet" type="text/css">
<style>
iframe {
height: 70%;
}
@media only screen and (max-width: 1300px) {
iframe {
height: 45%;
}
</style>
</head>
<body id="page-top">
<!-- Navigation Start -->
<nav id="navigation" class="navbar navbar-fixed-top navbar-white">
<div class="container">
<div class="row">
<div class="navbar-header col-md-3">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-dione">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll font-family-alt letter-spacing-1 text-extra-large text-uppercase" href="#page-top">
<img class="logo-navbar-dark" src="assets/images/logo-text-white.png" alt=""/>
<img class="logo-navbar-white" src="assets/images/logo-text-dark.png" alt=""/>
</a>
</div>
<!-- //.navbar-header -->
<div id="navbar-dione" class="navbar-collapse collapse col-md-9 pull-right">
<ul class="nav navbar-nav font-family-alt letter-spacing-1 text-small text-uppercase">
<li><a href="#about" class="page-scroll">About</a></li>
<li><a href="#committees" class="page-scroll">Committees</a></li>
<li><a href="#team" class="page-scroll">Team</a></li>
<li><a href="#schedule" class="page-scroll">Schedule</a></li>
<li><a href="#ticket" class="page-scroll">Register</a></li>
<li><a href="#contact" class="page-scroll">Contact</a></li>
</ul>
</div>
<!-- //.navbar-collapse -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</nav>
<!-- //Navigation End -->
<!-- Section - Home Start -->
<section id="home-with-countdown" class="bg-cover bg-gray-dark-2 bg-overlay-black-6 display-table height-100 no-padding width-100">
<div class="display-table-cell vertical-align-middle">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center">
<h2 class="display-block font-family-alt font-weight-700 letter-spacing-2 text-uppercase text-white xs-title-extra-large sm-title-extra-large-3 title-extra-large-5">
MECMUN<br>
<small>Debate. Delegate. Decimate.</small>
</h2>
<p class="font-family-alt letter-spacing-1 margin-3 no-margin-bottom no-margin-rl text-gray-light xs-text-large text-extra-large text-uppercase">
A forum for change
</p>
<a href="#intro" class="page-scroll btn btn-base-color sm-btn-medium btn-large margin-4-5 no-margin-bottom no-margin-rl">22-23 Sept 2018, Kochi</a>
</div>
<!-- //.col-md-8 -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</div>
<!-- //.display-table-cell -->
</section>
<!-- //Section - Home End -->
<!-- Countdown Start -->
<div id="countdown" class="bg-white">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="countdown bg-white border border-gray-light border-round sm-no-padding-rl no-padding-rl sm-padding-5 padding-2-5 position-relative">
<div class="no-padding-tb padding-3-5">
<div class="row">
<div class="col-md-6" data-mh="mh-col-countdown">
<div class="display-table height-100 width-100">
<div class="display-table-cell vertical-align-middle sm-text-center">
<span class="display-block font-family-alt font-weight-700 letter-spacing-1 xs-text-extra-large title-medium text-uppercase">Save The Date. <!--<span class="text-decoration-underline text-base-color">Don't Miss It!</span>--></span>
<!--
<span class="display-block font-family-alt margin-1 no-margin-bottom no-margin-rl text-large text-gray-dark">Book your place right now! <span class="font-weight-700 text-black">57 seats</span> remaining.</span>
-->
</div>
<!-- //.display-table-cell -->
</div>
<!-- //.display-table -->
</div>
<!-- //.col-md-6 -->
<div class="col-md-6 sm-margin-4 sm-no-margin-bottom sm-no-margin-rl" data-mh="mh-col-countdown">
<div id="clock" data-until-date="2018/09/22" class="clock"></div>
</div>
<!-- //.col-md-6 -->
</div>
<!-- //.row -->
</div>
<!-- //.no-padding-tb -->
</div>
<!-- //.countdown -->
</div>
<!-- //.col-md-10 -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</div>
<!-- //Countdown End -->
<!-- Intro Start -->
<div id="intro" class="bg-white overflow-hidden position-relative width-100">
<div class="container-fluid no-padding">
<div class="row no-padding-rl xs-padding-6 padding-4">
<div class="col-md-12 text-center">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark-2 text-medium text-uppercase">MEC Model United Nations 2018</span>
<span class="display-block font-family-alt font-weight-700 letter-spacing-2 margin-1 no-margin-bottom text-gray-dark-2 text-uppercase xs-text-extra-large title-large">What You'll Discover at MECMUN:</span>
</div>
<!-- //.col-md-12 -->
</div>
<!-- //.row -->
<div class="row">
<!-- Features Box Style v1 Start -->
<div class="features-box col-md-4 no-padding text-center">
<div class="bg-cover bg-overlay-black-4 overflow-hidden position-relative">
<div class="height-100 position-absolute position-top position-left width-100">
<div class="display-table height-100 width-100">
<div class="display-table-cell text-center vertical-align-middle">
<span class="display-block font-family-alt letter-spacing-2 text-medium text-uppercase text-white">Committees: UNSC, DISEC, SPECPOL</span>
</div>
<!-- //.display-table-cell -->
</div>
<!-- //.display-table -->
</div>
<!-- //.height-100 -->
</div>
<!-- //.bg-cover -->
</div>
<!-- //Features Box Style v1 End -->
<!-- Features Box Style v1 Start -->
<div class="features-box col-md-4 no-padding text-center">
<div class="bg-cover bg-overlay-black-4 overflow-hidden position-relative">
<div class="height-100 position-absolute position-top position-left width-100">
<div class="display-table height-100 width-100">
<div class="display-table-cell text-center vertical-align-middle">
<span class="display-block font-family-alt letter-spacing-2 text-medium text-uppercase text-white">Enjoy The Socials</span>
</div>
<!-- //.display-table-cell -->
</div>
<!-- //.display-table -->
</div>
<!-- //.height-100 -->
</div>
<!-- //.bg-cover -->
</div>
<!-- //Features Box Style v1 End -->
<!-- Features Box Style v1 Start -->
<div class="features-box col-md-4 no-padding text-center">
<div class="bg-cover bg-overlay-black-4 overflow-hidden position-relative">
<div class="height-100 position-absolute position-top position-left width-100">
<div class="display-table height-100 width-100">
<div class="display-table-cell text-center vertical-align-middle">
<span class="display-block font-family-alt letter-spacing-2 text-medium text-uppercase text-white">Experience Next Level Debating</span>
</div>
<!-- //.display-table-cell -->
</div>
<!-- //.display-table -->
</div>
<!-- //.height-100 -->
</div>
<!-- //.bg-cover -->
</div>
<!-- //Features Box Style v1 End -->
</div>
<!-- //.row -->
<!--
<div class="row border-bottom no-padding-rl sm-padding-6 padding-2">
<div class="col-md-12 text-center">
<span class="display-inline-block font-family-alt text-medium text-gray-dark-2">Special early bird offers on the first 50 tickets sold - <span class="text-base-color">This week only</span>.</span>
</div>
</div>
-->
<!-- //.row -->
</div>
<!-- //.container-fluid -->
</div>
<!-- //Intro End -->
<!-- Section - About Start -->
<section id="about" class="bg-white-2">
<div class="container">
<div class="row no-padding-rl no-padding-top padding-8">
<div class="col-md-8 col-md-offset-2 text-center">
<h3 class="font-family-alt font-weight-700 letter-spacing-2 text-uppercase xs-title-small title-medium title-sideline-base-color">About MECMUN</h3>
<p class="font-family-alt margin-3 no-margin-bottom no-margin-rl text-gray-dark-2 text-large">What you will learn and the benefits. Lorem Ipsum is simply dummy text of<br>the printing and typesetting industry. Lorem Ipsum has.</p>
</div>
<!-- //.col-md-8 -->
</div>
<!-- //.row -->
<div class="row">
<div class="col-md-5 xs-text-center">
<p class="font-family-alt text-extra-large">Join us for three days of interactive demos, announcements, and best practices that will keep you looking ahead.</p>
<p class="margin-5-5 no-margin-bottom no-margin-rl text-large text-gray-dark-2">Attend sessions and interact with other designers and experts. Whether you're with us in NYC or tuning in from around the world, there's an Dione Conference and Event Template for everyone. This year's event is bigger than ever - with more than 20 sessions, interactive experiences and the opportunity to meet one-on-one with the leaders who are shaping the future of design.</p>
<a href="#" class="page-scroll btn btn-outline-black btn-medium margin-6-5 no-margin-bottom no-margin-rl">Download Broshure</a>
</div>
<!-- //.col-md-5 -->
<div class="col-md-6 col-md-offset-1">
<div class="row">
<div class="col-sm-6 xs-margin-10 sm-margin-5 xs-no-margin-bottom sm-no-margin-bottom xs-no-margin-rl sm-no-margin-rl xs-text-center">
<i class="fa fa-map-marker display-block text-base-color title-extra-large-2"></i>
<span class="display-block font-family-alt font-weight-700 letter-spacing-1 margin-5 no-margin-bottom no-margin-rl text-large text-uppercase">Location</span>
<p class="margin-3 no-margin-bottom no-margin-rl text-large text-gray-dark-2">
Gokulam Park<br>
Banerji Rd, Kaloor,<br>
Kochi - 682017
</p>
</div>
<!-- //.col-md-6 -->
<div class="col-sm-6 sm-margin-5 sm-no-margin-bottom sm-no-margin-rl xs-text-center">
<i class="fa fa-bullhorn display-block text-base-color title-extra-large-2"></i>
<span class="display-block font-family-alt font-weight-700 letter-spacing-1 margin-5 no-margin-bottom no-margin-rl text-large text-uppercase">Committees</span>
<p class="margin-3 no-margin-bottom no-margin-rl text-large text-gray-dark-2">
<!--<strong>3</strong> Professsional Speakers:<br>-->
UN Security Council<br>
UNGA DISEC<br>
SPECPOL
</p>
</div>
<!-- //.col-md-6 -->
<div class="col-sm-6 margin-5 no-margin-bottom no-margin-rl xs-text-center">
<i class="fa fa-clock-o display-block text-base-color title-extra-large-2"></i>
<span class="display-block font-family-alt font-weight-700 letter-spacing-1 margin-5 no-margin-bottom no-margin-rl text-large text-uppercase">Date & Time</span>
<p class="margin-3 no-margin-bottom no-margin-rl text-large text-gray-dark-2">
Sept 22nd - 23rd, 2018<br>
9.15 AM - 5.30 AM
</p>
</div>
<!-- //.col-md-6 -->
<!--
<div class="col-sm-6 margin-5 no-margin-bottom no-margin-rl xs-text-center">
<i class="fa fa-coffee display-block text-base-color title-extra-large-2"></i>
<span class="display-block font-family-alt font-weight-700 letter-spacing-1 margin-5 no-margin-bottom no-margin-rl text-large text-uppercase">Sponsors</span>
<p class="margin-3 no-margin-bottom no-margin-rl text-large text-gray-dark-2">Teh Javana, Gojek, Setipe, Blibli, Kapal Api, Indomie Soto, Energen.</p>
</div>
-->
<!-- //.col-md-6 -->
</div>
<!-- //.row -->
</div>
<!-- //.col-md-6 -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</section>
<!-- //Section - About End -->
<!-- Committees start-->
<iframe id="committees" src="committee.html" width="100%" scrolling="no" frameborder="0"></iframe>
<!-- Section - Team Start -->
<section id="team" class="bg-white-3">
<div class="container">
<div class="row no-padding-rl no-padding-top padding-8">
<div class="col-md-8 col-md-offset-2 text-center">
<h3 class="font-family-alt font-weight-700 letter-spacing-2 text-uppercase xs-title-small title-medium title-sideline-base-color">Team</h3>
<p class="font-family-alt margin-3 no-margin-bottom no-margin-rl text-gray-dark-2 text-large">Know about the speakers. Lorem Ipsum is simply dummy text of the printing<br>and typesetting industry. Lorem Ipsum has been.</p>
</div>
<!-- //.col-md-8 -->
</div>
<!-- //.row -->
<div class="row">
<!-- Features Box Style v2 Start -->
<div class="features-box col-sm-6 col-md-3">
<div class="overflow-hidden position-relative width-100">
<div class="position-relative">
<img src="assets/images/jishnu.png" alt=""/>
<span class="bg-base-color display-inline-block font-family-alt letter-spacing-1 margin-4 padding-tb-9px padding-rl-13px position-absolute position-bottom text-extra-small text-uppercase text-white">Sec General</span>
</div>
<!-- //.position-relative -->
<div class="bg-gray-light no-padding-rl padding-6 position-relative text-center">
<span class="display-block font-family-alt font-weight-700 letter-spacing-2 text-gray-dark-2 text-small text-uppercase">Jishnu Nair</span>
</div>
<!-- //.bg-gray-light -->
<div class="ease height-100 padding-2 position-absolute position-top position-left show-on-hover width-100">
<div class="bg-base-color height-100 width-100">
<div class="display-table height-100 width-100">
<div class="display-table-cell no-padding-tb padding-11 vertical-align-middle">
<span class="display-block font-family-alt letter-spacing-2 text-medium text-uppercase text-white">Jishnu Nair</span>
<span class="display-block font-family-alt letter-spacing-1 text-small text-uppercase text-white">Secretary General</span>
<p class="margin-6 no-margin-bottom no-margin-rl text-medium text-white">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
<!-- //.display-table-cell -->
</div>
<!-- //.display-table -->
</div>
<!-- //.bg-base-color -->
</div>
<!-- //.ease -->
</div>
<!-- //.overflow-hidden -->
</div>
<!-- //Features Box Style v2 End -->
<!-- Features Box Style v2 Start -->
<div class="features-box col-sm-6 col-md-3 xs-margin-4-5 xs-no-margin-bottom xs-no-margin-rl">
<div class="overflow-hidden position-relative width-100">
<div class="position-relative">
<img src="assets/images/jishnu.png" alt=""/>
<span class="bg-base-color display-inline-block font-family-alt letter-spacing-1 margin-4 padding-tb-9px padding-rl-13px position-absolute position-bottom text-extra-small text-uppercase text-white">Content Writer</span>
</div>
<!-- //.position-relative -->
<div class="bg-gray-light no-padding-rl padding-6 position-relative text-center">
<span class="display-block font-family-alt font-weight-700 letter-spacing-2 text-gray-dark-2 text-small text-uppercase">Jishu Nair</span>
</div>
<!-- //.bg-gray-light -->
<div class="ease height-100 padding-2 position-absolute position-top position-left show-on-hover width-100">
<div class="bg-base-color height-100 width-100">
<div class="display-table height-100 width-100">
<div class="display-table-cell no-padding-tb padding-11 vertical-align-middle">
<span class="display-block font-family-alt letter-spacing-2 text-medium text-uppercase text-white">Jishnu Nair</span>
<span class="display-block font-family-alt letter-spacing-1 text-small text-uppercase text-white">CEO, MECMUN</span>
<p class="margin-6 no-margin-bottom no-margin-rl text-medium text-white">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
<!-- //.display-table-cell -->
</div>
<!-- //.display-table -->
</div>
<!-- //.bg-base-color -->
</div>
<!-- //.ease -->
</div>
<!-- //.overflow-hidden -->
</div>
<!-- //Features Box Style v2 End -->
<!-- Features Box Style v2 Start -->
<div class="features-box col-sm-6 col-md-3 sm-margin-4-5 sm-no-margin-bottom sm-no-margin-rl">
<div class="overflow-hidden position-relative width-100">
<div class="position-relative">
<img src="assets/images/jishnu.png" alt=""/>
<span class="bg-base-color display-inline-block font-family-alt letter-spacing-1 margin-4 padding-tb-9px padding-rl-13px position-absolute position-bottom text-extra-small text-uppercase text-white">Special Speaker</span>
</div>
<!-- //.position-relative -->
<div class="bg-gray-light no-padding-rl padding-6 position-relative text-center">
<span class="display-block font-family-alt font-weight-700 letter-spacing-2 text-gray-dark-2 text-small text-uppercase">Jishu Nair</span>
</div>
<!-- //.bg-gray-light -->
<div class="ease height-100 padding-2 position-absolute position-top position-left show-on-hover width-100">
<div class="bg-base-color height-100 width-100">
<div class="display-table height-100 width-100">
<div class="display-table-cell no-padding-tb padding-11 vertical-align-middle">
<span class="display-block font-family-alt letter-spacing-2 text-medium text-uppercase text-white">Jishnu Nair</span>
<span class="display-block font-family-alt letter-spacing-1 text-small text-uppercase text-white">Project Manager</span>
<p class="margin-6 no-margin-bottom no-margin-rl text-medium text-white">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
<!-- //.display-table-cell -->
</div>
<!-- //.display-table -->
</div>
<!-- //.bg-base-color -->
</div>
<!-- //.ease -->
</div>
<!-- //.overflow-hidden -->
</div>
<!-- //Features Box Style v2 End -->
<!-- Features Box Style v2 Start -->
<div class="features-box col-sm-6 col-md-3 sm-margin-4-5 sm-no-margin-bottom sm-no-margin-rl">
<div class="overflow-hidden position-relative width-100">
<div class="position-relative">
<img src="assets/images/jishnu.png" alt=""/>
<span class="bg-base-color display-inline-block font-family-alt letter-spacing-1 margin-4 padding-tb-9px padding-rl-13px position-absolute position-bottom text-extra-small text-uppercase text-white">Special Speaker</span>
</div>
<!-- //.position-relative -->
<div class="bg-gray-light no-padding-rl padding-6 position-relative text-center">
<span class="display-block font-family-alt font-weight-700 letter-spacing-2 text-gray-dark-2 text-small text-uppercase">Jishnu Nair</span>
</div>
<!-- //.bg-gray-light -->
<div class="ease height-100 padding-2 position-absolute position-top position-left show-on-hover width-100">
<div class="bg-base-color height-100 width-100">
<div class="display-table height-100 width-100">
<div class="display-table-cell no-padding-tb padding-11 vertical-align-middle">
<span class="display-block font-family-alt letter-spacing-2 text-medium text-uppercase text-white">Jishnu Nair</span>
<span class="display-block font-family-alt letter-spacing-1 text-small text-uppercase text-white">Project Manager</span>
<p class="margin-6 no-margin-bottom no-margin-rl text-medium text-white">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
<!-- //.display-table-cell -->
</div>
<!-- //.display-table -->
</div>
<!-- //.bg-base-color -->
</div>
<!-- //.ease -->
</div>
<!-- //.overflow-hidden -->
</div>
<!-- //Features Box Style v2 End -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</section>
<!-- //Section - Team End -->
<!-- Section - Schedule Start -->
<section id="schedule" class="bg-white">
<div class="container">
<div class="row no-padding-rl no-padding-top padding-8">
<div class="col-md-8 col-md-offset-2 text-center">
<h3 class="font-family-alt font-weight-700 letter-spacing-2 text-uppercase xs-title-small title-medium title-sideline-base-color">Event Schedule</h3>
<p class="font-family-alt margin-3 no-margin-bottom no-margin-rl text-gray-dark-2 text-large">Have a look at the game plan. Lorem Ipsum is simply dummy text of the printing<br>and typesetting industry. Lorem Ipsum has been.</p>
</div>
<!-- //.col-md-8 -->
</div>
<!-- //.row -->
<div class="row">
<div class="col-md-4">
<span class="display-inline-block font-family-alt font-weight-700 letter-spacing-1 text-extra-large text-uppercase title-underline-thick-base-color">What you'll learn:</span>
<ul class="nav nav-tabs font-family-alt font-weight-700 display-block letter-spacing-1 sm-margin-5 margin-9 no-border sm-no-margin-bottom no-margin-bottom sm-no-margin-rl no-margin-rl text-uppercase" role="tablist">
<li role="presentation" class="active">
<a href="#day-1" aria-controls="day-1" role="tab" data-toggle="tab" class="border-gray-light no-border-radius no-border-right no-margin">Day 1</a>
</li>
<li role="presentation">
<a href="#day-2" aria-controls="day-2" role="tab" data-toggle="tab" class="border-gray-light no-border-radius no-border-right no-margin">Day 2</a>
</li>
<li role="presentation">
<a href="#day-3" aria-controls="day-3" role="tab" data-toggle="tab" class="border-gray-light no-border-radius no-margin">Day 3</a>
</li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade active in" id="day-1">
<table class="table table-bordered table-striped margin-8 no-margin-rl">
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 1</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">The economics of design <span class="text-gray-dark text-small text-transform-none">by Ridwan Kamil.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 2</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Become a better design leader with competitive analysis <span class="text-gray-dark text-small text-transform-none">by Sandiaga Uno.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 3</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">The agile design team maturity scale <span class="text-gray-dark text-small text-transform-none">by Sarah Sechan.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 4</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Designing and engineering better teams to build better products <span class="text-gray-dark text-small text-transform-none">by Nirina Zubir.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 5</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Why you should design to develop <span class="text-gray-dark text-small text-transform-none">by Mona Ratuliu.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 6</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Dear client, We need to talk <span class="text-gray-dark text-small text-transform-none">by Najwa Sihab.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 7</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">VR, AR, and MR: Designing the new reality experience <span class="text-gray-dark text-small text-transform-none">by Taufik Hidayat.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 8</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">The 7 principles of empowered freelancers <span class="text-gray-dark text-small text-transform-none">by Anisa Bahar.</span></span></td>
</tr>
</table>
</div>
<!-- //.tab-pane -->
<div role="tabpanel" class="tab-pane fade" id="day-2">
<table class="table table-bordered table-striped margin-8 no-margin-rl">
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 9</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Why developers should learn design <span class="text-gray-dark text-small text-transform-none">by Agnes Monika.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 10</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">A framework for designing a better user onboarding experience <span class="text-gray-dark text-small text-transform-none">by Roby Purba.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 11</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Freelancing with depression <span class="text-gray-dark text-small text-transform-none">by Chairil Tanjung.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 12</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Where has the creativity gone in web (and UX) design? <span class="text-gray-dark text-small text-transform-none">by Suci Mentari.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 13</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Rebranding a SaaS startup <span class="text-gray-dark text-small text-transform-none">by Ridwan Kamil.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 14</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Designing and engineering better teams to build better products <span class="text-gray-dark text-small text-transform-none">by Sandiaga Uno.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 15</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">How to write a case study that wins you clients <span class="text-gray-dark text-small text-transform-none">by Sarah Sechan.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 16</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">The right way to pitch your app to investors <span class="text-gray-dark text-small text-transform-none">by Nirina Zubir.</span></span></td>
</tr>
</table>
</div>
<!-- //.tab-pane -->
<div role="tabpanel" class="tab-pane fade" id="day-3">
<table class="table table-bordered table-striped margin-8 no-margin-rl">
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 17</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">To design digital experiences that matter, design for the 5 senses <span class="text-gray-dark text-small text-transform-none">by Mona Ratuliu.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 18</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Should you hire for culture fit? <span class="text-gray-dark text-small text-transform-none">by Najwa Sihab.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 19</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Creating design-driven data visualization <span class="text-gray-dark text-small text-transform-none">by Taufik Hidayat.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 20</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Figuring out UX flow for better team cooperation <span class="text-gray-dark text-small text-transform-none">by Anisa Bahar.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 21</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">The creative part of UI design: Adding characters and style <span class="text-gray-dark text-small text-transform-none">by Agnes Monika.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 22</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Designing innovation inside your company <span class="text-gray-dark text-small text-transform-none">by Roby Purba.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 23</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">So you want to work for a startup <span class="text-gray-dark text-small text-transform-none">by Chairil Tanjung.</span></span></td>
</tr>
<tr>
<td class="td-session-number sm-padding-2 padding-4"><span class="display-block font-family-alt text-medium text-gray-dark-2">Session 24</span></td>
<td class="sm-padding-2 padding-4"><span class="display-block font-family-alt text-gray-dark-2 text-medium text-uppercase">Designing innovation inside your company <span class="text-gray-dark text-small text-transform-none">by Suci Mentari.</span></span></td>
</tr>
</table>
</div>
<!-- //.tab-pane -->
</div>
<!-- //.tab-content -->
</div>
<!-- //.col-md-4 -->
<div class="col-md-7 col-md-offset-1">
<div class="row carousel-schedule">
<div class="carousel-cell col-md-12">
<div class="position-relative">
<div class="position-relative">
<span class="display-block font-family-alt font-weight-700 letter-spacing-1 text-extra-large text-uppercase">Conference Day 1</span>
<span class="display-block margin-1 no-margin-bottom no-margin-rl text-gray-dark-2 text-large">Tuesday, July 25, 2017</span>
<span class="bg-base-color margin-3 no-margin-bottom no-margin-rl separator-line-thick"></span>
</div>
<!-- //.position-relative -->
<div class="timeline sm-margin-5 margin-10 sm-no-margin-bottom no-margin-bottom sm-no-margin-rl no-margin-rl position-relative">
<span class="timeline-label bg-base-color border-round display-inline-block font-family-alt letter-spacing-1 padding-tb-9px padding-rl-13px text-extra-small text-uppercase text-white">Schedules</span>
<ul class="border-left border-gray-light list-unstyled position-relative">
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">08:15 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Doors Open & Mingling.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">09:00 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 1: <span class="text-gray-dark-2 text-uppercase">The economics of design</span> <span class="text-small">by Ridwan Kamil</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">09:45 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 2: <span class="text-gray-dark-2 text-uppercase">Become a better design leader with competitive analysis</span> <span class="text-small">by Sandiaga Uno</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">10:30 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Break & Mingling.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">10:50 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 3: <span class="text-gray-dark-2 text-uppercase">The agile design team maturity scale</span> <span class="text-small">by Sarah Sechan</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">11:35 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 4: <span class="text-gray-dark-2 text-uppercase">Designing and engineering better teams to build better products</span> <span class="text-small">by Nirina Zubir</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">12:30 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Lunch.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">02:50 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 5: <span class="text-gray-dark-2 text-uppercase">Why you should design to develop</span> <span class="text-small">by Mona Ratuliu</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">02:45 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 6: <span class="text-gray-dark-2 text-uppercase">Dear client, We need to talk</span> <span class="text-small">by Najwa Sihab</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">03:30 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Break & Mingling.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">03:50 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 7: <span class="text-gray-dark-2 text-uppercase">VR, AR, and MR: Designing the new reality experience</span> <span class="text-small">by Taufik Hidayat</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">04:35 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 8: <span class="text-gray-dark-2 text-uppercase">The 7 principles of empowered freelancers</span> <span class="text-small">by Anisa Bahar</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">05:30 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">After Party & Mingling.</span>
</div>
<!-- //.timeline-content -->
</li>
</ul>
</div>
<!-- //.timeline -->
</div>
<!-- //.position-relative -->
</div>
<!-- //.carousel-cell -->
<div class="carousel-cell col-md-12">
<div class="position-relative">
<div class="position-relative">
<span class="display-block font-family-alt font-weight-700 letter-spacing-1 text-extra-large text-uppercase">Conference Day 2</span>
<span class="display-block margin-1 no-margin-bottom no-margin-rl text-gray-dark-2 text-large">Wednesday, July 26, 2017</span>
<span class="bg-base-color margin-3 no-margin-bottom no-margin-rl separator-line-thick"></span>
</div>
<!-- //.position-relative -->
<div class="timeline sm-margin-5 margin-10 sm-no-margin-bottom no-margin-bottom sm-no-margin-rl no-margin-rl position-relative">
<span class="timeline-label bg-base-color border-round display-inline-block font-family-alt letter-spacing-1 padding-tb-9px padding-rl-13px text-extra-small text-uppercase text-white">Schedules</span>
<ul class="border-left border-gray-light list-unstyled position-relative">
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">08:15 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Doors Open & Mingling.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">09:00 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 9: <span class="text-gray-dark-2 text-uppercase">Why developers should learn design</span> <span class="text-small">by Agnes Monika</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">09:45 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 10: <span class="text-gray-dark-2 text-uppercase">A framework for designing a better user onboarding experience</span> <span class="text-small">by Roby Purba</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">10:30 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Break & Mingling.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">10:50 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 11: <span class="text-gray-dark-2 text-uppercase">Freelancing with depression</span> <span class="text-small">by Chairil Tanjung</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">11:35 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 12: <span class="text-gray-dark-2 text-uppercase">Where has the creativity gone in web (and UX) design?</span> <span class="text-small">by Suci Mentari</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">12:30 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Lunch.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">02:50 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 13: <span class="text-gray-dark-2 text-uppercase">Rebranding a SaaS startup</span> <span class="text-small">by Ridwan Kamil</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">02:45 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 14: <span class="text-gray-dark-2 text-uppercase">Designing and engineering better teams to build better products</span> <span class="text-small">by Sandiaga Uno</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">03:30 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Break & Mingling.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">03:50 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 15: <span class="text-gray-dark-2 text-uppercase">How to write a case study that wins you clients</span> <span class="text-small">by Sarah Sechan</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">04:35 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 16: <span class="text-gray-dark-2 text-uppercase">The right way to pitch your app to investors</span> <span class="text-small">by Nirina Zubir</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">05:30 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">After Party & Mingling.</span>
</div>
<!-- //.timeline-content -->
</li>
</ul>
</div>
<!-- //.timeline -->
</div>
<!-- //.position-relative -->
</div>
<!-- //.carousel-cell -->
<div class="carousel-cell col-md-12">
<div class="position-relative">
<div class="position-relative">
<span class="display-block font-family-alt font-weight-700 letter-spacing-1 text-extra-large text-uppercase">Conference Day 3</span>
<span class="display-block margin-1 no-margin-bottom no-margin-rl text-gray-dark-2 text-large">Thursday, July 27, 2017</span>
<span class="bg-base-color margin-3 no-margin-bottom no-margin-rl separator-line-thick"></span>
</div>
<!-- //.position-relative -->
<div class="timeline sm-margin-5 margin-10 sm-no-margin-bottom no-margin-bottom sm-no-margin-rl no-margin-rl position-relative">
<span class="timeline-label bg-base-color border-round display-inline-block font-family-alt letter-spacing-1 padding-tb-9px padding-rl-13px text-extra-small text-uppercase text-white">Schedules</span>
<ul class="border-left border-gray-light list-unstyled position-relative">
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">08:15 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Doors Open & Mingling.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">09:00 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 17: <span class="text-gray-dark-2 text-uppercase">To design digital experiences that matter, design for the 5 senses</span> <span class="text-small">by Mona Ratuliu</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">09:45 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 18: <span class="text-gray-dark-2 text-uppercase">Should you hire for culture fit?</span> <span class="text-small">by Najwa Sihab</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">10:30 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Break & Mingling.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">10:50 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 19: <span class="text-gray-dark-2 text-uppercase">Creating design-driven data visualization</span> <span class="text-small">by Taufik Hidayat</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">11:35 AM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 20: <span class="text-gray-dark-2 text-uppercase">Figuring out UX flow for better team cooperation</span> <span class="text-small">by Anisa Bahar</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">12:30 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Lunch.</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">02:50 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 21: <span class="text-gray-dark-2 text-uppercase">The creative part of UI design: Adding characters and style</span> <span class="text-small">by Agnes Monika</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item highlight position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">02:45 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">
Session 22: <span class="text-gray-dark-2 text-uppercase">Designing innovation inside your company</span> <span class="text-small">by Roby Purba</span>.
</span>
</div>
<!-- //.timeline-content -->
</li>
<li class="timeline-item position-relative">
<div class="timeline-content bg-white border border-gray-light border-round display-block">
<span class="display-block font-family-alt letter-spacing-1 text-gray-dark text-small">03:30 PM</span>
<span class="display-block font-family-alt text-medium text-gray-dark-2">Break & Mingling.</span>
</div>
<!-- //.timeline-content -->