-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
939 lines (723 loc) · 35.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Maestro 2021</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon_custom.png" rel="icon">
<link href="assets/img/favicon_custom.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800"
rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<!-- Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-144825636-7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-144825636-7');
</script>
<!-- ---------------------------Web Developing contribution- Maestro 2021 - --------------------------------------------->
<!--
Co-Chair-Maestro 2021:
Krishantha Udaya Kumara - https://github.com/Krishanthaudayakumara
OC Members:
Milan Swanthra
Vidath Amarasekara
Kasuni Maheshika
-->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center ">
<div class="container-fluid container-xxl d-flex align-items-center lheader">
<div id="logo" class="me-auto">
<a href="index.html" class="scrollto"><img class="logo" src="assets\img\Maestro 2020 logo.png" alt=""
title=""></a>
</div>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<!-- <li><a class="nav-link scrollto" href="#speakers">Speakers</a></li> -->
<li><a class="nav-link scrollto" href="#schedule">Timeline</a></li>
<!-- <li><a class="nav-link scrollto" href="#venue">Venue</a></li> -->
<li><a class="nav-link scrollto" href="gallery.html">Gallery</a></li>
<li><a class="nav-link scrollto" href="partners.html">Partners</a></li>
<li><a class="nav-link scrollto" href="webinar.html">Webinars</a></li>
<!-- <li><a class="nav-link scrollto" href="#supporters">Sponsors</a></li>-->
<li><a class="nav-link scrollto" href="#faqx">FAQ</a></li>
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="#contact-us">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<a class="buy-tickets scrollto" href="./register.html">Register Now</a>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container" data-aos="fade-in" data-aos-delay="10">
<video autoplay class="hero-video" loop muted
src="./assets/img/bg/logo-anime.mp4"></video>
<h1 class="mb-4 pb-0 hideit">Maestro 2021</h1>
<p class="mb-4 pb-0 hideit" style="font-size:1.5em;">" Explore the enreprenure in you "</p>
<!-- <a href="https://www.youtube.com/watch?v=jDDaplaOz7Q" class="glightbox play-btn mb-4"></a>-->
<!-- <a href="#about" class="about-btn scrollto">Register Now</a> -->
<div class="firstbtns">
<a href="" class="first-btns">Competition Registration</a>
<a href="" class="first-btns">Webinar Registration</a>
</div>
</div>
</section><!-- End Hero Section -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-12">
<h2 class="about-title">ABOUT THE EVENT</h2>
<p class="about-desc">
MAESTRO is a <b> Business Case Study Competition</b> organised by<b> Rotaract Club of
University of Moratuwa</b> Sri Lanka in collabaration with McKinsey and Company.
MAESTRO 2021 unveiling for the <b>4th consecutive year</b>, opens the door for <b>
undergraduates and Rotaractors around the world</b> to address a pressing business issue faced
by a real-world corporate entity. MAESTRO 2021 delivered entirely through a <b>
fully digital environment,</b> is your chance to explore the entrepreneurial professional
within yourself.
<br><br></p>
<p style="font-size: 1.5em;">
Join us to get exposed to leading industry experts and showcase the future you! </p>
</div>
</div>
</div>
</section><!-- End About Section -->
<section id="faq">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Why you should participate? </h2>
</div>
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-9">
<ul class="faq-list middlewm">
<li>
<div data-bs-toggle="collapse" href="#wm1" class="collapsed question middlewm">
<i class="fa fa-search"></i><br> Discover new horizons
</div>
<div id="wm1" class="collapse" data-bs-parent=".faq-list">
<p>
A platform that helps you to identify your talents and improve your innovative mind to succeed in your
corporate journey.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#wm2" class="collapsed question middlewm">
<i class="fa fa-globe"></i><br>
Global competition
</div>
<div id="wm2" class="collapse" data-bs-parent=".faq-list">
<p>
A unique opportunity to compete with local and global youth.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#wm3" class="collapsed question middlewm">
<i class="fa fa-users"></i><br>
Recognition
</div>
<div id="wm3" class="collapse" data-bs-parent=".faq-list">
<p>
A platform for young innovative business professionals who can make Sri Lanka unforgettable in the
business world.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#wm4" class="collapsed question middlewm">
<i class="fa fa-bolt"></i><br>
Unleash your full potential
</div>
<div id="wm4" class="collapse" data-bs-parent=".faq-list">
<p>
A place to showcase your full potential in handling corporate situations to outstanding business
entities.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#wm5" class="collapsed question middlewm">
<i class="fa fa-safari"></i><br>
Gain valuable advice
</div>
<div id="wm5" class="collapse" data-bs-parent=".faq-list">
<p>
A great opportunity for young business professionals to gain advice and insights from world-recognized
business specialists.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#wm6" class="collapsed question middlewm">
<i class="fa fa-suitcase"></i><br>
Pave your path for entrepreneurialism
</div>
<div id="wm6" class="collapse" data-bs-parent=".faq-list">
<p>
A well-recognized platform that showcases the entrepreneurial skills of the emerging professional
youth.
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- ======= Schedule Section ======= -->
<section class="section-with-bg-timeline" id="schedule">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Timeline</h2>
<p>Special milestones of the event</p>
</div>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic' rel='stylesheet' type='text/css'>
<!-- countdown-->
<ul id="countdown">
<li id="days">
<div class="number">00</div>
<div class="label">Days</div>
</li>
<li id="hours">
<div class="number">00</div>
<div class="label">Hours</div>
</li>
<li id="minutes">
<div class="number">00</div>
<div class="label">Minutes</div>
</li>
<li id="seconds">
<div class="number">00</div>
<div class="label">Seconds</div>
</li>
</ul>
<h3 style="text-align: center;margin-bottom: 60px; margin-top: -20px;color: #052d4f; font-weight: 800;">until registration starts</h3>
<!-- The Timeline -->
<ul class="timeline">
<!-- Item 1 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Open Registration</span>
<div class="time-wrapper"><span class="time">21<sup>st</sup> of July</span></div>
</div>
<div class="desc"> <a class= "timeline-link" id="myBtn">Register Now</a></div>
</div>
</li>
<!-- Item 2 -->
<li>
<div class="direction-l special-timeline" style="">
<div class="flag-wrapper">
<span class="flag">End Registration </span>
<div class="time-wrapper"><span class="time">2<sup>nd</sup> of August</span></div>
</div>
<!-- <div class="desc">Registration period ended!</div> -->
</div>
</li>
<!-- Item 3 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Launch Case Study</span>
<div class="time-wrapper"><span class="time">2<sup>nd</sup> of August</span></div>
</div>
<div class="desc"><a class= "timeline-link" id="myBtn2">Access Case Study</a></div>
</div>
</li>
<!-- Item 4 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Case Submission</span>
<div class="time-wrapper"><span class="time">2<sup>nd</sup> - 15<sup>th</sup> of August</span></div>
</div>
<div class="desc"><a class= "timeline-link" id="myBtn3">Submit Here</a></div>
</div>
</li>
<!-- Item 5 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Semi Finals</span>
<div class="time-wrapper"><span class="time">31<sup>st</sup> of August</span></div>
</div>
<!-- <div class="desc">The Semi Final rounds of MAESTRO 2021 will be held.</div> -->
</div>
</li>
<!-- Item 6 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Grand Finale</span>
<div class="time-wrapper"><span class="time">10<sup>th</sup> of September</span></div>
</div>
<!-- <div class="desc">The Grand Finale of MAESTRO 2021 will take place.</div> -->
</div>
</li>
</ul>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Registration will be opening soon!</p>
</div>
</div>
<div id="myModal2" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Will be made available later. </p>
</div>
</div>
<div id="myModal3" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>Await till we release the case! </p>
</div>
</div>
</section><!-- End Schedule Section -->
<!-- Guidlines -->
<section id="guidlines">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Guidelines</h2>
</div>
<div>
<p>Please read and have a clear idea about all the rules and regulations of the
competition. Do not hesitate to <a href="#contact-us">contact us</a> if you need further
clarifications to be made.</p>
</div>
<div class="wrapper">
<div class="link_wrapper">
<a href="Guidlines.pdf">Click Here To Download The Competition Guidelines!</a>
</div>
</div>
</div>
</div>
</section>
<!-- ======= Gallery Section ======= -->
<section id="gallery">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>From our archives</h2>
</div>
</div>
<div class="gallery-slider swiper-container">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><a href="assets/img/gallery/46.jpg" class="gallery-lightbox"><img
src="assets/img/gallery/46.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/2.jpg" class="gallery-lightbox"><img
src="assets/img/gallery/2.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/3.jpg" class="gallery-lightbox"><img
src="assets/img/gallery/3.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/22.jpg" class="gallery-lightbox"><img
src="assets/img/gallery/22.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/25.jpg" class="gallery-lightbox"><img
src="assets/img/gallery/25.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/26.jpg" class="gallery-lightbox"><img
src="assets/img/gallery/26.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/12.jpg" class="gallery-lightbox"><img
src="assets/img/gallery/12.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/13.jpg" class="gallery-lightbox"><img
src="assets/img/gallery/13.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/14.jpg" class="gallery-lightbox"><img
src="assets/img/gallery/14.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/15.jpg" class="gallery-lightbox"><img
src="assets/img/gallery/15.jpg" class="img-fluid" alt=""></a></div>
</div>
<div class="swiper-pagination"></div>
</div>
<div class="button-nxt">
<a href="gallery.html">Our Foot Prints</a>
</div>
</section>
<!-- End Gallery Section -->
<!-- Testamonial -->
<div class="testimonials-clean" data-aos="fade-up">
<div class="container">
<div class="intro">
<div class="section-header">
<h2>TESTIMONIALS</h2>
</div>
<!-- <p class="text-center">Our customers love us! Read what they have to say below. Aliquam sed justo ligula. Vestibulum nibh erat, pellentesque ut laoreet vitae.</p> -->
</div>
<!-- testamonialnew -->
<div class="testimonials">
<div class="row">
<div class="col" data-aos="zoom-in" data-aos-delay="200">
<div class="testimonial short">
<img src="assets/img/testimonial/arshad.jpg" alt="">
<div class="name">Arshad
<p>Team Leader<br>Champions 2020</p>
</div>
<p>
"At FMF, Maestro will always be close to our hearts and by now you probably know why.
It's an experience that brings out the best in you and helps you reach your potential."
</p>
</div>
</div>
<div class="col" data-aos="zoom-in" data-aos-delay="300">
<div class="testimonial short saseni">
<img src="assets/img/testimonial/saseni.jpg" alt="">
<div class="name">Saseni
<p>Best Pitcher 2020</p>
</div>
<p>
<br>
"Maestro shaped me into a different person and made me realise what I'm capable of.
It gave me the confidence and assurance that I needed to start my journey, in the corporate world"</p>
</div>
</div>
<div class="col" data-aos="zoom-in" data-aos-delay="400">
<div class="testimonial">
<img src="assets/img/testimonial/supun.jpg" alt="">
<div class="name">Supun
<p>Team Leader <br>Runners Up 2020</p>
</div>
<p>"As freshmen studying Engineering, business analytics and corporate decision-making were
something way out of our comfort zone.
But MAESTRO lets any novice who has the enthusiasm to progress through the competition."</p>
</div>
</div>
</div>
</div>
</div>
<!-- test end -->
<!-- ======= F.A.Q Section ======= -->
<section id="faqx">
<section id="faq">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>FAQ </h2>
</div>
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-9">
<ul class="faq-list">
<li>
<div data-bs-toggle="collapse" class="collapsed question" href="#faq1">What is the format of the competition? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq1" class="collapse" data-bs-parent=".faq-list">
<p>
MAESTRO 2021 comprises of three phases ; <br>
<b>First Phase </b>-<br> Contestants need to upload their solutions for the case through our web
portal before the deadline. <br>
<b> Second Phase </b>-<br> 15 teams sorted by evaluating the submitted reports, will compete in
the semifinal round. <br>
<b>Third Phase</b> -<br> Five teams chosen by the panel of judges based on the performance
during the Q & A session, evaluation of the report and the presentation will compete
in the grand finale.<br>
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq2" class="collapsed question">When is MAESTRO 2021 ? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq2" class="collapse" data-bs-parent=".faq-list">
<p>
- Registrations will take place online on the 14th of July until the 31st of July 2021.<br>
- Report submissions will be accepted from the 2nd of August until the 10th of
August. <br>
- The semifinal will be on the 28th of August 2021. <br>
- MAESTRO 2021 grand finale will be on the 10th of September 2021. (Venue will be
informed later)
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq3" class="collapsed question">Who can participate? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq3" class="collapse" data-bs-parent=".faq-list">
<p>
MAESTRO 2021 is open to ;<br>
- Undergraduates of state and private universities <br>
- Students of other educational institutes<br>
- Members of Rotaract clubs in Sri Lanka<br>
It is important to note that all the participants should be within the age limit of 18-26
years.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq4" class="collapsed question">What is the solution format? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq4" class="collapse" data-bs-parent=".faq-list">
<p>
- The solutions in the first Phase should be submitted as reports in the PDF format.<br>
- In the second phase, the solutions should be submitted as presentations either in
PDF or PPTX format. <br>
- On the grand finale, the solutions should be presented with slide decks. <br>
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq5" class="collapsed question">How to form a team?
<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq5" class="collapse" data-bs-parent=".faq-list">
<p>
A team should consist of either 3 or 4 members from the same university, educational
institute or Rotaract club.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq6" class="collapsed question">How to register?<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq6" class="collapse" data-bs-parent=".faq-list">
<p>
Only one person from each team needs to register the team through our online web
portal <b>
<br><br>
<a class="buy-tickets scrollto" href="./register.html">Register Now</a></b>
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq7" class="collapsed question">What does it cost?
<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq7" class="collapse" data-bs-parent=".faq-list">
<p>
There is no fee for participating.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq8" class="collapsed question">Further Question
<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq8" class="collapse" data-bs-parent=".faq-list">
<p>
If you need any further clarifications, please do not hesitate to contact us at <b>
<a href="#contact-us">Contact Us</a></b>
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
</section><!-- End F.A.Q Section -->
</section>
<!-- ======= Supporters Section ======= -->
<section id="supporters" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Partners</h2>
</div>
<div class="row no-gutters supporters-wrap clearfix" data-aos="zoom-in" data-aos-delay="100">
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<a href="https://www.combank.lk/">
<img src="https://rainbowpages.lk/uploads/listings/logo/c/comba_1c.jpg" class="img-fluid" alt="">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<a href="https://www.peoplesbank.lk/">
<img src="assets/img/supporters/peoples-logo.png" class="img-fluid" alt="">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/1.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/1.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
<div class="button-nxt">
<a href="partners.html">Partner Stories</a>
</div>
</section><!-- End Sponsors Section -->
<!-- Modal Order Form -->
<div id="buy-ticket-modal" class="modal fade">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Buy Tickets</h4>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form method="POST" action="#">
<div class="form-group">
<input type="text" class="form-control" name="your-name" placeholder="Your Name">
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="your-email" placeholder="Your Email">
</div>
<div class="form-group mt-3">
<select id="ticket-type" name="ticket-type" class="form-select">
<option value="">-- Select Your Ticket Type --</option>
<option value="standard-access">Standard Access</option>
<option value="pro-access">Pro Access</option>
<option value="premium-access">Premium Access</option>
</select>
</div>
<div class="text-center mt-3">
<button type="submit" class="btn">Buy Now</button>
</div>
</form>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</section>
<!-- End Buy Ticket Section -->
<!-- ======= Contact Section ======= -->
<section id="contact-us" class="section-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Contact Us</h2>
<!-- <p>Nihil officia ut sint molestiae tenetur.</p> -->
</div>
<div class="form">
<form class="php-email-form" id="msgForm" method="post" role="form">
<div class="row">
<div class="form-group col-md-6">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="form-group col-md-6 mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" required>
</div>
<div class="form-group mt-3">
<textarea class="form-control" id="message" name="message" placeholder="Message" required
rows="5"></textarea>
</div>
<div class="my-3">
<div class="loading" id="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message" id="msgSent">Your message has been sent. Thank you!</div>
</div>
<div class="text-center"><button id="sendMsg" type="submit">Send Message</button></div>
</form>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 footer-info">
<a href="https://rotaractmora.org/">
<img alt="Rotaract Club of University of Moratuwa" src="assets/img/Logo_2.png"></a>
<p>
Rotaract Mora is about serving our kind and the living as a whole,
exploring new territory, creating opportunities, and building future
leaders. We are much more than the typical volunteer organization; our mission is to not
only serve others but also to develop ourselves into better human beings
through the process.
</p>
</div>
<div class="col-lg-4 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a class="scrollto" href="#hero">Home</a></li>
<li><i class="bi bi-chevron-right"></i> <a class="scrollto" href="#about">About us</a></li>
<li><i class="bi bi-chevron-right"></i> <a class="scrollto" href="#schedule">Timeline</a></li>
<li><i class="bi bi-chevron-right"></i> <a class="scrollto" href="#gallery">Gallery</a></li>
<li><i class="bi bi-chevron-right"></i> <a class="scrollto" href="#faqx">FAQ</a></li>
<li><i class="bi bi-chevron-right"></i> <a class="scrollto" href="#">Register</a></li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-contact">
<h4>Contact Us</h4>
<p>
Rotaract Club of University of Moratuwa,<br>
University of Moratuwa,<br>
Bandaranayake Mawatha,<br>
Moratuwa. <br>
10400 <br>
<!-- <strong>Phone:</strong> +1 5589 55488 55<br>-->
<strong>Email:</strong> [email protected]<br>
</p>
<div class="social-links">
<a class="twitter" href="https://twitter.com/RotaractMora"><i class="bi bi-twitter"></i></a>
<a class="facebook" href="https://www.facebook.com/rotaractmora"><i class="bi bi-facebook"></i></a>
<a class="instagram" href="https://www.instagram.com/rotaractmora"><i class="bi bi-instagram"></i></a>
<a class="linkedin" href="https://lk.linkedin.com/company/rotaract-club-of-university-of-moratuwa"><i
class="bi bi-linkedin"></i></a>
<a class="linkedin" href="https://www.youtube.com/user/rotaractmora"><i class="bi bi-youtube"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
Copyright © <a href="https://rotaractmora.org/"><strong>Rotaract Club of University of Moratuwa
|</strong></a> All Rights Reserved
</div>
<div class="credits">
</div>
</div>
</footer><!-- End Footer -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
class="bi bi-arrow-up-short"></i></a>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-firestore.js"></script>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<script src="assets/js/message.js"></script>
</body>
</html>