-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1641 lines (1565 loc) · 67.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CEL Insights Conference 2015</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 class="nav-active" href="/">home</a></li>
<li><a 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="#about-insights">What is Insights</a></li>
<li><a class="scroll-link" href="#partners">Partners</a></li>
<li><a class="scroll-link" href="#directions">Directions</a></li>
<li><a href="#modal-feed" data-toggle="modal">Newsfeed</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">
<!-- inner-section : starts -->
<section class="inner-section">
<!-- container : starts -->
<section class="container">
<div class="row">
<article class="col-md-12 text-center">
<div class="full-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 class="nav-active" href="/">home</a></li>
<li><a href="#about-insights" class="scroll-link">About</a></li>
<li><a href="speakers.html" class="scroll-link">Speakers</a></li>
<li><a href="startups.html">Startups</a></li>
<li><a href="schedule.html">schedule</a></li>
<li><a href="#partners" class="scroll-link">Partners</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="#modal-feed" data-toggle="modal">Newsfeed</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">
<div class="home-main-button subpage-main-button "> <a class="btn btn-ticket" href="#" target="_blank"><span>Photos coming soon</span></a> </div>
</div>
</div>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section id="about-insights" class="about-insights-section page-section pad-top pad-bottom light-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>The Insights Conference 2015</h2>
</div>
<div class="intro section-subheading">
<h3>
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.
</h3>
</div>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section class="value-section page-section page-section transparent-section parallax parallax-slide-01 ">
<!-- inner-section : starts -->
<section class="inner-section pad-top pad-bottom">
<!-- container : starts -->
<section class="container">
<div class="row">
<article class="col-md-12 mobile-no-margin-top text-center">
<div class="section-heading">
<a href="schedule.html"><h2>What's in your ticket</h2></a>
</div>
</article>
<div class="row">
<article class="col-md-12 add-top-half">
<div class="three-section-page-no-nav-owl">
<!-- 1st item -->
<div class="item">
<div class="home-page-about-section">
<div class="about-img">
<!-- <img class="img-responsive" src="http://placehold.it/350x200" alt="insights 2015"> -->
</div>
<div class="about-details-section text-center">
<div class="about-absolute">
<div class="rotative-small-square-container">
<div class="rotative-small-square-inner-container">
<i class="icon-pencil-2"></i>
</div>
</div>
</div>
<h3>WORKSHOPS</h3>
<div class="common-text">
<p>An expert providing insights into <br>a subject - more technical</p>
</div>
</div>
</div>
</div>
<!-- 2nd item -->
<div class="item">
<div class="home-page-about-section">
<div class="about-img">
<!-- <img class="img-responsive" src="http://placehold.it/350x200" alt="insights 2015"> -->
</div>
<div class="about-details-section text-center">
<div class="about-absolute">
<div class="rotative-small-square-container">
<div class="rotative-small-square-inner-container">
<i class="icon-beaker-1"></i>
</div>
</div>
</div>
<h3>SKILLS LAB</h3>
<div class="common-text">
<p>Practical application of<br>a specific skill - more hands on</p>
</div>
</div>
</div>
</div>
<!-- 2nd item -->
<div class="item">
<div class="home-page-about-section">
<div class="about-img">
<!-- <img class="img-responsive" src="http://placehold.it/350x200" alt="insights 2015"> -->
</div>
<div class="about-details-section text-center">
<div class="about-absolute">
<div class="rotative-small-square-container">
<div class="rotative-small-square-inner-container">
<i class="icon-graduation-cap-2"></i>
</div>
</div>
</div>
<h3>LECTURE/TALK</h3>
<div class="common-text">
<p>An entrepreneur providing inspiration/<br>telling his story</p>
</div>
</div>
</div>
</div>
<!-- 3rd item -->
<div class="item">
<div class="home-page-about-section">
<div class="about-img">
<!-- <img class="img-responsive" src="http://placehold.it/350x200" alt="insights 2015"> -->
</div>
<div class="about-details-section text-center">
<div class="about-absolute">
<div class="rotative-small-square-container">
<div class="rotative-small-square-inner-container">
<i class="icon-lightbulb-1"></i>
</div>
</div>
</div>
<h3>DEBATE</h3>
<div class="common-text">
<p>At least two experts of opposing views for a subject take questions from a moderator and the crowd</p>
</div>
</div>
</div>
</div>
<!-- 4th item -->
<div class="item">
<div class="home-page-about-section">
<div class="about-img">
<!-- <img class="img-responsive" src="http://placehold.it/350x200" alt="insights 2015"> -->
</div>
<div class="about-details-section text-center">
<div class="about-absolute">
<div class="rotative-small-square-container">
<div class="rotative-small-square-inner-container">
<!--<span class="icon-overlap">
<i class="icon-comment-2"></i>
<i class="icon-comment-2"></i>
</span>-->
<!--<i class="icon-chat-alt"></i>-->
<i class="icon-chat-empty"></i>
</div>
</div>
</div>
<h3>DISCUSSION</h3>
<div class="common-text">
<p>Discussion is participant led. Goal is for participants to come up with an actionable plan for the future</p>
</div>
</div>
</div>
</div>
<!-- 4th item -->
<div class="item">
<div class="home-page-about-section">
<div class="about-img">
<!-- <img class="img-responsive" src="http://placehold.it/350x200" alt="insights 2015"> -->
</div>
<div class="about-details-section text-center">
<div class="about-absolute">
<div class="rotative-small-square-container">
<div class="rotative-small-square-inner-container">
<!--<span class="icon-overlap">
<i class="icon-comment-2"></i>
<i class="icon-comment-2"></i>
</span>-->
<!--<i class="icon-chat-alt"></i>-->
<i class="icon-user-2"></i>
</div>
</div>
</div>
<h3>Network</h3>
<div class="common-text">
<p>More than 600 enthusiastic <br>
attendees</p>
</div>
</div>
</div>
</div>
<!-- 4th item -->
<div class="item">
<div class="home-page-about-section">
<div class="about-img">
<!-- <img class="img-responsive" src="http://placehold.it/350x200" alt="insights 2015"> -->
</div>
<div class="about-details-section text-center">
<div class="about-absolute">
<div class="rotative-small-square-container">
<div class="rotative-small-square-inner-container">
<!--<span class="icon-overlap">
<i class="icon-comment-2"></i>
<i class="icon-comment-2"></i>
</span>-->
<!--<i class="icon-chat-alt"></i>-->
<i class="icon-food-1"></i>
</div>
</div>
</div>
<h3>Lunch</h3>
<div class="common-text">
<p>Delicious buffet lunch from our <br>
gourmet chefs</p>
</div>
</div>
</div>
</div>
</div>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section class="themes-section page-section pad-top pad-bottom light-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">
<a href="schedule.html"><h2>Themes</h2></a>
</div>
</article>
</div>
<div class="row">
<article class="col-md-12 add-top-half">
<div class="four-section-no-nav-owl add-top-half">
<div class="item">
<div class="home-page-service-section text-center">
<div class="rotative-square-container">
<div class="rotative-square-inner-container">
<!--<img src="images/home-page/service-section/1.png" alt="insights 2015">-->
<i class="icon-rocket-1"></i>
</div>
</div>
<!--<div class="about-img">
<img class="img-responsive" src="http://placehold.it/350x200" alt="insights 2015">
</div>-->
<h3>Industry Disruption</h3>
<div class="divider"></div>
<div class="common-text">
<p>We will explore how different industries can be disrupted in the future and incremental vs radical innovation.</p>
</div>
</div>
</div>
<div class="item">
<div class="home-page-service-section text-center">
<div class="rotative-square-container">
<div class="rotative-square-inner-container">
<!--<img src="images/home-page/service-section/2.png" alt="insights 2015">-->
<i class="icon-chart-pie-outline"></i>
</div>
</div>
<h3>Entrepreneurial Environments</h3>
<div class="divider"></div>
<div class="common-text">
<p>We will dive into anything that affects a startup ecosystem.</p>
</div>
</div>
</div>
<div class="item">
<div class="home-page-service-section text-center">
<div class="rotative-square-container">
<div class="rotative-square-inner-container">
<i class="icon-params"></i>
</div>
</div>
<h3>Startup<br>
World</h3>
<div class="divider"></div>
<div class="common-text">
<p>We will go into the details of what Startups need to grow.</p>
</div>
</div>
</div>
<div class="item">
<div class="home-page-service-section text-center">
<div class="rotative-square-container">
<div class="rotative-square-inner-container">
<i class="icon-megaphone-2"></i>
</div>
</div>
<h3>Digital<br>
economy</h3>
<div class="divider"></div>
<div class="common-text">
<p>We will have a massive exhibition on digitally enabled startups at the foyer.</p>
</div>
</div>
</div>
</div>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section id="speakers" class="speakers-section page-section pad-top pad-bottom dark-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">
<a href="speakers.html"><h2>Speakers</h2></a>
</div>
<div class="section-subheading">
<h3>We will be hosting more than 30 speakers from around the world.</h3>
</div>
</article>
</div>
<div class="row add-top-half">
<article class="col-md-12">
<div class="three-section-page-no-nav-owl">
<!-- Start of first page -->
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Alice.png" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://uk.linkedin.com/in/alicebentinck" target="_blank"><img src="images/speakers-social/03.png" alt="Alice Bentinck linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Alice Bentinck</h3>
<p>Co-Founder <br>Entrepreneur First</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Cristiano.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/cbetta" target="_blank"><img src="images/speakers-social/02.png" alt="Cristiano Betta twitter"></a>
<a href="https://www.linkedin.com/profile/view?id=12362298" target="_blank"><img src="images/speakers-social/03.png" alt="Cristiano Betta Linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Cristiano Betta</h3>
<p> Senior Developer Advocate<br>Braintree</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/JackLang.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Jack Lang</h3>
<p>Co-Founder <br> Raspberry Pi Foundation</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/GunterPauli.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/MyBlueEconomy" target="_blank"><img src="images/speakers-social/02.png" alt="Gunter Pauli twitter"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Gunter Pauli</h3>
<p>Author <br>Blue Economy</p>
</div>
</div>
</div>
</div>
<!-- End for first page -->
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/AlexLoizou.png" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/alexloiz" target="_blank"><img src="images/speakers-social/02.png" alt="Alex Loizou Twitter"></a>
<a href="https://uk.linkedin.com/in/alexloizou" target="_blank"><img src="images/speakers-social/03.png" alt="Alex Loizou Linkein"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Alex Loizou</h3>
<p>Co-founder <br>StreetHub</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Matt.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/ishmatt" target="_blank"><img src="images/speakers-social/02.png" alt="Matt twitter"></a>
<a href="https://www.linkedin.com/profile/view?id=108241269" target="_blank"><img src="images/speakers-social/03.png" alt="Matt Linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Matt Isherwood</h3>
<p>Web Product Manager <br>Onefinestay</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/YosiGlick.png" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/YosiGlick" target="_blank"><img src="images/speakers-social/02.png" alt="Yosi Glick twitter"></a>
<a href="https://www.linkedin.com/in/yglick" target="_blank"><img src="images/speakers-social/03.png" alt="Yosi Glick Linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Yosi Glick</h3>
<p>Co-Founder and CEO <br>Jinni</p>
</div>
</div>
</div>
</div>
<!-- End of second row -->
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Julia.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/jpapageorgiou" target="_blank"><img src="images/speakers-social/02.png" alt="insights 2015"></a>
<a href="https://www.linkedin.com/in/juliapapageorgiou" target="_blank"><img src="images/speakers-social/03.png" alt="insights 2015"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Julia Papageorgiou</h3>
<p>Founder & Director <br>JPP Marketing Ltd.</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/ParisThomas.png" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/thomasparis" target="_blank"><img src="images/speakers-social/02.png" alt="Paris thomas twitter"></a>
<a href="http://cy.linkedin.com/in/paristhomas" target="_blank"><img src="images/speakers-social/03.png" alt="Paris thomas linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Paris Thomas</h3>
<p>Co-Founder <br>Open Box Communication, <br>ENERMAP, Chrysalis LEAP</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/PeterNixey.jpeg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/peternixey" target="_blank"><img src="images/speakers-social/02.png" alt="Peter Nixey twitter"></a>
<a href="http://linkedin.com/in/peternixey/en" target="_blank"><img src="images/speakers-social/03.png" alt="Peter Nixey linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Peter Nixey</h3>
<p>CEO <br>Twistilled.com</p>
</div>
</div>
</div>
</div>
<!-- End of third row -->
<!-- Fourth Row -->
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Chrysanthos.jpeg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/cchrysan" target="_blank"><img src="images/speakers-social/02.png" alt="Chrysanthos Chrysanthou twitter"></a>
<a href="https://www.linkedin.com/profile/view?id=10337902" target="_blank"><img src="images/speakers-social/03.png" alt="Chrysanthos Chrysanthou linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Chrysanthos Chrysanthou </h3>
<p>Executive in Residence <br> Notion Capital</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/AlexMichael.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/alexismic" target="_blank"><img src="images/speakers-social/02.png" alt="Alexis Michael twitter"></a>
<a href="https://www.linkedin.com/in/alexandrosmichael" target="_blank"><img src="images/speakers-social/03.png" alt="Alexis Michael linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Alex Michael</h3>
<p>Software Engineer <br> Tictail</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Jack.png" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/jacksmith" target="_blank"><img src="images/speakers-social/02.png" alt="Jack Smith twitter"></a>
<a href="https://www.linkedin.com/in/jacksmith112" target="_blank"><img src="images/speakers-social/03.png" alt="Jack Smith linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Jack Smith</h3>
<p>Serial Entrepreneur <br> Startup Advisor</p>
</div>
</div>
</div>
</div>
<!-- End of fourth row -->
<!-- Fifth row -->
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/AlexisPiperides.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/alexispiperides" target="_blank"><img src="images/speakers-social/02.png" alt="Marinos Cleanthous twitter"></a>
<a href="https://www.linkedin.com/in/alexisp" target="_blank"><img src="images/speakers-social/03.png" alt="Marinos Cleanthous linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Alexis Piperides</h3>
<p>CEO and Co-founder <br>PROTOIO Inc.</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Gaston.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/GastonChee" target="_blank"><img src="images/speakers-social/02.png" alt="Gaston Chee twitter"></a>
<a href="http://uk.linkedin.com/in/gastonchee" target="_blank"><img src="images/speakers-social/03.png" alt="Gaston Chee linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Gaston Chee</h3>
<p>Former CEO <br>BeGo</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/MarinosCleanthous.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/cleanthous" target="_blank"><img src="images/speakers-social/02.png" alt="Marinos Cleanthous twitter"></a>
<a href="https://www.linkedin.com/in/marinoskleanthous" target="_blank"><img src="images/speakers-social/03.png" alt="Marinos Cleanthous linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Marinos Cleanthous </h3>
<p>Director <br> IP Cyprus</p>
</div>
</div>
</div>
</div>
<!-- End of fifth row -->
<!-- Sixth row -->
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Danny.png" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="http://linkedin.com/in/dalking" target="_blank"><img src="images/speakers-social/03.png" alt="Marinos Cleanthous linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Danny King</h3>
<p>Co-founder and CEO <br>Accredible</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Gatos.png" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/gatosg" target="_blank"><img src="images/speakers-social/02.png" alt="Marinos Cleanthous twitter"></a>
<a href="https://www.linkedin.com/in/georgiosgatos" target="_blank"><img src="images/speakers-social/03.png" alt="Marinos Cleanthous linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Georgios Gatos</h3>
<p>Co-founder and COO <br>incrediblue</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Kostas.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/kostamavs" target="_blank"><img src="images/speakers-social/02.png" alt="Kostas Mavroulakis twitter"></a>
<a href="http://linkedin.com/in/kostasmavroulakis" target="_blank"><img src="images/speakers-social/03.png" alt="Kostas Mavroulakis linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Kostas Mavroulakis</h3>
<p>Enterprise Champion <br> Start-up Advisor</p>
</div>
</div>
</div>
</div>
<!-- End of sixth row -->
<!-- Seventh row -->
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/TalHanoci.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/Tal_Hanoci" target="_blank"><img src="images/speakers-social/02.png" alt="Tal Hanoci linkedin"></a>
<a href="http://il.linkedin.com/in/talhanoci" target="_blank"><img src="images/speakers-social/03.png" alt="Tal Hanoci linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Tal Hanoci</h3>
<p>VP Business Development <br>Smser</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/MattSmith.jpg" alt="insights 2015">
<!-- Team hover content -->
<div class="team-hover-content">
<div class="team-hover-social text-center">
<a href="https://twitter.com/mattTP" target="_blank"><img src="images/speakers-social/02.png" alt="Matt Smith twitter"></a>
<a href="http://uk.linkedin.com/in/matttp" target="_blank"><img src="images/speakers-social/03.png" alt="Matt Smith linkedin"></a>
</div>
</div>
</div>
<div class="team-details-section text-center">
<svg class="sland-bottom sland-type2" viewBox="0 0 100 100" preserveAspectRatio="none">
<path d="M0 100 L100 100 L100 0 Z"/>
</svg>
<div class="team-details-section-text">
<h3>Matt Smith</h3>
<p>Director<br> Centre for Entrepreneurs</p>
</div>
</div>
</div>
</div>
<div class="item">
<div class="home-page-speakers-section">
<div class="team-img-section">
<img class="img-responsive" src="images/speakers/Yiannis.jpg" alt="insights 2015">
<!-- Team hover content -->