-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1139 lines (1121 loc) · 65.2 KB
/
index.html
File metadata and controls
1139 lines (1121 loc) · 65.2 KB
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" theme="dark">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hackothsav</title>
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" />
<link rel="stylesheet" href="assets/css/index.css" />
<!-- <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" /> -->
<link href="assets/css/bongo.css" rel="stylesheet" />
<script async src="scripts/typer.js"></script>
<script async src="scripts/timer.js"></script>
<script async src="scripts/burger.js"></script>
<script async src="scripts/themeToggle.js"></script>
<script async src="scripts/faq.js"></script>
<script async src="scripts/sponsors.js"></script>
<!-- <script async src="/scripts/scrolling.js"></script> -->
</head>
<body>
<!-- Nav bar maccha --------------------------------------------------------------------------->
<nav class="nav-bar">
<div class="logo" style="display: flex">
<a href="/"><img src="assets/images/image2vector.svg" style="margin-top: 12px; width: 60px" /></a>
<a href="#">
<h1 style="margin-top: 10px">HACK<span>OTHSAV</span></h1>
</a>
</div>
<ul class="nav-links">
<!-- <li><a class="active link" href="#">Home</a></li> -->
<li><a class="link" href="index.html">Home</a></li>
<li><a class="link" href="#about">About</a></li>
<li><a class="link" href="#sponsors">Know Our Sponsors</a></li>
<li><a class="link" href="#tracks">Broad Areas</a></li>
<li><a class="link" href="#faq">FAQ</a></li>
<li class="li-download">
<a class="download" href="javascript:void();">Downloads</a>
<ul class="dropdown-link">
<li>
<a target="_blank" href="assets/docs/Brochure.pdf">Brochure</a>
</li>
<li>
<a target="_blank" href="assets/docs/HACKOTHSAV_Poster.png">Poster</a>
</li>
<li>
<a target="_blank" href="assets/docs/Rules and Regulations.pdf">Rules & Regulation</a>
</li>
</ul>
</li>
<!-- <span id="theme-button"> theme</span> -->
<span id="theme-button" class="sun-moon-container">
<svg class="sun" style="width: 24px; height: 24px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M3.55,18.54L4.96,19.95L6.76,18.16L5.34,16.74M11,22.45C11.32,22.45 13,22.45 13,22.45V19.5H11M12,5.5A6,6 0 0,0 6,11.5A6,6 0 0,0 12,17.5A6,6 0 0,0 18,11.5C18,8.18 15.31,5.5 12,5.5M20,12.5H23V10.5H20M17.24,18.16L19.04,19.95L20.45,18.54L18.66,16.74M20.45,4.46L19.04,3.05L17.24,4.84L18.66,6.26M13,0.55H11V3.5H13M4,10.5H1V12.5H4M6.76,4.84L4.96,3.05L3.55,4.46L5.34,6.26L6.76,4.84Z" />
</svg>
<svg class="moon" style="width: 24px; height: 24px" viewBox="0 0 24 24">
<path fill="currentColor"
d="M17.75,4.09L15.22,6.03L16.13,9.09L13.5,7.28L10.87,9.09L11.78,6.03L9.25,4.09L12.44,4L13.5,1L14.56,4L17.75,4.09M21.25,11L19.61,12.25L20.2,14.23L18.5,13.06L16.8,14.23L17.39,12.25L15.75,11L17.81,10.95L18.5,9L19.19,10.95L21.25,11M18.97,15.95C19.8,15.87 20.69,17.05 20.16,17.8C19.84,18.25 19.5,18.67 19.08,19.07C15.17,23 8.84,23 4.94,19.07C1.03,15.17 1.03,8.83 4.94,4.93C5.34,4.53 5.76,4.17 6.21,3.85C6.96,3.32 8.14,4.21 8.06,5.04C7.79,7.9 8.75,10.87 10.95,13.06C13.14,15.26 16.1,16.22 18.97,15.95M17.33,17.97C14.5,17.81 11.7,16.64 9.53,14.5C7.36,12.31 6.2,9.5 6.04,6.68C3.23,9.82 3.34,14.64 6.35,17.66C9.37,20.67 14.19,20.78 17.33,17.97Z" />
</svg>
</span>
</ul>
<div class="hamburger">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</nav>
<!-- Nav bar End maccha ------------------------------------------------------------------------>
<!-- Hero Banner / Landing page----------------------------------------------------------- -->
<section class="hero">
<h1>
Hack for
<span class="typer" id="typerr" data-words="Change,Community,Inclusion,Diversity" data-delay="100"
data-deleteDelay="1000"></span>
<span class="cursor"></span>
</h1>
<div class="info">
<p>Hackothsav Event Date: 9th to 11th July 2021</p>
<div class="button-container">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSckOuSRbDo0o4yYtrb8wc1_SRWk77A7nPU0RaxCsDSL3Ow9nQ/viewform?usp=sf_link"
target="_blank"><button class="glow-on-hover">
Register Now
<span class="btn-arrow">
<i class="fa fa-chevron-right"></i></span></button></a>
<a href="rules.html"><button class="glow-on-hover download">
Hackothsav Rules
<span class="btn-arrow">
<i class="fa fa-chevron-right"></i></span></button></a>
</div>
</div>
<!-- <div class="banner">
<video src="/assets/background.mp4" loop autoplay muted></video>
</div> -->
<div class="anim">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1100 800">
<g fill="none" fill-rule="evenodd">
<path class="dic" stroke="#31B495"
d="M781.02 488.77v69.78c0 1.08-.88 1.96-1.97 1.96l-135.12-.04c-1.09 0-2.6.62-3.38 1.39l-39.23 38.96a5.52 5.52 0 0 1-3.37 1.4h-75.38a1.97 1.97 0 0 1-1.97-1.97v-33.5" />
<path class="dic" stroke="#F4D21F"
d="M674.88 355.57l45.54-45.24a5.42 5.42 0 0 0 1.39-3.35l-.06-10.38c0-1.08-.63-2.58-1.4-3.35l-43.38-43.07a1.94 1.94 0 0 1 0-2.77l82.83-82.25a5.52 5.52 0 0 1 3.37-1.4l44.94.1c1.08 0 2.6-.62 3.37-1.37L952.5 22.65" />
<path class="dic" stroke="#1AACA8"
d="M507-76.68v265.47a4 4 0 0 0 4 3.99H566c1.08 0 1.97.88 1.97 1.96v147.5c0 1.08-.63 2.59-1.4 3.35l-47.9 47.4a5.45 5.45 0 0 0-1.4 3.34c0 2.25.64 3.76 1.4 4.53l53.82 53.26c.77.76 1.76 1.39 2.19 1.39.43 0 .79.88.79 1.96v70.17c0 1.07-.89 1.96-1.97 1.96l-85.81-.04c-1.09 0-2.6.62-3.38 1.39l-1.55 1.54a5.52 5.52 0 0 1-3.38 1.4h-9.29" />
<path class="dic" stroke="#1F8C43" d="M8 127.82v391.06a4.04 4.04 0 0 0 4 4.04L140.8 524" />
<path class="dic" stroke="#1AA5D0"
d="M894.01 374l49.8-49.44a5.52 5.52 0 0 1 3.37-1.4h92.41c1.09 0 2.6.63 3.38 1.4l27.18 26.99" />
<path class="dic" stroke="#1AA5D0"
d="M894.01 374l49.8-49.44a5.52 5.52 0 0 1 3.37-1.4h92.41c1.09 0 2.6.63 3.38 1.4l27.18 26.99" />
<path class="dic" stroke="#1F8C43"
d="M755.16 213.9l70.82.04c1.08 0 2.6-.63 3.37-1.4l91.61-90.97a5.52 5.52 0 0 1 3.37-1.39h77.07l-71.29-72.13a5.45 5.45 0 0 1-1.4-3.35V16.87" />
<path class="dic" stroke="#9DCA40"
d="M261.78-52.44l11.16 11.08c.77.77 1.4 2.28 1.4 3.35V-5L156.7 111.03l-85.4 84.8a5.45 5.45 0 0 0-1.4 3.35v100.67c0 1.08.89 1.96 1.97 1.96h50.4c1.09 0 1.98.88 1.98 1.96l.07 26.92c0 1.07.9 1.96 1.98 1.96l335.73.13c1.09 0 1.98.88 1.98 1.96v36.79l-42.99 43.78a5.52 5.52 0 0 1-3.37 1.4H385.2" />
<path class="dic" stroke="#DA5A98"
d="M564.8 549.64v17.76c0 1.08-.64 2.59-1.4 3.35L382.28 750.6a5.52 5.52 0 0 1-3.38 1.39h-109.1c-1.09 0-1.97.88-1.97 1.96v23.37c0 1.07-.9 1.96-1.98 1.96h-83.54c-1.08 0-1.97.88-1.97 1.96v45.8c0 1.07.89 1.95 1.97 1.95h29.89c1.08 0 1.97.88 1.97 1.96v51.07c0 1.08.63 2.59 1.4 3.35l10.32 10.25c.77.76 2.29 1.39 3.37 1.39h111.77c1.09 0 1.34.62.57 1.39M482.82 656H630.9" />
<path class="dic" stroke="#E5683E"
d="M440.53 245.87l-31.7 31.48a5.52 5.52 0 0 1-3.37 1.39h-62.37c-1.09 0-2.6.62-3.38 1.39l-2.68 3.66-264.59.02c-1.08 0-2.6-.63-3.37-1.4l-47.3-46.97a5.52 5.52 0 0 0-3.37-1.39h-57.47l-1.12-34.61c0-1.08-.63-2.59-1.4-3.35l-66.54-65.94" />
<path class="dic" stroke="#9F83B6"
d="M705.31 221.73h7.83c1.09 0 2.6.63 3.37 1.4l45.8 45.6c.78.76 1.4 2.27 1.4 3.35v13.94c0 1.08.46 1.96 1.03 1.98.56 0 1.03.9 1.03 1.98v10.77l-.15 110.84c0 1.08-.89 1.96-1.98 1.96H628.32c-1.08 0-2.6-.63-3.37-1.4l-12.2-12.12a5.52 5.52 0 0 0-3.38-1.39h-46.18a2 2 0 0 0-2 1.96l-.17 26.74c0 1.08-.63 2.59-1.4 3.35l-8.82 8.76a5.52 5.52 0 0 1-3.37 1.39l-26.65-.06c-1.09 0-2.6.62-3.38 1.39l-48.1 47.78a5.52 5.52 0 0 1-3.38 1.39h-16.37l-79.45-.02c-1.09 0-2.6.63-3.36 1.39L220.71 639.06a5.47 5.47 0 0 1-3.35 1.4H31.06" />
<path class="dic" stroke="#BC6D21"
d="M145.43 99.41L289.6 243.5c.77.76 2.29 1.39 3.37 1.39h146.76c1.09 0 2.6.62 3.38 1.39l31.93 31.71c.77.77 1.4 2.27 1.4 3.35V474.1c0 1.08-.63 2.59-1.4 3.35l-7.6 7.54a5.52 5.52 0 0 1-3.36 1.4h-20.62l-20.67 20.97-2.78 2.78L289.37 640a5.45 5.45 0 0 0-1.4 3.35l.16 177.85" />
<path class="dic" stroke="#DA1817"
d="M318.82 380.62h94.88c1.09 0 2.6.63 3.38 1.39l14.97 14.87c.77.76 2.29 1.39 3.37 1.39h72.99c1.08 0 2.6.63 3.35 1.39l58.57 58.53c.77.77 2.27 1.4 3.35 1.4h103.37c1.08 0 1.97-.89 1.97-1.97v-14.7c0-1.09-.89-1.97-1.97-1.97l-6.7.02H630.1a1.97 1.97 0 0 1-1.97-1.96v-57c0-1.08-.63-2.59-1.4-3.35l-14.58-14.48a5.45 5.45 0 0 1-1.4-3.35v-17.3c0-1.07-.63-2.58-1.4-3.34L597 327.92a5.52 5.52 0 0 0-3.37-1.39h-17.4c-1.09 0-2.6-.62-3.38-1.39l-41.8-41.5a5.52 5.52 0 0 0-3.37-1.4h-41.34" />
<path class="dic" stroke="#9F9FA0" />
<path class="dic" stroke="#74BB63"
d="M855.2 194.4h59.84c1.09 0 1.97.89 1.97 1.96v28.74c0 1.08.64 2.59 1.4 3.35l50.96 50.6c.77.76 1.4 2.27 1.4 3.35v101.47l105.2 104.27" />
<path class="dic" stroke="#DA5A98"
d="M638.46 305.73L651 293.29c.77-.74.77-2 0-2.76l-31.35-31.13c-.76-.74-.76-2 0-2.76l18.53-18.4a5.52 5.52 0 0 1 3.37-1.39l160.41-.2 423.37 1.2c1.08 0 1.97.89 1.97 1.96v71.5" />
<path class="dic" stroke="#BC6D21"
d="M438.61 486.03h-18.54c-1.08 0-2.6-.63-3.37-1.4l-74.94-74.41a5.52 5.52 0 0 0-3.37-1.4h-38.57c-1.08 0-2.6-.62-3.37-1.38l-47-46.68-36.58-.04-57 71.59a5.45 5.45 0 0 0-1.4 3.35v23.9" />
<path class="dic" stroke="#74BB63"
d="M882.06 358.97l-46.92 46.6a5.52 5.52 0 0 1-3.38 1.39h-94.64c-1.09 0-2.6-.63-3.38-1.4l-30.6-30.33a5.52 5.52 0 0 0-3.36-1.4l-34.94.04c-1.08 0-2.6.63-3.37 1.4l-29.57 29.36a5.52 5.52 0 0 1-3.37 1.39l-14.55-14.35a5.63 5.63 0 0 0-3.42-1.4l-156.97-.25c-1.11 0-2.65.63-3.43 1.4l-27.85 27.61a5.52 5.52 0 0 1-3.38 1.4H-23.82l-88.65.2-12.44 12.35" />
<path class="dic" stroke="#2283BC"
d="M292.9 643.74l59.56-59.12a5.52 5.52 0 0 1 3.37-1.39h23.93c1.08 0 2.6-.63 3.37-1.39l46.53-46.21a5.52 5.52 0 0 1 3.38-1.4h33.53l153.67-.01c1.08 0 1.97-.88 1.97-1.96V420.01c0-1.07-.63-2.58-1.4-3.35l-38.64-38.37a5.45 5.45 0 0 1-1.4-3.35v-51.52c0-1.08-.64-2.59-1.4-3.35L468.91 210.39a5.52 5.52 0 0 0-3.38-1.4l-180.49.2" />
<path class="dic" stroke="#DA5A98"
d="M484.13 548.71h-37.09c-1.08 0-2.6.63-3.37 1.4l-69.02 68.54c-.77.76-.77 2 0 2.76l28.09 27.78c.77.76 2.29 1.39 3.37 1.39h62.41" />
<path class="dic" stroke="#31B495"
d="M520.82 561.7v-4.74c0-1.08-.89-1.96-1.98-1.96h-13.21c-1.09 0-2.6-.62-3.37-1.39l-43.36-42.88a5.45 5.45 0 0 1-1.4-3.35v-190.4c0-1.08.63-2.6 1.4-3.36l20.89-20.74a5.45 5.45 0 0 0 1.4-3.35v-95.4c0-1.08-.63-2.58-1.4-3.35L292.4 4.7l-.6-40.88c0-1.08-.62-2.58-1.4-3.35L278.8-51.07" />
<path class="dic" stroke="#1EB2D8"
d="M275.76 745h99.28c1.09 0 2.6-.63 3.38-1.4l174.33-172.75a5.52 5.52 0 0 1 3.38-1.4h46.75c1.08 0 2.6-.62 3.35-1.38l51.47-51.46a5.42 5.42 0 0 0 1.38-3.35V311.29c0-1.07-.63-2.58-1.4-3.35l-51.84-51.3a5.52 5.52 0 0 0-3.38-1.4h-17.95a1.97 1.97 0 0 1-1.97-1.95v-44.47c0-1.07-.89-1.96-1.97-1.96h-88.63a1.97 1.97 0 0 1-1.97-1.96v-19.2c0-1.07-.64-2.58-1.4-3.34L309.87 4.92" />
<path class="dic" stroke="#F4D21F"
d="M1002.65 123.83H926.5c-1.08 0-2.6.62-3.37 1.39l-92.28 91.46a5.52 5.52 0 0 1-3.37 1.39l-131.87-.08c-1.09 0-2.6.63-3.37 1.37l-51.9 51.19c-.77.76-.77 2 0 2.76l21.22 21.1c.77.76 1.4 2.27 1.4 3.35v15.69" />
<path class="dic" stroke="#BE2F39"
d="M672.51 437.64h54.25c1.08 0 2.6.63 3.37 1.4l49.04 48.7c.77.76 2.29 1.38 3.37 1.38h45.16c1.08 0 2.6-.62 3.37-1.39L914.39 405a5.52 5.52 0 0 1 3.37-1.4h42.22c1.08 0 2.6.63 3.37 1.4l100.8 100.1" />
<path class="dic" stroke="#E5683E"
d="M672.51 434.31h55.63c1.08 0 2.6.63 3.37 1.4l49.14 48.8c.77.76 2.29 1.38 3.37 1.38l41.9-.04c1.08 0 2.6-.62 3.37-1.39l62.08-61.68a5.45 5.45 0 0 0 1.4-3.35l-.1-268.18c0-1.08-.63-2.59-1.4-3.35l-99.8-99.28a5.52 5.52 0 0 0-3.37-1.39H422.62c-1.08 0-2.6.63-3.37 1.4L260.28 206.3a5.52 5.52 0 0 1-3.38 1.39H127.3c-1.08 0-2.6.62-3.37 1.39l-36.71 36.45a5.45 5.45 0 0 0-1.4 3.35v185.1" />
<path class="dic" stroke="#1EB2D8"
d="M410.1 713.73l17.53 17.42c.77.76 2.29 1.39 3.37 1.39h42.02c1.09 0 2.6-.63 3.37-1.4l26.02-25.83 123.2-.31" />
<path class="dic" />
<path class="dic" stroke="#2283BC"
d="M307.34 907.08c.77-.77.52-1.4-.57-1.4H108.29a1.97 1.97 0 0 1-1.98-1.95V743.59c0-1.08.9-1.96 1.98-1.96h264.38c1.09 0 2.6-.63 3.38-1.4l23.75-23.58c.77-.76.77-2 0-2.76l-80.84-80.1c-.77-.76-.51-1.4.57-1.4h137.53c1.09 0 2.6-.62 3.38-1.38l53.63-53.26a5.52 5.52 0 0 1 3.37-1.4l88.57-.2c1.09 0 2.6-.62 3.38-1.38l55.6-55.22a5.45 5.45 0 0 0 1.4-3.35V409.93c0-1.08.9-1.96 1.98-1.96h29c1.08 0 2.6-.63 3.37-1.4l43.32-43.01a5.52 5.52 0 0 1 3.37-1.4h6.11c1.09 0 2.6-.62 3.38-1.38l53.12-52.76a5.52 5.52 0 0 1 3.37-1.39h13.6c1.08 0 2.6.63 3.37 1.4L892.79 370c.77.77 2.29 1.4 3.37 1.4h74.06c1.08 0 2.6.62 3.37 1.38l93.97 93.5" />
<path class="dic" stroke="#E6632A"
d="M647.56 429.46v-33.62c0-1.08-.63-2.59-1.4-3.35l-31.45-31.22a5.52 5.52 0 0 0-3.37-1.4h-36.87c-1.08 0-2.6.63-3.37 1.4l-74.35 73.83a5.52 5.52 0 0 1-3.37 1.39H440.9a1.97 1.97 0 0 1-1.98-1.96v-71.5c0-1.08-.88-1.96-1.97-1.96H9.3c-1.08 0-2.6.63-3.37 1.4l-37.9 37.62a5.52 5.52 0 0 1-3.37 1.4h-57c-1.1 0-2.61.62-3.38 1.38l-13.2 13.1a5.52 5.52 0 0 1-3.37 1.4h-13.2" />
<path class="dic" stroke="#F4D21F"
d="M219.9 357h144.49l76.54.13c1.08 0 1.97.88 1.97 1.96v71.7c0 1.08.89 1.96 1.97 1.96h46.36c1.08 0 2.6-.63 3.37-1.4l74.35-74a5.52 5.52 0 0 1 3.37-1.4h192.33c1.09 0 2.6-.62 3.37-1.38l43.58-43.28a5.52 5.52 0 0 1 3.37-1.39h10.6c1.08 0 2.6.63 3.37 1.4l62.65 62.2c.77.77 2.29 1.4 3.37 1.4h73.87c1.09 0 2.6.63 3.38 1.4l94.12 93.47 9.27.57c.84 0 2.17-.62 2.93-1.39l104.08-89.36a1.97 1.97 0 0 1 2.78 0l6.3 6.25" />
<path class="dic" stroke="#9DCA40"
d="M599.92 564.19a6.6 6.6 0 0 0 4.04-1.67l47.94-47.6a6.5 6.5 0 0 0 1.67-4.01V313.84c0-1.3-.75-3.1-1.67-4.02l-47.94-47.6a6.6 6.6 0 0 0-4.04-1.66h-97.84a6.6 6.6 0 0 0-4.05 1.66l-47.93 47.6a6.5 6.5 0 0 0-1.68 4.02v197.07c0 1.29.75 3.1 1.68 4.01l47.93 47.6a6.6 6.6 0 0 0 4.05 1.67h97.84z" />
<path class="dic" stroke="#1EB2D8"
d="M648.25 527.17v33.3c0 1.08-.63 2.58-1.4 3.35l-87.37 86.76c-.77.76-.51 1.39.57 1.39h70.82" />
<path class="dic" stroke="#BC6D21"
d="M476.04 273.32v-18.86c0-1.08-.63-2.59-1.4-3.35l-30.9-30.68a5.52 5.52 0 0 0-3.37-1.4H274.62" />
<path class="dic" stroke="#9F83B6"
d="M923.43 372.6V119.09c0-1.07-.64-2.58-1.4-3.34L757.4-47.74a5.52 5.52 0 0 0-3.37-1.39H351.57c-1.09 0-2.6.63-3.38 1.4L310.5-10.3" />
<path class="dic" stroke="#ED8E3F"
d="M317-49.77L304.42-37.3a5.58 5.58 0 0 0-1.42 3.35l-.36 21.45a5.3 5.3 0 0 0 1.36 3.35L493.36 178.9c.77.76 1.4 2.27 1.4 3.35v18.41c0 1.08.89 1.96 1.97 1.96h87.86c1.09 0 1.98.88 1.98 1.96v34.67c0 1.08.88 1.96 1.97 1.96h23.3c1.08 0 2.6.63 3.37 1.4l46.16 45.83c.77.77 1.4 2.28 1.4 3.35v138.64l.07 84.4c0 1.08-.63 2.6-1.38 3.35l-53.63 53.27a5.52 5.52 0 0 1-3.37 1.39H557.9c-1.08 0-2.6.63-3.37 1.39L380.57 746.98a5.52 5.52 0 0 1-3.38 1.39H112.47c-1.09 0-1.97.88-1.97 1.96v93.24c0 1.08-.9 1.96-1.98 1.96h-224.54" />
<path class="dic" stroke="#DA5A98"
d="M415.07 612.97l63.3-62.86a5.52 5.52 0 0 1 3.37-1.4h124.67c1.08 0 2.6-.6 3.37-1.37l28.23-27.83a5.35 5.35 0 0 0 1.4-3.33V478.2c0-1.07.89-1.96 1.97-1.96H694c1.09 0 1.97-.88 1.97-1.95v-52.11c0-1.08.64-2.59 1.4-3.35l29.57-29.37a5.45 5.45 0 0 0 1.4-3.35v-76c0-1.08.9-1.96 1.98-1.96h37.9a4 4 0 0 0 4-4v-29.3c0-1.08.63-2.59 1.4-3.35l35.35-35" />
<path class="dic" stroke="#1AA5D0"
d="M893.1 374.7L847.5 420a5.52 5.52 0 0 1-3.37 1.38H618.66c-1.09 0-2.6-.62-3.37-1.39l-81.65-81.08a5.52 5.52 0 0 0-3.37-1.39H384.49c-1.08 0-2.6.63-3.37 1.4l-17.14 17.02" />
<path class="dic" stroke="#55B549"
d="M288.52 640.2h-46.9c-1.09 0-1.98.88-1.98 1.95v26.65c0 1.07-.89 1.95-1.97 1.95h-89.32" />
<path class="dic" stroke="#D3C452"
d="M281.34 229.6l9.65 9.59c.77.76 2.29 1.39 3.37 1.39l146.76-.2c1.09 0 2.6.63 3.38 1.37l115.95 114c.77.76.77 1.99 0 2.75l-37.2 37.05a1.96 1.96 0 0 0 0 2.78l49.62 49.28c.77.77 2.3 1.4 3.38 1.4h138.28c1.08 0 2.6.62 3.37 1.39l37.26 37c.77.76 2.3 1.4 3.38 1.4h21.7" />
<path class="dic" stroke="#9DCA40"
d="M-116.02 841.87h216.77c1.09 0 1.97-.89 1.97-1.96v-99.83c0-1.08.9-1.96 1.98-1.96h266.24c1.08 0 2.6-.62 3.37-1.39l20.18-20.04c.77-.76.77-2.02 0-2.76l-78.7-78.2a5.45 5.45 0 0 1-1.4-3.35v-1.57c0-1.07.88-1.96 1.97-1.96l139.22.02c1.09 0 2.6-.62 3.38-1.39l53.7-53.48a4.86 4.86 0 0 1 2.8-1.39c.76 0 1.41-.88 1.41-1.96v-6.62" />
<path class="dic" stroke="#B00D7C"
d="M317.92 257.82l73.16 72.65c.77.77 1.4 2.27 1.4 3.35v45.25c0 1.08.63 2.59 1.4 3.35l12.02 11.93c.77.77 2.28 1.4 3.37 1.4h9.86c1.09 0 2.6-.63 3.38-1.4l6.29-6.25a5.52 5.52 0 0 1 3.37-1.39h85.81c1.08 0 2.6-.62 3.37-1.39l63.1-62.66a5.52 5.52 0 0 1 3.38-1.4h161.56c1.08 0 1.97.89 1.97 1.96v178.66c0 1.07-.63 2.58-1.4 3.35l-11.42 11.34a5.52 5.52 0 0 1-3.38 1.39H529.03a1.97 1.97 0 0 1-1.98-1.96v-73.07c0-1.07-.88-1.96-1.97-1.96h-88.26a1.97 1.97 0 0 1-1.97-1.95V406.5c0-1.08-.89-1.96-1.97-1.96-1.99 0-3.5-.63-4.28-1.4l-7.44-7.38" />
<path class="dic" stroke="#DA5A98"
d="M650.42-78.35v211.36c0 1.08.63 2.59 1.4 3.35l46.73 46.4c.77.77 1.4 2.28 1.4 3.36v35.79l-2.49-.14c-.75 0-1.97.63-2.74 1.4l-18.32 18.19a5.45 5.45 0 0 0-1.4 3.35v116.95c0 1.07.63 2.58 1.38 3.35l46.53 46.58a5.42 5.42 0 0 1 1.38 3.35l-.02 30.34c0 1.08-.63 2.59-1.4 3.35l-4.91 4.88a5.52 5.52 0 0 1-3.37 1.4H599.52c-1.08 0-1.97.87-1.97 1.95v36c0 1.08-.89 1.96-1.97 1.96h-92.71c-1.09 0-2.6.63-3.38 1.4l-19.58 19.45a5.52 5.52 0 0 1-3.38 1.39h-63.61" />
<path class="dic" stroke="#1EB2D8"
d="M281.48 745v84.33c0 1.08-.89 1.96-1.97 1.96h-57.48c-1.09 0-1.98.88-1.98 1.96v10.36c0 1.08-.88 1.96-1.97 1.96H110.52" />
<path class="dic" stroke="#F5C739"
d="M10.95 362.32l113.4 112.62c.78.77 2.3 1.4 3.38 1.4h36.12c1.08 0 2.6.62 3.37 1.38l205.45 204.03c.77.76 2.29 1.39 3.37 1.39l62.74.03h29.53c1.09 0 2.6.63 3.37 1.4l16.36 16.23c.77.77 2.29 1.4 3.37 1.4h134.34" />
<path class="dic" stroke="#31B495"
d="M275.82 590.44l24.44-24.27a5.52 5.52 0 0 1 3.37-1.4h121.52c1.08 0 2.6.63 3.37 1.4l34.32 34.08c.77.77 2.3 1.4 3.38 1.4h54.36" />
<path class="dic" stroke="#AD7D20" d="M633.41 278.74l-21.36-21.22a5.45 5.45 0 0 1-1.4-3.35V-78.58" />
<path class="dic" stroke="#1F8C43"
d="M754.4 192.02v20.11c0 1.08-.9 1.96-1.98 1.96h-94.49c-1.08 0-2.6.63-3.37 1.4l-50.28 49.93a5.45 5.45 0 0 0-1.4 3.35v56.41c0 1.08.63 2.59 1.4 3.35l10.63 10.56c.77.76 1.4 2.27 1.4 3.35v121.45c0 1.08-.89 1.96-1.97 1.96H429.6c-1.08 0-2.6-.62-3.37-1.39l-21.2-21.06-15.77 14.8a5.52 5.52 0 0 1-3.37 1.38H282.15c-1.08 0-2.6.63-3.37 1.37l-62.1 61.3a5.5 5.5 0 0 1-3.37 1.37h-69.85c-1.09 0-2.6.63-3.37 1.4l-68.22 67.73a5.52 5.52 0 0 1-3.37 1.4H34.1c-1.09 0-2.6.62-3.38 1.38l-61.64 61.22a5.45 5.45 0 0 0-1.4 3.35v98.02c0 1.08-.89 1.96-1.97 1.96h-30.76c-1.08 0-2.6.63-3.37 1.4l-48.29 47.95" />
<path class="dic" stroke="#74BB63"
d="M184.55 422.03v34.09c0 1.07-.63 2.58-1.4 3.35l-56.48 55.88a5.52 5.52 0 0 1-3.37 1.4H-34.6" />
<path class="dic" stroke="#E5683E"
d="M980.12 416.59l-15.05-14.95a5.52 5.52 0 0 0-3.38-1.4h-46.04c-1.08 0-2.6.63-3.37 1.4l-14.5 14.4c-.77.76-1.4.5-1.4-.57v-34.93c0-1.08-.63-2.58-1.4-3.35l-2.48-2.47" />
<path class="dic" stroke="#DA5A98"
d="M826.77 238.25v54.43c0 1.08.63 2.59 1.4 3.35l86.38 85.78c.77.77 2.29 1.4 3.37 1.4h98.61c1.09 0 2.6-.63 3.36-1.4l22.6-22.8a5.47 5.47 0 0 1 3.36-1.39h106.38c1.08 0 1.97-.88 1.97-1.96l.04-95.24c0-1.08.89-1.96 1.97-1.96h39.02c1.09 0 1.97.88 1.97 1.96v48.1" />
<path class="dic" stroke="#E6632A"
d="M12.87 361.05h-5c-1.1 0-2.61-.63-3.38-1.4l-17.72-17.58a5.52 5.52 0 0 0-3.37-1.4h-16.9c-1.09 0-2.6-.62-3.38-1.38l-55.64-55.26a5.52 5.52 0 0 0-3.38-1.4h-15.19" />
<path class="dic" stroke="#3EB373"
d="M959.23 126.08l19.2 19.06c.76.76 2.28 1.39 3.36 1.39h177.42c1.09 0 1.97.88 1.97 1.96v100.84a3 3 0 0 0 3 3h36.42c1.08 0 1.97.88 1.97 1.96v54.65" />
<path class="dic" stroke="#2765B0"
d="M33.17 798.75h242.12c1.08 0 1.97-.88 1.97-1.96V672.9c0-1.08-.89-1.96-1.97-1.96h-30.12a1.97 1.97 0 0 1-1.98-1.96v-26.76c0-1.07-.88-1.96-1.97-1.96h-20.87" />
<path class="dic" stroke="#EB9D12"
d="M458.48 496.1h9.55c1.09 0 2.6-.63 3.37-1.4l48.23-47.83a5.52 5.52 0 0 1 3.38-1.39h24.26c1.08 0 2.6.63 3.37 1.39l23.26 23.1c.77.76 2.29 1.39 3.37 1.39h111.06c1.09 0 1.97-.88 1.97-1.96v-54.46c0-1.08-.63-2.59-1.4-3.33l-20.35-20.04-2.8-2.76-1.17-1.16a5.52 5.52 0 0 0-3.37-1.39h-11.66a1.97 1.97 0 0 1-1.97-1.96V310.6c0-1.08.88-1.96 1.97-1.96h77.38" />
<path class="dic" stroke="#9DCA40"
d="M-34.94 402.19v111.19c0 1.07.63 2.58 1.4 3.35l49.06 48.71c.76.77 2.28 1.4 3.37 1.4h21.8c1.08 0 2.6.62 3.37 1.39l113 112.22c.78.77 2.3 1.4 3.38 1.4h170.6c1.08 0 1.97.87 1.97 1.95v60.41" />
</g>
</svg>
</div>
</section>
<!--Hero Banner End / Landing page End----------------------------------------------------------- -->
<!-- About Section -->
<div id="about" class="container">
<section class="content-section">
<div class="heading">
<h2 class="section-title">
We're ready for Hackothsav 1.0
</h2>
<div class="line"></div>
</div>
<br />
<div id="text-container" data-aos="fade-up" data-aos-offset="-300" data-aos-delay="0" data-aos-duration="1000"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<p style="font-size: 1.2rem; line-height: 1.8rem">
It is that time of year where all interested coders
gather around for 3 days of limitless freedom to play,
create, and test out ideas that either may go nowhere –
or that might just change the world. Following the
spirit of Hackathons, this year, we have adapted and
evolved, and we bring you our first edition of
Hack<span>othsav</span>. Our edition of Hackathon will
focus on ways to foster innovation while raising
awareness on various problems faced by society and
organizations. No matter how new or old you may be in
the world of hackathons, Hack<span>othsav</span> has a
place for everyone who wants to learn, build, share, and
grow in their lives.
</p>
<div class="bongo-container">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 783.55 354.91">
<g id="bongo-cat">
<g class="head">
<path
d="M280.4,221l383.8,62.6a171.4,171.4,0,0,0-9.2-40.5,174,174,0,0,0-28.7-50.5,163.3,163.3,0,0,0,3.2-73.8c-11.6-1.9-42,14.2-44.5,17.5-19.6-24-88.5-52.7-153.7-48.1A78.8,78.8,0,0,0,398,67.1c-9.8,2.9-19,29.7-19.4,33.7a320,320,0,0,0-31.7,23.6c-14,11.8-28.9,24.4-42.5,44.3A173,173,0,0,0,280.4,221Z">
</path>
<path
d="M396.6,178.6c.4.9,2.7,6.5,8.5,8.4s13.4-1.2,17.2-7.9c-.9,7.5,3.8,14.3,10.4,16a14.4,14.4,0,0,0,15-5.7">
</path>
<path
d="M474,179.2a6.6,6.6,0,0,0-4.9,3.6,6,6,0,0,0,1.5,7.3,6,6,0,0,0,7.9-1c2.3-2.6,2-7,.2-8s-5.9,1.6-5.7,3.5,1.9,2.8,3.2,2.3,1.1-2.2,1.1-2.3">
</path>
<path
d="M365.4,168.9c0,.3-.8,3.6,1.5,6a5.9,5.9,0,0,0,7.2,1.4,6.1,6.1,0,0,0,2.2-7.7c-1.5-3.1-5.7-4.5-7.3-3.2s-.8,6,1,6.6,3.3-.7,3.3-2.1-1.5-1.8-1.6-1.9">
</path>
<g class="headphone headphone-right">
<g class="speaker">
<path
d="M400.7,80.2c-14.1-20.8-40.2.3-50.7,15-8.7,12.2-9.7,30.3,2.8,37.3,5.4-9,11.8-15.6,21-26.2A214.1,214.1,0,0,1,400.7,80.2Z">
</path>
<path
d="M381.5,79.4c-6.6-7.5-9.6-5.8-12.3-5.5-16.3,1.3-32,20.3-27.8,33.9a21.8,21.8,0,0,0,5.9,8.5c1.7-2.6,3.5-5.1,5.4-7.7A150.7,150.7,0,0,1,381.5,79.4Z">
</path>
<path
d="M367.3,77.8a13.1,13.1,0,0,0-5.1-1.8c-8.5-.9-18.7,7.5-18.4,16.1a12.8,12.8,0,0,0,2.6,7c3.1-3.3,6.3-6.8,9.6-10.2S363.6,81.3,367.3,77.8Z">
</path>
</g>
<path class="band" d="M515,40.6c-15.9-4.6-57-14.1-104,2.3a166.9,166.9,0,0,0-60.9,37.3"></path>
</g>
</g>
<g class="music music-right">
<g class="note">
<g>
<path
d="M368.5,46.5c.5,2.1,1.2,3.5,3.8,6.3s5.1,4.3,6.5,7.2a11.1,11.1,0,0,1,.7,2,10.5,10.5,0,0,1-.7,6.5">
</path>
<path d="M368.5,46.5a20.8,20.8,0,0,0,2.4,11.7c2.3,4.4,5,5.4,6.8,9.5a17.5,17.5,0,0,1,.4,11"></path>
<line x1="368.5" y1="47.7" x2="368.5" y2="92.8"></line>
<path d="M368.5,92.8c.1-3.1-4.7-6.3-9-6.3s-8.7,2.7-8.7,5.8,4.8,5.7,8.7,5.8S368.3,95.8,368.5,92.8Z">
</path>
</g>
<g>
<path
d="M368.5,46.5c.5,2.1,1.2,3.5,3.8,6.3s5.1,4.3,6.5,7.2a11.1,11.1,0,0,1,.7,2,10.5,10.5,0,0,1-.7,6.5">
</path>
<path d="M368.5,46.5a20.8,20.8,0,0,0,2.4,11.7c2.3,4.4,5,5.4,6.8,9.5a17.5,17.5,0,0,1,.4,11"></path>
<line x1="368.5" y1="47.7" x2="368.5" y2="92.8"></line>
<path d="M368.5,92.8c.1-3.1-4.7-6.3-9-6.3s-8.7,2.7-8.7,5.8,4.8,5.7,8.7,5.8S368.3,95.8,368.5,92.8Z">
</path>
</g>
</g>
<g class="note">
<g>
<polyline points="350 81.7 350 43.5 382.7 50.7 382.7 89.5"></polyline>
<path d="M350,82.3c0-3.1-4.5-5.7-8.2-5.9s-9.3,2.8-9.2,6,4.7,5.7,8.6,5.7S349.9,85.5,350,82.3Z">
</path>
<path d="M382.7,89.9c0-3.1-4.4-5.7-8.2-5.8s-9.3,2.7-9.2,5.9,4.7,5.7,8.7,5.7S382.7,93.1,382.7,89.9Z">
</path>
</g>
<g>
<polyline points="350 81.7 350 43.5 382.7 50.7 382.7 89.5"></polyline>
<path d="M350,82.3c0-3.1-4.5-5.7-8.2-5.9s-9.3,2.8-9.2,6,4.7,5.7,8.6,5.7S349.9,85.5,350,82.3Z">
</path>
<path d="M382.7,89.9c0-3.1-4.4-5.7-8.2-5.8s-9.3,2.7-9.2,5.9,4.7,5.7,8.7,5.7S382.7,93.1,382.7,89.9Z">
</path>
</g>
</g>
<g class="note">
<polyline points="388.2 73.6 388.2 34.6 354.9 42.6 354.9 82.4"></polyline>
<path d="M388.2,74.1c0-3-4.4-5.6-8.1-5.8s-9.2,2.8-9.1,6,4.6,5.6,8.6,5.6S388.2,77.3,388.2,74.1Z">
</path>
<path d="M354.9,81.9c0-3.1-4.4-5.7-8.2-5.9s-9.3,2.8-9.2,6,4.7,5.7,8.7,5.7S354.9,85.1,354.9,81.9Z">
</path>
<line x1="354.9" y1="48.4" x2="388.2" y2="40.3"></line>
<line x1="354.9" y1="54.6" x2="388.2" y2="47"></line>
</g>
<g class="note">
<g>
<path d="M371.8,79.5c0-3.1-4.5-5.8-8.3-5.9s-9.3,2.8-9.2,6,4.7,5.7,8.7,5.7S371.8,82.7,371.8,79.5Z">
</path>
<line x1="371.8" y1="79.5" x2="371.8" y2="33.3"></line>
<path d="M371.8,33.4a26.6,26.6,0,0,0,3.6,7.8c3.7,5.7,7.6,7,8.8,11.6.5,1.7.7,4.4-.9,8.3"></path>
</g>
<g>
<path d="M371.8,79.5c0-3.1-4.5-5.8-8.3-5.9s-9.3,2.8-9.2,6,4.7,5.7,8.7,5.7S371.8,82.7,371.8,79.5Z">
</path>
<line x1="371.8" y1="79.5" x2="371.8" y2="33.3"></line>
<path d="M371.8,33.4a26.6,26.6,0,0,0,3.6,7.8c3.7,5.7,7.6,7,8.8,11.6.5,1.7.7,4.4-.9,8.3"></path>
</g>
</g>
</g>
<g class="table">
<polygon points="25.3 158.5 783.2 293 513 354.9 25.3 158.5"></polygon>
<line x1="25.3" y1="158.5" x2="783.2" y2="293" fill="none" stroke="#8d00fc" stroke-miterlimit="10"
stroke-width="4"></line>
<line x1="783.2" y1="293" x2="25.3" y2="158.5" fill="none"></line>
</g>
<polygon class="laptop-base" points="103.2 263.6 258.9 219.3 636.5 294.4 452.1 339 103.2 263.6"></polygon>
<g class="laptop-keyboard">
<polygon points="369.6 265.6 255.3 244.3 255.5 243.5 264.7 241.9 380.9 262.3 380.8 263.1 369.6 265.6">
</polygon>
<polygon points="235.9 256.4 219.8 253.2 219.9 252.5 228.7 251 245.3 253.4 245.1 254.2 235.9 256.4">
</polygon>
<polygon points="473.1 303.7 248.4 258.9 248.6 258.1 257.7 256.6 486.2 300.4 486 301.3 473.1 303.7">
</polygon>
<polygon points="410.3 300.2 202.7 257.5 202.9 256.8 211.4 255.3 422.4 297.1 422.2 298 410.3 300.2">
</polygon>
<polygon points="448.5 308.1 427 303.7 427.3 302.8 439.2 301.4 461.2 304.9 461 305.8 448.5 308.1">
</polygon>
<polygon points="200.1 264.7 186 261.7 186.2 261 194.5 259.5 208.9 261.8 208.8 262.5 200.1 264.7">
</polygon>
<polygon points="221.1 269.1 206.6 266.1 206.8 265.3 215.4 263.9 230.3 266.2 230.1 267 221.1 269.1">
</polygon>
<polygon points="361.4 298.9 230 271 230.2 270.3 239.2 268.9 372.7 295.9 372.5 296.7 361.4 298.9">
</polygon>
<polygon points="442.8 279.2 383.7 268.2 383.9 267.3 395.1 265.7 455.4 275.9 455.2 276.7 442.8 279.2">
</polygon>
<polygon points="524.6 294.4 458.6 282.1 458.8 281.2 471.3 279.7 538.6 291 538.4 291.9 524.6 294.4">
</polygon>
<polygon points="424.7 312.4 374.6 301.7 374.8 300.9 385.9 299.5 437 309.3 436.8 310.2 424.7 312.4">
</polygon>
<polygon points="409.1 277.3 397.6 278.8 397.4 279.6 498.4 299.1 511.8 296.7 512 295.8 409.1 277.3">
</polygon>
<polygon points="394.2 274.5 394.4 273.6 246.7 246.5 237.7 248.1 237.5 248.8 382.8 276.8 394.2 274.5">
</polygon>
</g>
<g class="paw paw-right">
<path class="down"
d="M289.1,181.7c-12.1,9.8-20.6,20.7-20.7,32.1-.2,9,3.8,20.4,13.3,25.2s20.1.6,29.6-3.4c13.4-5.7,23.9-14.6,29.4-21.5">
</path>
<g class="up">
<path
d="M327.3,170c-.4-1.4-6.3-18.8-23.5-23.5-.8-.2-18.6-4.7-28.9,6.3-8.4,9.1-6,22.5-4.6,30.2a54.3,54.3,0,0,0,8.1,19.9">
</path>
<g class="pads">
<path
d="M297.2,154.8c1-.5,2.7-.1,3,.6s-1.4,2.4-2.6,2.1a1.6,1.6,0,0,1-1.1-1.2A1.6,1.6,0,0,1,297.2,154.8Z">
</path>
<path d="M285.8,159.4c.3-.4,1-1.1,1.7-.8s.9,1.4.8,2.2-1.8,2.1-2.5,1.5S285.2,160.4,285.8,159.4Z">
</path>
<path d="M276.9,171c.5-.4,2.7-.3,3.2.6s-.6,1.8-1.4,1.8S276.2,171.6,276.9,171Z"></path>
<path d="M296.4,168.6c2.3-.9,6.4,6.3,7.6,9s-5.2,4.5-7.4,6-5.1-6.1-5.9-8.3S293.7,169.8,296.4,168.6Z">
</path>
</g>
</g>
</g>
<polygon class="terminal-frame" points="93.8 63.3 284.1 73 335.9 230.5 146.2 197.6 93.8 63.3"></polygon>
<g class="terminal-code">
<line class="dic" x1="260.2" y1="92.3" x2="212.2" y2="88.7"></line>
<line class="dic" x1="197.3" y1="87.5" x2="145.2" y2="83.5"></line>
<line class="dic" x1="251" y1="104.2" x2="223.4" y2="101.8"></line>
<line class="dic" x1="209.4" y1="100.5" x2="154.4" y2="95.6"></line>
<line class="dic" x1="256.4" y1="117.9" x2="227.5" y2="114.7"></line>
<line class="dic" x1="215.9" y1="113.4" x2="183.5" y2="109.8"></line>
<line class="dic" x1="169.1" y1="108.2" x2="142.9" y2="105.3"></line>
<line class="dic" x1="275.4" y1="132.8" x2="249.4" y2="129.6"></line>
<line class="dic" x1="234.4" y1="127.8" x2="197.3" y2="123.3"></line>
<line class="dic" x1="185.6" y1="121.9" x2="149.1" y2="117.5"></line>
<line class="dic" x1="261" y1="144.6" x2="244.5" y2="142.5"></line>
<line class="dic" x1="235.5" y1="141.3" x2="214.9" y2="138.7"></line>
<line class="dic" x1="203.4" y1="137.2" x2="180.4" y2="134.3"></line>
<line class="dic" x1="169.3" y1="132.9" x2="155.1" y2="131.1"></line>
<line class="dic" x1="264.7" y1="158.3" x2="221.9" y2="152.1"></line>
<line class="dic" x1="208.2" y1="150.1" x2="191.7" y2="147.7"></line>
<line class="dic" x1="291.3" y1="174.3" x2="268.8" y2="170.9"></line>
<line class="dic" x1="257.8" y1="169.2" x2="226.5" y2="164.4"></line>
<line class="dic" x1="217.3" y1="163" x2="185" y2="158.1"></line>
<line class="dic" x1="173.8" y1="156.4" x2="152.9" y2="153.2"></line>
<line class="dic" x1="278.5" y1="185.6" x2="257.3" y2="182.2"></line>
<line class="dic" x1="243.8" y1="179.9" x2="230.3" y2="177.7"></line>
<line class="dic" x1="216.5" y1="175.8" x2="196.7" y2="172.5"></line>
<line class="dic" x2="262.1" y2="196.1" x1="280.5" y1="199.2"></line>
<line class="dic" x2="213.8" y2="187.9" x1="251.1" y1="194.2"></line>
<line class="dic" x2="180.8" y2="182.3" x1="202.7" y1="186"></line>
</g>
<polygon class="laptop-cover" points="103.2 263.6 452.1 339 360.8 12.4 2 2 103.2 263.6"></polygon>
<g class="paw paw-left">
<g class="up">
<path
d="M586.6,208.8c-.6-2.3-4.2-15.6-17.2-22.2-2.7-1.3-12.8-6.4-23.6-1.8s-14.6,16.5-14.8,18.4c-1.2,9-.7,18.4,2.4,26.1,2.4,6,7.5,17.2,9.7,20.2">
</path>
<g class="pads">
<path
d="M561.4,194.9a2.7,2.7,0,0,1,3,.5c.4,1-1.4,2.4-2.6,2.2a1.5,1.5,0,0,1-1.1-1.3A1.2,1.2,0,0,1,561.4,194.9Z">
</path>
<path
d="M550.7,200.4c.4-.5,1.1-1.1,1.7-.8a2,2,0,0,1,.8,2.2c-.3,1.2-1.8,2-2.5,1.5S550.1,201.3,550.7,200.4Z">
</path>
<path d="M541.1,211.1c.5-.4,2.7-.4,3.2.5s-.6,1.8-1.5,1.9S540.4,211.6,541.1,211.1Z"></path>
<path d="M560.6,209.2c2.3-.9,6.4,6.3,7.6,9s-5.3,4.5-7.4,6-5.1-6-5.9-8.3S557.9,210.4,560.6,209.2Z">
</path>
</g>
</g>
<path class="down"
d="M534.1,231.4c-19.7,6-32.9,18.4-34.2,29.1a30.1,30.1,0,0,0,1.7,14.1,24.8,24.8,0,0,0,6.1,8.8c6,5.1,16.8,4,38-3.9a288.7,288.7,0,0,0,46.5-22.1">
</path>
</g>
<g class="headphone headphone-left">
<g class="speaker">
<path
d="M609.5,137.3c-17.1,6.3-20.7,51.4-4.5,67.3,1.4,1.5,5.5,5.5,11.3,5.9,8.2.5,14.5-6.3,16.9-8.9,10.1-11,11.5-27.5,8.1-40.1-1.4-4.8-3.9-14-12.7-19.9C627.4,140.8,617.7,134.3,609.5,137.3Z">
</path>
<path
d="M626.5,196.1c2.7-.4,5.9-2.6,9.3-6,6.6-6.6,6.8-16.6,5.8-24s-4.2-16.1-11.3-19.7a18.7,18.7,0,0,0-10.9-1.9C614,149.3,615.3,192.6,626.5,196.1Z">
</path>
<path d="M631.6,151c-4.5,3.3-.5,27.1,3.8,28.2s6.9-6.6,6.2-13.1S637.4,153.5,631.6,151Z"></path>
</g>
<path class="band" d="M638.9,157.7c-4-16.8-25.9-61.9-75.3-95.3A155.5,155.5,0,0,0,515,40.6"></path>
</g>
<g class="music music-left">
<g class="note">
<g>
<path
d="M633.3,119.9c.6,2,1.3,3.5,3.8,6.3s5.2,4.3,6.5,7.2a6.9,6.9,0,0,1,.7,1.9,10.2,10.2,0,0,1-.7,6.6">
</path>
<path d="M633.3,119.9a23,23,0,0,0,2.4,11.7c2.4,4.3,5.1,5.4,6.8,9.5a16.9,16.9,0,0,1,.5,11"></path>
<line x1="633.3" y1="121.1" x2="633.3" y2="166.2"></line>
<path
d="M633.3,166.2c.2-3.2-4.6-6.3-8.9-6.3s-8.7,2.6-8.7,5.7,4.7,5.7,8.7,5.8S633.1,169.2,633.3,166.2Z">
</path>
</g>
<g>
<path
d="M633.3,119.9c.6,2,1.3,3.5,3.8,6.3s5.2,4.3,6.5,7.2a6.9,6.9,0,0,1,.7,1.9,10.2,10.2,0,0,1-.7,6.6">
</path>
<path d="M633.3,119.9a23,23,0,0,0,2.4,11.7c2.4,4.3,5.1,5.4,6.8,9.5a16.9,16.9,0,0,1,.5,11"></path>
<line x1="633.3" y1="121.1" x2="633.3" y2="166.2"></line>
<path
d="M633.3,166.2c.2-3.2-4.6-6.3-8.9-6.3s-8.7,2.6-8.7,5.7,4.7,5.7,8.7,5.8S633.1,169.2,633.3,166.2Z">
</path>
</g>
</g>
<g class="note">
<g>
<polyline points="614.8 155 614.8 116.8 647.5 124 647.5 162.9"></polyline>
<path
d="M614.8,155.7c0-3.1-4.4-5.7-8.2-5.9s-9.2,2.8-9.2,6,4.7,5.6,8.7,5.6S614.8,158.8,614.8,155.7Z">
</path>
<path
d="M647.5,163.3c.1-3.1-4.4-5.7-8.2-5.9s-9.2,2.8-9.1,6,4.7,5.7,8.6,5.7S647.5,166.5,647.5,163.3Z">
</path>
</g>
<g>
<polyline points="614.8 155 614.8 116.8 647.5 124 647.5 162.9"></polyline>
<path
d="M614.8,155.7c0-3.1-4.4-5.7-8.2-5.9s-9.2,2.8-9.2,6,4.7,5.6,8.7,5.6S614.8,158.8,614.8,155.7Z">
</path>
<path
d="M647.5,163.3c.1-3.1-4.4-5.7-8.2-5.9s-9.2,2.8-9.1,6,4.7,5.7,8.6,5.7S647.5,166.5,647.5,163.3Z">
</path>
</g>
</g>
<g class="note">
<polyline points="646.5 148.5 646.5 109.4 613.2 117.4 613.2 157.2"></polyline>
<path d="M646.5,149c0-3.1-4.4-5.7-8.1-5.8s-9.2,2.7-9.1,5.9,4.7,5.6,8.6,5.6S646.5,152.1,646.5,149Z">
</path>
<path d="M613.2,156.7c.1-3.1-4.4-5.7-8.2-5.8s-9.3,2.7-9.2,6,4.7,5.6,8.7,5.6S613.2,159.9,613.2,156.7Z">
</path>
<line x1="613.2" y1="123.2" x2="646.5" y2="115.1"></line>
<line x1="613.2" y1="129.4" x2="646.5" y2="121.8"></line>
</g>
<g class="note">
<g>
<path
d="M636.6,152.9c0-3.2-4.4-5.8-8.2-5.9s-9.3,2.8-9.3,6,4.8,5.7,8.7,5.7S636.6,156.1,636.6,152.9Z">
</path>
<line x1="636.6" y1="152.9" x2="636.6" y2="106.6"></line>
<path d="M636.6,106.8a33.2,33.2,0,0,0,3.6,7.8c3.8,5.7,7.6,6.9,8.9,11.5a13.3,13.3,0,0,1-.9,8.4">
</path>
</g>
<g>
<path
d="M636.6,152.9c0-3.2-4.4-5.8-8.2-5.9s-9.3,2.8-9.3,6,4.8,5.7,8.7,5.7S636.6,156.1,636.6,152.9Z">
</path>
<line x1="636.6" y1="152.9" x2="636.6" y2="106.6"></line>
<path d="M636.6,106.8a33.2,33.2,0,0,0,3.6,7.8c3.8,5.7,7.6,6.9,8.9,11.5a13.3,13.3,0,0,1-.9,8.4">
</path>
</g>
</g>
</g>
</g>
</svg>
</div>
</div>
</section>
</div>
<!-- About End ----------------------------------------------------------------------------------------->
<br />
<br />
<br />
<!--Timer section End-------------------------------------------------------------------------------------- -->
<p style="text-align: center; font-size: 3rem" id="count" data-aos="fade-right" data-aos-offset="-300"
data-aos-delay="500" data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true"
data-aos-once="false" data-aos-anchor-placement="top-center">
COUNTDOWN TO BIG DAY!
</p>
<div class="flipclock" id="flipclock-1" data-aos="fade-up" data-aos-offset="-300" data-aos-delay="900"
data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center"></div>
<!--Timer section End-------------------------------------------------------------------------------------- -->
<!-- prizes page------------------------------------------------------------------------------------------- -->
<div id="prizes" class="container">
<section class="content-section">
<div class="heading">
<h2 class="section-title">Prizes</h2>
<div class="line"></div>
</div>
<section class="prizes">
<div class="flip-card" data-aos="fade-right" data-aos-offset="-300" data-aos-delay="500"
data-aos-duration="1000" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/first_prize.svg" alt="Avatar" />
<p>1st Prize Winner</p>
<p>Hover to view the cash prize</p>
</div>
<div class="flip-card-back">
<h1><span>₹</span>12,000 Cash</h1>
<span>(For Both Societal Impact And Business
Oriented Broad Areas)</span>
</div>
</div>
</div>
<div class="flip-card" data-aos="fade-left" data-aos-offset="-300" data-aos-delay="800" data-aos-duration="1200"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/second_prize.svg" alt="Avatar" />
<p>2nd Prize Winner</p>
<p>Hover to view the cash prize</p>
</div>
<div class="flip-card-back">
<h1><span>₹</span>10,000 Cash</h1>
<span>(For Both Societal Impact And Business
Oriented Broad Areas)</span>
</div>
</div>
</div>
<div class="flip-card" data-aos="fade-left" data-aos-offset="-300" data-aos-delay="800" data-aos-duration="1200"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/image2vector.svg" style="width: 200px" alt="Avatar" />
<p>Consolation Prize</p>
<p>Hover to view the cash prize</p>
</div>
<div class="flip-card-back">
<h1><span>₹</span>10,000 Cash</h1>
<span>(For Both Societal Impact And Business
Oriented Broad Areas)</span>
</div>
</div>
</div>
</section>
</section>
</div>
<!--prizes page End-------------------------------------------------------------------------------------- -->
<!--Sponsors page start-------------------------------------------------------------------------------------- -->
<div id="sponsors" class="container">
<section class="content-section">
<div class="heading">
<h2 class="section-title">Sponsors</h2>
<div class="line"></div>
</div>
<div class="master-container">
<div class="inner-container">
<div class="our-clients">
<ul>
<li id="sponsors1" onclick="loadSponsors(this.id)" class="ieee-li" data-aos="fade-left"
data-aos-offset="-300" data-aos-delay="500" data-aos-duration="800" data-aos-easing="ease-in-out"
data-aos-mirror="true" data-aos-once="false" data-aos-anchor-placement="top-center"
content="Tetherfi is an organization consisting of collaborative people with innovative thinking that are the driving force behind our growing success. We are a fast-growing, innovative, ICT company serving clients in Singapore, Malaysia, Indonesia, Hong Kong, India, Philippines, Australia & USA. We are offering special opportunities which include working in wide range of locations and different career opportunities that encourage learning, innovation, growth while taking care of individual aspirations. At Tetherfi we work with some of the world’s leading banking, telecommunication and hospitality brands to accelerate their digital transformation journey. Tetherfi is one of Singapore’s fastest-growing technology and is the recipient of Frost & Sullivan’s 2019 Best Practices Award."
viewmorelink="https://www.tetherfi.com/">
<img src="assets/images/tether/image003.png" alt="IEEE-logo" />
<a href="https://www.tetherfi.com/" target="_blank" rel="noopener noreferrer"><img
src="assets/images/tether/image003.png" alt="IEEE-logo" /></a>
</li>
<li id="sponsors2" onclick="loadSponsors(this.id)" data-aos="flip-right" data-aos-offset="-300"
data-aos-delay="500" data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true"
data-aos-once="false" data-aos-anchor-placement="top-center"
content="Robosoft Technologies is a full-service digital transformation company, with a vision to Simplify Lives. We offer end-to-end solutions in product advisory, design, engineering and analytics. The delightful, intuitive digital experiences we craft help enterprises offer great customer experiences and drive brand preference. At Robosoft, we believe our higher purpose is to simplify lives. We touch millions of lives every day through our solutions and through each interaction we aim to make life a wee bit simpler for the user. We partner with businesses which think long term and invest in relationships which are win-win."
viewmorelink="https://www.robosoftin.com">
<img src="assets/images/robosoft.svg" alt="Robosoft-logo" />
<a href="https://www.robosoftin.com/" target="_blank" rel="noopener noreferrer"><img
src="assets/images/robosoft.svg" alt="Robosoft-logo" /></a>
</li>
<li id="sponsors3" onclick="loadSponsors(this.id)" data-aos="fade-up" data-aos-offset="-300"
data-aos-delay="1000" data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true"
data-aos-once="false" data-aos-anchor-placement="top-center"
content="Prueba is a leading Boutique Consultancy offering a premium testing service at a reasonable cost, that ensures our Customer’s software products are released to market with confidence. Prueba is a company where like minded testing talent could work together, sharing their expertise and skills to provide businesses with a level and range of 'black box' or business testing services not before seen in Australasia. At Prueba we specialise in testing. Our independence and impartiality ensures we deliver appropriate processes and services tailored to your needs. However, we'll be very keen to show your business the benefits of the Agile approach. Trust us, you'll never look back."
viewmorelink="https://www.prueba.io/">
<img src="assets/images/prueba.svg" alt="Prueba-logo" class="prueba" />
<a href="https://www.prueba.io/" target="_blank" rel="noopener noreferrer"><img
src="assets/images/prueba.svg" alt="Prueba-logo" /></a>
</li>
<li id="sponsors4" onclick="loadSponsors(this.id)" class="ieee-li" data-aos="fade-left"
data-aos-offset="-300" data-aos-delay="500" data-aos-duration="800" data-aos-easing="ease-in-out"
data-aos-mirror="true" data-aos-once="false" data-aos-anchor-placement="top-center"
content="The IEEE Circuits and Systems Society is the leading organization that promotes the advancement of the theory, analysis, design, tools, and implementation of circuits and systems. The field spans their theoretical foundations, applications, and architectures, as well as circuits and systems implementation of algorithms for signal and information processing. The Society brings engineers, researchers, scientists and others involved in circuits and systems applications access to the industry’s most essential technical information, networking opportunities, career development tools and many other exclusive benefits."
viewmorelink="https://ieee-cas.org/">
<img src="assets/images/cas.svg" alt="IEEE-logo" />
<a href="https://ieee-cas.org/" target="_blank" rel="noopener noreferrer"><img
src="assets/images/cas.svg" alt="IEEE-logo" /></a>
</li>
</ul>
</div>
</div>
</div>
</section>
</div>
<!--Sponsers page End-------------------------------------------------------------------------------------- -->
<!---- Track page start --------------------------------------------------------------------->
<div id="tracks" class="container">
<section class="content-section">
<div class="heading">
<h2 class="section-title">Broad Areas</h2>
<div class="line"></div>
</div>
<section class="track-section">
<div class="track-items-grid">
<div class="track-panel">
<div class="track-box">
<img src="assets/images/tracks/weather.png" alt="track icon" />
</div>
<div class="track-panel-text">
<h2 class="track-panel-title">
Societal Impact
</h2>
<p class="track-panel-description" style="text-align: justify">
In recent years, the world around us has
seen a lot of changes due to the use of
"Digital Technologies". These changes have
made a dramatic impact on our lives, making
things more convenient, faster, and easier
to handle. The motivation of creating
solutions that have societal impact is that
people from all walks of life can enjoy the
comfort that technology has to offer at
virtually no expense. The problem statements
designed in this broad area will feature
designing and launching software that
support the enrichment of life standards of
middle-class society and more!
</p>
</div>
</div>
<div class="track-panel">
<div class="track-box" id="track-1">
<img src="assets/images/tracks/stats.png" alt="track icon" />
</div>
<div class="track-panel-text">
<h2 class="track-panel-title">
Business Oriented
</h2>
<p class="track-panel-description" style="text-align: justify">
Business leaders are faced with numerous
important decisions each day. There’s no
“right way” to run a business. The way they
choose to approach these decisions can
profoundly impact strategic development,
business outlook, and—ultimately—sales.
Problem statements in this broad area will
focus primarily on devising efficient,
model-based solutions that empower the
business structure of an organization and
may directly or indirectly affect its growth
in the market.
</p>
</div>
</div>
</div>
</section>
</section>
</div>
<!------------Track page end ---------------------------------------------------------------------------->
<!------------FAQ section start ------------------------------------------------------------------------>
<div id="faq" class="container">
<section class="content-section">
<div class="heading" data-aos="fade-down" data-aos-offset="-300" data-aos-delay="200" data-aos-duration="800"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<h2 class="section-title">FAQ</h2>
<div class="line"></div>
</div>
<section class="faq-section">
<div class="faq-items-grid">
<div class="faq-item" data-aos="fade-right" data-aos-offset="-300" data-aos-delay="200"
data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
What is a hackathon?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p style="text-align: justify">
A hackathon is an invention marathon where
you can work with people around the globe to
build a project related to technology! It
isn't about hacking into a system, it's
instead about hacking something together and
learning a great deal in the process.
</p>
</div>
</div>
<div class="faq-item" data-aos="fade-left" data-aos-offset="-300" data-aos-delay="500" data-aos-duration="800"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
Is this hackathon an online event or
offline?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p>
HACKOTHSAV is a Virtual/Online National
Level Hackathon.
</p>
</div>
</div>
<div class="faq-item" data-aos="fade-right" data-aos-offset="-300" data-aos-delay="400"
data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
Who are eligible to apply for Hackothsav?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p>
HACKOTHSAV is open to all UG and PG students
around the nation interested in coding.
</p>
</div>
</div>
<div class="faq-item" data-aos="fade-left" data-aos-offset="-300" data-aos-delay="300" data-aos-duration="800"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
How long will it be on for?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p>
The event will be running for about 48 hours
from 9th July 2021 to 11th July 2021.
</p>
</div>
</div>
<div class="faq-item" data-aos="fade-right" data-aos-offset="-300" data-aos-delay="600"
data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
Is there any registration fee?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p>
Yes, There is a Registration Fee for
HACKOTHSAV. Kindly refer our "Brochure"
which is available under downloads section.
</p>
</div>
</div>
<div class="faq-item" data-aos="fade-left" data-aos-offset="-300" data-aos-delay="500" data-aos-duration="800"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
Do we need a team? If yes, how many members
are allowed?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p>
Yes, you need a team of atleast 2 members
and maximum of 5 members to participate in
HACKOTHSAV.
</p>
</div>
</div>
<div class="faq-item" data-aos="fade-right" data-aos-offset="-300" data-aos-delay="800"
data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
Is this hackathon open only for Computer
Science and Engineering background?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p style="text-align: justify">
No. If you are interested in coding, then
your creativity and technical skills matter
more than your branch of study. There is
everything available online that you need to
learn regarding the trending technologies.
</p>
</div>
</div>
<div class="faq-item" data-aos="fade-left" data-aos-offset="-300" data-aos-delay="700" data-aos-duration="800"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
How to register for this event?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p style="text-align: justify">
Click on "Register Now" on the Home Page of
our Hackothsav Website. Fill the form with
correct details. Verify it before submitting
details. After submitting, Team Leader will
get a Confirmation Mail from Hackothsav Team
confirming your team's registration.
</p>
</div>
</div>
<div class="faq-item" data-aos="fade-right" data-aos-offset="-300" data-aos-delay="600"
data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
When will be problem statements announced
under each Broad Area?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p>
Problem Statements under each Broad Area
will be announced on the Event Day.
</p>
</div>
</div>
<div class="faq-item" data-aos="fade-left" data-aos-offset="-300" data-aos-delay="500" data-aos-duration="800"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
Will we be allowed to change Broad Area
after registration?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p style="text-align: justify">
Teams may change their Broad Area after the
announcement of the Problem Statements in
each Broad Area. If any team needs to change
their Broad Area, they need to send a mail
to hackothsav@sode-edu.in within 1 hour of
the announcement of Problem Statements.
</p>
</div>
</div>
<div class="faq-item" data-aos="fade-left" data-aos-offset="-300" data-aos-delay="500" data-aos-duration="800"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="faq-text">
<h2 class="faq-text-title">
Want to ask any other question?
</h2>
<div class="angle-down">
<img src="assets/images/angle_down_icon.svg" />
</div>
</div>
<div class="faq-answer">
<p>
If yes, Kindly contact Event Organizers.
Drop a message to us, and we will get back
to you as soon as possible.
</p>
<p>
Student Coordinators: Raunak Choudhary:
+91-9113671387 / Ashutosh Kumar:
+91-9661442323
</p>
<p>Mail us at hackothsav@sode-edu.in</p>
</div>
</div>
</div>
</section>
</section>
</div>
<!----------FAQ section end---------------------------------------------------------------------------------------->
<!--Footer page start-------------------------------------------------------------------------------------- -->
<div class="footer-div footer-box">
<div class="footer">
<div class="main-footer" data-aos="fade-down" data-aos-offset="-300" data-aos-delay="200" data-aos-duration="800"
data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<div class="quick">
<div class="text-body is-bold" data-aos="fade-up" data-aos-offset="-300" data-aos-delay="400"
data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
Quick Links
</div>
<ul class="footer-links unstyle">
<li class="footer-list-link" data-aos="fade-right" data-aos-offset="-300" data-aos-delay="600"
data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<a href="#" class="text-body-3 is-link">Home</a>
</li>
<li class="footer-list-link" data-aos="fade-right" data-aos-offset="-300" data-aos-delay="800"
data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">
<a href="#about" class="text-body-3 is-link">About</a>
</li>
<li class="footer-list-link" data-aos="fade-right" data-aos-offset="-300" data-aos-delay="1000"
data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-mirror="true" data-aos-once="false"
data-aos-anchor-placement="top-center">