-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1017 lines (986 loc) · 57.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metas -->
<meta charset="utf-8">
<title>MegaHack 2020</title>
<meta name="description" content="MegaHack, 24 hour Software Hackathon!">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS -->
<!-- https://fontawesome.com/v3.2.1/icons/ -->
<script src="https://kit.fontawesome.com/92d0281bbc.js" crossorigin="anonymous"></script>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/base.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/main.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/flexslider.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/venobox.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/fonts.css" rel="stylesheet" type="text/css" media="all" />
<link href="https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,600,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Exo+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rancho&effect=shadow-multiple" rel="stylesheet">
<link rel="icon" href="img/logo/MegaHack_logo.png">
<style>
@media only screen and (max-width: 650px) {
#Layer_1{
margin-top: 16% !important;
width:300vw;
}
}
</style>
</head>
<body>
<div class="loader">
<div class="loader-inner">
<svg width="10" height="10" viewbox="0 0 100 100" class="loading-spinner" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="spinner" cx="50" cy="50" r="21" fill="#111111" stroke-width="1.5" />
</svg>
</div>
</div>
<div class="wrapper">
<section class="hero overlay">
<!--Main slider-->
<div class="main-slider slider">
<ul class="slides">
<li>
<div class="background-img">
<img src="img/MegaHack9.jpeg" alt="MegaHack">
<div class="row">
<fieldset>
<div class="align">
<div class="pp" align="center" style="transform: scale(1.2);">
<a id="raw_a" href="https://www.raweng.com/">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 937.8 339.4" class="raw" style="enable-background:new 0 0 937.8 339.4;width:25vw;height: auto;margin-top:5%;z-index: 9999;" xml:space="preserve">
<style type="text/css">
.st2{fill:#ffffff;}
</style>
<path id="RawEngineering-logo" class="st2" d="M212.7,47.8c-25.5,6.7-48.3,18.4-60.7,39.8c-2.6,4.5-4.8,9.5-6.4,15
c-80.1,41.5-23.9,141.3,6.4,197.8l0.7,1.2l51-58c-18.7-34.8-48.5-86.3-42.2-128.3c16.1-6.8,33.6-10.3,51.2-12.4
c10.1-1.2,20.3-1.9,30.1-2.5L298,37.8C273.6,39.2,241.4,40.3,212.7,47.8z M181.5,241l-25.1,28.6c-1.4-2.6-2.9-5.5-4.4-8.5
c-19.6-38.3-50-103.1-9.5-134.9c0.1,14.7,3.5,30.9,9.5,48.7C158.8,195.1,168.9,217.1,181.5,241z M234.1,82.6
c-7.5,0.5-14.7,1.2-21.4,2c-15.9,1.9-29.8,4.6-41.9,8.2c8.2-10.8,21.8-19.3,41.9-25.4c11.7-3.5,25.6-6.2,41.9-8.1L234.1,82.6z
M415.5,165h-13.1l-16.6-50.4H399l11.1,35.2l11.1-30.8h7.1h5.1l10.6,30.8l10.1-35.2H467L450.3,165h-13l-9-26.8l-1.4-4.1L415.5,165z
M345.5,221.1c0-20.8-6.2-31.2-23.3-31.4h-0.5c-18.6,0-23.9,15.4-23.9,27.1c0,14,8.1,26.1,24.4,26.1h0c6.9,0,14.6-1.2,20.7-4
l-4.1-9.6c-5.3,2.6-11,4.3-15.8,4.3c-0.3,0-0.5,0-0.8,0c-6.5-0.3-10.3-4.8-11.3-12.6h11.3L345.5,221.1L345.5,221.1z M321.5,199.2
h0.6c6.2,0.2,10.8,3.6,11.3,12.9h-11.3h-11.3C311.3,201.7,317.5,199.2,321.5,199.2z M298,114.6h11.5l2,8.6c1.6-2.9,6-8.6,10.8-9.9
c0.6-0.2,1.2-0.3,1.8-0.3c4.2,0,6.6,0.9,9.6,2.4l-4.3,10.3c-1.8-1.4-4.4-3-7.1-3.1H322c-5.8,0-9,9.2-10.3,12.2V165h-12.5v-39.2
C299.3,120.9,298.3,117.2,298,114.6z M396.9,209.7v31.8h-12.4v-32.3c0-5-0.4-10-7.8-10c-5.2,0-8.7,4.7-11,9.5v32.9h-6h-6.5v-39.7
c0-4.2-0.9-7.2-1.3-10.7h7.8h3.7l2,6.6c2.1-2.2,6.4-8.2,13.4-8.2C393.5,189.5,396.9,198.1,396.9,209.7z M455.6,189.3
c-5.3,0.2-14.9,1-19,1.3c-2.7-0.5-4.7-1-8.3-1h-0.2c-19.8,0-22.8,13.2-22.8,19.1c0,6.9,3.7,11.3,5.1,12.9c-3,2.2-5.8,5.2-5.8,8.8
c0,4.1,2,7.4,6.4,9.4c-2.8,1.1-8.2,3.7-8.2,9.6c0,8.4,6,14.1,25.6,14.2h0.7c12.7,0,25.8-3.5,25.8-14.5c0-8.3-4.6-13.2-24.7-14.7
l-1.8-0.2c-11-0.9-13.3-1.8-13.3-4.4c0-1.9,1.1-3,2.3-3.7c2.6,1.2,9,1.8,11,1.8h0c17.7,0,22.9-10.7,22.9-19.3
c0-4.7-3.1-9.2-5.1-11.1h6.2L455.6,189.3z M419.2,244c3.5,0.1,6.5,0.3,9.1,0.5c10.7,0.9,13.7,2.9,13.7,4.6c0,4.1-3.1,5.4-13,5.4
h-0.7c-6.6-0.1-12.7-2-12.7-5.5C415.6,247,416.9,245.1,419.2,244z M428.5,218.7h-0.2c-5.8,0-10.2-2.7-10.2-9.8
c0-7.8,5.1-9.9,10.2-9.9h0c6.9,0,10.1,3.7,10.1,9.5C438.5,213.2,436.2,218.7,428.5,218.7z M581,221.1c0-20.8-6.2-31.2-23.3-31.4
h-0.5c-18.6,0-23.9,15.4-23.9,27.1c0,14,8.1,26.1,24.4,26.1h0c6.9,0,14.6-1.2,20.7-4l-4.1-9.6c-5.3,2.6-11,4.3-15.8,4.3
c-0.3,0-0.5,0-0.8,0c-6.4-0.3-10.3-4.8-11.3-12.6h11.3L581,221.1L581,221.1z M557.1,199.2h0.6c6.2,0.2,10.8,3.6,11.3,12.9h-11.3
h-11.3C546.8,201.7,553,199.2,557.1,199.2z M681,191.1h12.4v50.4H681V191.1z M680.7,170.1h13.1v10.8h-13.1V170.1z M665.7,189.5
c4.2,0,6.6,0.9,9.6,2.4l-4.3,10.3c-1.9-1.4-4.5-3.1-7.3-3.1c-5.8,0-9,9.2-10.3,12.2v30.1H641v-39.2c0-5-1-8.7-1.3-11.3h11.5l2,8.6
C654.9,196.5,660.3,189.5,665.7,189.5z M744.8,209.7v31.8h-12.5v-32.3c0-5-0.4-10-7.8-10c-5.2,0-8.7,4.7-11,9.5v32.9H701v-39.7
c0-4.2-0.9-7.2-1.3-10.7h11.5l2,6.6c2.1-2.2,6.4-8.2,13.4-8.2C741.4,189.5,744.8,198.1,744.8,209.7z M803,189.3
c-5.3,0.2-14.9,1-19,1.3c-2.7-0.5-4.7-1-8.3-1h-0.2c-19.8,0-22.8,13.2-22.8,19.1c0,6.9,3.7,11.3,5.1,12.9c-3,2.2-5.8,5.2-5.8,8.8
c0,4.1,2,7.4,6.4,9.4c-2.8,1.1-8.2,3.7-8.2,9.6c0,8.4,6.1,14.1,25.6,14.2h0.7c12.7,0,25.8-3.5,25.8-14.5c0-8.3-4.6-13.1-24.7-14.7
l-1.8-0.1c-11-0.9-13.3-1.8-13.3-4.4c0-1.9,1.1-3,2.3-3.7c2.6,1.2,9,1.8,11,1.8h0c17.7,0,22.9-10.7,22.9-19.3
c0-4.7-3.1-9.2-5.1-11.1h6.2L803,189.3z M766.7,244c3.5,0.1,6.5,0.3,9.1,0.5c10.7,0.9,13.7,2.9,13.7,4.6c0,4.1-3.1,5.4-13,5.4h-0.7
c-6.6-0.1-12.7-2-12.7-5.5C763,247,764.4,245.1,766.7,244z M775.9,218.7h-0.2c-5.8,0-10.2-2.7-10.2-9.8c0-7.8,5.1-9.9,10.2-9.9h0
c6.9,0,10.1,3.7,10.1,9.5C786,213.2,783.7,218.7,775.9,218.7z M526.8,209.7v31.8h-12.4v-32.3c0-5-0.4-10-7.8-10
c-5.2,0-8.7,4.7-11,9.5v32.9h-12.4v-39.7c0-4.2-0.9-7.2-1.3-10.7h11.5l2,6.6c2.1-2.2,6.4-8.2,13.4-8.2
C523.4,189.5,526.8,198.1,526.8,209.7z M462,191.1h12.4v50.4H462V191.1z M633.9,221.1c0-20.8-6.2-31.2-23.3-31.4H610
c-18.6,0-23.9,15.4-23.9,27.1c0,14,8.1,26.1,24.4,26.1h0c6.9,0,14.6-1.2,20.7-4l-4.1-9.6c-5.3,2.6-11,4.3-15.8,4.3
c-0.3,0-0.5,0-0.8,0c-6.5-0.3-10.3-4.8-11.3-12.6h11.3L633.9,221.1L633.9,221.1z M609.9,199.2h0.6c6.2,0.2,10.8,3.6,11.3,12.9h-11.3
h-11.3C599.7,201.7,605.8,199.2,609.9,199.2z M461.6,170.1h13.1v10.8h-13.1V170.1z M364.8,133.4c-1.8,0-3.6,0-5.2,0.2
c-17.3,1.2-22.5,8.9-22.5,18.2c0,9.6,7.8,14.7,20.6,14.7c0.6,0,1.3,0,1.9-0.2c4.5-0.8,7.8-4,10.3-6.4l1.9,5.1h11.8
c-0.7-5.6-2-11.5-2-15.4v-20.3c0-11-7.9-16.1-19.1-16.1c-1,0-1.9,0-2.9,0c-7.1,0.3-14.6,1.6-20.5,3.7l4.3,10.3
c4.3-2.1,10.1-4,16.2-4.3c0.7,0,1.5-0.1,2.2-0.1c6.4,0,7.2,4.3,7.2,8.2v2.4H364.8z M369.1,141.8v9.9c-1.9,2.6-5.1,5-9.5,5.2
c-0.2,0-0.4,0-0.5,0c-4.6,0-9-1.3-9-5.6c0-4.7,2.6-7.9,9.5-9c1.9-0.3,4.1-0.5,6.7-0.5H369.1z M823.5,188.9c-5.5,0-9.9,4.4-9.9,9.9
s4.4,9.9,9.9,9.9c5.5,0,9.9-4.4,9.9-9.9C833.4,193.3,829,188.9,823.5,188.9z M823.5,206.8c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8
c4.4,0,8,3.6,8,8C831.5,203.2,827.9,206.8,823.5,206.8z M826.1,199.5c-0.3-0.3-0.6-0.5-0.9-0.5c0.6-0.2,1.1-0.5,1.4-0.9
c0.3-0.4,0.5-0.9,0.5-1.6c0-0.9-0.3-1.6-0.9-2c-0.6-0.4-1.5-0.6-2.8-0.6h-3.8v9.7h2.5v-3.7h0.7c0.4,0,0.8,0.1,1,0.3
c0.3,0.2,0.5,0.5,0.7,1l1.2,2.4h2.6l-1.3-2.8C826.7,200.1,826.4,199.7,826.1,199.5z M824.3,197.8c-0.2,0.2-0.6,0.3-1.1,0.3h-1.1
v-2.5h1.1c0.5,0,0.9,0.1,1.1,0.3c0.2,0.2,0.3,0.5,0.3,1C824.6,197.3,824.5,197.6,824.3,197.8z"/>
</svg>
</a>
<a href="https://www.contentstack.com/"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1040 227.2" class="content" style="enable-background:new 0 0 1040 227.2; width:40vw;height: auto;" xml:space="preserve">
<style type="text/css">
.st0{fill:#EC5744;}
.st1{fill:#ffffff;}
</style>
<g id="Contentstack-logo">
<g id="XMLID_115_">
<g id="XMLID_206_">
<g id="XMLID_220_">
<g id="XMLID_231_">
<path id="XMLID_232_" class="st0" d="M243.9,100.8c0,1.5-1.2,2.5-2.5,2.5h-46c-1.5,0-2.5-1.2-2.5-2.5v-5.1
c0-1.5,1.2-2.5,2.5-2.5h46c1.5,0,2.5,1.2,2.5,2.5V100.8z"/>
</g>
<g id="XMLID_229_">
<path id="XMLID_230_" class="st0" d="M264.5,116.1c0,1.5-1.2,2.5-2.5,2.5h-56.3c-1.5,0-2.5-1.2-2.5-2.5V111
c0-1.5,1.2-2.5,2.5-2.5h56.1c1.5,0,2.5,1.2,2.5,2.5L264.5,116.1L264.5,116.1z"/>
</g>
<g id="XMLID_227_">
<path id="XMLID_228_" class="st0" d="M279.8,131.5c0,1.5-1.2,2.5-2.5,2.5h-61.4c-1.5,0-2.5-1.2-2.5-2.5v-5.1
c0-1.5,1.2-2.5,2.5-2.5h61.3c1.5,0,2.5,1.2,2.5,2.5L279.8,131.5L279.8,131.5z"/>
</g>
<g id="XMLID_225_">
<path id="XMLID_226_" class="st0" d="M279.8,146.8c0,1.5-1.2,2.5-2.5,2.5h-61.4c-1.5,0-2.5-1.2-2.5-2.5v-5.1
c0-1.5,1.2-2.5,2.5-2.5h61.3c1.5,0,2.5,1.2,2.5,2.5L279.8,146.8L279.8,146.8z"/>
</g>
<g id="XMLID_223_">
<path id="XMLID_224_" class="st0" d="M264.5,162.1c0,1.5-1.2,2.5-2.5,2.5h-56.3c-1.5,0-2.5-1.2-2.5-2.5V157
c0-1.5,1.2-2.5,2.5-2.5h56.1c1.5,0,2.5,1.2,2.5,2.5L264.5,162.1L264.5,162.1z"/>
</g>
<g id="XMLID_221_">
<path id="XMLID_222_" class="st0" d="M243.9,177.5c0,1.5-1.2,2.5-2.5,2.5h-46c-1.5,0-2.5-1.2-2.5-2.5v-5.1
c0-1.5,1.2-2.5,2.5-2.5h46c1.5,0,2.5,1.2,2.5,2.5V177.5z"/>
</g>
</g>
<g id="XMLID_207_">
<g id="XMLID_218_">
<path id="XMLID_219_" class="st0" d="M157.1,54.9c0,1.5,1.2,2.5,2.5,2.5h46c1.5,0,2.5-1.2,2.5-2.5v-5.1c0-1.5-1.2-2.5-2.5-2.5
h-45.8c-1.5,0-2.5,1.2-2.5,2.5L157.1,54.9L157.1,54.9z"/>
</g>
<g id="XMLID_216_">
<path id="XMLID_217_" class="st0" d="M136.7,70.1c0,1.5,1.2,2.5,2.5,2.5h56.1c1.5,0,2.5-1.2,2.5-2.5V65c0-1.5-1.2-2.5-2.5-2.5
h-56c-1.5,0-2.5,1.2-2.5,2.5v5.1H136.7z"/>
</g>
<g id="XMLID_214_">
<path id="XMLID_215_" class="st0" d="M121.4,85.6c0,1.5,1.2,2.5,2.5,2.5h61.3c1.5,0,2.5-1.2,2.5-2.5v-5.1
c0-1.5-1.2-2.5-2.5-2.5h-61.3c-1.5,0-2.5,1.2-2.5,2.5V85.6z"/>
</g>
<g id="XMLID_212_">
<path id="XMLID_213_" class="st0" d="M121.4,100.8c0,1.5,1.2,2.5,2.5,2.5h61.3c1.5,0,2.5-1.2,2.5-2.5v-5.1
c0-1.5-1.2-2.5-2.5-2.5h-61.3c-1.5,0-2.5,1.2-2.5,2.5V100.8z"/>
</g>
<g id="XMLID_210_">
<path id="XMLID_211_" class="st0" d="M136.7,116.1c0,1.5,1.2,2.5,2.5,2.5h56.1c1.5,0,2.5-1.2,2.5-2.5V111
c0-1.5-1.2-2.5-2.5-2.5h-56c-1.5,0-2.5,1.2-2.5,2.5v5.1H136.7z"/>
</g>
<g id="XMLID_208_">
<path id="XMLID_209_" class="st0" d="M157.1,131.5c0,1.5,1.2,2.5,2.5,2.5h46c1.5,0,2.5-1.2,2.5-2.5v-5.1c0-1.5-1.2-2.5-2.5-2.5
h-45.8c-1.5,0-2.5,1.2-2.5,2.5L157.1,131.5L157.1,131.5z"/>
</g>
</g>
</g>
</g>
<g>
<g id="XMLID_37_">
<g id="XMLID_288_">
<path id="XMLID_313_" class="st1" d="M339.8,143.4c-2.5,0.3-4.8,0.4-7.1,0.4c-6.5,0-11.3-0.9-14.4-2.8c-3.1-1.8-5.1-4.8-6.2-9
c-1-4.1-1.5-10.4-1.5-18.8c0-8.2,0.6-14.5,1.6-18.7c1-4.3,3.1-7.2,6.2-9.1c3.1-1.9,7.9-2.8,14.4-2.8c2.2,0,4.6,0.1,6.9,0.4
c2.4,0.3,4.4,0.7,5.9,1.2v10.4c-4.8-0.6-8.2-0.7-9.8-0.7c-4,0-6.6,0.4-8.1,1.2c-1.5,0.7-2.4,2.4-2.8,4.7
c-0.4,2.4-0.6,6.9-0.6,13.4c0,6.5,0.1,11,0.6,13.4c0.4,2.4,1.3,4,2.8,4.7c1.5,0.7,4.1,1.2,8.1,1.2c3.4,0,6.8-0.3,10-0.7v10.4
C344.4,142.7,342.3,143.1,339.8,143.4z"/>
<path id="XMLID_310_" class="st1" d="M360.3,141.2c-3.1-1.8-5-4.6-5.9-8.5c-0.7-4-1.2-10.4-1.2-19.4c0-9,0.4-15.4,1.2-19.4
c0.7-4,2.6-6.8,5.9-8.5c3.1-1.8,8.2-2.6,15.4-2.6c7.3,0,12.5,0.9,15.6,2.6c3.1,1.8,5,4.6,5.7,8.5c0.7,3.8,1.2,10.3,1.2,19.4
s-0.4,15.6-1.2,19.4c-0.7,3.8-2.6,6.8-5.7,8.5c-3.1,1.8-8.2,2.6-15.6,2.6C368.5,143.9,363.3,143,360.3,141.2z M382,131.7
c1-0.6,1.8-2.2,2.1-4.6c0.3-2.4,0.4-7.1,0.4-13.8c0-6.9-0.1-11.5-0.4-13.8c-0.3-2.4-1-3.8-2.1-4.6c-1-0.6-3.2-0.9-6.3-0.9
c-3.1,0-5.3,0.3-6.3,0.9c-1,0.6-1.8,2.2-2.1,4.6c-0.3,2.4-0.4,7.1-0.4,13.8c0,6.9,0.1,11.5,0.4,13.8c0.3,2.4,1,3.8,2.1,4.6
c1,0.6,3.2,0.9,6.3,0.9C378.8,132.6,380.8,132.3,382,131.7z"/>
<path id="XMLID_308_" class="st1" d="M438.4,143.1l-17.5-34.1h-0.4v34.1h-12.9V83.5h13.7l16.5,31.3h0.4V83.5H451v59.6H438.4z"/>
<path id="XMLID_306_" class="st1" d="M471.5,143.1v-48h-14.1V83.5h41.7v11.6H485v48H471.5z"/>
<path id="XMLID_304_" class="st1" d="M505.8,143.1V83.5h35.8v11.2h-22.5v12.8h19.2v11.2h-19.2V132h22.5v11.2L505.8,143.1
L505.8,143.1z"/>
<path id="XMLID_302_" class="st1" d="M581.9,143.1l-17.5-34.1H564v34.1h-12.9V83.5h13.7l16.5,31.3h0.4V83.5h12.9v59.6H581.9z"/>
<path id="XMLID_300_" class="st1" d="M614.8,143.1v-48h-14.1V83.5h41.7v11.6h-14.1v48H614.8z"/>
<path id="XMLID_298_" class="st1" d="M648.5,142.4v-10.6c7.2,0.6,12.2,0.9,15.3,0.9c2.4,0,4.3-0.1,5.6-0.3
c1.3-0.3,2.4-0.6,2.8-1.2c0.6-0.6,0.9-1.2,1-1.9c0.1-0.7,0.1-1.8,0.1-3.2c0-1.9-0.1-3.2-0.3-4c-0.3-0.7-0.7-1.3-1.5-1.8
c-0.7-0.3-1.9-0.7-3.7-0.9l-9.5-1.3c-4.4-0.6-7.3-2.4-9-5.1c-1.6-2.8-2.4-6.8-2.4-11.9c0-5,0.9-8.8,2.5-11.5
c1.6-2.6,4-4.4,6.9-5.3c2.9-0.9,6.6-1.3,11-1.3c5.4,0,11.2,0.6,16.9,1.8v10.4c-5.1-0.6-9.8-0.9-13.8-0.9c-4.3,0-7.1,0.4-8.2,1.2
c-0.7,0.4-1.2,1-1.3,1.8c-0.1,0.7-0.3,1.8-0.3,3.4c0,1.6,0.1,2.8,0.3,3.5c0.1,0.7,0.6,1.2,1.2,1.5c0.6,0.3,1.6,0.6,3.2,0.9
l10.3,1.5c2.4,0.3,4.3,0.9,5.7,1.8s2.8,2.2,3.8,4.1c1.2,2.5,1.8,6.2,1.8,10.9c0,5.6-0.7,9.7-2.4,12.6c-1.6,2.8-3.7,4.7-6.3,5.6
c-2.6,0.9-6.2,1.3-10.6,1.3C660.4,143.9,653.9,143.3,648.5,142.4z"/>
<path id="XMLID_296_" class="st1" d="M705.3,143.1v-48h-14V83.5h41.7v11.6H719v48H705.3z"/>
<path id="XMLID_293_" class="st1" d="M768.5,143.1l-3.1-11.9h-17.6l-2.8,11.9h-13.5l16-59.6h18.8l15.9,59.6H768.5z M756.9,95.7
h-0.6l-5.9,24.4h12.2L756.9,95.7z"/>
<path id="XMLID_291_" class="st1" d="M816.1,143.4c-2.5,0.3-4.8,0.4-7.1,0.4c-6.5,0-11.3-0.9-14.4-2.8c-3.1-1.9-5.1-4.8-6.2-9
c-1-4.1-1.5-10.4-1.5-18.8c0-8.2,0.6-14.5,1.6-18.7c1-4.3,3.1-7.2,6.2-9.1s7.9-2.8,14.4-2.8c2.2,0,4.6,0.1,6.9,0.4
c2.4,0.3,4.4,0.7,5.9,1.2v10.4c-4.8-0.6-8.2-0.7-9.8-0.7c-4,0-6.6,0.4-8.1,1.2c-1.5,0.7-2.4,2.4-2.8,4.7
c-0.4,2.4-0.6,6.9-0.6,13.4c0,6.5,0.1,11,0.6,13.4c0.4,2.4,1.3,4,2.8,4.7c1.5,0.7,4.1,1.2,8.1,1.2c3.4,0,6.8-0.3,10-0.7v10.4
C820.6,142.7,818.6,143.1,816.1,143.4z"/>
<path id="XMLID_289_" class="st1" d="M861.3,143.1l-13.4-24.7h-3.7v24.7h-13.4V83.5h13.4v23.6h3.7l13.7-23.6h14.5L858.8,112
l17.5,31.1H861.3L861.3,143.1z"/>
</g>
</g>
<g>
<path class="st1" d="M890.5,101.1V86.4h-5.3v-2.9h14v2.9h-5.1v14.7H890.5z"/>
<path class="st1" d="M901.6,101.1V83.5h5.3l3.2,12l3.2-12h5.3v17.6h-3.4V87.3l-3.5,13.8h-3.4l-3.5-13.8v13.8H901.6z"/>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</fieldset>
</div>
</div>
</li>
</ul>
</div>
<!--End main slider-->
<!--Header-->
<header class="header">
<!--Container-->
<div class="container ">
<!--Row-->
<div class="row">
<div class="col-md-1 col-sm-2">
<a class="scroll logo" href="#wrapper">
<img src="img/logo/MegaHack.png" width="50vm" height="50vw" alt="logo" alt="MegaHack Logo" />
</a>
</div>
<div class="col-md-11 text-right">
<nav class="main-nav">
<div class="toggle-mobile-but">
<a href="#" class="mobile-but">
<div class="lines"></div>
</a>
</div>
<ul>
<li><a class="scroll" href="#wrapper">Home</a></li>
<li><a class="scroll" href="#about">About</a></li>
<li><a class="scroll" href="#result">Result</a></li>
<li><a class="scroll" href="https://docs.google.com/document/d/1W-f4A8_83T2NND5PpqUalGpQ2vxPDSOuPFBzteeEBAM/edit?usp=sharing" target="_blank">Rules</a></li>
<li><a class="scroll" href="#prizes">Prizes</a></li>
<li><a class="scroll" href="#sponsors">Sponsors</a></li>
<li><a class="scroll" href="#contactus">Contact us</a></li>
<!-- <li><a class="scroll" href="https://skillenza.com/challenge/megahack" target="_blank">Register Now</a></li> -->
<li><a class="scroll" href="http://megaleio.sjcem.co.in" target="_blank">Megaleio</a></li>
</ul>
</nav>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
</header>
<!--End header-->
<!--Inner hero-->
<div class="inner-hero fade-out">
<!--Container-->
<div class="container hero-content">
<!--Row-->
<div class="row">
<h3 style="margin-top: 10%;">
presents
</h3>
<img class="logo-default" src="img/logo/megahack_trans1.png" alt="MegaHack logo" width="800vw" />
<!-- <p id="timer" style="font-family:Arial, Helvetica, sans-serif; font-size:2rem;" class="gradient-text" ></p> -->
<h3>Code...Compete...Conquer...</h3><br>
<div class="row">
<div class="col-sm-12 col-md-12">
<span class="gradient-text" style="font-size:3vw;">MegaHack 2020 was </span>
<span class="gradient-text" style="font-size:3vw;">{ </span>
<span class="gradient-text" style="font-size:3vw;">Awesome</span>
<span class="gradient-text" style="font-size:3vw;"> }<br></span><br>
</div>
</div>
<a class="but scroll" href="#result" target="_blank">Checkout Winners!!</a>
</div>
<!--End row-->
</div>
<!--End container-->
<!--End inner hero-->
</section>
<section id="about" class="about xpb-40 brd-bottom">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-100 text-center">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="5.1983" y1="28.1187" x2="43.4067" y2="11.702">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
<h1 class="title gradient-text">About MegaHack</h1>
</linearGradient>
<p class="title-lead mt-20">
We are St. John College of Engineering and Management’s first-ever Hackathon organized by students,
for students. With this Hackathon, SJCEM strives to promote technical innovation and highlight students’
skills and abilities. We aim to bring out the best and brightest students, not just from SJCEM but from
other universities all over India. The event is an opportunity for hackers to exchange their ideas, gain extra knowledge and to make good relations for future collaborations. We
wholeheartedly invite all the technophiles to this exciting Hackathon…</p>
<p class="title-lead mt-20">All activities are enforced with our<br></p>
<a href="https://bit.ly/megahack_coc" class="but scroll" target="_blank"> < Code of Conduct /></a>
</br>
<br>
<a href="img/MegaHackPoster.jpg" class="but scroll" target="_blank"> < Download MegaHack Poster /> </a>
<br>
<br>
<div class="block-info-12" style="font-size: 20px;">
<span><a href="https://docs.google.com/forms/d/e/1FAIpQLSfntUw3wbxGolXvyVNpK3_ompmAiaL8wvLLZ4mh9nXna5R-_A/viewform?usp=sf_link" target="_blank"><i class="fas fa-angle-double-right" style="color:green;"></i><font color="#ffffff"> Get Update of MegaHack 2021! </font><i class="fas fa-angle-double-left" style="color:green;"></i></a></span>
</div>
</div>
</div>
<!--End row-->
</div>
<div class="container aboutdate">
<!--Row-->
<div class="row">
<div class="col-md-3 col-sm-3">
<div class="block-info-1">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="35px" height="25px" viewBox="0 0 42 32" enable-background="new 0 0 42 32"
xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="5.1983" y1="28.1187" x2="43.4067" y2="11.702">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_1_)" d="M38,30.5v-19c0-0.276-0.224-0.5-0.5-0.5S37,11.224,37,11.5v19c0,0.276-0.224,0.5-0.5,0.5h-31
C5.224,31,5,30.776,5,30.5v-19C5,11.224,4.776,11,4.5,11S4,11.224,4,11.5v19C4,31.327,4.673,32,5.5,32h31
C37.327,32,38,31.327,38,30.5z" />
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="4.7162" y1="26.9965" x2="42.9245" y2="10.5799">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_2_)" d="M8.5,23C8.224,23,8,23.224,8,23.5S8.224,24,8.5,24H10v3.5c0,0.276,0.224,0.5,0.5,0.5
s0.5-0.224,0.5-0.5V24h6v3.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V24h6v3.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V24
h6v3.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V24h1.5c0.276,0,0.5-0.224,0.5-0.5S33.776,23,33.5,23H32v-5h1.5
c0.276,0,0.5-0.224,0.5-0.5S33.776,17,33.5,17H32v-4.5c0-0.276-0.224-0.5-0.5-0.5S31,12.224,31,12.5V17h-6v-4.5
c0-0.276-0.224-0.5-0.5-0.5S24,12.224,24,12.5V17h-6v-4.5c0-0.276-0.224-0.5-0.5-0.5S17,12.224,17,12.5V17h-6v-4.5
c0-0.276-0.224-0.5-0.5-0.5S10,12.224,10,12.5V17H8.5C8.224,17,8,17.224,8,17.5S8.224,18,8.5,18H10v5H8.5z M31,18v5h-6v-5H31z
M24,18v5h-6v-5H24z M11,18h6v5h-6V18z" />
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-0.4811" y1="14.9003" x2="37.7272" y2="-1.5164">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_3_)" d="M32.5,3h4.25C36.837,3,37,3,37,3.5V8H5V3.5C5,3.224,5.224,3,5.5,3h4C9.776,3,10,2.776,10,2.5
S9.776,2,9.5,2h-4C4.673,2,4,2.673,4,3.5v5C4,8.776,4.224,9,4.5,9h33C37.776,9,38,8.776,38,8.5v-5C38,2.394,37.354,2,36.75,2H32.5
C32.224,2,32,2.224,32,2.5S32.224,3,32.5,3z" />
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-1.6311" y1="12.2237" x2="36.5772" y2="-4.1929">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_4_)" d="M26.5,3C26.776,3,27,2.776,27,2.5S26.776,2,26.5,2h-11C15.224,2,15,2.224,15,2.5S15.224,3,15.5,3
H26.5z" />
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-2.9557" y1="9.1407" x2="35.2526" y2="-7.2759">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_5_)" d="M13,4.5v-4C13,0.224,12.776,0,12.5,0S12,0.224,12,0.5v4C12,4.776,12.224,5,12.5,5S13,4.776,13,4.5z" />
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-0.3065" y1="15.3067" x2="37.9019" y2="-1.11">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F7" />
</linearGradient>
<path fill="url(#SVGID_6_)" d="M29.5,5C29.776,5,30,4.776,30,4.5v-4C30,0.224,29.776,0,29.5,0S29,0.224,29,0.5v4
C29,4.776,29.224,5,29.5,5z" />
</svg>
<p>
<strong>DATE</strong>
<span>29-30 January 2020 | 24 hour Hackathon</span>
</p>
</div>
</div>
<div class="col-md-3 col-sm-3">
<div class="block-info-1">
<svg version="1.1" id="Layer_7" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="35px" height="25px" viewBox="0 0 42 32" enable-background="new 0 0 42 32"
xml:space="preserve">
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="4.511" y1="11.8158" x2="41.3229" y2="27.6695">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_7_)" d="M10.239,31.926c0.009,0.006,0.021,0.003,0.03,0.009C10.341,31.973,10.418,32,10.499,32
c0.044,0,0.088-0.006,0.132-0.018l10.868-2.966l10.868,2.966C32.411,31.994,32.455,32,32.499,32c0.082,0,0.158-0.027,0.23-0.065
c0.01-0.005,0.021-0.003,0.03-0.009l9-5.5c0.191-0.117,0.281-0.348,0.22-0.563l-4.984-17.5c-0.041-0.147-0.148-0.267-0.29-0.326
c-0.142-0.057-0.301-0.048-0.436,0.026l-4.962,2.784c-0.24,0.135-0.326,0.44-0.191,0.681c0.135,0.242,0.439,0.327,0.682,0.191
l4.409-2.475l4.707,16.526l-8.015,4.898l-1.904-15.231c-0.034-0.275-0.293-0.466-0.559-0.434c-0.273,0.034-0.468,0.284-0.434,0.558
l1.907,15.259L22,28.115v-2.73c0-0.276-0.224-0.5-0.5-0.5s-0.5,0.224-0.5,0.5v2.73l-9.911,2.705l1.907-15.259
c0.034-0.274-0.16-0.524-0.434-0.558c-0.272-0.032-0.524,0.159-0.559,0.434l-1.904,15.231L2.084,25.77L6.791,9.244l4.409,2.475
c0.242,0.134,0.546,0.049,0.682-0.191c0.135-0.241,0.049-0.545-0.191-0.681L6.729,8.063C6.595,7.988,6.436,7.979,6.293,8.037
c-0.142,0.059-0.249,0.178-0.29,0.326l-4.984,17.5c-0.062,0.216,0.028,0.446,0.22,0.563L10.239,31.926z" />
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="12.6241" y1="7.5582" x2="28.5468" y2="14.4156">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_8_)" d="M21.161,23.367c0.096,0.088,0.217,0.132,0.339,0.132c0.12,0,0.24-0.043,0.336-0.129
C22.169,23.067,30,15.882,30,8.499c0-4.767-3.733-8.5-8.5-8.5S13,3.732,13,8.499C13,15.753,20.828,23.059,21.161,23.367z
M21.5,0.999c4.275,0,7.5,3.224,7.5,7.5c0,6.097-5.993,12.337-7.497,13.807C20.002,20.819,14,14.497,14,8.499
C14,4.223,17.225,0.999,21.5,0.999z" />
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="17.3671" y1="6.7191" x2="25.6329" y2="10.2789">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_9_)" d="M26,8.499c0-2.481-2.019-4.5-4.5-4.5S17,6.018,17,8.499s2.019,4.5,4.5,4.5S26,10.98,26,8.499z
M21.5,11.999c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S23.43,11.999,21.5,11.999z" />
</svg>
<p>
<strong>LOCATION</strong>
<span>St. John College of Engineering and Management, Palghar, Maharashtra </span>
</p>
</div>
</div>
<div class="col-md-3 col-sm-3">
<div class="block-info-1">
<svg version="1.1" id="Layer_10" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="35px" height="25px" viewBox="0 0 42 32" enable-background="new 0 0 42 32"
xml:space="preserve">
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="1.9027" y1="28.6566" x2="55.9027" y2="10.9483">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_10_)" d="M40.498,0c-0.276,0-0.5,0.224-0.5,0.5v31c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5v-31
C40.998,0.224,40.774,0,40.498,0z" />
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="1.1102" y1="26.2399" x2="55.1102" y2="8.5316">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_10_)" d="M38.717,1.204c-0.17-0.083-0.376-0.062-0.526,0.055l-0.565,0.445C34.648,4.059,29.667,8,19.5,8H5.631
C4.18,8,3,9.2,3,10.674v10.714C3,22.828,4.18,24,5.631,24h3.394c0.088,1.125,0.502,3.794,2.454,5.761
C12.953,31.247,14.979,32,17.5,32c0.276,0,0.5-0.224,0.5-0.5S17.776,31,17.5,31c-2.242,0-4.026-0.652-5.306-1.938
c-1.668-1.677-2.067-4.025-2.163-5.062h2.995c0.085,0.682,0.36,1.881,1.274,2.802C15.089,27.597,16.166,28,17.5,28
c0.276,0,0.5-0.224,0.5-0.5S17.776,27,17.5,27c-1.055,0-1.891-0.302-2.484-0.896c-0.657-0.659-0.894-1.546-0.981-2.104h5.396
c10.216,0,15.237,3.963,18.237,6.331l0.522,0.411c0.089,0.07,0.198,0.105,0.307,0.105c0.075,0,0.15-0.017,0.219-0.051
c0.172-0.084,0.281-0.258,0.281-0.449V1.653C38.998,1.462,38.889,1.288,38.717,1.204z M4,21.388V10.674C4,9.751,4.731,9,5.631,9H9
v14H5.631C4.716,23,4,22.292,4,21.388z M37.998,29.317C34.864,26.851,29.672,23,19.432,23h-5.797
c-0.047-0.015-0.095-0.03-0.148-0.031c-0.001,0-0.001,0-0.002,0c-0.054,0-0.105,0.015-0.154,0.031H10V9h9.5
c10.237,0,15.392-3.864,18.498-6.316V29.317z" />
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-1.8839" y1="17.1097" x2="52.1161" y2="-0.5987">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_11_)" d="M1.5,21.857c0.276,0,0.5-0.224,0.5-0.5V10.643c0-0.276-0.224-0.5-0.5-0.5S1,10.367,1,10.643v10.714
C1,21.633,1.224,21.857,1.5,21.857z" />
</svg>
<p>
<strong>CORE DOMAINS</strong>
<span> Healthcare, Education, Women and Child Safety, Agriculture, Rural Development, Climate Change & Miscellaneous </span>
</p>
</div>
</div>
</div>
<!--End row-->
</div>
</section>
<section id="result" class="speakers pt-120 brd-bottom">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-100 text-center">
<h1 class="title gradient-text">Result</h1>
<!-- <p class="title-lead mt-10">We are bringing you the perfect combination of content and experience to ignite your <br>heart equip your mind and spark your skill.</p> -->
<!-- <p class="title-lead mt-10">To be updated</p> -->
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<div class="container block-content">
<div class="row">
<div class="col-sm-2 pd-1 col-md-4">
<h1 class="gradient-text"><font size="5vw"><center>First Prize</center></font></h1>
<br>
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/result/IMG_2717.JPG" alt="Team Mark_zero">
</div>
<div class="block-info-2">
<p>
<strong>Team Mark_Zero</strong><br>
Vellore Institute of Technology, Tamilnadu<br>
</p>
<ul class="block-social">
<li><a href="https://iali.dev"><i class="fab fa-web"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 pd-1 col-md-4">
<h1 class="gradient-text"><font size="5vw"><center>Second Prize</center></font></h1>
<br>
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/result/IMG_2695.JPG" alt="Team Reactive_Error">
</div>
<div class="block-info-2">
<p>
<strong>Team Reactive_Error</strong><br>
Rizvi College of Engineering, Bandra
</p>
<ul class="block-social">
<li><a href="https://iali.dev"><i class="fab fa-web"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 pd-1 col-md-4">
<h1 class="gradient-text"><font size="5vw"><center>Third Prize</center></font></h1>
<br>
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/result/IMG_2685.JPG" alt="Team SixTechHeads"> ">
</div>
<div class="block-info-2">
<p>
<strong>Team SixTechHeads</strong><br>
St. John College of Engineering and Management, <br>Palghar
</p>
<ul class="block-social">
<li><a href="https://iali.dev"><i class="fab fa-web"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="raw">
<div class="col-sm-2 pd-1 col-md-2"> </div>
<div class="col-sm-2 pd-1 col-md-4">
<br>
<h1 class="gradient-text"><font size="5vw"><center>Special Prize for Innovative Idea</center></font></h1>
<br>
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/result/IMG_2671.JPG" alt="Team PSP">
</div>
<div class="block-info-2">
<p>
<strong>Team PSP</strong><br>
Fr. Conceicao Rodrigues College of Engineering, Bandra
</p>
<ul class="block-social">
<li><a href="https://iali.dev"><i class="fab fa-web"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 pd-1 col-md-4">
<br>
<h1 class="gradient-text"><font size="5vw"><center>Prize for using Unique Language</center></font></h1>
<br>
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/result/IMG_2665.JPG" alt="Team Encephalon">
</div>
<div class="block-info-2">
<p>
<strong>Team Encephalon</strong><br>
St. John College of Engineering and Management, Palghar
</p>
<ul class="block-social">
<li><a href="https://iali.dev"><i class="fab fa-web"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="prizes" class="tickets pt-120 pb-120">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-130 text-center">
<h1 class="title gradient-text">Prizes</h1>
<p class="title-lead mt-10">We have a Total Prize Pool of 60,000 Rupees.<br> Come join the world’s influencers and get answers. </p>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--Container-->
<div class="container">
<!--Row-->
<div class="row vertical-align tickets">
<div class="col-sm-12">
<div class="col-sm-3">
<ul class="block-tickets">
<li>
<ul class="block-ticket-small ">
<li class="block-price"><br>FIRST PRIZE <br><br> <span class="aca">INR 30,000</span></li>
</ul>
</li>
</ul>
</div>
<div class="col-sm-3">
<ul class="block-tickets">
<li>
<ul class="block-ticket-small">
<li class="block-price"><br>SECOND PRIZE <br><br> <span class="aca">INR 20,000</span></li>
</ul>
</li>
</ul>
</div>
<div class="col-sm-3">
<ul class="block-tickets">
<li>
<ul class="block-ticket-small ">
<li class="block-price"><br>THIRD PRIZE <br> <br><span class="aca">INR 10,000</span></li>
</ul>
</li>
</ul>
</div>
<div class="col-sm-3">
<ul class="block-tickets">
<li>
<ul class="block-ticket-small ">
<li class="block-price"><br>SPEACIAL PRIZE<br> <br><span class="aca">INNOVATIVE IDEA</span></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
</section>
<hr>
<section id="sponsors" class="sponser pt-90 pb-90 brd-bottom">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-50 text-center ">
<h1 class="title gradient-text">Our Sponsors </h1>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<center>
<br>
<strong>Title Sponsors</strong>
</center>
</div>
<div claas="row">
<fieldset>
<div class="align">
<div class="pp" align="center" style="transform: scale(1.2);">
<a id="raw_a" href="https://www.raweng.com/">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 937.8 339.4" class="raw" style="enable-background:new 0 0 937.8 339.4;width:25vw;height: auto;margin-top:5%;z-index: 9999;" xml:space="preserve">
<style type="text/css">
.st2{fill:#ffffff;}
</style>
<path id="RawEngineering-logo" class="st2" d="M212.7,47.8c-25.5,6.7-48.3,18.4-60.7,39.8c-2.6,4.5-4.8,9.5-6.4,15
c-80.1,41.5-23.9,141.3,6.4,197.8l0.7,1.2l51-58c-18.7-34.8-48.5-86.3-42.2-128.3c16.1-6.8,33.6-10.3,51.2-12.4
c10.1-1.2,20.3-1.9,30.1-2.5L298,37.8C273.6,39.2,241.4,40.3,212.7,47.8z M181.5,241l-25.1,28.6c-1.4-2.6-2.9-5.5-4.4-8.5
c-19.6-38.3-50-103.1-9.5-134.9c0.1,14.7,3.5,30.9,9.5,48.7C158.8,195.1,168.9,217.1,181.5,241z M234.1,82.6
c-7.5,0.5-14.7,1.2-21.4,2c-15.9,1.9-29.8,4.6-41.9,8.2c8.2-10.8,21.8-19.3,41.9-25.4c11.7-3.5,25.6-6.2,41.9-8.1L234.1,82.6z
M415.5,165h-13.1l-16.6-50.4H399l11.1,35.2l11.1-30.8h7.1h5.1l10.6,30.8l10.1-35.2H467L450.3,165h-13l-9-26.8l-1.4-4.1L415.5,165z
M345.5,221.1c0-20.8-6.2-31.2-23.3-31.4h-0.5c-18.6,0-23.9,15.4-23.9,27.1c0,14,8.1,26.1,24.4,26.1h0c6.9,0,14.6-1.2,20.7-4
l-4.1-9.6c-5.3,2.6-11,4.3-15.8,4.3c-0.3,0-0.5,0-0.8,0c-6.5-0.3-10.3-4.8-11.3-12.6h11.3L345.5,221.1L345.5,221.1z M321.5,199.2
h0.6c6.2,0.2,10.8,3.6,11.3,12.9h-11.3h-11.3C311.3,201.7,317.5,199.2,321.5,199.2z M298,114.6h11.5l2,8.6c1.6-2.9,6-8.6,10.8-9.9
c0.6-0.2,1.2-0.3,1.8-0.3c4.2,0,6.6,0.9,9.6,2.4l-4.3,10.3c-1.8-1.4-4.4-3-7.1-3.1H322c-5.8,0-9,9.2-10.3,12.2V165h-12.5v-39.2
C299.3,120.9,298.3,117.2,298,114.6z M396.9,209.7v31.8h-12.4v-32.3c0-5-0.4-10-7.8-10c-5.2,0-8.7,4.7-11,9.5v32.9h-6h-6.5v-39.7
c0-4.2-0.9-7.2-1.3-10.7h7.8h3.7l2,6.6c2.1-2.2,6.4-8.2,13.4-8.2C393.5,189.5,396.9,198.1,396.9,209.7z M455.6,189.3
c-5.3,0.2-14.9,1-19,1.3c-2.7-0.5-4.7-1-8.3-1h-0.2c-19.8,0-22.8,13.2-22.8,19.1c0,6.9,3.7,11.3,5.1,12.9c-3,2.2-5.8,5.2-5.8,8.8
c0,4.1,2,7.4,6.4,9.4c-2.8,1.1-8.2,3.7-8.2,9.6c0,8.4,6,14.1,25.6,14.2h0.7c12.7,0,25.8-3.5,25.8-14.5c0-8.3-4.6-13.2-24.7-14.7
l-1.8-0.2c-11-0.9-13.3-1.8-13.3-4.4c0-1.9,1.1-3,2.3-3.7c2.6,1.2,9,1.8,11,1.8h0c17.7,0,22.9-10.7,22.9-19.3
c0-4.7-3.1-9.2-5.1-11.1h6.2L455.6,189.3z M419.2,244c3.5,0.1,6.5,0.3,9.1,0.5c10.7,0.9,13.7,2.9,13.7,4.6c0,4.1-3.1,5.4-13,5.4
h-0.7c-6.6-0.1-12.7-2-12.7-5.5C415.6,247,416.9,245.1,419.2,244z M428.5,218.7h-0.2c-5.8,0-10.2-2.7-10.2-9.8
c0-7.8,5.1-9.9,10.2-9.9h0c6.9,0,10.1,3.7,10.1,9.5C438.5,213.2,436.2,218.7,428.5,218.7z M581,221.1c0-20.8-6.2-31.2-23.3-31.4
h-0.5c-18.6,0-23.9,15.4-23.9,27.1c0,14,8.1,26.1,24.4,26.1h0c6.9,0,14.6-1.2,20.7-4l-4.1-9.6c-5.3,2.6-11,4.3-15.8,4.3
c-0.3,0-0.5,0-0.8,0c-6.4-0.3-10.3-4.8-11.3-12.6h11.3L581,221.1L581,221.1z M557.1,199.2h0.6c6.2,0.2,10.8,3.6,11.3,12.9h-11.3
h-11.3C546.8,201.7,553,199.2,557.1,199.2z M681,191.1h12.4v50.4H681V191.1z M680.7,170.1h13.1v10.8h-13.1V170.1z M665.7,189.5
c4.2,0,6.6,0.9,9.6,2.4l-4.3,10.3c-1.9-1.4-4.5-3.1-7.3-3.1c-5.8,0-9,9.2-10.3,12.2v30.1H641v-39.2c0-5-1-8.7-1.3-11.3h11.5l2,8.6
C654.9,196.5,660.3,189.5,665.7,189.5z M744.8,209.7v31.8h-12.5v-32.3c0-5-0.4-10-7.8-10c-5.2,0-8.7,4.7-11,9.5v32.9H701v-39.7
c0-4.2-0.9-7.2-1.3-10.7h11.5l2,6.6c2.1-2.2,6.4-8.2,13.4-8.2C741.4,189.5,744.8,198.1,744.8,209.7z M803,189.3
c-5.3,0.2-14.9,1-19,1.3c-2.7-0.5-4.7-1-8.3-1h-0.2c-19.8,0-22.8,13.2-22.8,19.1c0,6.9,3.7,11.3,5.1,12.9c-3,2.2-5.8,5.2-5.8,8.8
c0,4.1,2,7.4,6.4,9.4c-2.8,1.1-8.2,3.7-8.2,9.6c0,8.4,6.1,14.1,25.6,14.2h0.7c12.7,0,25.8-3.5,25.8-14.5c0-8.3-4.6-13.1-24.7-14.7
l-1.8-0.1c-11-0.9-13.3-1.8-13.3-4.4c0-1.9,1.1-3,2.3-3.7c2.6,1.2,9,1.8,11,1.8h0c17.7,0,22.9-10.7,22.9-19.3
c0-4.7-3.1-9.2-5.1-11.1h6.2L803,189.3z M766.7,244c3.5,0.1,6.5,0.3,9.1,0.5c10.7,0.9,13.7,2.9,13.7,4.6c0,4.1-3.1,5.4-13,5.4h-0.7
c-6.6-0.1-12.7-2-12.7-5.5C763,247,764.4,245.1,766.7,244z M775.9,218.7h-0.2c-5.8,0-10.2-2.7-10.2-9.8c0-7.8,5.1-9.9,10.2-9.9h0
c6.9,0,10.1,3.7,10.1,9.5C786,213.2,783.7,218.7,775.9,218.7z M526.8,209.7v31.8h-12.4v-32.3c0-5-0.4-10-7.8-10
c-5.2,0-8.7,4.7-11,9.5v32.9h-12.4v-39.7c0-4.2-0.9-7.2-1.3-10.7h11.5l2,6.6c2.1-2.2,6.4-8.2,13.4-8.2
C523.4,189.5,526.8,198.1,526.8,209.7z M462,191.1h12.4v50.4H462V191.1z M633.9,221.1c0-20.8-6.2-31.2-23.3-31.4H610
c-18.6,0-23.9,15.4-23.9,27.1c0,14,8.1,26.1,24.4,26.1h0c6.9,0,14.6-1.2,20.7-4l-4.1-9.6c-5.3,2.6-11,4.3-15.8,4.3
c-0.3,0-0.5,0-0.8,0c-6.5-0.3-10.3-4.8-11.3-12.6h11.3L633.9,221.1L633.9,221.1z M609.9,199.2h0.6c6.2,0.2,10.8,3.6,11.3,12.9h-11.3
h-11.3C599.7,201.7,605.8,199.2,609.9,199.2z M461.6,170.1h13.1v10.8h-13.1V170.1z M364.8,133.4c-1.8,0-3.6,0-5.2,0.2
c-17.3,1.2-22.5,8.9-22.5,18.2c0,9.6,7.8,14.7,20.6,14.7c0.6,0,1.3,0,1.9-0.2c4.5-0.8,7.8-4,10.3-6.4l1.9,5.1h11.8
c-0.7-5.6-2-11.5-2-15.4v-20.3c0-11-7.9-16.1-19.1-16.1c-1,0-1.9,0-2.9,0c-7.1,0.3-14.6,1.6-20.5,3.7l4.3,10.3
c4.3-2.1,10.1-4,16.2-4.3c0.7,0,1.5-0.1,2.2-0.1c6.4,0,7.2,4.3,7.2,8.2v2.4H364.8z M369.1,141.8v9.9c-1.9,2.6-5.1,5-9.5,5.2
c-0.2,0-0.4,0-0.5,0c-4.6,0-9-1.3-9-5.6c0-4.7,2.6-7.9,9.5-9c1.9-0.3,4.1-0.5,6.7-0.5H369.1z M823.5,188.9c-5.5,0-9.9,4.4-9.9,9.9
s4.4,9.9,9.9,9.9c5.5,0,9.9-4.4,9.9-9.9C833.4,193.3,829,188.9,823.5,188.9z M823.5,206.8c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8
c4.4,0,8,3.6,8,8C831.5,203.2,827.9,206.8,823.5,206.8z M826.1,199.5c-0.3-0.3-0.6-0.5-0.9-0.5c0.6-0.2,1.1-0.5,1.4-0.9
c0.3-0.4,0.5-0.9,0.5-1.6c0-0.9-0.3-1.6-0.9-2c-0.6-0.4-1.5-0.6-2.8-0.6h-3.8v9.7h2.5v-3.7h0.7c0.4,0,0.8,0.1,1,0.3
c0.3,0.2,0.5,0.5,0.7,1l1.2,2.4h2.6l-1.3-2.8C826.7,200.1,826.4,199.7,826.1,199.5z M824.3,197.8c-0.2,0.2-0.6,0.3-1.1,0.3h-1.1
v-2.5h1.1c0.5,0,0.9,0.1,1.1,0.3c0.2,0.2,0.3,0.5,0.3,1C824.6,197.3,824.5,197.6,824.3,197.8z"/>
</svg>
</a>
<a href="https://www.contentstack.com/"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1040 227.2" class="content" style="enable-background:new 0 0 1040 227.2; width:40vw;height: auto;" xml:space="preserve">
<style type="text/css">
.st0{fill:#EC5744;}
.st1{fill:#ffffff;}
</style>
<g id="Contentstack-logo">
<g id="XMLID_115_">
<g id="XMLID_206_">
<g id="XMLID_220_">
<g id="XMLID_231_">
<path id="XMLID_232_" class="st0" d="M243.9,100.8c0,1.5-1.2,2.5-2.5,2.5h-46c-1.5,0-2.5-1.2-2.5-2.5v-5.1
c0-1.5,1.2-2.5,2.5-2.5h46c1.5,0,2.5,1.2,2.5,2.5V100.8z"/>
</g>
<g id="XMLID_229_">
<path id="XMLID_230_" class="st0" d="M264.5,116.1c0,1.5-1.2,2.5-2.5,2.5h-56.3c-1.5,0-2.5-1.2-2.5-2.5V111
c0-1.5,1.2-2.5,2.5-2.5h56.1c1.5,0,2.5,1.2,2.5,2.5L264.5,116.1L264.5,116.1z"/>
</g>
<g id="XMLID_227_">
<path id="XMLID_228_" class="st0" d="M279.8,131.5c0,1.5-1.2,2.5-2.5,2.5h-61.4c-1.5,0-2.5-1.2-2.5-2.5v-5.1
c0-1.5,1.2-2.5,2.5-2.5h61.3c1.5,0,2.5,1.2,2.5,2.5L279.8,131.5L279.8,131.5z"/>
</g>
<g id="XMLID_225_">
<path id="XMLID_226_" class="st0" d="M279.8,146.8c0,1.5-1.2,2.5-2.5,2.5h-61.4c-1.5,0-2.5-1.2-2.5-2.5v-5.1
c0-1.5,1.2-2.5,2.5-2.5h61.3c1.5,0,2.5,1.2,2.5,2.5L279.8,146.8L279.8,146.8z"/>
</g>
<g id="XMLID_223_">
<path id="XMLID_224_" class="st0" d="M264.5,162.1c0,1.5-1.2,2.5-2.5,2.5h-56.3c-1.5,0-2.5-1.2-2.5-2.5V157
c0-1.5,1.2-2.5,2.5-2.5h56.1c1.5,0,2.5,1.2,2.5,2.5L264.5,162.1L264.5,162.1z"/>
</g>
<g id="XMLID_221_">
<path id="XMLID_222_" class="st0" d="M243.9,177.5c0,1.5-1.2,2.5-2.5,2.5h-46c-1.5,0-2.5-1.2-2.5-2.5v-5.1
c0-1.5,1.2-2.5,2.5-2.5h46c1.5,0,2.5,1.2,2.5,2.5V177.5z"/>
</g>
</g>
<g id="XMLID_207_">
<g id="XMLID_218_">
<path id="XMLID_219_" class="st0" d="M157.1,54.9c0,1.5,1.2,2.5,2.5,2.5h46c1.5,0,2.5-1.2,2.5-2.5v-5.1c0-1.5-1.2-2.5-2.5-2.5
h-45.8c-1.5,0-2.5,1.2-2.5,2.5L157.1,54.9L157.1,54.9z"/>
</g>
<g id="XMLID_216_">
<path id="XMLID_217_" class="st0" d="M136.7,70.1c0,1.5,1.2,2.5,2.5,2.5h56.1c1.5,0,2.5-1.2,2.5-2.5V65c0-1.5-1.2-2.5-2.5-2.5
h-56c-1.5,0-2.5,1.2-2.5,2.5v5.1H136.7z"/>
</g>
<g id="XMLID_214_">
<path id="XMLID_215_" class="st0" d="M121.4,85.6c0,1.5,1.2,2.5,2.5,2.5h61.3c1.5,0,2.5-1.2,2.5-2.5v-5.1
c0-1.5-1.2-2.5-2.5-2.5h-61.3c-1.5,0-2.5,1.2-2.5,2.5V85.6z"/>
</g>
<g id="XMLID_212_">
<path id="XMLID_213_" class="st0" d="M121.4,100.8c0,1.5,1.2,2.5,2.5,2.5h61.3c1.5,0,2.5-1.2,2.5-2.5v-5.1
c0-1.5-1.2-2.5-2.5-2.5h-61.3c-1.5,0-2.5,1.2-2.5,2.5V100.8z"/>
</g>
<g id="XMLID_210_">
<path id="XMLID_211_" class="st0" d="M136.7,116.1c0,1.5,1.2,2.5,2.5,2.5h56.1c1.5,0,2.5-1.2,2.5-2.5V111
c0-1.5-1.2-2.5-2.5-2.5h-56c-1.5,0-2.5,1.2-2.5,2.5v5.1H136.7z"/>
</g>
<g id="XMLID_208_">
<path id="XMLID_209_" class="st0" d="M157.1,131.5c0,1.5,1.2,2.5,2.5,2.5h46c1.5,0,2.5-1.2,2.5-2.5v-5.1c0-1.5-1.2-2.5-2.5-2.5
h-45.8c-1.5,0-2.5,1.2-2.5,2.5L157.1,131.5L157.1,131.5z"/>
</g>
</g>
</g>
</g>
<g>
<g id="XMLID_37_">
<g id="XMLID_288_">
<path id="XMLID_313_" class="st1" d="M339.8,143.4c-2.5,0.3-4.8,0.4-7.1,0.4c-6.5,0-11.3-0.9-14.4-2.8c-3.1-1.8-5.1-4.8-6.2-9
c-1-4.1-1.5-10.4-1.5-18.8c0-8.2,0.6-14.5,1.6-18.7c1-4.3,3.1-7.2,6.2-9.1c3.1-1.9,7.9-2.8,14.4-2.8c2.2,0,4.6,0.1,6.9,0.4
c2.4,0.3,4.4,0.7,5.9,1.2v10.4c-4.8-0.6-8.2-0.7-9.8-0.7c-4,0-6.6,0.4-8.1,1.2c-1.5,0.7-2.4,2.4-2.8,4.7
c-0.4,2.4-0.6,6.9-0.6,13.4c0,6.5,0.1,11,0.6,13.4c0.4,2.4,1.3,4,2.8,4.7c1.5,0.7,4.1,1.2,8.1,1.2c3.4,0,6.8-0.3,10-0.7v10.4
C344.4,142.7,342.3,143.1,339.8,143.4z"/>
<path id="XMLID_310_" class="st1" d="M360.3,141.2c-3.1-1.8-5-4.6-5.9-8.5c-0.7-4-1.2-10.4-1.2-19.4c0-9,0.4-15.4,1.2-19.4
c0.7-4,2.6-6.8,5.9-8.5c3.1-1.8,8.2-2.6,15.4-2.6c7.3,0,12.5,0.9,15.6,2.6c3.1,1.8,5,4.6,5.7,8.5c0.7,3.8,1.2,10.3,1.2,19.4
s-0.4,15.6-1.2,19.4c-0.7,3.8-2.6,6.8-5.7,8.5c-3.1,1.8-8.2,2.6-15.6,2.6C368.5,143.9,363.3,143,360.3,141.2z M382,131.7
c1-0.6,1.8-2.2,2.1-4.6c0.3-2.4,0.4-7.1,0.4-13.8c0-6.9-0.1-11.5-0.4-13.8c-0.3-2.4-1-3.8-2.1-4.6c-1-0.6-3.2-0.9-6.3-0.9
c-3.1,0-5.3,0.3-6.3,0.9c-1,0.6-1.8,2.2-2.1,4.6c-0.3,2.4-0.4,7.1-0.4,13.8c0,6.9,0.1,11.5,0.4,13.8c0.3,2.4,1,3.8,2.1,4.6
c1,0.6,3.2,0.9,6.3,0.9C378.8,132.6,380.8,132.3,382,131.7z"/>
<path id="XMLID_308_" class="st1" d="M438.4,143.1l-17.5-34.1h-0.4v34.1h-12.9V83.5h13.7l16.5,31.3h0.4V83.5H451v59.6H438.4z"/>
<path id="XMLID_306_" class="st1" d="M471.5,143.1v-48h-14.1V83.5h41.7v11.6H485v48H471.5z"/>
<path id="XMLID_304_" class="st1" d="M505.8,143.1V83.5h35.8v11.2h-22.5v12.8h19.2v11.2h-19.2V132h22.5v11.2L505.8,143.1
L505.8,143.1z"/>
<path id="XMLID_302_" class="st1" d="M581.9,143.1l-17.5-34.1H564v34.1h-12.9V83.5h13.7l16.5,31.3h0.4V83.5h12.9v59.6H581.9z"/>
<path id="XMLID_300_" class="st1" d="M614.8,143.1v-48h-14.1V83.5h41.7v11.6h-14.1v48H614.8z"/>
<path id="XMLID_298_" class="st1" d="M648.5,142.4v-10.6c7.2,0.6,12.2,0.9,15.3,0.9c2.4,0,4.3-0.1,5.6-0.3
c1.3-0.3,2.4-0.6,2.8-1.2c0.6-0.6,0.9-1.2,1-1.9c0.1-0.7,0.1-1.8,0.1-3.2c0-1.9-0.1-3.2-0.3-4c-0.3-0.7-0.7-1.3-1.5-1.8
c-0.7-0.3-1.9-0.7-3.7-0.9l-9.5-1.3c-4.4-0.6-7.3-2.4-9-5.1c-1.6-2.8-2.4-6.8-2.4-11.9c0-5,0.9-8.8,2.5-11.5
c1.6-2.6,4-4.4,6.9-5.3c2.9-0.9,6.6-1.3,11-1.3c5.4,0,11.2,0.6,16.9,1.8v10.4c-5.1-0.6-9.8-0.9-13.8-0.9c-4.3,0-7.1,0.4-8.2,1.2
c-0.7,0.4-1.2,1-1.3,1.8c-0.1,0.7-0.3,1.8-0.3,3.4c0,1.6,0.1,2.8,0.3,3.5c0.1,0.7,0.6,1.2,1.2,1.5c0.6,0.3,1.6,0.6,3.2,0.9
l10.3,1.5c2.4,0.3,4.3,0.9,5.7,1.8s2.8,2.2,3.8,4.1c1.2,2.5,1.8,6.2,1.8,10.9c0,5.6-0.7,9.7-2.4,12.6c-1.6,2.8-3.7,4.7-6.3,5.6
c-2.6,0.9-6.2,1.3-10.6,1.3C660.4,143.9,653.9,143.3,648.5,142.4z"/>
<path id="XMLID_296_" class="st1" d="M705.3,143.1v-48h-14V83.5h41.7v11.6H719v48H705.3z"/>
<path id="XMLID_293_" class="st1" d="M768.5,143.1l-3.1-11.9h-17.6l-2.8,11.9h-13.5l16-59.6h18.8l15.9,59.6H768.5z M756.9,95.7
h-0.6l-5.9,24.4h12.2L756.9,95.7z"/>
<path id="XMLID_291_" class="st1" d="M816.1,143.4c-2.5,0.3-4.8,0.4-7.1,0.4c-6.5,0-11.3-0.9-14.4-2.8c-3.1-1.9-5.1-4.8-6.2-9
c-1-4.1-1.5-10.4-1.5-18.8c0-8.2,0.6-14.5,1.6-18.7c1-4.3,3.1-7.2,6.2-9.1s7.9-2.8,14.4-2.8c2.2,0,4.6,0.1,6.9,0.4
c2.4,0.3,4.4,0.7,5.9,1.2v10.4c-4.8-0.6-8.2-0.7-9.8-0.7c-4,0-6.6,0.4-8.1,1.2c-1.5,0.7-2.4,2.4-2.8,4.7
c-0.4,2.4-0.6,6.9-0.6,13.4c0,6.5,0.1,11,0.6,13.4c0.4,2.4,1.3,4,2.8,4.7c1.5,0.7,4.1,1.2,8.1,1.2c3.4,0,6.8-0.3,10-0.7v10.4
C820.6,142.7,818.6,143.1,816.1,143.4z"/>
<path id="XMLID_289_" class="st1" d="M861.3,143.1l-13.4-24.7h-3.7v24.7h-13.4V83.5h13.4v23.6h3.7l13.7-23.6h14.5L858.8,112
l17.5,31.1H861.3L861.3,143.1z"/>
</g>
</g>
<g>
<path class="st1" d="M890.5,101.1V86.4h-5.3v-2.9h14v2.9h-5.1v14.7H890.5z"/>
<path class="st1" d="M901.6,101.1V83.5h5.3l3.2,12l3.2-12h5.3v17.6h-3.4V87.3l-3.5,13.8h-3.4l-3.5-13.8v13.8H901.6z"/>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</fieldset>
<div class="vertical-center">
<div class="col-md-3">
</div>
<div class="col-md-3">
</div>
</div>
</div>
<div claas="row">
<div class="vertical-center">
<div class="col-md-12">
<center>
<div class="block-sponsor">
<strong>Hackathon Partner</strong>
<a href="http://www.csi-india.org/" target="_blank" style="width: 10vw;"><img src="img/CSI LOGO.png" alt="CSI Logo"></a>
</div>
</center>
</div>
</div>
</div>
<div claas="row">
<div class="vertical-center">
<div class="col-md-12">
<center>
<div class="block-sponsor">
<strong>Platform Partner</strong>
<a href="https://skillenza.com/" target="_blank"><img src="img/skillenza.png" alt="Skillena Logo"></a>
</div>
</center>
</div>
</div>
</div>
<div class="row">
<div class="vertical-center">
<div class="col-md-4 col-sm-3">
<center>
<div class="block-sponsor">
<strong>Platform Partner</strong>
<a href="https://ieee-collabratec.ieee.org/"><img src="img/ieee_collabratec_logo.png" height="100px" width="100px" alt="IEEE Colllabratec Logo"></a>
</div>
</center>
</div>
<div class="col-md-4 col-sm-3">
<center>
<div class="block-sponsor">
<strong>Community Partner</strong>
<a href="https://studentpartners.microsoft.com/en-us"><img src="img/msp.png" height="100px" width="100px" alt="Nicrosoft Student Partner Logo"></a>
</div>
</center>
</div>
<div class="col-md-4 col-sm-3">
<center>
<div class="block-sponsor">
<strong>Exclusive Coding Partner</strong>
<a href="https://www.codingninjas.in/"><img src="img/CNLOGO.png" height="100px" width="100px" alt="Coding Ninjas Logo"></a>
</div>
</center>
</div>
</div>
</div>
<div class="row">
<div class="vertical-center">
<!-- <div class="col-md-4 col-sm-3">
<center>
<div class="block-sponsor">
<strong>Platform Partner</strong>
<a href="https://ieee-collabratec.ieee.org/"><img src="img/ieee_collabratec_logo.png" height="100px" width="100px" alt="IEEE Colllabratec Logo"></a>
</div>
</center>
</div> -->
<div class="col-md-4 col-sm-3">
<center>
<div class="block-sponsor">
<strong>Technical Partner</strong>
<a href="https://codingblocks.com/"><img src="img/cb2.png" height="100px" width="100px" alt="Coding Blocks"></a>
</div>
</center>
</div>
<div class="col-md-4 col-sm-3">
<center>
<strong>Student Community Partner</strong>
<div class="block-sponsor">
<a href="https://tensorflow.org/community/groups"><img src="img/Tensorflow UserGroup Mumbai.png" width="1vw" alt="TFUG Logo"></a>
</div>
</center>
</div>
<div class="col-md-4 col-sm-3">
<center>
<div class="block-sponsor">
<strong>Student Community Partner</strong>
<a href="https://jetbrains.com"><img src="img/jb.svg" width="10vw" alt="JetBrains Logo"></a>
</div>
</center>
</div>
</div>
</div>
</div>
<!--End container-->
</section>
<section id = "contactus" class="sponser pt-100 pb-100">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-50 text-center ">
<h1 class="title gradient-text">Team MegaHack</h1>
<p class="title-lead mt-10 mb-20">Kindly contact us at <a href="mailto:[email protected]"><font color="#ffffff">[email protected]</font> </a></p>
</div>
<center>
<img src="img/IMG_2596.JPG" style="height:60vw" >
</center>
</div>
<!--End row-->
<div class="col-sm-8 col-sm-offset-2 mb-50 text-center ">
<p class="title-lead mt-10 mb-20"><br>
<font size="5rem">Locate us:</font><br>
St. John College of Engineering and Management <br>
St. John Technical Campus <br>
Palghar East, Maharashtra 401404
</p>
</div>
<div class="col-sm-6 col-md-12">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3756.154502250581!2d72.78131921475183!3d19.706045236986512!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be71c92fbd91e67%3A0x2a3ce68676417a45!2sSt.%20John%20College%20of%20Engineering%20and%20Management!5e0!3m2!1sen!2sin!4v1575310221011!5m2!1sen!2sin" style="height:300px;width:100%" ></iframe>
</div>
</div>
<!--End container-->
</section>
</div>
<footer class="bg-dark">
<div class="bottom-footer bg-black pt-50 pb-50">
<div class="container ">
<div class="row">
<div class="col-md-6">
<p class="gradient-text"><a class="gradient-text" href="https://github.com/smitjethwa/megahack">Made with 🖤 by Team MegaHack</a></p>
<a class="gradient-text scroll" href=mailto:[email protected]>Contact us</a>
</div>
<div class="col-md-6">
<ul class="block-legal">
<li><span><a class="gradient-text scroll" href="https://bit.ly/megahack_coc">Code of Conduct</a></span></li>
</ul>
</div>
<div class="col-md-6 ">
<ul class="block-legal">
<li><span><a class="gradient-text scroll" href="#wrapper">Back To Top</a></span></li>
</ul>
</div>