-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
1099 lines (954 loc) · 59 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>
<head>
<title>Impulse'19</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="landing is-preload">
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Header -->
<header >
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="navcolour">
<a class="navbar-brand" href="#">
<img src="./images/LOGO1.PNG" alt="logo">
</a>
<button class="navbar-toggler" type="button" id="navbtn" data-toggle="collapse" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon">
</span>
</button>
<div class="collapse navbar-collapse backcolour" id="navbarSupportedContent" >
<ul class="navbar-nav ml-auto" >
<li class="nav-item active">
<a class="nav-link more scrolly" href="#one">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link more scrolly" href="#two">EVENTS</a>
</li>
<li class="nav-item">
<a class="nav-link more scrolly" href="#three">FAQs</a>
</li>
<li class="nav-item">
<a class="nav-link more scrolly" href="#four">GALLERY</a>
</li>
<li class="nav-item">
<a class="nav-link more scrolly" href="#team">OUR TEAM</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#spon">SPONSOR</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- Banner -->
<section id="banner">
<div class="inner">
<div class="iosdlogo">
<img width="500px" src="./images/IMPULSE'19-logo.png">
</div>
<h2>IOSD</h2>
<div class="bgbox">
<h1 id="demo"></h1>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Mar 28, 2019 00:00:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get todays date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = days + "D " + hours + "H "
+ minutes + "M " + seconds + "S ";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
<script>
var p=0;
$(document).ready(()=>{
$('#navbarSupportedContent').hide();
$('#navbtn').click(()=>
{
if(p==0)
{
$('#navbarSupportedContent').show('slow');
p=1;
}
else
{
$('#navbarSupportedContent').hide('slow');
p=0;
}
})
}
)
</script>
</div>
<ul class="actions special">
<!-- <li><a href="#" class="button primary">REGISTER</a></li> -->
</ul>
</div>
<a href="#one" class="more scrolly">Learn More</a>
</section>
<!-- One -->
<section id="one" class="wrapper style1 special">
<div class="inner">
<header class="major">
<h2>ABOUT</h2>
<p><span class="bigfont">IMPULSE'19</span> will be a "One for all" kind of Techfest for the coders,the gamers & the learners as well</p>
<p>Clean your dates for 28-29 March'19 to join this 2 days extravaganza and explore the unrevealed.</p>
<p>With a series of mind boggling events , IOSD-MAIT is ready to set the stage on !!!</p>
</header>
<ul class="icons major">
<li><span class="icon fa-diamond major style1"><span class="label">Lorem</span></span></li>
<li><span class="icon fa-heart-o major style2"><span class="label">Ipsum</span></span></li>
<li><span class="icon fa-code major style3"><span class="label">Dolor</span></span></li>
</ul>
</div>
</section>
<!-- Two -->
<section id="two" class="wrapper alt style2">
<section class="spotlight">
<div class="image"><img src="images/hackmait.jpeg" alt="" /></div><div class="content" >
<h2>HackMait</h2>
<h5 style="color:#21b2a6">Hack it till you Crack it!</h5>
<p>8 Hours of pitching on provided themes collaborating to code, develop and deploy innovative solutions!</p>
<div ><span style="color:#21b2a6;font-weight:600">DEADLINE:</span> 26th March 23:59 hrs</div><br>
<a href="https://hackmait.hackerearth.com/" target="_blank"><button class="primary">Register</button></a>
<div class="modal fade" id="darkModalForm_hacks" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true">
<div class="modal-dialog form-dark" role="document">
<!--Content-->
<div class="modal-content card card-image" style="background:black;">
<div class="text-white rgba-stylish-strong py-5 px-5 z-depth-4">
<!--Header-->
<div class="modal-header row">
<div class="col-lg-6"><h3 class="modal-title w-100 white-text font-weight-bold" id="myModalLabel"><strong>HackMait
</strong></h3></div><div class="col-lg-6">
<button type="button" data-dismiss="modal" >
Close
</button>
</div>
</div>
<!--Body-->
<div class="modal-body">
<!--Body-->
<!---<div class="md-form mb-5"class="mait_hacks">
<div class="mait_hacks">
</div>-->
<div class=" text-center pb-4">
<h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>Instructions</strong></h3>
<div style="border-color: antiquewhite;"class="mait_hacks"><p>To check your innovative mind and coding skills grab the opportunity of "HACKMAIT 2.0"
This will comprise of two rounds, where participants need to register in teams of <span style="background-color: yellow;color: black;">maximum 4</span> members.
Description of each round </p></div>
</div>
<div class=" text-center pb-4">
<h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 1</strong></h3>
<div style="border-color: antiquewhite;"class="mait_hacks"><p> It is an online round where participants are provided with themes on the hackerearth platform.
After individual registration, teams have to be formed and they are required to submit their project ideas based on the mentioned themes and upload on the same platform before the deadline i.e. by <span style="background-color: yellow;color: black;">12 pm on 27th March 2019</span>. The results of Round 1 will be sent to the shortlisted teams via email on same day by midnight. The selection process is based on the originality and usefulness of the idea submitted. Selected participants will build their prototype on <span style="background-color: yellow;color: black;">28-29 March'19</span>.</p></div>
</div>
<div class=" text-center pb-4">
<h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 2</strong></h3>
<div class="mait_hacks"><p>The Second Round will be an offline round that will be held in the MAIT Campus(New Delhi) on <span style="background-color: yellow;color: black;text-decoration: black">29th March</span> where participants will have to do the final pitching and submit their presentations made according to the template given and show the working prototype.Please Note that shortlisted teams have to work on their projects virtually and <span style="background-color: yellow;color: black;">show 50% implimentation during the final pitching round.</span>
</p></div></div>
<div class="mait_hacks"> <p style="color: rgb(0, 190, 95);align-content: center" >The winners would be awarded with prizes worth 75k with cash prize, internships, License keys, goodies, swags and a trophy of course.
Certificates, swags, vouchers, .tech domains will be provided to everyone and much more..
<div style="color: yellow;">This will be an "Once in Blue Moon" opportunity, so don't hide from the one you're seeking!!</div></p>
</div>
<div class=" text-center pb-4"><div style="background-color: rgb(250, 124, 145);color:rgb(7, 1, 7);display: inline;">Venue:Mini Auditorium</div></div>
<div><p><div style="color: slateblue";>For any query,Contact the Organisers:</div>
<div style="color:rgb(207, 34, 63)">Harsh:8439043007</div><div style="color:rgb(207, 34, 63)">Karan:7042520801</div><div style="color:rgb(207, 34, 63)">Mayank:8860053930</div>
</p></div>
</div>
</div>
</div>
</div>
</div>
<button class="primary mx-2 my-2" data-toggle="modal" data-target="#darkModalForm_hacks">View Rule Book</button>
</div>
</section>
<section class="spotlight">
<div class="image"><img src="images/algorhythm.jpg" alt="" /></div><div class="content" >
<h2>AlgoRythm :<br> <h3>Online Competitive Coding</h3></h2>
<h5 style="color:#21b2a6">Groove to your Rythm and apply the right Algorithm!</h5>
<p>If all you think about is code then, it's time to gear up and let that coding spirit inside you rule the real world. Coders, Assemble!</p>
<div ><span style="color:#21b2a6;font-weight:600">DEADLINE:</span> 26th March 23:59 hrs</div><br>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdcaGhKE8WNoDE00qSJngt6O-wx8tpDkgTRhSXkuA5XHQwf9Q/viewform?embedded=true" target="_blank"><button class="primary">Register</button></a>
<button class="primary mx-2 my-2" data-toggle="modal" data-target="#darkModalForm_algo">View Rule Book</button>
<!-- Trigger the modal with a button -->
<!-- Modal -->
<div class="modal fade" id="darkModalForm_algo" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog form-dark" role="document">
<!--Content-->
<div class="modal-content card card-image" style="background:black;">
<div class="text-white rgba-stylish-strong py-5 px-5 z-depth-4">
<!--Header-->
<div class="modal-header row">
<div class="col-lg-6"><h3 class="modal-title w-100 white-text font-weight-bold" id="myModalLabel"><strong>AlgoRythm
</strong></h3></div><div class="col-lg-6">
<button type="button" data-dismiss="modal" >Close</button>
</div>
</div>
<!--Body-->
<div class="modal-body">
<!--Body-->
<div class="md-form mb-5"class="mait_hacks">
<p>If you have great logical and problem solving skills,come on! This event could help in your coffee bills.</p>
<div class=" text-center pb-4">
<h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 1</strong></h3>
<div style="border-color: antiquewhite" class="mait_hacks"><p >The first round will be an online coding competition on <span style="background-color: yellow;color: black;text-decoration: black">27th March</span>. It will take place on “Hackerearth” coding platform . The entry link for the competition will be mailed to you on your registered mail. </p></div>
</div>
<div class=" text-center pb-4">
<h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 2</strong></h3>
<div style="border-color: antiquewhite" class="mait_hacks"><p >Participants qualified for Round 2 have to report in college campus on <span style="background-color: yellow;color: black;text-decoration: black">29th March</span>. If there is any tie in the score of second round, then the score of first round will be considered.</p></div>
</div>
<div > <p style="color: crimson;"class="mait_hacks" >If the candidate is found using any unfair means, then his registration will get cancelled immediately.</p></div>
<div > <p style="color: rgb(0, 190, 95);"class="mait_hacks" >The winners will be awarded with exciting prizes and internship offers. Top participants will be provided with Certificates of Appreciation.</p></div>
<div class=" text-center pb-4"> <div style="background-color: rgb(250, 124, 145);color:rgb(7, 1, 7);display: inline;">Venue:First Block</div></div>
<div><p><div style="color: slateblue";>For any query,Contact the Organiser:</div>
<div style="color:rgb(74, 207, 34)">Himanshu:9990632868</div>
</p></div>
</div>
</div>
</div>
</div>
<!--/.Content-->
</div>
</div>
<!-- Modal -->
</section>
<section class="spotlight">
<div class="image"><img src="images/pic03.jpg" alt="" /></div><div class="content">
<h2>DevDash : <br> <h3>Web Design Competition</h3></h2>
<h5 style="color:#21b2a6"></h5>
<p>Creativity in your genes?
We’ve got something for you, a web development event to design and develop an amazing master piece by shaping your imagination into reality and creating wonders.</p>
<div ><span style="color:#21b2a6;font-weight:600">DEADLINE:</span> 26th March 23:59 hrs</div><br>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSebPWqNjuR_ss_wqgLHbbvvy6z_polrO8sg4tyn-KsFOfnq_Q/viewform?embedded=true" target="_blank"><button class="primary">Register</button></a>
<button class="primary mx-2 my-2" data-toggle="modal" data-target="#darkModalForm_webbash">View Rule Book</button>
<div class="modal fade" id="darkModalForm_webbash" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true">
<div class="modal-dialog form-dark" role="document">
<!--Content-->
<div class="modal-content card card-image" style="background:black;">
<div class="text-white rgba-stylish-strong py-5 px-5 z-depth-4">
<!--Header-->
<div class="modal-header row">
<div class="col-lg-6"><h3 class="modal-title w-100 white-text font-weight-bold" id="myModalLabel"><strong>DevDash
</strong></h3></div><div class="col-lg-6">
<button type="button" data-dismiss="modal" >
Close
</button>
</div>
</div>
<!--Body-->
<div class="modal-body">
<!--Body-->
<div class="md-form mb-5" class="mait_hacks">
<p class="mait_hacks">A 2:30 hour event on <span style="background-color: yellow;color: black;">28th March 2019</span> where you will be provided with a web page template/prototype that you have to recreate without previewing your progress before completion of the event.
It would be an individual event, an opportunity to prove your abilities alone.
<div class=" text-center pb-4"> <h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>Instructions</strong></h3></div>
The one closest to the original will be our victor to receive exciting cash prizes, certificates and perks.</p>
<p style="color: springgreen">Each contestant receives a bundle of the editor, which includes a screenshot of the page they should implement with HTML/CSS and any additional assets they might need.</p>
<div class=" text-center pb-4">
<!-- <h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 1</strong></h3> -->
<div style="border-color: antiquewhite"class="mait_hacks">
<p class="mait_hacks" style="color: rgb(192, 250, 106)">No iframes, frameworks, snippets or other assets outside of the ones listed in the instructions are allowed. The site should be built from scratch during the competition.
</p>
</div>
</div>
<div class=" text-center pb-4">
<!-- <h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 1</strong></h3> -->
<div style="border-color: antiquewhite"class="mait_hacks">
<p class="mait_hacks" style="color: rgb(203, 248, 135)">The contestant should have the editor in full screen mode, and is never allowed to exit out of it or use any measurement tools.
</p>
</div>
</div>
<div class=" text-center pb-4">
<!-- <h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 1</strong></h3> -->
<div style="border-color: antiquewhite"class="mait_hacks">
<p class="mait_hacks" style="color: pink">Previews of the results are strictly forbidden until the time is over.
</p>
</div>
</div>
<div class=" text-center pb-4">
<!-- <h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 1</strong></h3> -->
<div style="border-color: antiquewhite"class="mait_hacks">
<p class="mait_hacks" style="color: rgb(247, 211, 217)">Once the timer runs out each contestant must save their code.
</p>
</div>
</div>
<div class=" text-center pb-4">
<!-- <h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 1</strong></h3> -->
<div style="border-color: antiquewhite"class="mait_hacks">
<p class="mait_hacks">We will not be responsible for issues related to peripherals once the competition begins.
</p>
</div>
<div style="background-color: rgb(250, 124, 145);color:rgb(7, 1, 7);display: inline;">Venue:First Block</div>
</div>
<div><p><div style="color: slateblue";>For any query,Contact the Organisers:</div>
<div style="color:rgb(74, 207, 34)">Sarthak:9660360554</div>
<div style="color:rgb(74, 207, 34)">Rasik:8076892829</div>
<div style="color:rgb(74, 207, 34)">Shivay:9821039471</div>
</p></div>
<div > <div class=" text-center pb-4"> <h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>NOTE:</strong></h3></div><p style="color: rgb(240, 89, 119);"class="mait_hacks" >The decision of the Judges would be final and indisputable.</p></div>
</div>
</div>
</div>
</div>
<!--/.Content-->
</div>
<!-- Modal -->
</div>
</section>
<section class="spotlight">
<div class="image"><img src="images/explora.jpeg" alt="" /></div><div class="content">
<h2>Explora : <br><h3>Competitive Coding and Interview Preparation</h3></h2>
<h5 style="color:#21b2a6">Explore the unrevealed!!!</h5>
<p>Well, Impulse'19 won’t let you down. We bring to you an intensive 6-hour workshop that will help you learn, visualize and hone your skills with various group discussions to encourage innovative thinking. Grab this opportunity to learn from experienced personnel and expand your share of knowledge.</p>
<div ><span style="color:#21b2a6;font-weight:600">DEADLINE:</span> 26th March 23:59 hrs</div><br>
<a href="https://docs.google.com/forms/d/e/1FAIpQLScuNjO_eSIqRD_1zMcKnX4hI_9aU27sMkcMfqaaMzMfjtAE-w/viewform?embedded=true" target="_blank"><button class="primary my-2">Register</button></a><br>
</div>
</section>
<section class="spotlight">
<div class="image"><img src="images/pic05.jpg" alt="" /></div><div class="content">
<h2>DEAD SHOT : <br><h3>PUBG Gaming Event</h3></h2>
<h5 style="color:#21b2a6">Yeh PUBG vala hai kya ? </h5>
<p>A gaming event for the avid gamers everywhere. Its your chance to beat all your opponents and show them who's the boss. </p>
<div ><span style="color:#21b2a6;font-weight:600">DEADLINE:</span> 26th March 23:59 hrs</div><br>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdbSDbJVWRa8ujq2ctGH5zFq_nQtxbASwy7amixmXKlJ4_KNQ/viewform?embedded=true" target="_blank"><button class="primary">Register</button></a>
<button class="primary mx-2 my-2" data-toggle="modal" data-target="#darkModalForm_pubg">View Rule Book</button>
<div class="modal fade" id="darkModalForm_pubg" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true">
<div class="modal-dialog form-dark" role="document">
<!--Content-->
<div class="modal-content card card-image" style="background:black;">
<div class="text-white rgba-stylish-strong py-5 px-5 z-depth-4">
<!--Header-->
<div class="modal-header row">
<div class="col-lg-6"><h3 class="modal-title w-100 white-text font-weight-bold" id="myModalLabel"><strong>PUBG
</strong></h3></div><div class="col-lg-6">
<button type="button" data-dismiss="modal" >
Close
</button>
</div>
</div>
<!--Body-->
<div class="modal-body">
<!--Body-->
<div class=" text-center pb-4"> <h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>Instructions</strong></h3></div>
<div class="mait_hacks" style="color: pink;">Gamers get ready for this Pubg event happening on <span style="background-color: yellow;color: black;">28-29 March 2019</span></div><br>
<div class="md-form mb-5"class="mait_hacks">
<p style="color: yellow"> No emulators are allowed during the tournament.
</p>
<div class=" text-center pb-4">
<!-- <h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 1</strong></h3> -->
<div style="border-color: antiquewhite"class="mait_hacks">
<p style="color: yellow" class="mait_hacks"> Participants can bring their mobile phones, tabs or iPads.
</p>
</div>
</div>
<div class=" text-center pb-4">
<!-- <h3 class="modal-title w-100 white-text font-weight-bold"id="myModalLabel" style="background: crimson"><strong>ROUND 1</strong></h3> -->
<div style="border-color: antiquewhite"class="mait_hacks">
<p style="color: rgb(240, 240, 18)" class="mait_hacks">Participants have to use their personal internet services.
</p>
</div>
<div style="color: yellow" class="mait_hacks">Gamers, time to show your skills!</div></p>
<div style="background-color: rgb(250, 124, 145);color:rgb(7, 1, 7);display: inline;">Venue:Amphitheatre</div></div></div>
<div><p><div style="color: slateblue";>For any query,Contact the Organisers:</div>
<div style="color:rgb(74, 207, 34)">Shubham:9911154507</div>
<div style="color:rgb(74, 207, 34)">Dheeraj:9650276092</div>
</p></div></div>
</div>
</div>
</div>
<!--/.Content-->
</div>
<!-- Modal -->
</div>
</section>
<section class="spotlight">
<div class="image"><img src="images/respawn.png" alt="" /></div><div class="content">
<h2>Respawn : <br><h3>CSGO Gaming Event</h3></h2>
<h5 style="color:#21b2a6">Gamers don't die , they respawn</h5>
<p>A gaming event for the avid gamers everywhere. Its your chance to beat all your opponents and show them who's the boss.</p>
<div ><span style="color:#21b2a6;font-weight:600">DEADLINE:</span> 26th March 23:59 hrs</div><br>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSf3lr44ciG22PogsVTNqJawj3DKzcLapW-yIAZNV051CJEY7Q/viewform?embedded=true" target="_blank"><button class="primary">Register</button></a>
<a href="RESPAWN.pdf" target="_blank">
<button class="primary mx-2 my-2">View RuleBook</button>
</a>
</div>
</section>
</section>
<section id="three" class="wrapper style3 ">
<div class="inner">
<header>
<h1 style="font-size:60px;" class="middle">FAQ'<span style="font-size:30px;">s</span></h1>
</header>
<!-- cd-faq-categories -->
<div >
<div class="cd-faq-group" style="padding:0;margin-bottom:50px;">
<p> <h2 style=" font-size:35px;text-align:center;">HackMait</h2></p>
<div> <!-- lol srsly !!-->
<a style=" color: #a6e0db;"> Q: Can students from branches apart from CSE/IT participate? Also, can hardware models like that of IOT, block chain be included in the project submission?</a>
<div class="cd-faq-content" >
<p>Ans: Students from any branch can take part in the competition. Yes, the project submission can include both hardware and software components.</p>
</div> <!-- cd-faq-content -->
</div>
<div>
<a style=" color: #a6e0db;">Q: What do you mean by project submission?</a>
<div class="cd-faq-content">
<p>Ans: The project submission includes both the hardware and
software submission of the project that your team is building.
</p>
</div> <!-- cd-faq-content -->
</div>
<div>
<a style=" color: #a6e0db;" >Q: Do the teams need to send a part of the working model
while submitting project ideas for the online round?
</a>
<div class="cd-faq-content">
<p>Ans: No, it is not necessary to submit a prototype of the
working project along with the project idea. But the project idea must be
elaborate and well explained.
</p>
</div>
</div>
<div>
<a style=" color: #a6e0db;">Q: Do the selected teams for 2nd round need to
bring a completely working project in the campus round?
</a>
<div class="cd-faq-content">
<p>Ans: No, it is not necessary but the project must be at
least 70% complete before reporting your project in the campus round.
</p>
</div>
</div>
<div>
<a style=" color: #a6e0db;">Q: Do the students need to bring their own laptop for the
campus round?
</a>
<div class="cd-faq-content">
<p>Ans: Yes, please bring your own laptops for the competition.
</p>
</div>
</div>
</div> <!-- cd-faq-group -->
<div class="cd-faq-group" style="padding:0;margin-bottom:50px;">
<p class="cd-faq-title"><h2 style="text-align:center; font-size:35px;" >DevDash</h2></p>
<div>
<a style=" color: #a6e0db;">Q:Can we preview the template for a better result during the event? </a>
<div class="cd-faq-content">
<p>Ans: No, that's the most interesting part of this event.
You will have to design and develop the similar template provided to you, without previewing the progress made in the template.
You can preview it only after the time is over.
One with the closest resembling template will be declared as the champion.
</p>
</div> <!-- cd-faq-content -->
</div>
<div>
<a style=" color: #a6e0db;">Q: Is there any pre-determined theme for development?
</a>
<div class="cd-faq-content">
<p>Ans: No, there is not a particular theme. The template will be provided on the spot.</p>
</div> <!-- cd-faq-content -->
</div>
<div>
<a style=" color: #a6e0db;">Q: Do the participants need to bring their own laptops?
</a>
<div class="cd-faq-content">
<p>Ans: No, the event will take place in college labs. So there is no need for laptops.</p>
</div> <!-- cd-faq-content -->
</div>
</div> <!-- cd-faq-group -->
<div class="cd-faq-group">
<p class="cd-faq-title"><h2 style="text-align:center; font-size:35px;">AlgoRythm</h2></p>
<div>
<a style=" color: #a6e0db;">Q. Will the event take place in the college campus? </a>
<div class="cd-faq-content">
<p>Ans: No the first round will be an online coding competition on 27th March .It will take place on “Hackerearth” coding platform . The entry link for the competition will be mailed to you on your registered mail. Participants qualified for Round 2 have to report in college campus on 29th March. </p>
</div> <!-- cd-faq-content -->
</div>
<div>
<a style=" color: #a6e0db;">Q: What kind of questions will be provided in the round 2?</a>
<div class="cd-faq-content">
<p>Ans: All the details will be provided on the spot. But for solving the questions, as with the first round,
the questions can be attempted in any language.</p>
</div> <!-- cd-faq-content -->
</div>
<div>
<a style=" color: #a6e0db;">Q: Do the participants need to bring their own laptops for the round 2 ?
</a>
<div class="cd-faq-content">
<p>Ans:No, the round 2 will take place in college labs. So there is no need for laptops. </p>
</div> <!-- cd-faq-content -->
</div>
</div> <!-- cd-faq-group -->
<div class="cd-faq-group">
<p class="cd-faq-title"><h2 style="text-align:center; font-size:35px;">CS:Go</h2></p>
<div>
<a style=" color: #a6e0db;">Q: Can we bring our own peripherals? </a>
<div class="cd-faq-content">
<p>Ans: We recommend players to bring their own mouse, keyboards, headphones, and any other peripherals to simulate their own best playing environment. </p>
</div>
</div>
<div>
<a style=" color: #a6e0db;">Q: Can scripts be used? </a>
<div class="cd-faq-content">
<p>Ans: Use of unfair but available scripts (e.g. silentrun, attack+use, Centerview script, no recoil script, etc.) is subject to disqualification. </p>
</div>
</div>
<div>
<a style=" color: #a6e0db;">Q: Will headphones be provided?
</a>
<div class="cd-faq-content">
<p>Ans: We will provide mouse and keyboards but not headphones. Also, no mouse-pads will be available, so please bring your own. </p>
</div>
</div>
<div>
<a style=" color: #a6e0db;">Q: Is team member substitution allowed?
</a>
<div class="cd-faq-content">
<p>Ans: Only one member substitution is allowed. In case of substitution, the SP or the team must notify the admins with the reason for the substitution and the profile of the new member before the game, no substitution is allowed in between a game. </p>
</div>
</div>
</div>
<div class="cd-faq-group">
<p class="cd-faq-title"><h2 style="text-align:center; font-size:35px;">PubG</h2></p>
<div>
<a style=" color: #a6e0db;">Q. What is the process of registeration? </a>
<div class="cd-faq-content">
<p>Ans:You can register yourself or your team through the link provided on the website, and make the payments at the time of event .
On spot registration alongwith payments will also be available.</p>
</div> <!-- cd-faq-content -->
</div>
<div>
<a style=" color: #a6e0db;">Q: Will internet services be provided to the participants?</a>
<div class="cd-faq-content">
<p>Ans: No, you have to use your personal data. </p>
</div> <!-- cd-faq-content -->
</div>
<div>
<a style=" color: #a6e0db;">Q: Can we use emulators?
</a>
<div class="cd-faq-content">
<p>Ans: No, we won't allow emulators. Only mobile phones, tabs or iPads are allowed.</p>
</div> <!-- cd-faq-content -->
</div>
</div> <!-- cd-faq-group -->
</div>
</section>
<section id="four" class="wrapper style1 special">
<header class="major">
<h2>GALLERY</h2>
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="container">
<div class="carousel-inner">
<div class="carousel-item active" data-interval="1500">
<img src="./images/gall1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="1500">
<img src="./images/prize-min.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="1500">
<img src="./images/gall3.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="1500">
<img src="./images/gall6.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="1500">
<img src="./images/gall2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="1500">
<img src="./images/gall4.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="1500">
<img src="./images/gall5.jpg" class="d-block w-100" alt="...">
</div>
<!-- <div class="carousel-item" data-interval="1500">
<img src="./images/_DSC1120__1552137275_182.77.21.63 new compressed.jpg" class="d-block w-100" alt="...">
</div> -->
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</header>
</section>
<section id="team">
<h2 id = "event_title" class="middle" style="font-size:30px; text-align:center; padding-top:20px;" >Meet Impulse'19 Team </h3>
<div class="team-container">
<div class="member f1">
<img class="commonimg" src="./images/vinaysir.jpg" alt="">
<div >Vinay Saini<br><i >Faculty Head of IOSD MAIT</i></div>
</div>
<div class="member f2">
<img class="commonimg" src="./images/garimamam.jpg" alt="">
<div >Garima Gupta <br><i>Faculty Head of IOSD MAIT</i></div>
</div>
<h2>COUNCIL</h2>
<div class="member cn1">
<img class="commonimg" src="./images/sparsh_opt.jpg" alt="">
<div >Sparsh Wadhwa <br><i>President</i></div>
</div>
<div class="member cn2">
<img class="commonimg" src="./images/deepanshi.jpg" alt="">
<div >Deepanshi Bansal <br><i>Vice President</i></div>
</div>
<div class="member cn3">
<img class="commonimg" src="./images/deepali1.jpeg" alt="">
<div >Deepali Singhal <br><i>Treasurer<br><br></i></div>
</div>
<div class="member cn4">
<img class="commonimg" src="./images/vivek.JPG" alt="">
<div >Vivek Agarwal <br><i>General Secretay</i></div>
</div>
<div class="member cn5">
<img class="commonimg" src="./images/rajat.jpg" alt="">
<div >Rajat Gupta <br><i>General Secretay</i></div>
</div>
<div class="member cn6">
<img class="commonimg" src="./images/heena.jpg" alt="">
<div >Heena Garg <br><i>Joint Secretay</i></div>
</div>
<h2>CORE TEAM</h2>
<div class="member cr1">
<img class="commonimg" src="./images/harsh.JPG" alt="">
<div >Harsh Luthra</div>
</div>
<div class="member cr2">
<img class="commonimg" src="./images/sarthak.jpg" alt="Sarthak Bhutani">
<div >Sarthak Bhutani </div>
</div>
<div class="member cr3">
<img class="commonimg" src="./images/rasik.JPG" alt="">
<div >Rasik Raj </div>
</div>
<div class="member cr4">
<img class="commonimg" src="./images/shivay.jpg" alt="">
<div >Shivay Lamba </div>
</div>
<div class="member cr5">
<img class="commonimg" src="./images/mayank.jpg" alt="">
<div >Mayank Chopra </div>
</div>
<div class="member cr6">
<img class="commonimg" src="./images/deepanshumeemroth.jpg" alt="Deepanshu Meemroth">
<div >Deepanshu Meemroth </div>
</div>
<div class="member cr7">
<img class="commonimg" src="./images/karan.jpg" alt="Karan">
<div >Karan Gupta </div>
</div><div class="member cr8">
<img class="commonimg" src="./images/arjun.JPG" alt="">
<div >Arjun Vidyarthi </div>
</div>
<div class="member cr9">
<img class="commonimg" src="./images/deepanshugaur.jpg" alt="Deepanshu Gaur">
<div >Deepanshu Gaur </div>
</div>
<div class="member cr10">
<img class="commonimg" src="./images/anjali.JPG" alt="">
<div >Anjali Chaudhary </div>
</div>
<div class="member cr15">
<img class="commonimg" src="./images/naveen.jpeg" alt="Naveen">
<div >Naveen</div>
</div>
<div class="member cr11">
<img class="commonimg" src="./images/dheeraj.jpg" alt="Dheeraj">
<div >Dheeraj Pradyumna</div>
</div>
<div class="member cr12">
<img class="commonimg" src="./images/shubham.jpg" alt="Shubham">
<div >Shubham Goyal </div>
</div>
<div class="member cr13">
<img class="commonimg" src="./images/himanshu.jpg" alt="Himanshu">
<div >Himanshu </div>
</div>
<div class="member cr14">
<img class="commonimg" src="./images/sourabh.jpeg" alt="Sourabh">
<div >Sourabh </div>
</div>
</div>
<div class="team-leader-container">
<h2 class="dev">Developers</h2>
<div class="member d1">
<img class="commonimg" src="./images/parul.jpg" alt="">
<div>Parul Garg </div>
</div>
<div class="member d2">
<img class="commonimg" src="./images/rahul.jpg" alt="">
<div >Rahul Gupta </div>
</div>
<div class="member d3">
<img class="commonimg" src="./images/vishal.jpeg" alt="">
<div >Vishal Khurana </div>
</div>
<div class="member d4">
<img class="commonimg" src="./images/shaguna.jpeg" alt="">
<div >Shaguna Awasthi </div>
</div>
</div>
<div class="team-leader-container1">
<h2 class="crft-head">Craft Head</h2>
<h2 class="pr-head" id="desktop">Promotion Head</h2>
<div class="member crft1">
<img class="commonimg" src="./images/shivani.jpg" alt="">
<div >Shivani Dalmia </div>
</div>
<div class="member crft2">
<img class="commonimg" src="./images/mansi.jpg" alt="">
<div >Mansi Jain </div>
</div>
<h2 class="pr-head" id="mobile">Promotion Head</h2>
<div class="member pr1">
<img class="commonimg" src="./images/rahulchawla.jpg" alt="rahul Chawla">
<div>Rahul Chawla</div>
</div>
<div class="member pr2">
<img class="commonimg" src="./images/shivanshu.JPG" alt="Shivanshu">
<div >Shivanshu Garg</div>
</div>
</div>
<div class="team-leader-container2">
<h2 class="cnt-head">Content Head</h2>
<h2 class="dsgn-head" id="desktop">Design Head</h2>
<div class="member cnt1">
<img class="commonimg" src="./images/jahnavi.jpg" alt="">
<div >Jahnavi Seth </div>
</div>
<h2 class="dsgn-head" id="mobile">Design Head</h2>
<div class="member dsgn1">
<img class="commonimg" src="./images/sarthakmittal.jpg" alt="">
<div >Sarthak Mittal </div>
</div>
<div class="member dsgn2">
<img class="commonimg" src="./images/prabhav.jpg" alt="">
<div >Prabhav Jain</div>
</div>
<h2 class="lg-head">Logistics Head</h2>
<div class="member lg1">
<img class="commonimg" src="./images/raghav.JPG" alt="">
<div >Raghav Gandhi </div>
</div>
<div class="member lg2">
<img class="commonimg" src="./images/aarushi.jpg" alt="">
<div >Arushi Sondhi </div>
</div>
<div class="member lg3">
<img class="commonimg" src="./images/shubhamsingla.jpg" alt="">
<div >Shubham Singla </div>
</div>
<div class="member lg4">
<img class="commonimg" src="./images/aditya.jpg" alt="">
<div >Aditya Lahoty </div>
</div>
<div class="member lg5">
<img class="commonimg" src="./images/sarvesh.jpg" alt="">
<div >Sarvesh Tiwari </div>
</div>
</div>
</section>
<!--Sponsors-->
<!-- <section id="four">
<div style="background-color: black"><span style="margin-left: 20px;"><h2 id = "event_title" class="middle"style="margin-left: 30px">OUR SPONSORS </h3></span></div>
<div class="row no-gutters clients-wrap clearfix wow fadeInUp" style="text-align: center; visibility: visible; animation-name: fadeInUp;background-color: rgb(243, 11, 243);">
<div class="col-lg-4 col-md-6"style="height: 300px;">
<a href="https://nowwt.com/" target="_blank"><img id="sponsor_1"src="images/sponsor1.jpeg" alt="DLF"></a>
</div>
<div class="col-lg-4 col-md-6" style="height: 300px;">
<a href="https://www.hackerearth.com/" target="_blank"><img id="sponsor_1" src="images/sponsor2.png" alt="Microsoft"></a>
</div>
<div class="col-lg-4 col-md-6" style="height: 300px;">
<a href="https://codingblocks.com/about.html" target="_blank"><img id="sponsor_1" src="images/sponsor_3up.png" alt="Microsoft"></a>
</div>
<div class="col-lg-4 col-md-6" style="height: 300px;">
<a href="https://www.jetbrains.com/" target="_blank"><img id="sponsor_1" src="images/jet.jpg" alt="Microsoft"></a>
</div>
</div>
</section> -->
<section id="spon">
<div style="background-color: black"><span style="margin-left: 20px;"><h2 id = "event_title" class="middle"style="margin-left: 30px">OUR SPONSORS</h3></span></div>
<div class="row no-gutters clients-wrap clearfix wow fadeInUp" style="text-align: center; visibility: visible; animation-name: fadeInUp;background-color: rgb(41, 0, 49);overflow-y:hidden">
<div class="col-lg-4 col-md-6"style="height: px;">
<a href="https://nowwt.com/" target="_blank"><img id="sponsor_1"src="images/sponsor1.jpeg" alt="nowwt" style="margin-left: 10px;"></a><br>NOWWT
</div>
<div class="col-lg-4 col-md-6" style="height: 300px;">
<a href="https://www.hackerearth.com/" target="_blank"><img id="sponsor_1" src="images/sponsor_hacker.png" alt="hackerearth" style="width: 323px;"></a><br>HACKER EARTH
</div>
<div class="col-lg-4 col-md-6" style="height: 300px;">
<a href="https://codingninjas.in/" target="_blank"><img id="sponsor_1" src="images/coding_sponsor.jpg" alt="codingNinja" style="width: 250px;"></a><br>CODING NINJAS
</div>
<div class="col-lg-4 col-md-6" style="height: 300px;">
<a href="https://github.com/" target="_blank"><img id="sponsor_1" src="images/git.jpeg" alt="github" style="width: 250px; margin-left: 10px;"></a><br>GitHub
</div>
<div class="col-lg-4 col-md-6" style="height: 300px;">
<a href="https://studentpartners.microsoft.com/en-us" target="_blank"><img id="sponsor_1" src="images/msp.png" alt="msp" style="width: 185px;"></a><br>Microsoft Student Partner
</div>
<div class="col-lg-4 col-md-6" style="height: 300px;">
<a href="https://www.jetbrains.com/" target="_blank"><img id="sponsor_1" src="images/jet11.jpg" style="width: 210px;" alt="JetBrains"></a><br>JetBrains
</div>
</div>
<!---<div class="container-fluid " style=" visibility: visible;margin-left:0px; animation-name: fadeInUp;background-color: rgb(48, 11, 48);overflow-y:hidden">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12"style="height: px;">
<a href="https://nowwt.com/" target="_blank"><img id="sponsor_1"src="images/sponsor1.jpeg" alt="nowwt"></a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12" style="height:300px;">
<a href="https://www.hackerearth.com/" target="_blank"><img id="sponsor_1" src="images/sponsor_hacker.png" alt="hackerearth"></a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12" style="height: px;">
<a href="https://codingninjas.in/" target="_blank"><img id="sponsor_1" src="images/coding_sponsor.jpg" alt="codingblocks"></a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12" style="height: 300px;">
<a href="https://www.duexpress.in/" target="_blank"><img id="sponsor_1" src="images/du_sponsors.png" alt="jetbrains"></a>
</div>
</div>
</div>-->
</section>
<section id="spon">
<div style="background-color: black"><span style="margin-left: 20px;"><h2 id = "event_title" class="middle"style="margin-left: 30px">Promotion Partners</h3></span></div>
<div class="row no-gutters clients-wrap clearfix wow fadeInUp" style="text-align: center; visibility: visible; animation-name: fadeInUp;background-color: rgb(41, 0, 49);overflow-y:hidden">
<div class="col-lg-6 col-md-6"style="height: px;">
<a href="https://www.instagram.com/mait_speaks_up/?hl=en" target="_blank"><img id="sponsor_1"src="images/mait speaks up1.jpg" alt="nowwt"></a><br>MAIT_SPEAKS_UP
</div>
<div class="col-lg-6 col-md-6" style="height: 300px;">
<a href="https://www.instagram.com/ipuexpress/?hl=en" target="_blank"><img id="sponsor_1" src="images/ipu express.jpg" alt="hackerearth"></a><br>IPU EXPRESS
</div>
</div>
</section>
</section>
<!-- <section id="spon">
<div style="background-color: black"><span style="margin-left: 20px;"><h2 id = "event_title" class="middle"style="margin-left: 30px">Gifting Partner</h3></span></div>
<div class="row no-gutters clients-wrap clearfix wow fadeInUp" style="text-align: center; visibility: visible; animation-name: fadeInUp;background-color: rgb(41, 0, 49);overflow-y:hidden">
<div class="col-lg-6 col-md-6"style="height: px;">
<a href="https://www.thesouledstore.com/" target="_blank"><img id="sponsor_1"src="images/tss_sponsor.jpeg" alt="thesouledstore"></a><br>THE SOULED STORE
</div>
</div>
</section>-->
<section id="media">
<div style="background-color: black"><span style="margin-left: 20px;"><h2 id = "event_title" class="middle"style="margin-left: 30px">Gifting Partner</h3></span></div>
<div class="row no-gutters clients-wrap clearfix wow fadeInUp" style="text-align: center; visibility: visible; animation-name: fadeInUp;background-color: rgb(41, 0, 49);overflow-y:hidden">
<div class="col-lg-12 col-md-12" style="height: 300px;">
<a href="https://www.thesouledstore.com/" target="_blank"><img id="sponsor_1" class="du_express" src="images/tss_sponsor.jpeg" alt="thesouledstore"></a><br>THE SOULED STORE
</div>
</div>
</section>
<section id="media">
<div style="background-color: black"><span style="margin-left: 20px;"><h2 id = "event_title" class="middle"style="margin-left: 30px">Beverage Partner</h3></span></div>
<div class="row no-gutters clients-wrap clearfix wow fadeInUp" style="text-align: center; visibility: visible; animation-name: fadeInUp;background-color: rgb(41, 0, 49);overflow-y:hidden">
<div class="col-lg-12 col-md-12" style="height: 300px;">
<a href="https://www.teavalley.com/" target="_blank"><img id="sponsor_1" class="du_express" src="images/teavalley.jpg" alt="thesouledstore"></a><br>TEA VALLEY
</div>
</div>
</section>
<section id="media">