forked from IEEEUCSC/RevolUX-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1683 lines (1499 loc) · 88.4 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>RevolUX</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="RevolUX - A UI/UX designation, unleashing the creative and artistic minds of Sri Lankan undergraduates and schoolers, organised by AIESEC in the University of Colombo in collaboration with the IEEE Student Branch of UCSC.">
<meta name="keywords" content="UCSC, IEEE, Designathon, UI, UX, AIESEC">
<meta name="author" content="IEEE-UCSC">
<link rel="shortcut icon" type="image/jpg" href="images-event/logo.png" />
<!-- CSS Files
================================================== -->
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/jpreloader.css" type="text/css">
<link rel="stylesheet" href="css/animate.css" type="text/css">
<link rel="stylesheet" href="css/plugin.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="css/owl.theme.css" type="text/css">
<link rel="stylesheet" href="css/owl.transitions.css" type="text/css">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="css/jquery.countdown.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/twentytwenty.css" type="text/css">
<!-- custom background -->
<link rel="stylesheet" href="css/bg.css" type="text/css">
<!-- color scheme -->
<link rel="stylesheet" href="css/colors/magenta.css" type="text/css" id="colors">
<link rel="stylesheet" href="css/color.css" type="text/css">
<!-- load fonts -->
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.css" type="text/css">
<link rel="stylesheet" href="fonts/elegant_font/HTML_CSS/style.css" type="text/css">
<link rel="stylesheet" href="fonts/et-line-font/style.css" type="text/css">
<!-- RS5.0 Stylesheet -->
<link rel="stylesheet" href="revolution/css/settings.css" type="text/css">
<link rel="stylesheet" href="revolution/css/layers.css" type="text/css">
<link rel="stylesheet" href="revolution/css/navigation.css" type="text/css">
<link rel="stylesheet" href="css/rev-settings.css" type="text/css">
<!-- custom font -->
<link rel="stylesheet" href="css/font-style.css" type="text/css">
<link rel="stylesheet" href="css/new.css" type="text/css">
</head>
<body id="homepage">
<div id="wrapper">
<!-- header begin -->
<header class="transparent">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- logo begin -->
<div id="logo">
<a href="index.html">
<img class="logo" height="30px" width="124px" src="images-event/logo.png" alt="">
</a>
</div>
<!-- logo close -->
<!-- small button begin -->
<span id="menu-btn"></span>
<!-- small button close -->
<div class="header-extra">
<div class="v-center">
<span id="b-menu">
<span></span>
<span></span>
<span></span>
</span>
</div>
</div>
<!-- mainmenu begin -->
<ul id="mainmenu" class="ms-2">
<li><a href="#section-hero">Home<span></span></a></li>
<li><a href="#section-about">About<span></span></a></li>
<li><a href="#section-countdown">Register<span></span></a></li>
<li><a href="#section-features">Guidelines<span></span></a></li>
<li><a href="#section-schedule">Schedule<span></span></a></li>
<li><a href="#section-ticket">Awards<span></span></a></li>
<li><a href="#section-sponsors">Our Partners<span></span></a></li>
<li><a href="#section-contact">Contact Us<span></span></a></li>
</ul>
<!-- mainmenu close -->
</div>
</div>
</div>
</header>
<!-- header close -->
<!-- content begin -->
<div id="content" class="no-bottom no-top">
<!-- revolution slider begin -->
<section id="section-hero" class="fullwidthbanner-container" aria-label="section-slider"
data-bgcolor="#101010">
<canvas id="can"></canvas>
<div
style=" height: 100vh !important;background-color:rgb(0, 22, 6);text-align: center; position: relative;">
<div class="main-revo ">
<img class="revolux-logo col-md-7 col-9" src="images-event/revolux/RevolUX_Primary.png"><br>
<h2 class="titlerevo">Designathon for Undergraduates and Schoolers !
</h2><br>
<div class="typewriter">
<h3 class="subtitlerevo" style="font-weight: 400;"><span
style="font-weight: 800;">Artistry</span> in the new normal !
</h3>
</div>
<br><br>
<!-- <a href="https://www.aiesec.lk/revolux_registrations"
class="btn-custom font-weight-bold text-white sm-mb-30 "
style="font-size:20px; border-radius:8px;">Register</a> -->
</div>
</div>
</div>
</section>
<!-- revolution slider close -->
<section id="section-countdown" aria-label="section" class="gradient-to-right pt40 pb40">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-1">
<!-- <div class="spacer-single"></div>
<div id="defaultCountdown"></div> -->
</div>
</div><br>
<div style="text-align:center;color:white; ">
<h3 style="font-size:40px;line-height: 1;">Registrations Closed
</h3>
</div>
</div>
</section>
<!-- section begin -->
<section id="section-about">
<div class="wm wm-border dark wow fadeInDown">welcome</div>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 wow fadeInLeft" data-wow-delay="0s">
<h2>What is RevolUX ?</h2>
<p style="color: aliceblue;">
RevolUX - A UI/UX designation, unleashing the creative and artistic minds of Sri Lankan
undergraduates and schoolers, organised by AIESEC in the University of Colombo in
collaboration with the IEEE Student Branch of UCSC.
</p>
<p style="color: aliceblue;">The major objective of this event is to give exposure on different
trends in User Interface
and User Experience Design, and related fields to participants, so that they can understand
a problem and create a solution in the user's perspective which will cater to their needs.
</p>
<div class="spacer10"></div>
</div>
<div class="col-lg-6 mb-sm-30 text-center wow fadeInRight">
<div class="de-images">
<img class="di-small wow fadeIn" src="images-event/misc/2.jpg" alt="" />
<img class="di-small-2" src="images-event/misc/3.jpg" alt="" />
<img class="img-fluid wow fadeInRight" data-wow-delay=".25s" src="images-event/misc/1.jpg"
alt="" />
</div>
</div>
</div>
</div>
</section>
<!-- section begin -->
<section id="section-register">
<div class="wm wm-border dark wow fadeInDown">register</div>
<div class="container">
<div class="row">
<div class="col-md-8 offset-md-2">
<div id="testimonial-carousel-single" class="owl-carousel owl-theme wow fadeInUp">
<blockquote class="testimonial-big">
<span class="title" style="font-size:50px;color:whitesmoke;">Everything you can imagine
is real</span>
<span class="name" style="font-size:35px;color:rgb(199, 197, 197)">-Pablo Picasso-
</span>
</blockquote>
</div>
</div>
</div>
<div class="content-center">
<!-- <a class="button" href="https://www.aiesec.lk/revolux_registrations">
<span></span>
<span></span>
<span></span>
<span></span>
REGISTER NOW
</a> -->
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-features">
<div class="wm wm-border dark wow fadeInDown ">guidelines</div>
<div class="container align-items-center">
<div class="row align-items-center" style="width:100%">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1 style="font-size:40px">Guidelines</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
</div>
<div class="col-12 " style="margin:0;width:100%;">
<div class="card shadow">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title" style="font-weight:400;text-align: justify; ">⚙️
Competitors can be schoolers
or undergraduates.</h5>
</div>
</div>
</div>
</div>
<div class="col-12 " style="margin:0;width:100%">
<div class="card shadow">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title" style="font-weight:400;text-align: justify;">⚙️ All the
team members should
be from a same school
or
a university. (No grade and batch restrictions.)</h5>
</div>
</div>
</div>
</div>
<div class="col-12 " style="margin:0;width:100%">
<div class="card shadow">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title" style="font-weight:400;text-align: justify;">⚙️ If you
are a candidate who has just finished your A/L's , you should register for the
competition mentioning as a "schooler" and you should team up with co-candidates
from the same school that you did your A/L.</h5>
</div>
</div>
</div>
</div>
<div class="col-12 " style="margin:0;width:100%">
<div class="card shadow">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title" style="font-weight:400;text-align: justify;">⚙️ A team
should consist of a
minimum of 2 members and
maximum of 4 members.
</h5>
</div>
</div>
</div>
</div>
<div class="col-12 " style="margin:0;width:100%">
<div class="card shadow">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title" style="font-weight:400;text-align: justify;">⚙️ In the
initial round
competitors submit UI mockups and prototypes according to given domains.
</h5>
</div>
</div>
</div>
</div>
<div class="col-12 " style="margin:0;width:100%">
<div class="card shadow">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title" style="font-weight:300;text-align: justify;">⚙️ The
final round would be
only for the selected
finalists from the initial round and it would be a 12 hour designathon where the
teams should design UI mockups for a given problem/scenario.
</h5>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-schedule" aria-label="section-services-tab">
<div class="wm wm-border dark wow fadeInDown ">schedule</div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Event Schedule</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
<div class="col-md-12 wow fadeInUp">
<section class="timeline"
style="padding-top: 0;padding-bottom:0; background-color:rgba(255,255,255,0);">
<ul>
<li>
<div>
<time>2nd June - 12th June</time>
<h3 class="timeh">Form a group and get registered</h3>
<p class="timep">Once registration is open, form a team in accordance with the
guidelines and
register your team. <br>
Register your team for the destination.
</p>
</div>
</li>
<li>
<div>
<time>5th June</time>
<h3 class="timeh">Opening doors for UI/UX - Workshop 1</h3>
<p class="timep">An initial workshop will be organised to give an idea and
understanding about
UX/UI, it’s job market and new trends. <br>
Via zoom platform <br>
Register for workshop 1</p>
</div>
</li>
<li>
<div>
<time>12th June</time>
<h3 class="timeh">Explore more about UI/UX - Workshop 2</h3>
<p class="timep">This would be another workshop to cover some more concepts of
UI/UX to
enhance
the knowledge of participants.</p>
</div>
</li>
<li>
<div>
<time>19th June</time>
<h3 class="timeh">Introductory session</h3>
<p class="timep">Once registrations are closed an introductory session will be
conducted and
the
main objective would be to explain how to build a simple UI using different
designing tools. <br>This is a compulsory session for all competitors who
have
registered for the competition. <br>
Via zoom platform</p>
</div>
</li>
<li>
<div>
<time>20th June - 25th June</time>
<h3 class="timeh">Submit a proposal</h3>
<p class="timep"> Candidates have to submit a document defining thier own
problem from the one of given domains.<br> Candidates have to present a
solid
UI solution by mockups and prototypes,<br>Template for the document will be
given to the candidates.
<br>
Top 10 teams will be selected for the final destination from this initial
round.<br> UIs submitted by these 10 teams will be sent to the most popular
category.
</p>
</div>
</li>
<li>
<div>
<time>3rd July</time>
<h3 class="timeh">Final round</h3>
<p class="timep">Final round would be a 12 hour designathon where each team
would be provided
with a scenario/problem where they have to create UI mockups/prototypes for
that
given scenario/problem.<br>Any design tool, (Adobe XD, Figma, Canva, etc)
any language or framework (HTML, CSS, Javascript, React, Angular, etc.) is
allowed.</p>
</div>
</li>
<li>
<div>
<time>4th July</time>
<h3 class="timeh">Grab the trophy</h3>
<p class="timep">A winner, 1st runner up and a 2nd runner up will be
selected.<br>
Winners of the most popular category will be selected by online voting.
</p>
</div>
</li>
</ul>
</section>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-ticket" class="text-light">
<div class="wm wm-border dark wow fadeInDown">Awards</div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Awards</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-s1 mb30 wow fadeInUp">
<div class="top">
<p class="price"> <b>1st Runners Up</b></p>
<h1><span class="currency id-color">Rs 20,000</span></h1>
</div>
<div class="bottom">
<img class="prizeimg" src="images-event/bg/Artboard1copy-80 copy.png">
</div>
<div class="ps1-deco"></div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-s1 mb30 wow fadeInUp">
<div class="ribbon color-2 text-white">Champions</div>
<div class="top">
<p class="price"> <b>Winners</b></p>
<h1><span class="currency id-color">Rs 30,000</span></h1>
</div>
<div class="bottom">
<img class="prizeimg" src="images-event/bg/Artboard1-80 copy.png">
</div>
<div class="ps1-deco"></div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-s1 mb30 wow fadeInUp">
<div class="top">
<p class="price"> <b>2nd Runners Up</b></p>
<h1><span class="currency id-color">Rs 10,000</span></h1>
</div>
<div class="bottom">
<img class="prizeimg" src="images-event/bg/Artboard1copy2-80 copy.png">
<!-- <ul>
<li><i class="icon_check_alt2"></i>Conference Tickets</li>
<li><i class="icon_check_alt2"></i>Free Lunch Nad Coffee</li>
<li><i class="icon_check_alt2"></i>Certificates</li>
<li><i class="icon_check_alt2"></i>Private Access</li>
<li><i class="icon_check_alt2"></i>Experts Contacts</li>
</ul> -->
<!-- <a href="" class="btn btn-custom text-white">Buy Ticket</a> -->
</div>
<div class="ps1-deco"></div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-sponsors">
<div class="wm wm-border dark wow fadeInDown ">partners</div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Our Partners</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
<br><br>
<!-- <div class="col-md-12 text-center wow fadeInUp">
<h3>Gold Sponsors</h3>
<div class="spacer-single"></div>
<img src="images-event/logo/1.png" alt="" class="grey-hover">
<img src="images-event/logo/1.png" alt="" class="grey-hover">
<img src="images-event/logo/1.png" alt="" class="grey-hover">
<img src="images-event/logo/1.png" alt="" class="grey-hover">
<div class="spacer-double"></div>
<h3>Silver Sponsors</h3>
<div class="spacer-single"></div>
<img src="images-event/logo/1.png" alt="" class="grey-hover">
<img src="images-event/logo/1.png" alt="" class="grey-hover">
<img src="images-event/logo/1.png" alt="" class="grey-hover">
<img src="images-event/logo/1.png" alt="" class="grey-hover">
</div> -->
</div>
<div class="row">
<div class="col-md-12 text-center wow fadeInUp"
style="align-items: center;border:1px;border-color: azure;margin-bottom: 20px;">
<h1
style="background-color: rgb(10, 170, 170);border-radius: 8px;padding-top:10px;padding-bottom:10px;">
Official Title Partner</h1><br>
<div class="text-center col-md-5 wow fadeInUp" style="margin:auto;">
<a href="https://www.pearson.com/" class="grey-hover"><img src="images-event/logo/3.png"
alt="Pearson" class="title-partner" style="width:100%"></a>
</div>
</div>
<!-- <div class="col-md-12 text-center wow fadeInUp"
style="align-items: center;border:1px;padding:20px auto;border-color: azure;">
<h1>Want to become a partner?</h1><br>
<div style="margin-top:40px;width:60%;margin:auto;" class="text-center col-md-5">
<a href="#section-contact" class="btn-custom btn-fullwidth text-white scroll-to"
style="width:80%;border-radius: 5px;">Contact
US</a>
</div>
</div> -->
</div>
<div class="row">
<div class="col-md-12 text-center wow fadeInUp"
style="align-items: center;border:1px;border-color: azure;margin-bottom: 50px;">
<h1
style="background-color: rgb(10, 170, 170);border-radius: 8px;padding-top:10px;padding-bottom:10px;">
Platinum Partner</h1><br>
<div class="text-center col-md-4 wow fadeInUp" style="margin:auto;padding-top: 10px;">
<a href="https://www.creativesoftware.com/" class="grey-hover"><img
src="images-event/logo/6.png" alt="Creative" class="title-partner"
style="width:100%"></a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 text-center wow fadeInUp"
style="align-items: center;border:1px;border-color: azure;margin-bottom: 20px;">
<h1
style="background-color: rgb(10, 170, 170);border-radius: 8px;padding-top:10px;padding-bottom:10px;">
Silver Partner</h1><br>
<div class="text-center col-md-10 wow fadeInUp" style="margin:auto;">
<a href="https://www.cabbageapps.com/" class="grey-hover"><img src="images-event/logo/7.png"
alt="Cabbage Apps" class="title-partner" style="width:100%"></a>
</div>
</div>
<div class="col-md-8 text-center wow fadeInUp"
style="align-items: center;border:1px;border-color: azure;margin-bottom: 20px;">
<h1
style="background-color: rgb(10, 170, 170);border-radius: 8px;padding-top:10px;padding-bottom:10px;">
Bronze Partners</h1><br>
<div class="row" style="margin-top:20px;">
<div class="text-center col-md-3 wow fadeInUp" style="margin:auto;">
<a href="https://www.attuneconsulting.com/" class="grey-hover"><img
src="images-event/logo/5.png" alt="Attune" class="title-partner"
style="width:100%"></a>
</div>
<div class="text-center col-md-3 wow fadeInUp" style="margin:auto;">
<a href="https://sits.lk/" class="grey-hover"><img src="images-event/logo/8.jpg"
alt="Attune" class="title-partner" style="width:100%"></a>
</div>
<div class="text-center col-md-3 wow fadeInUp" style="margin:auto;">
<a href="https://wso2.com/" class="grey-hover"><img src="images-event/logo/9.png"
alt="Attune" class="title-partner" style="width:100%"></a>
</div>
<div class="text-center col-md-3 wow fadeInUp" style="margin:auto;">
<a href="https://www.objectoneworld.com/" class="grey-hover"><img
src="images-event/logo/21.png" alt="Attune" class="title-partner"
style="width:100%"></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-2 text-center wow fadeInUp"
style="align-items: center;border:1px;border-color: azure;margin-bottom: 20px;">
<h1
style="background-color: rgb(10, 170, 170);border-radius: 8px;padding-top:10px;padding-bottom:10px;">
Official Media Partner</h1><br>
<div class="text-center col-md-11 wow fadeInUp" style="margin:auto;">
<a href="https://www.facebook.com/fosmedia" class="grey-hover"><img
src="images-event/logo/10.png" alt="fos" class="title-partner"
style="width:100%"></a>
</div>
</div>
<div class="col-md-10 text-center wow fadeInUp"
style="align-items: center;border:1px;border-color: azure;margin-bottom: 20px;">
<h1
style="background-color: rgb(10, 170, 170);border-radius: 8px;padding-top:10px;padding-bottom:10px;">
Digital
Media Partners</h1><br>
<div class="row">
<div class="text-center col-md-4 wow fadeInUp" style="margin:auto;">
<a href="https://www.facebook.com/ColomboBeacon" class="grey-hover"><img
src="images-event/logo/12.png" alt="beacon" class="title-partner"
style="width:100%"></a>
</div>
<div class="text-center col-md-2 wow fadeInUp" style="margin:auto;">
<a href="https://www.facebook.com/arteculate.asia" class="grey-hover"><img
src="images-event/logo/11.png" alt="Articulate" class="title-partner"
style="width:100%"></a>
</div>
<div class="text-center col-md-3 wow fadeInUp" style="margin:auto;">
<a href="https://www.facebook.com/FMFMediaUnit" class="grey-hover"><img
src="images-event/logo/13.png" alt="FMF" class="title-partner"
style="width:100%"></a>
</div>
<div class="text-center col-md-3 wow fadeInUp" style="margin:auto;">
<a href="https://hackathons.lk/" class="grey-hover"><img src="images-event/logo/15.png"
alt="hackathons" class="title-partner" style="width:100%"></a>
</div>
<div class="text-center col-md-2 wow fadeInUp" style="margin:auto;">
<a href="https://www.facebook.com/impulselanka" class="grey-hover"><img
src="images-event/logo/20.png" alt="impulse" class="title-partner"
style="width:100%"></a>
</div>
<div class="text-center col-md-2 wow fadeInUp" style="margin:auto;">
<a href="https://www.facebook.com/letmeknow.lk" class="grey-hover"><img
src="images-event/logo/17.png" alt="letmeknow" class="title-partner"
style="width:100%"></a>
</div>
<div class="text-center col-md-2 wow fadeInUp" style="margin:auto;">
<a href="https://www.facebook.com/LoonsLab" class="grey-hover"><img
src="images-event/logo/18.png" alt="loonslab" class="title-partner"
style="width:90%"></a>
</div>
<div class="text-center col-md-2 wow fadeInUp" style="margin:auto;">
<a href="https://www.facebook.com/PahasaraUCSC" class="grey-hover"><img
src="images-event/logo/19.png" alt="pahasara" class="title-partner"
style="width:80%"></a>
</div>
<div class="text-center col-md-2 wow fadeInUp" style="margin:auto;">
<a href="https://www.facebook.com/The-Good-PR-108719850538844" class="grey-hover"><img
src="images-event/logo/14.png" alt="goodpr" class="title-partner"
style="width:100%"></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="call-to-action" class="gradient-to-right text-light call-to-action" aria-label="cta">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-8 col-md-7">
<h3 class="size-2 no-margin"><a
href="https://www.aiesec.lk/revolux_registrations"></a>Registrations Closed
</h3>
</div>
<div class="col-lg-4 col-md-5 text-right">
<!-- <a href="https://www.aiesec.lk/revolux_registrations"
class="btn-custom text-white scroll-to">Register Now</a> -->
</div>
</div>
</div>
</section>
<!-- section close -->
<section id="section-contact">
<div class="wm wm-border dark wow fadeInDown ">contact</div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Contact Us</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 wow fadeInUp">
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Hirusha Chamod
</h5>
<p style="margin:1px;"> ~ Vice President | Event Manager </p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 77 761
4077</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon"> <i class="fa fa-envelope-o fa-fw"> </i>
hirusha.chamod@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Lishani Suriyampola
</h5>
<p style="margin:1px;"> ~ Vice President | Event Manager </p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0;">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 70 330 0398</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon"> <i class="fa fa-envelope-o fa-fw"> </i>
lishani.suriyampola@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Shamali Sathindra
</h5>
<p style="margin:1px;"> ~ OCP </p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 77 691 8670</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon"> <i class="fa fa-envelope-o fa-fw"> </i>
shamali.sathindra@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Pavani Mandira
</h5>
<p style="margin:1px;"> ~ OCVP ER </p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 76 888 6526</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon"> <i class="fa fa-envelope-o fa-fw"> </i>
pavani.mandira@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Nethmini Nandadewa
</h5>
<p style="margin:1px;"> ~ OCVP ER</p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 70 302 3975</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon"> <i class="fa fa-envelope-o fa-fw"> </i>
nethmini.nandadewa@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Nethmi Pathirana
</h5>
<p style="margin:1px;"> ~ OCVP ER</p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 71 778 8422</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon"> <i class="fa fa-envelope-o fa-fw"> </i>
nethmi.pathirana@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Venodi Widanagamage
</h5>
<p style="margin:1px;"> ~ OCVP Marketing</p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 77 663 1087</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon" style="font-size:15px"> <i
class="fa fa-envelope-o fa-fw"> </i>
venodi.widanagamage@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Pandula Pallewatta
</h5>
<p style="margin:1px;"> ~ OCVP Marketing </p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 71 597 9070</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon"> <i class="fa fa-envelope-o fa-fw"> </i>
pandula.pallewatta@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Harsha Abeyvickrama
</h5>
<p style="margin:1px;"> ~ OCVP Delegates</p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 71 142 5085</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon" style="font-size:15px"> <i
class="fa fa-envelope-o fa-fw"> </i>
harsha.abeyvickrama@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Chami Imasha
</h5>
<p style="margin:1px;"> ~ OCVP Delegates </p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 71 081 6150</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon"> <i class="fa fa-envelope-o fa-fw"> </i>
chami.imasha@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">
<div class="card shadow ">
<div class="card-body">
<div class="row ">
<h5 class="col-sm-12 card-title"
style="font-weight:400;text-align: justify; margin-bottom: 0;">
Minoli Gunarathna
</h5>
<p style="margin:1px;"> ~ OCVP Finance </p>
<div class="row " style="width:100%">
<div class="col-md-5" style="margin:0">
<p class="pcon"><i class="fa fa-phone fa-fw"> </i>
(+94) 77 833 4519</p>
</div>
<div class="col-md-7" style="margin:0">
<p class="pcon"> <i class="fa fa-envelope-o fa-fw"> </i>
minoli.gunarathna@aiesec.net
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 s" style="margin:0;width:100%;">