forked from StartBootstrap/startbootstrap-agency
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
2029 lines (1889 loc) · 126 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" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A greek community of people dedicated to promote women's engagement with technology & science. Its main activities consist of free workshops, meetups open to anyone interested, as well as partnerships with other tech communities and local chapters of Thessaloniki.">
<meta name="author" content="">
<meta property="og:title" content="SheSharp" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.shesharp.org/" />
<meta property="og:description" content="A greek community of people dedicated to promote women's engagement with technology & science. Its main activities consist of free workshops, meetups open to anyone interested, as well as partnerships with other tech communities and local chapters of Thessaloniki." />
<meta property="og:image" content="http://www.shesharp.org/img/header-image.jpg"/>
<title>SheSharp</title>
<link href='./favicon.ico?andy' type='image/x-icon' rel='shortcut icon'>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/agency.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Google analytics code -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-62565737-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body id="page-top" class="index">
<!-- HERO -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- <img class="logo" src="./img/logo.png"> -->
<a class="navbar-brand page-scroll" href="#page-top"><img class="logo" src="./img/logo.png" /></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#mission">Mission</a>
</li>
<li>
<a class="page-scroll" href="#events">Events</a>
</li>
<li>
<a class="page-scroll" href="#projects">Projects</a>
</li>
<li>
<a class="page-scroll" href="#team">Team</a>
</li>
<li>
<a class="page-scroll" href="#contact">Contact</a>
</li>
<li>
<a class="url" href="http://blog.shesharp.org/" target="_blank">Blog</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">Welcome to the SheSharp Greece Website.</div>
<div class="intro-heading">#include women</div>
<a href="#mission" class="page-scroll btn btn-xl">More Info <i class="fa fa-angle-double-down"></i></a>
</div>
</div>
</header>
<!-- MISSION -->
<section id="mission">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our mission</h2>
<p class="generic-paragraph">
A greek community of people dedicated to promote women's engagement with technology & science. Its main activities consist of free workshops, meetups open to anyone interested, as well as partnerships with other tech communities and local chapters of Thessaloniki.
</p>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/past.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>September 2014</h4>
<h4 class="subheading">Past</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
We first met at a conference considering women and technology where most of us were volunteers. While discussing this issue with the rest of the attendees, we felt it was our obligation to raise awareness about it, get together and do something. That was when SheSharp was born.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/present.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>
<script>
var month = new Array();
month[0] = "January";
month[1] = "February";
month[2] = "March";
month[3] = "April";
month[4] = "May";
month[5] = "June";
month[6] = "July";
month[7] = "August";
month[8] = "September";
month[9] = "October";
month[10] = "November";
month[11] = "December";
document.write(month[new Date().getMonth()] + " " + new Date().getFullYear());
</script>
</h4>
<h4 class="subheading">Present</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
Currently, our core team consists of almost twenty members, coming from various different backgrounds. We are all interested in promoting equality and knowledge transfer, as well as cultivating a positive culture of mutual respect. Our favourite part of the day is when we work and create stuff together, as a team.
</p><br/>
<p class="text-muted">
The main actions we currently take include free seminars and workshops open to anyone interested as well as some projects we mainly develop inside the team. Moreover, we support and collaborate with many other communities. This way we hope to practically display and boost the existence of females in technology.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/3.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4><script>document.write(new Date().getFullYear())</script>-</h4>
<h4 class="subheading">Future</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
As the tech industry is growing, the need to fix the gender gap becomes more vital. We, as a team, hope to inspire girls to get more involved with technology and science. More and more amazing things are going to be organised! Stay tuned...
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<a href="#contact" class="page-scroll btn"> <h4>Be Part
<br>Of Our
<br>Story!</h4></a>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- EVENTS -->
<!-- Adding new events is done on the same "row", from newest to oldest (i.e. a new event is added on the top of the list) -->
<section id="events" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Events</h2>
<h3 class="section-subheading text-muted">Upcoming and past events, newest to oldest</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal21" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/arduino-day-2017-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Arduino Day 2017</h4>
<p class="text-muted">Presentations and Projects</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal20" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/xmas-party-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>XMAS Party</h4>
<p class="text-muted">Christmas + New Year Party!</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal19" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/blockchain-hmm-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Blockchain<sup>2</sup></h4>
<p class="text-muted">Blockchain, hmmm...</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal18" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/poster-design-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Poster Design for Beginners</h4>
<p class="text-muted">Academy Workshop</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal17" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/birthday-x2-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Birthday Party v.2</h4>
<p class="text-muted">Celebrating two (She)Sharp years</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal16" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/thesshack-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Thesshack</h4>
<p class="text-muted">Wikipedia Hackathon</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal15" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/fwd2016-banner.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Fedora Women Day</h4>
<p class="text-muted">Diversity & Inclusion</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal14" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/arduino103-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Shiftduino</h4>
<p class="text-muted">Shifting Memories...</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal13" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/editathon2-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>2nd Editathon</h4>
<p class="text-muted">Diversity and Wikipedia Contributors</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal12" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/blockchain-banner.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Blockchain</h4>
<p class="text-muted">F*ck yeah blockchain!</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal11" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/illustrator-banner.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Illustrator Workshop</h4>
<p class="text-muted">All you need to know about design</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal10" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/arduinoday2016-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Arduino Day 2016</h4>
<p class="text-muted">Bringing together people and projects</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal9" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/arduino102-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Moveduino</h4>
<p class="text-muted">Make things move!</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal8" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/arduino101-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Loveduino</h4>
<p class="text-muted">Make arduino, not war!</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal7" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/hashcode-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Hash Code</h4>
<p class="text-muted">Solve a real-life engineering problem from Google</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal6" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/introtowebdev-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Intro to Web Development</h4>
<p class="text-muted">Don't Just Browse, Create!</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal5" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/birthday-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>1 (She)Sharp Year</h4>
<p class="text-muted">Nothing new to learn here, just a celebration!</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal4" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/photoworkshop-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>PHOTO[work]SHOP</h4>
<p class="text-muted">Photoshop Seminar</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal3" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/editathon-banner.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>1st Editathon</h4>
<p class="text-muted">Massive edits on greek Wikipedia</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal2" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/arduino-banner.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Arduino Coffee Break</h4>
<p class="text-muted">An introduction to Arduino</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal1" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/events/hourofcode-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Hour of Code</h4>
<p class="text-muted">An introduction to Javascript and HTML Canvas</p>
</div>
</div>
</div>
</div>
</section>
<!-- PROJECTS -->
<!-- Adding new projects is done on the same "row", from newest to oldest (i.e. a new project is added on the top of the list) -->
<section id="projects">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Projects</h2>
<h3 class="section-subheading text-muted">Projects we developed as a team or in collaboration with others</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#projectModal3" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/projects/nasa-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Earth is cool</h4>
<p class="text-muted">Our participation for the NasaSpace Apps Challenge</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#projectModal2" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/projects/girlup-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Girl Up! Website</h4>
<p class="text-muted">The website of the Girl Up! team</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#projectModal1" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content"></div>
</div>
<img src="img/projects/bordershare-banner.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>BorderShare</h4>
<p class="text-muted">Our participation for the BorderHack hackathon</p>
</div>
</div>
</div>
</div>
</section>
<section id="devit">
<div class="row">
<div class="col-sm-12 intro-text">
<a href="http://devitconf.org" target="_blank"><img src="img/projects/devit-logo.svg" class="devit-logo"></a>
<div class="devit-text">
Our team proudly co-organizes DEVit, in collaboration with <a href="http://skgtech.io" target="_blank">SKGTech</a>
</div>
</div>
</div>
</section>
<!-- TEAM -->
<section id="team" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our Team</h2>
<h3 class="section-subheading text-muted"></h3>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/andy1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names"><a href="http://www.amfounta.com/" target="_blank">Antigoni-Maria Founta</a></h4>
<!-- <p class="text-muted">Andy is a Data Scientist wannabe, currently studying at Aristotle University of Thessaloniki. She is passionate about... well pretty much anything that has to do with data and geography. Here at SheSharp, among many other stuff she is the Social Media guru.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/AntiFou" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/anti.fou" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://gr.linkedin.com/in/amfounta" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/AndyFou" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/katerina1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Aikaterini Katmada</h4>
<!-- <p class="text-muted">Katerina is a Computer Science graduate from Aristotle University of Thessaloniki (AuTh) and an aspiring artist. She a holds a BSc in CS from the Informatics Dept. of AuTh, as well as a MSc from the same department. Her interests include UX, HCI, computer games art & design and visual arts. She spends her free time etching and improving her printmaking skills!</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/KaterinaKatmada" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/katerinakatmada" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="http://gr.linkedin.com/in/katerinakatmada" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/katerinakat" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/annie1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Annie Chatsatrian</h4>
<!-- <p class="text-muted">Annie is an IT student at the Alexander Technological Educational Institute of Thessaloniki, interested in artificial intelligence and data analysis. She likes learning new things and talking about technology. </p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/sortingbubbles" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/tazzyannie" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="http://gr.linkedin.com/in/achatsat" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/sortingbubbles" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/amalia1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Amalia Vradi</h4>
<!-- <p class="text-muted">Amalia studies Applied Informatics at the University of Macedonia. She is an aspiring software developer and always seeks to discover new things. Apart from that she is into crafty and creative activities. </p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/Alkistics" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/amalia.vradi" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="http://gr.linkedin.com/in/amaliavradi" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/amaliavr" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/theodore1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Theodore Keloglou</h4>
<!-- <p class="text-muted">Currently, Theodore is an Applied Informatics student in the University of Macedonia, Greece. He is mostly interested in Web development and especially open source software. Despite being a "he", he supports and helps the team on domains he has experience.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/sirodoht" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/sirodoht" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="http://gr.linkedin.com/in/sirodoht" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/sirodoht" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/anastasia2.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Anastasia Solari</h4>
<!-- <p class="text-muted">Anastasia is an automation engineer currently in her final year of study - carrying out her thesis, a robotics quadcopter project. She is highly interested in the design and development of electronics, robotics and automation. Known hobbies include hiking, electronic jewelry making and cats!</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/solarblue_" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/solarblue93" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://www.linkedin.com/in/solarblue" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/SolarBlue" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/argiris1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names"><a href="http://argiris.me/portfolio/" target="_blank">Argiris Paraskevas</a></h4>
<!-- <p class="text-muted">Argiris is a full-time designer and part-time Informatics student. He helped design our logo and many of the graphics. He was also the host/tutor to our Photoshop Seminar. Finally -quoting him- he is more graphical than Photoshop!</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/fmayakos" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/fmayakos" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="http://gr.linkedin.com/in/argirisparaskevas" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/despoina1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Despoina Antonopoulou</h4>
<!-- <p class="text-muted">Despoina graduated from University of Macedonia - Department of International and European Studies and holds a MSc in European Youth Policies. Besides her willingness to learn new things and experience new cultures, she loves interacting with people. Her moto is “Everyone gets what they deserve”.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://www.facebook.com/Antonopoulou.Despoina" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://www.linkedin.com/in/desantonopoulou" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/petros1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Petros Gasteratos</h4>
<!-- <p class="text-muted">Petros is a full stack web developer, a music engineer, a designer, our very own wildcard. He is part of the graphics team and is mainly occupied with the posters. Last but not least, he is also an Informatics student at the Ionian University.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/ptrgast" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/pgasteratos" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="http://gr.linkedin.com/in/ptrgast" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/ptrgast" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/nikos1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Nikos Triantafyllidis</h4>
<!-- <p class="text-muted">Nikos holds a BSc in Computer Science from the Aristotle University as well as an MSc in System and Network Engineering from the University of Amsterdam. He is currently working as a Security Consultant in the Netherlands. His professional interests include Data Management, Systems Engineering and Cyber Security. He loves Jazz and Food (note the capital F), and prefers his outstanding work in programming, music and poetry speak instead of him. This section was in no way written by himself...</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://www.facebook.com/nick.triantafillidis" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://nl.linkedin.com/in/ntriantafyllidis" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/ntrianta" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/george2.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">George Kostopoulos</h4>
<!-- <p class="text-muted">George is an Automation Engineer from Thessaloniki, Greece, currently pursuing a Master of Science in Internet and WorldWide Web, specializing on Data Science and Software Technologies, at the Aristotle University of Thessaloniki. My main interests include Web Mining & Data Mining as well as Text Mining, Machine Learning and Artificial Intelligence. I am also fascinated by Natural Language Processing, Social Computing and Web Development.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/george_kst" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/george.kst" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://gr.linkedin.com/in/georgekst" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/georgekst" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/dimitra1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Dimitra Karakopoulou</h4>
<!-- <p class="text-muted">Dimitra is a student at the Department of Economics in the University of Macedonia. She is interested in innovation, creativity and learning new things. She likes to be part of a team, to voluntarily participate in various events and to socialize with new people, as she believes that these traits help her to evolve.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://www.facebook.com/dimitra.karacop" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/efi1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Efstratia Ampaza</h4>
<!-- <p class="text-muted">Efstratia is an undergraduate student in the department of Applied Informatics at the University of Macedonia. She is interested in Artificial Intelligence and Cryptanalysis. Her advice would always be to test your limits as only then you will know what you are capable of.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://www.facebook.com/eustratia.a" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://gr.linkedin.com/in/eampaza" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/aefstratia" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/aris1.png" class="img-responsive img-circle" alt="">
<h4 class="members-names">Aristotelis Papadopoulos</h4>
<!-- <p class="text-muted">Aristotelis is an undergraduate student in the department of Applied Informatics at the University of Macedonia. He likes coding and he is a very organizational and businesslike person and it is obvious of how structured his programs are. Aristotelis wants to experience various things in life and that's what he suggests everyone to do</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://www.facebook.com/aris.papadopoulos.942" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/dora1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Theodora Refiadou</h4>
<!-- <p class="text-muted">Theodora has a degree in Administation and Finance and a degree in Public Relations and Communications as well. Her hobby is learning foreign languages, while she loves italian and russian. She was also involved with the art of photography for about 1,5 years. She is currently working in an office that provides marketing services.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://www.facebook.com/zizelenia" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://youtu.be/AUv3v94uuSY" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/vicky1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Vicky Fiska</h4>
<!-- <p class="text-muted">Vicky is student at the Department of Engineering at Informatics and Telecommunications, of the University of Western Macedonia. She loves the structure and logic of coding and always strives to write elegant and efficient code, whether it is for web or software developing. She hopes her individual commitment to be more than a help in this group effort. She also believes that a good team needs three things: the right people, the right spirit, and a couple inside jokes.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://www.facebook.com/Vicky.SG" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="http://goo.gl/T4xngw" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/milo1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Katerina Toumpektsi</h4>
<!-- <p class="text-muted">Katerina is an Architect and also holds a masters degree on Nanotechnology, Processes and Advanced Material Technology from AUTh. She is particularly interested in innovative research of architectural design, through the material aspect of architecture and the customization potential of parametric architecture, provided by digital technology. Her personal interests include architectural and conceptual competitions, applied arts and design, crafting, traveling and tango.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/katubek" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/katarametin.einaidynaton" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/alex1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Alexandros Dorodoulis</h4>
<!-- <p class="text-muted">Alexandros is an Economics undergraduate student at the Aristotle University of Thessaloniki. His interests include software development, data analysis and he is always thirsty for more knowledge.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/AlexDorodoulis" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/alexdor94" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://gr.linkedin.com/in/alexandrosdorodoulis" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/alexdor" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/liakos1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Konstantinos Liakos</h4>
<!-- <p class="text-muted">Konstantinos is an excellent accountant and is our personal advisor on such issues, for which we are thankful - even though sometimes we are stubborn and don't listen to his well-stated advice.</p> -->
<ul class="list-inline social-buttons">
<li><a href="https://gr.linkedin.com/in/konstantinos-liakos-97b8404b" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/template.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Zoe Chalvatzi</h4>
<!-- <ul class="list-inline social-buttons">
<li><a href="" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul> -->
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/dimix1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Dimitra Charalambidou</h4>
<!-- <ul class="list-inline social-buttons">
<li><a href="" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul> -->
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/template.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Alex Papadopoulos</h4>
<!--<p class="text-muted">
PhD adventurer on Citizen Science and crowdsourcing technologies’ HCI, UX enthusiast, full time advocate of making the world suck less.
</p>-->
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/imalexnowUK" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.linkedin.com/in/imalexnow/" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://www.facebook.com/imalexnow" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/template.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Philippos Karpou</h4>
<!-- <ul class="list-inline social-buttons">
<li><a href="" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul> -->
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/template.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Themis Zaimidis</h4>
<!-- <ul class="list-inline social-buttons">
<li><a href="" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul> -->
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/arnold1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Arnolnt Spyros</h4>
<!--<p class="text-muted">
Arnolnt Spyros studιes Engineering of Computer Science at the Alexander Technological Educational Institute of Thessaloniki. His area of interests are: OOP, OOD, Game Development, Security
</p>-->
<ul class="list-inline social-buttons">
<li><a href="https://www.linkedin.com/in/arnolnt-spyros" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/ArnolntSpyros" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/template.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Eva Perontsi</h4>
<!-- <ul class="list-inline social-buttons">
<li><a href="" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul> -->
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/tsoupra1.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Georgia Tsoupra</h4>
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/stumblerg" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="https://www.facebook.com/georgia.tsoupra" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="https://www.linkedin.com/in/georgiatsoupra" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/gtsoupra" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img src="img/team/template.jpg" class="img-responsive img-circle" alt="">
<h4 class="members-names">Dimitra Afrati</h4>
<!-- <ul class="list-inline social-buttons">
<li><a href="" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul> -->
</div>
</div>
</div>
</div>
</section>
<!-- COMMUNITIES -->
<aside class="clients">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Communities we support</h2>
<h3 class="section-subheading text-muted"></h3>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-6">
<a href="http://skgtech.io/" target="_blank">
<img src="img/logos/skgtech-logo.svg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://www.openthessaloniki.org/" target="_blank">
<img src="img/logos/openthess.png" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="https://zen.coderdojo.com/dojo/807" target="_blank">
<img src="img/logos/coderdojothess.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="https://lambdaspace.gr/" target="_blank">
<img src="img/logos/lambdaspace.png" class="img-responsive img-centered" alt="">
</a>
</div>
</div>
</div>
</aside>
<!-- CONTACT -->
<section id="contact">
<div class="container" id="participationform">
<div class="col-lg-12 text-center">
<h2 class="section-heading">I'm sharp too!</h2>
<h3 class="section-subheading">Interested in joining our team?</h2>
</div>
<div class="col-lg-12">
<!-- Begin MailChimp Signup Form -->
<div id="mc_embed_signup">
<form action="https://shesharp.us10.list-manage.com/subscribe/post?u=7ad061b4a8c1061c25c6b2f2a&id=7c4be75b57" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="form-group mc-field-group">
<label for="mce-FNAME">First Name</label>
<input type="text" placeholder="Your Name" value="" name="FNAME" class="form-control" id="mce-FNAME">
</div>
<div class="form-group mc-field-group">
<label for="mce-EMAIL">Email Address</label>
<input type="email" placeholder="Your Email" value="" name="EMAIL" class="required email form-control" id="mce-EMAIL">
</div>
<div class="mc-field-group input-group">
<ul style="list-style-type: none; color: #ff6b6b;" >
<li><input type="radio" value="1" name="group[9837]" id="mce-group[9837]-9837-0"><label for="mce-group[9837]-9837-0" class="mc-rbutt"> I want to stay updated!</label></li>
<li><input type="radio" value="2" name="group[9837]" id="mce-group[9837]-9837-1"><label for="mce-group[9837]-9837-1" class="mc-rbutt"> I want to become a member!</label></li>
</ul>
</div>
</div>
<div class="clearfix"></div>
<div class="col-lg-12 text-center">
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;"><input type="text" name="b_7ad061b4a8c1061c25c6b2f2a_7c4be75b57" tabindex="-1" value=""></div>
<div class="clear"><input type="submit" value="Submit" name="subscribe" id="mc-embedded-subscribe" class="btn btn-xl button"></div>
</div>
</div>
</form>
</div>
<!--End mc_embed_signup-->
</div>