-
Notifications
You must be signed in to change notification settings - Fork 1
/
schedule.html
1171 lines (1088 loc) · 61.9 KB
/
schedule.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CEL Insights Conference 2015: Schedule</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="CEL Insights Conference 2015">
<meta name="author" content="Cypriot Enterprise Link">
<meta name="keywords" content="Insights Conference Cyprus, Insights Conference 2015, Insights Conference,Startups Cyprus,Startup Cyprus, Entrepreneurship Cyprus, CEL,Cypriot,Enterprise,Link,Cyprus,Insights,Conference,Entrepreneurship,Startups">
<meta property="og:title" content="Insights Conference 2015" />
<meta property="og:site_name" content="Home"/>
<meta property="og:url" content="http://insightscon.com" />
<meta property="og:image" content="http://insightscon.com/images/fb_img.jpg" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="1280" />
<meta property="og:image:height" content="720" />
<meta property="og:description" content="The Insights conference aims to provide a mix of practical
and theoretical knowledge to an audience hungry to learn.
The conference will take place over two days and will include
workshops and talks by world-class founders who will share
their startup experience and expertise with our audience.
The Insights Conference will take place on 28th-29th March 2015
at the Filoxenia Conference Centre, Nicosia, Cyprus." />
<meta property="article:author" content="http://projectcel.com" />
<!-- Standard Favicon-->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Standard iPhone Touch Icon-->
<link rel="apple-touch-icon" sizes="57x57" href="images/touchicons/apple-touch-icon-57-precomposed" />
<!-- Retina iPhone Touch Icon-->
<link rel="apple-touch-icon" sizes="114x114" href="assets/touchicons/apple-touch-icon-114-precomposed" />
<!-- Standard iPad Touch Icon-->
<link rel="apple-touch-icon" sizes="72x72" href="assets/touchicons/apple-touch-icon-72-precomposed" />
<!-- Retina iPad Touch Icon-->
<link rel="apple-touch-icon" sizes="144x144" href="assets/touchicons/apple-touch-icon-144-precomposed" />
<!-- Bootstrap CSS Files -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- CSS files for plugins-->
<link href="stylesheets/owl.carousel.css" rel="stylesheet">
<link href="stylesheets/owl.theme.css" rel="stylesheet">
<link href="stylesheets/owl.transitions.css" rel="stylesheet">
<link href="stylesheets/slidingmenu.css" rel="stylesheet">
<link href="stylesheets/fonts.css" rel="stylesheet">
<!-- Main Template Styles -->
<link href="stylesheets/main.css" rel="stylesheet">
<!-- Main Template Responsive Styles -->
<link href="stylesheets/main-responsive.css" rel="stylesheet">
<!-- Main Template Retina Optimizaton Rules -->
<link href="stylesheets/main-retina.css" rel="stylesheet">
<!-- LESS stylesheet for managing color presets -->
<!--<link rel="stylesheet/less" type="text/css" href="less/color.less">--><!--removed due ios8 safari bug-->
<link href="stylesheets/colors.css" rel="stylesheet">
<!-- LESS JS engine
<script src="less/less-1.7.0.min.js"></script>-->
<!-- Google Web Fonts-->
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,700,900%7COpen+Sans:400,300,700,800%7CMontserrat:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Merriweather:400italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Oswald:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat+Alternates:400,700' rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="bootstrap/js/html5shiv.js"></script>
<script src="bootstrap/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Sliding Navigation : starts -->
<nav class="menu" id="sm">
<div class="sm-wrap"> <i class="icon-remove menu-close"></i>
<div class="mob-nav-links">
<ul>
<li class="mobile-sub-menu"><a href="/">home</a></li>
<li><a class="nav-active" href="/schedule.html">schedule</a></li>
<li><a href="/speakers.html">Speakers</a></li>
<li><a href="team.html">Team</a></li>
<li><a class="scroll-link" href="index.html#about-insights">What is Insights</a></li>
<li><a class="scroll-link" href="index.html#partners">Partners</a></li>
<li><a class="scroll-link" href="index.html#directions">Directions</a></li>
<!--<li><a href="#contact">contact</a></li>-->
</ul>
</div>
</div>
<!-- Navigation Trigger Button -->
<div id="sm-trigger"></div>
</nav>
<!-- Sliding Navigation : ends -->
<!-- Master Wrap : starts -->
<section id="mastwrap" class="sliding">
<!-- masthead : starts -->
<header id="masthead" class="masthead clearfix"></header>
<!-- masthead : ends -->
<!-- page-section : starts -->
<section class="home-section page-section schedule-section">
<!-- inner-section : starts -->
<section class="inner-section">
<!-- container : starts -->
<section class="container">
<div class="row">
<article class="col-md-12 text-center">
<div class="half-height">
<!-- navigation starts -->
<nav class="main-navigation">
<div class="logo"> <img class="img-responsive" src="images/cel-logo.svg" alt="logo" width="150"> </div>
<div class="nav-links">
<ul>
<li><a href="/">home</a></li>
<li><a class="nav-active" href="/schedule.html">schedule</a></li>
<li><a href="index.html#about-insights" class="scroll-link">What is Insights</a></li>
<li><a href="speakers.html" class="scroll-link">Speakers</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="index.html#partners" class="scroll-link">Partners</a></li>
<li><a href="index.html#directions" class="scroll-link">Directions</a></li>
</ul>
</div>
<div class="clear-float"></div>
</nav>
<div class="main-owl-cus-nav-container vertical-align">
<div id="home-owl-demo" class="main-owl-cus-nav">
<!-- 1st content -->
<div class="item">
<div class="row">
<article class="col-md-12">
<div class="main-owl-cus-nav-content">
<div class="heading"> <img src="images/cel-insights-logo.svg" width="100%"/></div>
<!--<div class="sub-heading text-center"> <span>CYPRUS, MARCH 28 — 29. 2015</span> </div>-->
</div>
</article>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
<div class="home-main-button subpage-main-button "> <a class="btn btn-ticket" href="#" target="_blank"><span>Photos coming soon</span></a> </div>
</div>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section id="insights-schedule" class="about-insights-section page-section pad-top light-section">
<!-- inner-section : starts -->
<section class="inner-section pad-bottom ">
<!-- container : starts -->
<section class="container">
<div class="row">
<article class="col-md-12 text-center">
<div class="section-heading">
<h2>The Schedule</h2>
</div>
<div class="intro section-subheading">
<h3> 30+ speakers. 23.5 hours of talks, workshops and panel discussions. 3 parallel themes. 2 fully loaded
days. 1 startup exhibition. Unlimited coffee.
No matter what your interests, the Insights Conference 2015 has something for you! Customize the
experience to your needs, and make your schedule different from everybody else’s. See you there!</h3>
</div>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section class="schedule-filter-section page-section light-secondary-section pad-top-half pad-bottom-half">
<div class="row">
<div class="container">
<div class="col-md-12 text-center">
<div class="section-subheading">
<h3><a href="images/Programme.pdf" target="_blank">Download the programme</a> or scroll through or select your preferences below</h3>
</div>
<div class="col-md-4 text-left">
<label>Select theme:</label>
<span class="custom-dropdown">
<select class="theme_dropdown">
<option value="all">All</option>
<option value="startup-world">Startup World</option>
<option value="industry-distruption">Industry Disruption</option>
<option value="entrepreneurial-environments">Entrepreneurial Environments</option>
</select>
</span>
</div>
<div class="col-md-4 text-left">
<label>Select event type:</label>
<span class="custom-dropdown">
<select class="event_type_dropdown">
<option value="all">All</option>
<option value="workshop">workshop</option>
<option value="skill-lab">skill lab</option>
<option value="lecture">lecture/talk</option>
<option value="discussion">discussion</option>
<option value="paneld">panel / debate</option>
</select>
</span>
</div>
<div class="col-md-4 text-left">
<label>Select Day:</label>
<span class="custom-dropdown">
<select class="day_dropdown">
<option value="both" selected="selected">both</option>
<option value="day1">Saturday 28/3</option>
<option value="day2">Sunday 29/3 </option>
</select>
</span>
</div>
</div>
</div>
</div>
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section id="schedule" class="schedule-section page-section ">
<!-- inner-section : starts -->
<section class="inner-section day1 cel-green-section ">
<div class="row">
<div class="section-subheading text-center">
<h3> Saturday 28/3 </h3>
</div>
</div>
<!-- container : starts -->
<section class="container">
<div class="row">
<article class="col-md-12 text-center event-day">
<!-- ./row -->
<div class="row event-spot break">
<div class="col-xs-12 col-sm-4 col-md-3 text-left time">
<h5> 9:00 - 9:30</h5>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9 text-left topic">
<h3> Registration </h3>
</div>
</div>
<!-- ./row -->
<div class="row event-spot break">
<div class="col-xs-12 col-sm-4 col-md-3 text-left time">
<h5> 9:30 - 10:00 </h5>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9 text-left topic">
<h3> Morning Coffee </h3>
</div>
</div>
<!-- ./row -->
<div class="row event-spot break">
<div class="col-xs-12 col-sm-4 col-md-3 text-left time">
<h5> 10:00 - 10:30 </h5>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9 text-left topic">
<h3> Welcome - Opening - CEL </h3>
</div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption lecture text-center">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 10:30 - 11:00 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class="col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic">
<h3>Keynote: "A credit card walks into a bar" </h3>
<h4> <a href="/speakers.html#Cristiano_Betta">Cristiano Betta</a> </h4>
<em>Industry Disruption</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo">
<!--<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>-->
<a href="/speakers.html#Cristiano_Betta"> <img class="img-responsive" src="images/speakers/Cristiano.jpg" alt="Cristiano Betta"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot startup-world lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 11:00 - 11:30</h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"><i></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic">
<h3>Keynote: "How to hack your way to a hundred million dollar idea" </h3>
<h4><a href="/speakers.html#Jack_Smith">Jack Smith</a></h4>
<em>Startup World</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Jack_Smith"> <img class="img-responsive" src="images/speakers/Jack.png" alt="Jack Smith"> </a>
<!----> </div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption lecture text-center">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 11:30 - 12:00 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic">
<h3>Keynote: "Disruptive innovation: Local marketplaces" </h3>
<h4><a href="/speakers.html#Alex_Loizou">Alex Loizou</a></h4>
<em>Industry Disruption</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Alex_Loizou"> <img class="img-responsive" src="images/speakers/AlexLoizou.png" alt="Alex Loizou"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot break">
<div class="col-xs-12 col-sm-4 col-md-3 text-left time">
<h5> 12:00 - 13:00 </h5>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9 text-left topic">
<h3> Lunch Break </h3>
<h4><a href="#"> </a></h4>
</div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 13:00-13:30 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Jinni: Watch what you wish for" </h3>
<h4><a href="/speakers.html#Yosi_Glick">Yosi Glick</a></h4>
<em>Industry Disruption</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Yosi_Glick"> <img class="img-responsive" src="images/speakers/YosiGlick.png" alt="Yosi Glic"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot startup-world discussion" >
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 13:00-14:00 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3>"Raising funding in Europe and the UK" </h3>
<h4><a href="/speakers.html#Chrysanthos_Chrysanthou">Chrysanthos Chrysanthou</a> & <a href="/speakers.html#Alex_Loizou">Alex Loizou</a></h4>
<em>Startup World</em>
<p>Discussion</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Alex_Loizou"><img class="img-responsive" src="images/speakers/AlexLoizou.png" alt="Alex Loizou"> </a> <a href="/speakers.html#Chrysanthos_Chrysanthou"><img class="img-responsive" src="images/speakers/Chrysanthos.jpeg" alt="Chrysanthos Chrysanthou"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 13:30-14:00 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3>"Disrupting the food and beverage industry" </h3>
<h4><a href="/speakers.html#Stephen_Leguillon">Stephen Leguillon</a></h4>
<em>Industry Disruption</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Stephen_Leguillon"> <img class="img-responsive" src="images/speakers/SLeguillon.jpg" alt="Stephen Leguillon"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot entrepreneurial-environments lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 13:30-14:00</h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3>"The role of accelerators in supporting successful entrepreneurs"</h3>
<h4><a href="speakers.html#Paola_Cuneo">Paola Cuneo</a></h4>
<em>Entrepreneurial Environments</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="speakers.html#Paola_Cuneo"> <img class="img-responsive" src="images/speakers/PaolaCuneo.jpg" alt=" "> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption workshop">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 14:15-15:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Quick and effective remote user testing" </h3>
<h4><a href="/speakers.html#Matt_Isherwood">Matt Isherwood</a></h4>
<em>Industry Disruption</em>
<p>Workshop</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Matt_Isherwood"> <img class="img-responsive" src="images/speakers/Matt.jpg" alt="Matt Isherwood"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot entrepreneurial-environments lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 14:15-14:45 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Entrepreneurial ecosystems" </h3>
<h4><a href="/speakers.html#Alice_Bentinck">Alice Bentinck</a></h4>
<em>Entrepreneurial Environments</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Alice_Bentinck"> <img class="img-responsive" src="images/speakers/Alice.png" alt="Alice Bentinck"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot startup-world skill-lab">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 14:15-15:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3>"Building a startup: Method to the madness - Intro to Business Model Canvas"</h3>
<h4><a href="/speakers.html#Paris_Thomas">Paris Thomas</a></h4>
<em>Startup World</em>
<p>Skills Lab</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Paris_Thomas"> <img class="img-responsive" src="images/speakers/ParisThomas.png" alt="Paris Thomas"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot break">
<div class="col-xs-12 col-sm-4 col-md-3 text-left time">
<h5> 15:15-15:45 </h5>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9 text-left topic ">
<h3> Coffee Break </h3>
</div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption workshop">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 15:45-16:45 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3>"Fun ways of integrating the Braintree API" </h3>
<h4><a href="/speakers.html#Cristiano_Betta">Cristiano Betta</a></h4>
<em>Industry Disruption</em>
<p>Workshop</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"><a href="/speakers.html#Cristiano_Betta"> <img class="img-responsive" src="images/speakers/Cristiano.jpg" alt="Cristiano Betta"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot startup-world lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 15:45-16:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3>"Growing from two people to your first fifteen" </h3>
<h4><a href="speakers.html#Danny_King">Danny King</a></h4>
<em>Startup World</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"><a href="speakers.html#Danny_King"> <img class="img-responsive" src="images/speakers/Danny.png" alt="Danny King"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot entrepreneurial-environments paneld">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 16:15-17:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Building a high-growth social movement" </h3>
<h4><a href="speakers.html#Kostas_Mavroulakis">Kostas Mavroulakis</a> & <a href="/speakers.html#Matt_Smith">Matt Smith</a></h4>
<em>Entrepreneurial Environments</em>
<p>Panel/Debate</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Matt_Smith"> <img class="img-responsive" src="images/speakers/MattSmith.jpg" alt="Matt Smith"> </a><a href="speakers.html#Kostas_Mavroulakis"> <img class="img-responsive" src="images/speakers/Kostas.jpg" alt="Kostas Mavroulakis"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot row event-spot startup-world lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 16:30-17:00 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3>"How I ended up with a minority shareholding in my own idea"</h3>
<h4><a href="/speakers.html#Yiannis_Gavrielides">Yiannis Gavrielides</a></h4>
<em>Startup World</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"><a href="/speakers.html#Yiannis_Gavrielides"> <img class="img-responsive" src="images/speakers/Yiannis.jpg" alt="Yiannis Gavrielides"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot startup-world paneld text-center">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 17:15-18:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"><i></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic">
<h3>"Value of design for entrepreneurs"</h3>
<h4> <a href="/speakers.html#Alex_Cican">Alex Cican</a>, <a href="/speakers.html#Denis_Constantinou">Denis Constantinou</a> & <a href="/speakers.html#Eleni_Polydorou">Eleni Polydorou</a></h4>
<em>Startup World</em>
<p>Panel/Debate</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Denis_Constantinou"> <img alt="Denis Constantinou" src="images/speakers/Denis.png" class="img-responsive"> </a><a href="/speakers.html#Alex_Cican"> <img alt="Alex Cican" src="images/speakers/AlexCican.jpeg" class="img-responsive"> </a> <a href="/speakers.html#Eleni_Polydorou"> <img alt="Eleni Polydorou" src="images/speakers/EleniPolydorou.jpg" class="img-responsive"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot entrepreneurial-environments paneld">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 17:15-18:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "How to internationalise your start up" </h3>
<h4><a href="speakers.html#Niall_OLoughlin">Nial O'Laughlin</a> and <a href="speakers.html#Stephen_Leguillon">Stephen Leguillon</a> & <a href="speakers.html#Paola_Cuneo">Paola Cuneo</a></h4>
<em>Entrepreneurial Enviroments</em>
<p>Panel/Debate</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Stephen_Leguillon"> <img class="img-responsive" src="images/speakers/SLeguillon.jpg" alt="Stephen Leguillon"> </a> <a href="speakers.html#Niall_OLoughlin"> <img class="img-responsive" src="images/speakers/niall.jpg" alt="Nial O'Laughlin"> </a> <a href="/speakers.html#Paola_Cuneo"> <img class="img-responsive" src="images/speakers/PaolaCuneo.jpg" alt="Paola Cuneo"> </a></div>
</div>
<div class="row event-spot industry-distruption lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 17:15-17:45 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Raspberry Pi" </h3>
<h4><a href="speakers.html#Jack_Lang">Jack Lang</a></h4>
<em>Industry Disruption</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo">
<a href="/speakers.html#Jack_Lang">
<img class="img-responsive" src="images/speakers/JackLang.jpg" alt="Jack Lang">
</a>
</div>
</div>
<!-- ./row -->
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
<!-- inner-section : starts -->
<section class="inner-section day2 pad-bottom dark-section ">
<div class="row">
<div class="section-subheading text-center">
<h3> Sunday 29/3 </h3>
</div>
</div>
<!-- container : starts -->
<section class="container">
<div class="row">
<article class="col-md-12 text-center event-day">
<!-- ./row -->
<div class="row event-spot break">
<div class="col-xs-12 col-sm-4 col-md-3 text-left time">
<h5> 9:00 - 10:00 </h5>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9 text-left topic">
<h3> Morning Coffee </h3>
</div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption workshop">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 10:00-11:00 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Fundamentals of sports performance analysis - Identifying performance" </h3>
<h4><a href="/speakers.html#Jamie_Dos_Anjos">Jamie Dos Anjos</a></h4>
<em>Industry Disruption</em>
<p>Workshop</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Jamie_Dos_Anjos"> <img class="img-responsive" src="images/speakers/Jamie.png" alt="Jamie Dos Anjos"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot entrepreneurial-environments paneld">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 10:00-11:00 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Networking on steroids" </h3>
<h4><a href="speakers.html#Kostas_Mavroulakis">Kostas Mavroulakis</a> & <a href="/speakers.html#Matt_Smith">Matt Smith</a></h4>
<em>Entrepreneurial Environments</em>
<p>Panel/Debate</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Matt_Smith"> <img class="img-responsive" src="images/speakers/MattSmith.jpg" alt="Matt Smith"> </a><a href="speakers.html#Kostas_Mavroulakis"> <img class="img-responsive" src="images/speakers/Kostas.jpg" alt="Kostas Mavroulakis"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot startup-world lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 10:00-10:30 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "How to judge what speed to take your company off at" </h3>
<h4><a href="/speakers.html#Peter_Nixey">Peter Nixey</a></h4>
<em>Startup World</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Peter_Nixey"> <img class="img-responsive" src="images/speakers/PeterNixey.jpeg" alt="Peter Nixey"></a></div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 11:15-11:45 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "High tech innovation saves lives" </h3>
<h4><a href="/speakers.html#Tal_Hanoci">Tal Hanoci</a></h4>
<em>Industry Disruption</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Tal_Hanoci"> <img class="img-responsive" src="images/speakers/TalHanoci.jpg" alt="Tal Hanoci"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot startup-world skill-lab">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 11:15-12:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Early product validation - Test before you build" </h3>
<h4><a href="/speakers.html#Alexis_Piperides">Alexis Piperides</a></h4>
<em>Startup World</em>
<p>Skills Lab</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Alexis_Piperides"> <img class="img-responsive" src="images/speakers/AlexisPiperides.jpg" alt="Alexis Piperides"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 11:45-12:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Digitalising the yacht rental industry" </h3>
<h4><a href="/speakers.html#Georgios_Gatos">Georgios Gatos</a></h4>
<em>Industry Disruption</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Georgios_Gatos"> <img class="img-responsive" src="images/speakers/Gatos.png" alt="Georgios Gatos"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot break">
<div class="col-xs-12 col-sm-4 col-md-3 text-left time">
<h5> 12:15 - 13:15 </h5>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9 text-left topic">
<h3> Lunch Break </h3>
<h4><a href="#"> </a></h4>
</div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption workshop">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 13:15-14:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Architecting for the cloud - The evolution of Covve's cloud" </h3>
<h4><a href="speakers.html#Alex_Protogerellis">Alexandros Protogerellis</a>, <a href="speakers.html#Valadis_Novakovits">Valadis Novakovits</a>, <a href="speakers.html#Manolis_Koufidakis">Manolis Koufidakis & <a href="speakers.html#Michael_Asimakopoulos">Michael Asimakopoulos</a></h4>
<em>Industry Disruption</em>
<p>Workshop</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo">
<a href="speakers.html#Valadis_Novakovits"><img class="img-responsive" src="images/speakers/AndyN.JPG" alt="Valadis Novakovits"></a>
<a href="speakers.html#Alex_Protogerellis"> <img class="img-responsive" src="images/speakers/AlexP.JPG" alt="Alexandros Protogerellis"></a>
<a href="speakers.html#Michael_Asimakopoulos"> <img class="img-responsive" src="images/speakers/MikeA.JPG" alt="Michael Asimakopoulos"></a>
<a href="speakers.html#Manolis_Koufidakis"> <img class="img-responsive" src="images/speakers/ManolisK.JPG" alt="Manolis Koufidakis"></a>
</div>
</div>
<!-- ./row -->
<div class="row event-spot entrepreneurial-environments workshop">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 13:15-14:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Protect your idea before it's too late" </h3>
<h4><a href="/speakers.html#Marinos_Cleanthous">Marinos Cleanthous</a></h4>
<em>Entrepreneurial Environments</em>
<p>Workshop</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Marinos_Cleanthous"> <img class="img-responsive" src="images/speakers/MarinosCleanthous.jpg" alt="Marinos Cleanthous"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot startup-world workshop">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 13:15-14:15 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Mastering SEO in 2015" </h3>
<h4><a href="/speakers.html#Julia_Papageorgiou">Julia Papageorgiou</a></h4>
<em>Startup World</em>
<p>Workshop</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Julia_Papageorgiou"> <img class="img-responsive" src="images/speakers/Julia.jpg" alt="Julia Papageorgiou"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption workshop">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 14:30-15:30 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Around the world in 80 milliseconds" </h3>
<h4><a href="speakers.html#Alex_Michael">Alexis Michael</a></h4>
<em>Industry Disruption</em>
<p>Workshop</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="speakers.html#Alex_Michael"> <img class="img-responsive" src="images/speakers/AlexMichael.jpg" alt="Alexis Michael"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot entrepreneurial-environments lecture">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 14:30-15:00 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Reloading your country from abroad. Reload Greece - a case study" </h3>
<h4><a href="speakers.html#Effie_Kyrtata">Effie Kyrtata</a> & <a href="speakers.html#Meliti_Bampili_Thymara">Meliti Bampili-Thymara</a></a></h4>
<em>Entrepreneurial Environments</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="speakers.html#Meliti_Bampili_Thymara"> <img class="img-responsive" src="images/speakers/meliti.jpg" alt="Meliti Thymara"> </a><a href="speakers.html#Effie_Kyrtata"> <img class="img-responsive" src="images/speakers/effie.jpg" alt="Effie Kyrtata"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot startup-world workshop">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 14:30-15:30 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i ></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic ">
<h3> "Financial Toolkit for startups" </h3>
<h4><a href="#">Michalis Stavrides</a></h4>
<em>Startup World</em>
<p>Workshop</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="#"> <img class="img-responsive" src="images/speakers/MStavrides.jpeg" alt="Michalis Stavrides"></a> </div>
</div>
<!-- ./row -->
<div class="row event-spot break">
<div class="col-xs-12 col-sm-4 col-md-3 text-left time">
<h5> 15:30-16:15 </h5>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9 text-left topic ">
<h3> Coffee Break </h3>
</div>
</div>
<!-- ./row -->
<div class="row event-spot break">
<div class="col-xs-12 col-sm-4 col-md-3 text-left time">
<h5> 16:15 - 16:30 </h5>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9 text-left topic">
<h3>Closing Ceremony - CEL </h3>
</div>
</div>
<!-- ./row -->
<div class="row event-spot industry-distruption lecture text-center">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 16:30 - 17:00 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic">
<h3>Keynote: "Adding value: Moving from providing data to improving outcomes" </h3>
<h4><a href="/speakers.html#Jamie_Dos_Anjos">Jamie Dos Anjos</a></h4>
<em>Industry Disruption</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Jamie_Dos_Anjos"> <img class="img-responsive" src="images/speakers/Jamie.png" alt="Jamie Dos Anjos"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot startup-world lecture text-center">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 17:00 - 17:30 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic">
<h3>Keynote: "CEO, Entrepreneur or just crazy? What does it all mean?" </h3>
<h4><a href="/speakers.html#Gaston_Chee">Gaston Chee</a></h4>
<em>Startup World</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Gaston_Chee"> <img class="img-responsive" src="images/speakers/Gaston.jpg" alt="Gaston Chee"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot entrepreneurial-environments lecture text-center">
<div class="col-xs-12 col-sm-12 col-md-3 text-left time">
<h5> 17:30 - 18:00 </h5>
<div class="rotative-square-container">
<div class="rotative-square-inner-container"> <i></i> </div>
</div>
</div>
<div class= "col-xs-12 col-sm-7 col-md-5 col-lg-6 text-left topic">
<h3>Keynote: "The Blue Economy: How to create a high growth economy by building on available resources" </h3>
<h4><a href="/speakers.html#Gunter_Pauli">Gunter Pauli</a></h4>
<em>Entrepreneurial Environments</em>
<p>Lecture/Talk</p>
</div>
<div class="col-xs-10 col-sm-5 col-md-4 col-lg-3 center-inline-block photo"> <a href="/speakers.html#Gunter_Pauli"> <img class="img-responsive" src="images/speakers/GunterPauli.jpg" alt="Gunter Pauli"> </a> </div>
</div>
<!-- ./row -->
<div class="row event-spot break">
<div class="col-xs-12 col-sm-4 col-md-3 text-left time">
<h5> 18:00 - 18:15 </h5>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9 text-left topic">
<h3> Closing - Credits </h3>
<h4><a href="#"> </a></h4>
</div>
</div>
<!-- ./row -->
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section id="partners" class="partners-section page-section pad-top-half pad-bottom-half light-secondary-section">
<!-- inner-section : starts -->
<section class="inner-section">
<!-- container : starts -->
<section class="container">
<div class="row">
<article class="col-md-12 text-center">
<div class="section-heading">
<h2>Partners</h2>
</div>
</article>
</div>
<div class="row">
<article class="col-md-12 text-center add-top-half">
<div class="row">
<div class="col-md-4 col-sm-12 text-center" style="padding-top: 40px"> <a href="http://www.pwc.com.cy/" target="_blank"><img src="images/sponsors/PwC.png" height="80"/></a> </div>
<div class="col-md-4 col-sm-12 text-center" style="padding-top: 40px"> <a href="http://braintreepayments.com" target="_blank"><img src="images/sponsors/braintree.png" height="65"/></a> </div>
<div class="col-md-4 col-sm-12 text-center" style="margin-top: 40px"> <a href="http://www.toyota.com.cy/" target="_blank"><img src="images/sponsors/toyota.png"/></a> </div>
</div>
<div class="row">
<div class="col-md-4 text-center" style="padding-top: 40px">
<a href="http://www.costacoffee.com.cy/" target="_blank"><img src="images/sponsors/costa.png"/></a>
</div>
<div class="col-md-4 text-center" style="padding-top: 40px">
<a href="http://www.madtv.com.cy/" target="_blank"><img src="images/sponsors/mad.png"/></a>
</div>
<div class="col-md-4 text-center" style="padding-top: 40px">
<a href="http://www.kathimerini.com.cy/" target="_blank"><img src="images/sponsors/kathimerini.png"/></a>
</div>
</div>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section class="pre-footer-section page-section dark-section">
<!-- inner-section : starts -->
<section class="inner-section">
<!-- container : starts -->
<section class="container">
<div class="row">
<article class="col-md-3 pad-top pad-bottom mobile-no-padding-bottom col-sm-6">
<div class="pre-footer-container">
<div class="pre-footer-sub-heading">
<h3>about CEL </h3>
<em> </em>
<p> </p>
</div>
<div class="pre-footer-divider"></div>
<h6>The <a href="http://projectcel.com" target="_blank" style="color: #2EABB0;">Cypriot Enterprise Link (CEL)</a> is a youth-led organization
aimed to connect and support the Cypriot entrepreneurial
talent in order to form a local and a global entrepreneurial network
supported by events, meetups, workshops and projects.</h6>
<div class="pre-footer-social"> <a href="https://www.facebook.com/CypriotEnterpriseLink" target="_blank"><img class="img-responsive" src="images/social/01.png" alt="insights 2015"></a> <a href="https://twitter.com/cyentlink" target="_blank"><img class="img-responsive" src="images/social/02.png" alt="insights 2015"></a>