-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
1615 lines (1553 loc) · 91.3 KB
/
events.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>
<link rel="icon" href="img/Favicon Square.ico" type="image/x-icon" sizes="16x16">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Events</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="css/nav.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/hamburger.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap-grid.css" />
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/events.css">
<link rel="stylesheet" media="(min-width: 425px) and (max-width:575.98px)" href="css/events.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://code.jquery.com/jquery-2.2.4.js" integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI="
crossorigin="anonymous"></script>
</head>
<body>
<div class="device-notification">
<img style="width: 150px;" src="img/samlogo.png" />
<p class="device-notification--message">Samgatha has so much to offer that we must request you orient your
device to
portrait or find a larger screen. You won't be disappointed.</p>
</div>
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent fixed-top" id="sideNav" style="width:17rem;z-index:20 !important;">
<a class="navbar-brand js-scroll-trigger"></a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<!-- <li class="ml-4" style="position:absolute;display:block;top:3%;">
<a href="index.html"><img style="width: 180px;height: auto;margin-left: auto;margin-right: auto;"
src="img/samlogo.png" /></a>
</li> -->
<li class="nav-item ml-5 ">
<a class="nav-link js-scroll-trigger " id="home2" href="#homepage">EVENTS</a>
</li>
<li class="nav-item ml-5 ">
<a class="nav-link js-scroll-trigger " id="photo2" href="#homepage">PHOTOGRAPHY</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger " id="dance2" href="#about">DANCE</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="art2" href="#theme">ART</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="music2" href="#cause">MUSIC</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="gaming2" href="#sponsors">GAMING</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="lit2" href="#team">LITERATURE</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="drama2" href="#team">DRAMA</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="quiz2" href="#team">QUIZ</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="design2" href="#team">DESIGN</a>
</li>
<li class="ml-4 social-icons" id="social" style="position:absolute;display:block;bottom:1%;">
<span><a href="https://www.instagram.com/samgatha/?hl=en" target="_blank"><img style="width:51x;height:49px;margin-right: 5vw;"
class="insta" src="./img/insta.png"></a> </span>
<a href="https://www.facebook.com/samgathaatiiitdm/" target="_blank"><img style="width:30px;height:49px;margin-left:-4vw;"
class="fb" src="./img/fb.png"></a>
<!-- <a href="#" target="_blank"><img style="width:60px;height:49px;padding:5px;" src="./img/Twitter.png"></a> -->
</li>
</ul>
</div>
</nav>
<div class="sam-logo">
<a href="index.html"> <img src="img/samlogo.png" alt="" style="position:fixed;"> </a>
</div>
<div class="hamburger-icon">
<img id="icon" src="img/rightham.png" onclick="changeColor()"/>
</div>
<nav id="nav">
<div class="ham-div">
<div class="row display-flex">
<div class="offset-2 col-2" style="vertical-align: bottom;"><span class="ham-num">1</span></div>
<div class="col-6"><a class="ham-menu" href="index.html" style="text-decoration:none">HOME</a></div>
</div>
<div class="row display-flex">
<div class="offset-2 col-2" style="vertical-align: bottom;"><span class="ham-num">2</span></div>
<div class="col-6"><a class="ham-menu" href="#" style="text-decoration:none">EVENTS</a></div>
</div>
<div class="row display-flex">
<div class="offset-2 col-2" style="vertical-align: bottom;"><span class="ham-num">3</span></div>
<div class="col-6"><a href="proshows2.html" class="ham-menu" style="text-decoration:none">PROSHOWS</a></div>
</div>
<div class="row display-flex">
<div class="offset-2 col-2" style="vertical-align: bottom;"><span class="ham-num">4</span></div>
<div class="col-6"><a href="team.html" class="ham-menu" style="text-decoration:none">TEAMS</a></div>
</div>
<div class="row display-flex">
<div class="offset-2 col-2" style="vertical-align: bottom;"><span class="ham-num">5</span></div>
<div class="col-6"><a href="https://drive.google.com/file/d/1SBsV7xj176LTbFT5TJu2-sgQxW9F11ea/view?usp=sharing" class="ham-menu" style="text-decoration:none">SCHEDULE</a></div>
</div>
<div class="row display-flex">
<div class="offset-2 col-2" style="vertical-align: bottom;"><span class="ham-num">6</span></div>
<div class="col-6"><a class="ham-menu" href="sponsors.html" style="text-decoration:none">SPONSORS</a></div>
</div>
<div class="row display-flex">
<div class="offset-2 col-2" style="vertical-align: bottom;"><span class="ham-num">7</span></div>
<div class="col-6"><a class="ham-menu" href="workshops.html" style="text-decoration:none">WORKSHOPS</a></div>
</div>
<div class="row display-flex">
<div class="offset-2 col-2" style="vertical-align: bottom;"><span class="ham-num">8</span></div>
<div class="col-6"><a class="ham-menu reg" href="registration.html" style="text-decoration:none">REGISTER</a></div>
</div>
</div>
<div class="ham-social-media">
<span><a href="https://www.instagram.com/samgatha/?hl=en" target="_blank"><img style="width: 12vw;height: auto;margin-left: 5vw;"
class="insta" src="./img/insta.png"></a> </span>
<a href="https://www.facebook.com/samgathaatiiitdm/" target="_blank"><img style="width:7vw;height:auto; margin-left: 2vw;"
class="fb" src="./img/fb.png"></a>
<!-- <a href="#" target="_blank"><img style="width:60px;height:49px;padding:5px;" class="twit" src="./img/Twitter.png"></a> -->
</div>
</nav>
<!-- Down Hmaburger -->
<div class="hamburger-icon-bottom" id="bottom-ham" style="position:fixed">
</div>
<div id="overlay-bot" class="stream1" style="z-index:2000;">
<div class="still" style="position:absolute;height:100%;width:100%;z-index:3;">
<div class="cross1">
<!-- <i id="close-bot" class="material-icons" style="font-size:48px;color:white">close</i> -->
<div style="position:absolute;">
<img id="close-bot" src="img/mobile/Closeicon.png" class="material-icons" height="30px" width="30px"
style="position:relative;top:-2rem" />
</div>
<script>
if (screen.width >= 768 && screen.width < 992)
$("#close-bot").css('left', (screen.width) * 0.038 + 'rem');
else
$("#close-bot").css('left', (screen.width) * 0.045 + 'rem');
</script>
<ul class="navbar-nav">
<li class="nav-item ml-5 ">
<a class="nav-link js-scroll-trigger " id="1" href="#">EVENTS</a>
</li>
<li class="nav-item ml-5 ">
<a class="nav-link js-scroll-trigger " id="2" href="#">PHOTOGRAPHY</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger " id="3" href="#">DANCE</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="4" href="#">ART</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="5" href="#">MUSIC</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="6" href="#">GAMING</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="7" href="#">LITERATURE</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="8" href="#">DRAMA</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="9" href="#">QUIZ</a>
</li>
<li class="nav-item ml-5">
<a class="nav-link js-scroll-trigger" id="10" href="#">DESIGN</a>
</li>
</ul>
</div>
</div>
</div>
<div class="rulebook" style="position:fixed;">
<a href="https://drive.google.com/open?id=19doA-o57nI8Mc-NgL9fgfApybkMl1I2C" target="_blank"><img src="img/Rule Book.png" height="auto" width="60px"/></a>
</div>
<!-- Down hamburger end -->
<div id="onepage">
<div id="homepage">
<div class="heading">
<h2 class="font">EVENTS</h2>
</div>
<div id="eventsContent">
<p>Each year Samgatha brings to you uniquely themed cultural competitions<br> in various categories attracting participants from all around the state.<br>
Welcome to your fill of limitless fun, endless excitement,<br> an opportunity to unleash your inner-self and win big.</p>
</div>
<div class="arrowdown" id="d1">
<a href="#">
<img src="img/DownArrow.png" />
</a>
</div>
</div>
<!-- Photography -->
<div id="photography">
<div class="heading">
<h2 class="font">PHOTOGRAPHY</h2>
</div>
<div class="arrowup" id="u1">
<a href="#">
<img src="img/UpArrow.png" />
</a>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4 p1">
<img id="photo1" src="img/hoverevents/Photography/Group 168.png" />
</div>
<div class="col-sm-4 p2">
<img id="photo3" src="img/hoverevents/Photography/Group 167.png" />
</div>
<div class="col-sm-4 p3">
<img id="photo4" src="img/hoverevents/Photography/Group 169.png" />
</div>
</div>
</div>
<!-- Overlay Display -->
<div id="overlay" class="stream">
<div class="cross">
<div class="event-play">
<h2>CREATIVE CONNECT</h2>
</div>
<i id="close" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content1">
<h3>Sorry, this event has been cancelled.</h3>
</div>
</div>
</div>
<div id="overlay1" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/YQLfHhXsL3N8mmYc2"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/imagix.iiitdm/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span>
<div class="event-play">
<h2>PHOTON</h2>
</div>
<i id="close1" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content2">
<h3>ABOUT</h3>
<p>A picture tells a thousand tales, each one never told before. Phase through the events of
our
fest and freeze the moments that talk to you the most!</p>
<!-- <h3>PRIZES</h3> -->
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>Read the General Rules and Photo Specifications carefully.</li>
<li>This is a live photography competition.</li>
<li>One person can submit a maximum of 3 entries.</li>
<li>This event will happen for 3 days and the winner will be announced for each day.</li>
<li>The photos taken must be from 9:00 A.M - 9:00 P.M each day. Only those photos are
eligible for submission.</li>
<li>The entries have to be submitted from 9:00 P.M-10:00 P.M at the photography desk
each day.</li>
</ul>
</div>
<h3>PRIZES</h3>
<div style="display: inline-flex; margin-left:30px;">
<p> Prize Pool Upto Rs. 6500.</p>
<p>* Subject to number of participants</p>
</div>
<h3>GENERAL RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>The photography contests are INDIVIDUAL contests.</li>
<li>Entries with offensive or inappropriate content or those which promote a specific brand will be disqualified. </li>
<li>The photograph submitted must be original, genuine work of the participant.</li>
<li>Copyrights of the picture will stay with the photographer. However, the pictures can be used for publicity of any event for our college. </li>
<li>Under any circumstances, entries once submitted cannot be changed or modified.</li>
<li>Please read the photo specifications carefully. Failing to adhere with the format will lead to disqualification.</li>
<li>Judge’s decision is final.</li>
</ul>
</div>
<h3>Photo Specifications</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>Image should be in JPEG format only.</li>
<li>Total file size must be less than 30MB. </li>
<li>EXIF Data of the picture must remain intact.</li>
<li>Photographs must not have any names, signatures, borders, personal logos or watermarks. </li>
<li>Post processing of the image is allowed but changes like modification of the background and other similar manipulation will lead to disqualification. </li>
<li>No restrictions on the type of camera that can be used.</li>
</ul>
</div>
<h3>Contact</h3>
<div style="display: inline-flex; margin-left:30px;">
<p>Aditya-9962968867<br>Areef- 8124814999/9944429513</p>
</div>
</div>
</div>
</div>
<div id="overlay2" class="stream">
<div class="cross">
<a href="registration.html"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/imagix.iiitdm/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span>
<div class="event-play">
<h2>HOCUS FOCUS</h2>
</div>
<i id="close2" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content3">
<h3>ABOUT</h3>
<p>Resurrect the times of polaroids, darkrooms and roll cameras. Bring out the looking glass of
sepia and light leaks, for history beckons thy name.</p>
<h3>RULES</h3>
<!-- <h3>RULES</h3> -->
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>Read the General Rules and Photo Specifications carefully.</li>
<li>The theme for this online competition is “Reminiscent”.</li>
<li>One person can submit a maximum of 2 entries.</li>
<li>The entries have to be emailed to <a href="mailto:iiitdmtv@gmail.com">iiitdmtv@gmail.com</a>
. Email the picture along with Instagram ID and Payment screenshot. The picture will be posted on the official photography page of IIITDM Kancheepuram, @imagix.iiitdm and the entrant will be tagged. The picture with maximum likes at March 1, 12:00 AM will be declared as winner. </li>
<li>No restriction in timing..can be submitted on or before March 1st</li>
</ul>
</div>
<h3>PRIZES</h3>
<div style="display: inline-flex; margin-left:30px;">
<p>1st place : prizes worth Rs.1500<br> 2nd place : prizes worth Rs.700<br>* Subject to number of participants</p>
</div>
<h3>GENERAL RULES</h3>
<!-- <h3>RULES</h3> -->
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>The photography contests are INDIVIDUAL contests.</li>
<li>Entries with offensive or inappropriate content or those which promote a specific brand will be disqualified. </li>
<li>The photograph submitted must be original, genuine work of the participant.</li>
<li>Copyrights of the picture will stay with the photographer. However, the pictures can be used for publicity of any event for our college. </li>
<li>Under any circumstances, entries once submitted cannot be changed or modified.</li>
<li>Please read the photo specifications carefully. Failing to adhere with the format will lead to disqualification.</li>
<li>Judge’s decision is final.</li>
</ul>
</div>
<h3>Photo Specifications</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>Image should be in JPEG format only.</li>
<li>Total file size must be less than 30MB. </li>
<li>EXIF Data of the picture must remain intact.</li>
<li>Photographs must not have any names, signatures, borders, personal logos or watermarks. </li>
<li>Post processing of the image is allowed but changes like modification of the background and other similar manipulation will lead to disqualification. </li>
<li>No restrictions on the type of camera that can be used.</li>
</ul>
</div>
<h3>Contact</h3>
<div style="display: inline-flex; margin-left:30px;">
<p>Aditya-9962968867<br>Areef- 8124814999/9944429513</p>
</div>
</div>
</div>
</div>
<div class="arrowdown" id="d2">
<a href="#">
<img src="img/DownArrow.png" />
</a>
</div>
</div>
<!-- Dance -->
<div id="dance">
<div class="heading">
<h2 class="font">DANCE</h2>
</div>
<div class="arrowup" id="u2">
<a href="#">
<img src="img/UpArrow.png" />
</a>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4 dance1">
<img id="dance1" src="img/hoverevents/Dance/Group 464.png" />
</div>
<div class="col-sm-4 dance2">
<img id="dance3" src="img/hoverevents/Dance/Group 465.png" />
</div>
<div class="col-sm-4 dance3">
<img id="dance4" src="img/hoverevents/Dance/Group 466.png" />
</div>
</div>
</div>
<div id="overlay3" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/8cdULOTVF2sLTgJ62"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/footlights_iiitdm/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>IMPULSE</h2>
</div>
<i id="close3" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content4">
<h3>ABOUT</h3>
<p>Calling all the dancers to impress us with their rocking rhythms and toe tapping tunes.Weave magic with your mesmerizing moments! Come and showcase your talent </p>
<h3>PRIZES</h3>
<div style="display: inline-flex; margin-left:30px;">
<p>1st place : Prizes worth Rs.5000<br>2nd place : Prizes worth Rs.3,000</p>
<p>* Subject to number of participants</p>
</div>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>It is an individual event.
The time limit of the performance is 3-5 minutes.</li>
<li>This event consists of 2 rounds.</li>
<li>All forms except classical dance are accepted.</li>
<li>A college can have multiple participants.</li>
<li>The order of appearance on stage for the competition will be decided by
a lucky draw just prior to the event. No changes will be entertained
thereafter.</li>
<li>The participant is expected to bring the audio track they are performing on,
in a USB, in MP3 format and keep a backup with him/her at all times.</li>
<li>Decision of the judges is final and binding. Any act of misconduct will lead
to immediate disqualification.</li>
<li>SAM ID/Online Registration is compulsory.</li>
</ul>
</div>
<h3>Contact</h3>
<div style="display: inline-flex; margin-left:30px;">
<p>Rishi-7995227261<br>Chinmaie- 7550167348</p>
</div>
buttonz
</div>
</div>
</div>
<div id="overlay4" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/i2CkiFN7P2ZQiwUu2"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/footlights_iiitdm/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>TEAM UP!</h2>
</div>
<i id="close4" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content5">
<h3>ABOUT</h3>
<p>Just waiting for the opportunity to let your dancing explode on stage to the cheers of the crowd? Gather your team,bust out those moves and give it all you’ve got in this dance war.</p>
<h3>PRIZES</h3>
<p>1st place: Prizes worth Rs.15,000<br>2nd place : Prizes worth Rs.10,000</p>
<p>* Subject to number of participants</p>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>The team should consist of 10-25 members</li>
<li>The time limit of the performance is 10-12 minutes (including setup).
Negative marking will be allotted on exceeding the time limit.</li>
<li>It consists of 1 round.</li>
<li>All forms except classical dance are accepted.</li>
<li>A college can have multiple teams for the event provided there is no
common team member between any two teams.</li>
<li>The order of appearance on stage for the competition will be decided by
a lucky draw just prior to the event. No changes will be entertained
thereafter.</li>
<li>The team is expected to bring the audio track they are performing on, in a
USB, in MP3 format and keep a backup with them at all times.</li>
<li>Decision of the judges is final and binding. Any act of misconduct will lead
to immediate disqualification.</li>
</ul>
</div>
<h3>Contact</h3>
<div style="display: inline-flex; margin-left:30px;">
<p>Rishi-7995227261<br>Chinmaie- 7550167348</p>
</div>
</div>
</div>
</div>
<div id="overlay5" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/QYOdGXN5RkzaVXcH3"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/footlights_iiitdm/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>EASTERN</h2>
</div>
<i id="close5" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content6">
<h3>ABOUT</h3>
<p>Replete with a rigid set of rules, yet creative and imaginative, classical dance has always been
precious to us Indians, especially down south. We welcome to Samgatha, either alone or as a
group, those who have been enchanted by these dance forms, to come cast your spells on us!</p>
<h3>PRIZES</h3>
<p>Prizes upto Rs.20000</p>
<p>* Subject to number of participants</p>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>The team size could be from 10-25 members.</li>
<li>The time limit of the performance is 10-12 minutes.</li>
<li>This event consists of 1 round.</li>
<li>It is a theme based dance event.</li>
<li>A college can have multiple teams for the event provided there is no
common team member between any two teams.</li>
<li>The order of appearance on stage for the competition will be decided by
a lucky draw just prior to the event. No changes will be entertained
thereafter.</li>
<li>The team is expected to bring the audio track they are performing on, in a
USB, in MP3 format and keep a backup with them at all times.</li>
<li>Decision of the judges is final and binding. Any act of misconduct will
lead to immediate disqualification.</li>
</ul>
</div>
<h3>Contact</h3>
<div style="display: inline-flex; margin-left:30px;">
<p>Rishi-7995227261<br>Chinmaie- 7550167348</p>
</div>
</div>
</div>
</div>
<div class="arrowdown" id="d3">
<a href="#">
<img src="img/DownArrow.png" />
</a>
</div>
</div>
<!-- art -->
<div id="art">
<div class="heading">
<h2 class="font">ART</h2>
</div>
<div class="arrowup" id="u3">
<a href="#">
<img src="img/UpArrow.png" />
</a>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4 a1">
<script src="js/pacman.js"></script>
<img id="art1" src="img/hoverevents/Art/Group 510.png" />
</div>
<div class="col-sm-4 a2">
<img id="art3" src="img/hoverevents/Art/Group 511.png" />
</div>
<div class="col-sm-4 a3">
<img id="art4" src="img/hoverevents/Art/Group 512.png" />
</div>
</div>
</div>
<div id="overlay6" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/zPy3rRjWh2nJBn2v1"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/artclub_iiitdm/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>SOAP CARVING</h2>
</div>
<i id="close6" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content7">
<h3>ABOUT</h3>
<p>“Every stone has a statue inside it but it is the task of
the sculptor to discover it.”<br>Here at Samgatha, carve your
heart out on a piece of soap and get your ticket to becoming the next Michelangelo!
</p>
<h3>PRIZES</h3>
<p>1st place : Prizes worth Rs.2,000<br>2nd place : Prizes worth 1,000</p>
<p>* Subject to number of participants</p>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>Event Duration: 2 Hrs</li>
<li> Only use the materials provided.</li>
<li> Topic will be provided on the spot. </li>
<li> Judging will be based on creativity and the amount of detail and the
meaning of the sculpture.</li>
<li> Individual event, first come first serve basis.</li>
<li> No of participants: 20. </li>
<li> SAM ID/Online Registration is compulsory. </li>
</ul>
</div>
<h3>Contact</h3>
<div style="display: inline-flex; margin-left:30px;">
<p>Rishikesh- 9567935630<br>Adityan- 8182866629</p>
</div>
</div>
</div>
</div>
<div id="overlay7" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/I0INjEmihyzdHMEX2"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/artclub_iiitdm/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>SHADOW ART</h2>
</div>
<i id="close7" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content8">
<h3>ABOUT</h3>
<p>Time flies over us, but always leaves its shadow behind.
It’s time to Impress our judges with the shadows that you have in mind.
</p>
<h3>PRIZES</h3>
<p>Worth Rs. 4000</p>
<p>* Subject to number of participants</p>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>Create a shadow with the material provided on the given theme using
your creative id</li>
<li>Team size- 3. </li>
<li>Only use the materials provided. </li>
<li>Judging will be based on the creativity and how well they use the property
of shadow. </li>
<li> First come first serve basis </li>
<li>No of teams: 20 </li>
<li>SAM ID/Online Registration is compulsory.</li>
</ul>
</div>
<h3>Contact</h3>
<div style="display: inline-flex; margin-left:30px;">
<p>Rishikesh- 9567935630<br>Adityan- 8182866629</p>
</div>
</div>
</div>
</div>
<div id="overlay8" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/EIV6wOC6ogaYD5fE3"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/artclub_iiitdm/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>FLIPBOOK ANIMATION</h2>
</div>
<i id="close8" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content9">
<h3>ABOUT</h3>
<p>Animation is not the art of drawings that move but the art of
movements that are drawn.<br> Flipbook gives you the perfect opportunity
to impress our judges with your movements on paper and win big!</p>
<h3>PRIZES</h3>
<p>Worth Rs. 3000</p>
<p>* Subject to number of participants</p>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>1. Event duration- 2 hours.</li>
<li>2. Only use the materials provided.</li>
<li>3. Topic will be provided on the spot.</li>
<li>4. Judging will be based on the quality of animation and the story that they
portray.</li>
<li>5. Individual event.</li> <br>
<li>6. First come first serve basis.</li>
<li>7. No of teams- 20.</li>
<li>8. SAM ID/Online Registration is compulsory.</li>
</ul>
</div>
<h3>Contact</h3>
<div style="display: inline-flex; margin-left:30px;">
<p>Rishikesh- 9567935630<br>Adityan- 8182866629</p>
</div>
</div>
</div>
</div>
<div class="arrowdown" id="d4">
<a href="#">
<img src="img/DownArrow.png" />
</a>
</div>
</div>
<!-- music -->
<div id="music">
<div class="heading">
<h2 class="font">MUSIC</h2>
</div>
<div class="arrowup" id="u4">
<a href="#">
<img src="img/UpArrow.png" />
</a>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6 m1">
<img id="music1" src="img/hoverevents/Music/Group 441.png" />
</div>
<div class="col-sm-6 m2">
<img id="music3" src="img/hoverevents/Music/Group 442.png" />
</div>
</div>
</div>
<div id="overlay9" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/IW9LfkP33AGa5tqH3"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/musicclub.iiitdm/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>ART OF NOISE</h2>
</div>
<i id="close9" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content10">
<h3>ABOUT</h3>
<p>Bring your instruments, let loose your voices and set the stage on fire with
some mind-blowing music and powerful performances in this eclectic battle of
bands.</p>
<h3>PRIZES</h3>
<p>1st place : prizes worth Rs.18,000<br>2nd place : prizes worth Rs.12,000</p>
<p>* Subject to number of participants</p>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:25px;">
<ul style="text-align:left;">
<li>The band size is supposed to be 8 members at maximum</li>
<li>Limit performance time to 18 minutes(including setup)</li>
<li>Eastern and western performances are allowed</li>
<li>SAM ID / online registration is a must</li>
<li>Video to be submitted for shortlisting( 5 mins max,send it to <a href="mailto:musicclub.iiitdm@gmail.com">musicclub.iiitdm@gmail.com</a>)</li>
<li>Participant can perform only for one band</li>
<li>Extra points for original compositions!</li>
<li>Only a drum kit and keyboard stand will be provided</li>
</ul>
</div>
</div>
</div>
</div>
<div id="overlay10" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/SDRZzx89F41niscG3"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/musicclub.iiitdm/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>MIC NITE</h2>
</div>
<i id="close10" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content11">
<h3>ABOUT</h3>
<p>Calling all the musicians-amateurs,professionals and even those wanna-be’s
who have never confessed your passion for singing. Lighten up,shed your fears
and let your voice out on the stage.</p>
<h3>PRIZES</h3>
<p>1st place : prizes worth Rs.4,000<br>2nd place : prizes worth Rs.3,000</p>
<p>* Subject to number of participants</p>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:25px;">
<ul style="text-align:left;">
<li>Any genre of music is allowed</li>
<li>SAM ID / online registration is a must: on-spot registration at the last moment will
not be allowed</li>
<li>Video to be submitted for shortlisting( 4 mins max,send it to <a href="mailto:musicclub.iiitdm@gmail.com">musicclub.iiitdm@gmail.com</a>)</li>
<li>One submission per participant</li>
<li>Final performance should be under 5 minutes</li>
<li>Particiapant may use a karaoke or any accompanying instrument(played by him/her or
another person) though only vocals will be judged.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="arrowdown" id="d5">
<a href="#">
<img src="img/DownArrow.png" />
</a>
</div>
</div>
<!-- gaming -->
<div id="gaming">
<div class="heading">
<h2 class="font">GAMING</h2>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4 g1">
<img id="game1" src="img/hoverevents/Gaming/Group 421.png" />
</div>
<div class="col-sm-4 g2">
<img id="game2" src="img/hoverevents/Gaming/Group 445.png" />
</div>
<div class="col-sm-4 g3">
<img id="game3" src="img/hoverevents/Gaming/Group 444.png" />
</div>
<div id="pacman" style="display: none;"></div>
</div>
</div>
<div class="arrowup" id="u5">
<a href="#">
<img src="img/UpArrow.png" />
</a>
</div>
<div id="overlay11" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/kAVecscbPrBsa2YB3"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/iiitdm.esports/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>CSGO</h2>
</div>
<i id="close11" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content12">
<h3>ABOUT</h3>
<p>One shot. One Kill. No luck. Pure skill.
Gather your troupe and make sure no blood does spill.
</p>
<h3>PRIZES</h3>
<p>Worth Rs.60000</p>
<p>* Subject to number of participants</p>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>Teams must register to the tournament at the Hospitality Desk or Online. </li>
<li>Entry for each team Rs. 1750 (5x350) and all the team HAS TO REGISTER.</li>
<li>All matches will be played on the latest game patch of “Counter-Strike: Global Offensive”.</li>
<li>A knife round will determine who will start as Counter-Terrorists (CT) and as Terrorists (T).</li>
<li>A match consists of 30 rounds. Each team has to play 15 rounds as Counter-Terrorists (CT) and 15 rounds as Terrorists (T). The team winning 16 rounds out of 30 wins the match. </li>
<!-- <li></li>
<li></li> -->
</ul>
</div>
</div>
</div>
</div>
<div id="overlay12" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/6GSrYvPkKxuAG8hA2"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/iiitdm.esports/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>FIFA</h2>
</div>
<i id="close12" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content13">
<h3>ABOUT</h3>
<p>Experience what it takes to control your favorite player!
Play for the pride of your jersey and shoot for victory!
</p>
<h3>PRIZES</h3>
<p>1st-2k. 2nd-1.5K</p>
<p>* Subject to number of participants</p>
<!-- <ul>
<li>1st-2k. 2nd-1.5K</li>
</ul> -->
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>The game version that will be played is FIFA 19(1v1).(Mode of matches will be decides by the organizers).</li>
<li>Knockout round halftime - 5mins.</li>
<li>It is highly advised to bring YOUR OWN controller and keyboard. Laptop will be provided.</li>
<li>Opponents will be drawn in a fair manner by us.</li>
<li>Registration should be done online/hospitality (Passport- 350).</li>
<li>Participants will be given only limited amount of prep time.(configuring,managing,etc..)</li>
<li>The rules may be altered under special circumstances.</li>
</ul>
</div>
</div>
</div>
</div>
<div id="overlay13" class="stream">
<div class="cross">
<button id="id3"class="register" onclick="myFunction()">REGISTER</button>
<a href="https://goo.gl/forms/YFMbbUZonzQgX54X2"><button class="register1"
style="display: none" id="id1" >SOLO</button></a>
<a href="https://goo.gl/forms/7KA1MJpJbiWJqgv43"><button class="register2"
style="display: none" id="id2">SQUAD</button></a>
<span><a href="https://www.instagram.com/iiitdm.esports/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>PUBG</h2>
</div>
<i id="close13" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content14">
<h3>ABOUT</h3>
<h5>SOLO</h5>
<p>Those who fly solo have the strongest wings.
Get down to the island and get ready to Battle Royale
</p>
<h5>SQUAD</h5>
<p>The island's waiting to see some blood.Guide your gang to the top and taste the chicken dinner.
</p>
<h3>PRIZES</h3>
<ul>
<li>FOR SQUAD-Each kill is worth Rs.25.(Rs.25 per kill). Screenshots should be sent as proof.</li>
<li>FOR SQUAD- 1st place - 1k per team . 2nd place - 750 per team</li>
<li>FOR SOLO- Each kill is worth Rs.25.(Rs.25 per kill). Screenshots should be sent as proof.</li>
<li>FOR SOLO- 1st place - 500 per person. 2nd place - 400 per person. 3rd place - 300 per person.</li>
</ul>
<p>* Subject to number of participants</p>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>Emulators are strictly not allowed (Will be kicked immediately from the room).</li>
<li>Squads and Solo. No. of games will be decided depending on the schedule.</li>
<li>Mode - TPP. Map - Erangel.</li>
<li>First come First service. All the Registration will online via paytm/tez only.</li>
<li>For Squad Entry Rs.200/team</li>
<li>For Solo Entry Rs.50/person</li>
<li>Players from other college are allowed.</li>
<li>Participants are requested to take screenshot at the end to claim prizes.</li>
<li>Registration should be done online as its an online tournament.</li>
<li>All the rules can be altered whenever by the eSports Club without any notice if any time constraint is faced.</li>
<li>Google form will be added soon.</li>
<!-- <li></li>
<li></li>
<li></li>
<li></li> -->
</ul>
</div>
</div>
</div>
</div>
<div class="arrowdown" id="d6">
<a href="#">
<img src="img/DownArrow.png" />
</a>
</div>
</div>
<!-- lit -->
<div id="literature">
<div class="heading">
<h2 style="color:#515055 ;padding-top:10px" class="font">LITERATURE</h2>
</div>
<div class="arrowup" id="u6">
<a href="#">
<img src="img/UpArrow.png" />
</a>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4 li1">
<img id="litre1" src="img/hoverevents/Literature/Group 448.png" />
</div>
<div class="col-sm-4 li2">
<img id="litre2" src="img/hoverevents/Literature/Group 449.png" />
</div>
<div class="col-sm-4 li3">
<img id="litre3" src="img/hoverevents/Literature/Group 447.png" />
</div>
</div>
</div>
<!-- Lit overlayes start -->
<div id="overlay31" class="stream">
<div class="cross">
<a href="https://goo.gl/forms/eRMGzEMecjXS0iZa2"> <button class="register">REGISTER</button></a>
<span><a href="https://www.instagram.com/the_illiterati_club/" target="_blank"><img class="instamodal" src="./img/insta.png"></a> </span> <div class="event-play">
<h2>LAWYER UP</h2>
</div>
<i id="close31" class="material-icons">close</i>
</div>
<div class="overlay-content">
<div class="inside-nav" id="content15">
<h3>ABOUT</h3>
<p>Quick wit, strong rebuttals, and good articulation is all the evidence you’ll need to get us to
pronounce your verdict.
</p>
<h3>PRIZES</h3>
<p>1st place : prizes worth Rs.2000</p>
<p>2nd place : prizes worth Rs.1000</p>
<p>* Subject to number of participants</p>
<h3>RULES</h3>
<div style="display: inline-flex; margin-left:30px;">
<ul style="text-align:left;">
<li>This is a team event with two people per team.</li>
<li>It will consist of multiple rounds.</li>
<li>It will test the debating skills of the participants.</li>
<li>Each team will be given ten minutes preparation time after being given their
topics.</li>
<li>Total event duration will be 1.5-2 hours.</li>
</ul>
</div>
</div>
</div>
</div>