-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
2778 lines (2753 loc) · 113 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>
<meta charset="UTF-8" />
<title>HackOFiesta</title>
<link
rel="icon"
href="./images/Artboard 5.svg"
type="image/gif"
sizes="16x16"
/>
<meta name="viewport" content="width=device-width" />
<link
href="https://fonts.googleapis.com/css?family=Oswald"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="./scss/index.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"
integrity="sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-HN6QQW6NCN"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-HN6QQW6NCN");
</script>
</head>
<body>
<div class="pre-loader" id="preloader">
<div class="loading">Loading</div>
</div>
<div class="overall" id="overall">
<!-- partial:index.partial.html -->
<link
href="https://fonts.googleapis.com/css?family=Roboto+Mono"
rel="stylesheet"
/>
<svg
style="position: absolute; width: 0; height: 0"
width="0"
height="0"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
class="svg-sprite"
>
<defs>
<filter id="filter">
<feTurbulence
type="fractalNoise"
baseFrequency="0.000001 0.000001"
numOctaves="1"
result="warp"
seed="1"
></feTurbulence>
<feDisplacementMap
xChannelSelector="R"
yChannelSelector="G"
scale="30"
in="SourceGraphic"
in2="warp"
></feDisplacementMap>
</filter>
</defs>
</svg>
<div class="window">
<div class="header">
<div class="burger-container" onclick="burgerham()">
<div id="burger">
<div class="bar topBar"></div>
<div class="bar btmBar"></div>
</div>
</div>
<div class="b-icon b-icon-apple"></div>
<ul class="menu" style="visibility: visible;">
<li class="menu-item" onclick="menuit()"><a href="#home">Home</a></li>
<li class="menu-item" onclick="menuit()"><a href="#about">About</a></li>
<li class="menu-item" onclick="menuit()"><a href="#theme">Themes</a></li>
<li class="menu-item" onclick="menuit()"><a href="#prizes">Prizes</a></li>
<li class="menu-item" onclick="menuit()"><a href="#speakers">Speakers</a></li>
<li class="menu-item" onclick="menuit()"><a href="#faqs">FAQs</a></li>
<li class="menu-item" onclick="menuit()"><a href="#sponsers">Sponsers</a></li>
<li class="menu-item" onclick="menuit()"><a href="#team">Team</a></li>
<li class="menu-item" onclick="menuit()"><a href="#contact">Contact us</a></li>
</ul>
<div class="shop b-icon b-icon-bag"></div>
</div>
</div>
<div class="nav-main">
<div class="nav" id="nav">
<div class="nav__item">
<button class="active nav-btn">
<svg class="icon2" goto="#home" viewBox="0 0 24 24">
<path
class="icon2"
goto="#home"
fill="#000000"
d="M9,13H15V19H18V10L12,5.5L6,10V19H9V13M4,21V9L12,3L20,9V21H4Z"
/>
</svg>
<span class="text" data-title="Home">Home</span>
</button>
</div>
<div class="nav__item">
<button class="nav-btn">
<svg class="icon2" goto="#about" viewBox="0 0 24 24">
<path
class="icon2"
goto="#about"
fill="#000000"
d="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,6A2,2 0 0,0 10,8A2,2 0 0,0 12,10A2,2 0 0,0 14,8A2,2 0 0,0 12,6M12,13C14.67,13 20,14.33 20,17V20H4V17C4,14.33 9.33,13 12,13M12,14.9C9.03,14.9 5.9,16.36 5.9,17V18.1H18.1V17C18.1,16.36 14.97,14.9 12,14.9Z"
/>
</svg>
<span class="text" data-title="About">About</span>
</button>
</div>
<div class="nav__item">
<button class="nav-btn">
<svg class="icon2" goto="#theme" viewBox="0 0 24 24">
<path
class="icon2"
goto="#theme"
fill="#000000"
d="M6,2A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6M6,4H13V9H18V20H6V4M8,12V14H16V12H8M8,16V18H13V16H8Z"
/>
</svg>
<span class="text" data-title="Themes">Themes</span>
</button>
</div>
<div class="nav__item">
<button class="nav-btn">
<svg
xmlns="http://www.w3.org/2000/svg"
goto="#prizes"
width="20px"
height="20px"
class="bi bi-trophy icon2"
viewBox="0 0 17 17"
>
<path
goto="#prizes"
fill="#000000"
class="icon2"
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935zM3.504 1c.007.517.026 1.006.056 1.469.13 2.028.457 3.546.87 4.667C5.294 9.48 6.484 10 7 10a.5.5 0 0 1 .5.5v2.61a1 1 0 0 1-.757.97l-1.426.356a.5.5 0 0 0-.179.085L4.5 15h7l-.638-.479a.501.501 0 0 0-.18-.085l-1.425-.356a1 1 0 0 1-.757-.97V10.5A.5.5 0 0 1 9 10c.516 0 1.706-.52 2.57-2.864.413-1.12.74-2.64.87-4.667.03-.463.049-.952.056-1.469H3.504z"
/>
</svg>
<span class="text" data-title="Prizes">Prizes</span>
</button>
</div>
<div class="nav__item">
<button class="nav-btn">
<svg
xmlns="http://www.w3.org/2000/svg"
goto="#speakers"
class="icon2"
width="16"
height="16"
fill="currentColor"
class="bi bi-megaphone"
viewBox="0 0 17 17"
>
<path
goto="#speakers"
class="icon2"
d="M13 2.5a1.5 1.5 0 0 1 3 0v11a1.5 1.5 0 0 1-3 0v-.214c-2.162-1.241-4.49-1.843-6.912-2.083l.405 2.712A1 1 0 0 1 5.51 15.1h-.548a1 1 0 0 1-.916-.599l-1.85-3.49a68.14 68.14 0 0 0-.202-.003A2.014 2.014 0 0 1 0 9V7a2.02 2.02 0 0 1 1.992-2.013 74.663 74.663 0 0 0 2.483-.075c3.043-.154 6.148-.849 8.525-2.199V2.5zm1 0v11a.5.5 0 0 0 1 0v-11a.5.5 0 0 0-1 0zm-1 1.35c-2.344 1.205-5.209 1.842-8 2.033v4.233c.18.01.359.022.537.036 2.568.189 5.093.744 7.463 1.993V3.85zm-9 6.215v-4.13a95.09 95.09 0 0 1-1.992.052A1.02 1.02 0 0 0 1 7v2c0 .55.448 1.002 1.006 1.009A60.49 60.49 0 0 1 4 10.065zm-.657.975 1.609 3.037.01.024h.548l-.002-.014-.443-2.966a68.019 68.019 0 0 0-1.722-.082z"
/>
</svg>
<span class="text" data-title="Speakers">Speakers</span>
</button>
</div>
<div class="nav__item">
<button class="nav-btn">
<svg
xmlns="http://www.w3.org/2000/svg"
goto="#faqs"
width="16"
height="16"
fill="currentColor"
class="bi bi-question-circle icon2"
viewBox="0 0 17 17"
>
<path
class="icon2"
goto="#faqs"
d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"
/>
<path
class="icon2"
goto="#faqs"
d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z"
/>
</svg>
<span class="text" data-title="FAQs">FAQs</span>
</button>
</div>
<div class="nav__item">
<button class="nav-btn">
<svg
class="svg-icon icon2"
goto="#sponsers"
viewBox="0 0 17 17"
>
<path
fill="none"
class="icon2"
goto="#sponsers"
d="M4.319,8.257c-0.242,0-0.438,0.196-0.438,0.438c0,0.243,0.196,0.438,0.438,0.438c0.242,0,0.438-0.196,0.438-0.438C4.757,8.454,4.561,8.257,4.319,8.257 M7.599,10.396c0,0.08,0.017,0.148,0.05,0.204c0.034,0.056,0.076,0.104,0.129,0.144c0.051,0.04,0.112,0.072,0.182,0.097c0.041,0.015,0.068,0.028,0.098,0.04V9.918C7.925,9.927,7.832,9.958,7.747,10.02C7.648,10.095,7.599,10.22,7.599,10.396 M15.274,6.505H1.252c-0.484,0-0.876,0.392-0.876,0.876v7.887c0,0.484,0.392,0.876,0.876,0.876h14.022c0.483,0,0.876-0.392,0.876-0.876V7.381C16.15,6.897,15.758,6.505,15.274,6.505M1.69,7.381c0.242,0,0.438,0.196,0.438,0.438S1.932,8.257,1.69,8.257c-0.242,0-0.438-0.196-0.438-0.438S1.448,7.381,1.69,7.381M1.69,15.269c-0.242,0-0.438-0.196-0.438-0.438s0.196-0.438,0.438-0.438c0.242,0,0.438,0.195,0.438,0.438S1.932,15.269,1.69,15.269M14.836,15.269c-0.242,0-0.438-0.196-0.438-0.438s0.196-0.438,0.438-0.438s0.438,0.195,0.438,0.438S15.078,15.269,14.836,15.269M15.274,13.596c-0.138-0.049-0.283-0.08-0.438-0.08c-0.726,0-1.314,0.589-1.314,1.314c0,0.155,0.031,0.301,0.08,0.438H2.924c0.049-0.138,0.081-0.283,0.081-0.438c0-0.726-0.589-1.314-1.315-1.314c-0.155,0-0.3,0.031-0.438,0.08V9.053C1.39,9.103,1.535,9.134,1.69,9.134c0.726,0,1.315-0.588,1.315-1.314c0-0.155-0.032-0.301-0.081-0.438h10.678c-0.049,0.137-0.08,0.283-0.08,0.438c0,0.726,0.589,1.314,1.314,1.314c0.155,0,0.301-0.031,0.438-0.081V13.596z M14.836,8.257c-0.242,0-0.438-0.196-0.438-0.438s0.196-0.438,0.438-0.438s0.438,0.196,0.438,0.438S15.078,8.257,14.836,8.257 M12.207,13.516c-0.242,0-0.438,0.196-0.438,0.438s0.196,0.438,0.438,0.438s0.438-0.196,0.438-0.438S12.449,13.516,12.207,13.516 M8.812,11.746c-0.059-0.043-0.126-0.078-0.199-0.104c-0.047-0.017-0.081-0.031-0.117-0.047v1.12c0.137-0.021,0.237-0.064,0.336-0.143c0.116-0.09,0.174-0.235,0.174-0.435c0-0.092-0.018-0.17-0.053-0.233C8.918,11.842,8.87,11.788,8.812,11.746 M18.78,3.875H4.757c-0.484,0-0.876,0.392-0.876,0.876V5.19c0,0.242,0.196,0.438,0.438,0.438c0.242,0,0.438-0.196,0.438-0.438V4.752H18.78v7.888h-1.315c-0.242,0-0.438,0.196-0.438,0.438c0,0.243,0.195,0.438,0.438,0.438h1.315c0.483,0,0.876-0.393,0.876-0.876V4.752C19.656,4.268,19.264,3.875,18.78,3.875 M8.263,8.257c-1.694,0-3.067,1.374-3.067,3.067c0,1.695,1.373,3.068,3.067,3.068c1.695,0,3.067-1.373,3.067-3.068C11.33,9.631,9.958,8.257,8.263,8.257 M9.488,12.543c-0.062,0.137-0.147,0.251-0.255,0.342c-0.108,0.092-0.234,0.161-0.378,0.209c-0.123,0.041-0.229,0.063-0.359,0.075v0.347H8.058v-0.347c-0.143-0.009-0.258-0.032-0.388-0.078c-0.152-0.053-0.281-0.128-0.388-0.226c-0.108-0.098-0.191-0.217-0.25-0.359c-0.059-0.143-0.087-0.307-0.083-0.492h0.575c-0.004,0.219,0.046,0.391,0.146,0.518c0.088,0.109,0.207,0.165,0.388,0.185v-1.211c-0.102-0.031-0.189-0.067-0.3-0.109c-0.136-0.051-0.259-0.116-0.368-0.198c-0.109-0.082-0.198-0.183-0.265-0.306c-0.067-0.123-0.101-0.275-0.101-0.457c0-0.159,0.031-0.298,0.093-0.419c0.062-0.121,0.146-0.222,0.252-0.303S7.597,9.57,7.735,9.527C7.85,9.491,7.944,9.474,8.058,9.468V9.134h0.438v0.333c0.114,0.005,0.207,0.021,0.319,0.054c0.134,0.04,0.251,0.099,0.351,0.179c0.099,0.079,0.178,0.18,0.237,0.303c0.059,0.122,0.088,0.265,0.088,0.427H8.916c-0.007-0.169-0.051-0.297-0.134-0.387C8.712,9.968,8.626,9.932,8.496,9.919v1.059c0.116,0.035,0.213,0.074,0.333,0.118c0.145,0.053,0.272,0.121,0.383,0.203c0.111,0.083,0.2,0.186,0.268,0.308c0.067,0.123,0.101,0.273,0.101,0.453C9.581,12.244,9.549,12.406,9.488,12.543"
></path>
</svg>
<span class="text" data-title="Sponsors">Sponsors</span>
</button>
</div>
<div class="nav__item">
<button class="nav-btn">
<svg
xmlns="http://www.w3.org/2000/svg"
goto="#team"
width="16"
height="16"
fill="currentColor"
class="bi bi-people-fill icon2"
viewBox="0 0 17 17"
>
<path
class="icon2"
goto="#team"
d="M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1H7zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
/>
<path
fill-rule="evenodd"
class="icon2"
goto="#team"
d="M5.216 14A2.238 2.238 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.325 6.325 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1h4.216z"
/>
<path d="M4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z" />
</svg>
<span class="text" data-title="Team">Team</span>
</button>
</div>
<div class="nav__item">
<button class="nav-btn">
<!-- <svg class="icon2" goto="#contact" viewBox="0 0 24 24">
<path class="icon2" goto="#contact" fill="#000000"
d="M12,8A4,4 0 0,1 16,12A4,4 0 0,1 12,16A4,4 0 0,1 8,12A4,4 0 0,1 12,8M12,10A2,2 0 0,0 10,12A2,2 0 0,0 12,14A2,2 0 0,0 14,12A2,2 0 0,0 12,10M10,22C9.75,22 9.54,21.82 9.5,21.58L9.13,18.93C8.5,18.68 7.96,18.34 7.44,17.94L4.95,18.95C4.73,19.03 4.46,18.95 4.34,18.73L2.34,15.27C2.21,15.05 2.27,14.78 2.46,14.63L4.57,12.97L4.5,12L4.57,11L2.46,9.37C2.27,9.22 2.21,8.95 2.34,8.73L4.34,5.27C4.46,5.05 4.73,4.96 4.95,5.05L7.44,6.05C7.96,5.66 8.5,5.32 9.13,5.07L9.5,2.42C9.54,2.18 9.75,2 10,2H14C14.25,2 14.46,2.18 14.5,2.42L14.87,5.07C15.5,5.32 16.04,5.66 16.56,6.05L19.05,5.05C19.27,4.96 19.54,5.05 19.66,5.27L21.66,8.73C21.79,8.95 21.73,9.22 21.54,9.37L19.43,11L19.5,12L19.43,13L21.54,14.63C21.73,14.78 21.79,15.05 21.66,15.27L19.66,18.73C19.54,18.95 19.27,19.04 19.05,18.95L16.56,17.95C16.04,18.34 15.5,18.68 14.87,18.93L14.5,21.58C14.46,21.82 14.25,22 14,22H10M11.25,4L10.88,6.61C9.68,6.86 8.62,7.5 7.85,8.39L5.44,7.35L4.69,8.65L6.8,10.2C6.4,11.37 6.4,12.64 6.8,13.8L4.68,15.36L5.43,16.66L7.86,15.62C8.63,16.5 9.68,17.14 10.87,17.38L11.24,20H12.76L13.13,17.39C14.32,17.14 15.37,16.5 16.14,15.62L18.57,16.66L19.32,15.36L17.2,13.81C17.6,12.64 17.6,11.37 17.2,10.2L19.31,8.65L18.56,7.35L16.15,8.39C15.38,7.5 14.32,6.86 13.12,6.62L12.75,4H11.25Z" />
</svg> -->
<svg
xmlns="http://www.w3.org/2000/svg"
goto="#contact"
width="16"
height="16"
fill="currentColor"
class="bi bi-telephone icon2"
viewBox="0 0 17 17"
>
<path
class="icon2"
goto="#contact"
d="M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"
/>
</svg>
<span class="text" data-title="Contact">Contact</span>
</button>
</div>
<div class="nav__active-indicator"></div>
</div>
</div>
<div id="home"></div>
<div class="container-h">
<p
class="subtitle"
data-aos="fade-left"
style="z-index: 1000; position: initial"
>
3.0
</p>
<div class="glitch" data-text="HackOFiesta" data-aos="fade-down">
HackOFiesta
</div>
<div class="glow">HackOFiesta</div>
</div>
<div class="body-section">
<div class="date">22nd - 24th April, 2022</div>
<div class="half dark">
<div
class="apply-button adf"
data-hackathon-slug="hackofiesta2022"
data-button-theme="dark-inverted"
style="height: 58px; width: 300px; overflow: hidden"
></div>
<!-- <div class="btn btn-small btn-clear btn-light btn-glitch mrg-but1 reg-btn" onclick="redirectreg()">
Register
</div> -->
<div class="btn mrg-but2 dis-btn" onclick="redirectdis()">
<img
src="./img/icons/discord.png"
style="width: 24px; height: 24px; margin-right: 8px"
/>
Discord
</div>
</div>
<div class="countdown" data-date="22-4-2022" data-time="21:00">
<div class="day">
<span class="num"></span><span class="word"></span>
</div>
<div class="hour">
<span class="num"></span><span class="word"></span>
</div>
<div class="min">
<span class="num"></span><span class="word"></span>
</div>
<div class="sec">
<span class="num"></span><span class="word"></span>
</div>
</div>
</div>
<div class="square2"></div>
<div class="icon-container">
<i class="fa fa-facebook fa-2x icon" onclick="facebook()"></i>
<i class="fa fa-twitter fa-2x icon" onclick="twitter()"></i>
<i class="fa fa-instagram fa-2x icon" onclick="instagram()"></i>
<i
class="fa fa-linkedin fa-2x icon"
style="margin-right: 10px"
onclick="linkedin()"
></i>
</div>
<div class="about">
<div style="padding-bottom: 25px" id="about"></div>
<div class="about-sub">
<div class="about-inner">
<div class="about-heading">ABOUT</div>
<div class="about-content">
<div class="about-content-sub">
HackOFiesta v3.0 is a 36 hr annual Global Hackathon presented
to you by IIIT Lucknow. Entrants can take part in a team of
1-5 adept individuals, using innovative technologies to hack a
multitude of problems. Not only do programmers get the
satisfaction of creating a useful product during the
hackathon, but once the time runs out all participants come
together and present their creations to a panel of judges who
then give them valuable feedback on their idea, execution and
presentation.
<br />
<br />
The last edition of HackOFiesta experienced a staggering
interaction of over 120k unique individuals from across the
globe. This international platform will be an exquisite place
for students to come together and contribute to our future by
bringing forth their combined problem-solving abilities. With
coverage from leading national newspapers to countless social
media accounts, technical forums, and blogs, it is a massive
opportunity for interaction with some of the brightest young
minds of the world and its impact is truly endless.
</div>
<div
class="ab-img"
data-aos="zoom-in"
id="abt-img"
data-aos-anchor-placement="top-bottom"
>
<lottie-player
src="https://assets4.lottiefiles.com/packages/lf20_eng2ayfu.json"
background="transparent"
speed="1"
loop
autoplay
></lottie-player>
</div>
</div>
</div>
</div>
<div class="theme-sub" style="background-color: black">
<div style="padding-bottom: 25px" id="theme"></div>
<div
class="theme-heading glitch2"
data-glitch2="THEME"
style="
margin-bottom: 20px;
color: white;
border-bottom: 3px solid white;
"
>
THEME
</div>
<section class="main">
<!-- <div class="wrap wrap--1" onmouseenter="themename()" onmouseleave="themenamed()" data-aos="fade-up"
data-aos-anchor-placement="top-bottom">
<div class="container container--1">
<img src="./images/gameDev.png" alt="GameDev" style="width: 100%" id="th-gd" />
<div class="theme__item--details">
<h4 class="theme-name">GAME DEVELOPMENT</h4>
</div>
</div>
</div> -->
<a class="t-card education">
<div class="t-overlay"></div>
<div class="t-circle">
<lottie-player
src="https://assets2.lottiefiles.com/packages/lf20_ly5yxejz.json"
background="transparent"
speed="1"
style="width: 97%; height: auto; z-index: 120"
loop
autoplay
></lottie-player>
</div>
<p>GAME DEVELOPMENT</p>
</a>
<a class="t-card credentialing">
<div class="t-overlay"></div>
<div class="t-circle">
<lottie-player
src="https://assets7.lottiefiles.com/packages/lf20_g1pduE.json"
background="transparent"
speed="1"
style="width: 97%; height: auto; z-index: 123"
loop
autoplay
></lottie-player>
</div>
<p>AI & ML</p>
</a>
<a class="t-card wallet">
<div class="t-overlay"></div>
<div class="t-circle">
<lottie-player
src="https://assets3.lottiefiles.com/packages/lf20_ervn0f7j.json"
background="transparent"
speed="1"
style="width: 90%; height: auto; z-index: 125"
loop
autoplay
></lottie-player>
</div>
<p>CLOUD COMPUTING</p>
</a>
<a class="t-card human-resources">
<div class="t-overlay"></div>
<div class="t-circle">
<lottie-player
src="https://assets2.lottiefiles.com/packages/lf20_xqbchnql.json"
background="transparent"
speed="1"
style="width: 80%; height: auto; z-index: 130"
loop
autoplay
></lottie-player>
<!-- <lottie-player src="https://assets2.lottiefiles.com/packages/lf20_3qbmscbe.json" background="transparent" speed="1" style="width: 98%; height: auto;z-index:130;" loop autoplay></lottie-player> -->
</div>
<p>BLOCK CHAIN</p>
</a>
<a class="t-card education">
<div class="t-overlay"></div>
<div class="t-circle">
<lottie-player
src="https://assets3.lottiefiles.com/packages/lf20_hzfmxrr7.json"
background="transparent"
speed="1"
style="width: 85%; height: auto; z-index: 150"
loop
autoplay
></lottie-player>
</div>
<p>EDUCATION</p>
</a>
<a class="t-card credentialing">
<div class="t-overlay"></div>
<div class="t-circle">
<lottie-player
src="https://assets8.lottiefiles.com/packages/lf20_ginda0jy.json"
background="transparent"
speed="1"
style="width: 100%; height: auto; z-index: 150"
loop
autoplay
></lottie-player>
</div>
<p>HEALTH CARE</p>
</a>
<a class="t-card wallet">
<div class="t-overlay"></div>
<div class="t-circle">
<lottie-player
src="https://assets6.lottiefiles.com/packages/lf20_r24iinkc.json"
background="transparent"
speed="1"
style="width: 85%; height: auto; z-index: 150"
loop
autoplay
></lottie-player>
</div>
<p>INNOVATION</p>
</a>
<a class="t-card education">
<div class="t-overlay"></div>
<div class="t-circle" style="overflow: hidden">
<div class="theme-img"></div>
<img
src="./images/postman_theme.jpeg"
style="width: 230px; z-index: 10"
alt="postman"
/>
</div>
<p>API-First</p>
</a>
</section>
<div class="judging-read">
<button
data-aos="fade-up"
data-aos-anchor-placement="top-bottom"
onclick="theme_drive()"
class="btn-clear btn-light btn-glitch theme-btn theme-btn-1"
>
READ MORE ABOUT OUR THEME
</button>
<button
data-aos="fade-up"
data-aos-anchor-placement="top-bottom"
onclick="judge_drive()"
class="btn-clear btn-light btn-glitch theme-btn theme-btn-1"
>
JUDGING CRITERIA
</button>
</div>
</div>
<div class="prizes-main">
<div style="padding-bottom: 25px" id="prizes"></div>
<div
class="Prizes-heading"
style="
background-color: transparent;
width: 100%;
border-bottom: 0px;
"
>
<span
style="
border-bottom: 3px solid white;
letter-spacing: 0.3rem;
font-size: 4rem;
"
data-glitch2="PRIZES"
class="glitch2 pri-fs"
>PRIZES</span
>
</div>
<div class="prize-cards">
<div class="prizecard-2">
<div class="page-content-pr">
<div
class="card-pr"
style="
background-image: url(./images/winner.webp);
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
"
>
<div class="content-pr">
<h2 class="title-pr" style="background-color: #937a4d">
1st
<span>
Prize <br />
₹20,000</span
>
<span></span>
</h2>
<p class="copy-pr">
<li>Extended 3 month trial period by Echo3D</li>
<li>Three month Hacker plans</li>
<li>6 months free plan of voiceflow pro</li>
<li>Free Taskade Upgrades</li>
<li>Free 90-day trial for balsamiq cloud</li>
<li>25% off the first year of 1Password Families.</li>
<li>Hackofiesta E-Certificates with lifetime validity</li>
</p>
</div>
</div>
</div>
</div>
<div class="prizecard-2">
<div class="page-content-pr">
<div
class="card-pr"
style="
background-image: url(./images/runnerup.webp);
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
"
>
<div class="content-pr">
<!-- <h2 class="title-pr">1st Prize</h2> -->
<h2 class="title-pr" style="background-color: #afacd7">
2nd
<span>
Prize <br />
₹15,000</span
>
<span></span>
</h2>
<p class="copy-pr">
<li>Extended 3 month trial period by Echo3D</li>
<li>Three month Hacker plans</li>
<li>6 months free plan of voiceflow pro</li>
<li>Free Taskade Upgrades</li>
<li>Free 90-day trial for balsamiq cloud</li>
<li>25% off the first year of 1Password Families.</li>
<li>Hackofiesta E-Certificates with lifetime validity</li>
</p>
</div>
</div>
</div>
</div>
<div class="prizecard-2">
<div class="page-content-pr">
<div
class="card-pr"
style="
background-image: url(./images/3rd.webp);
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
"
>
<div class="content-pr">
<!-- <h2 class="title-pr">3rd Prize</h2> -->
<h2 class="title-pr" style="background-color: #8e5936">
3rd
<span>
Prize <br />
₹10,000</span
>
<span></span>
</h2>
<p class="copy-pr">
<li>Extended 3 month trial period by Echo3D</li>
<li>Three month Hacker plans</li>
<li>6 months free plan of voiceflow pro</li>
<li>Free Taskade Upgrades</li>
<li>Free 90-day trial for balsamiq cloud</li>
<li>25% off the first year of 1Password Families.</li>
<li>Hackofiesta E-Certificates with lifetime validity</li>
</p>
</div>
</div>
</div>
</div>
<div class="prizecard-2">
<div class="page-content-pr">
<div
class="card-pr"
style="
background-image: url(./images/track.jpg);
background-size: 110%;
background-repeat: no-repeat;
background-position: center;
"
>
<div class="content-pr">
<!-- <h2 class="title-pr">1st Prize</h2> -->
<h2 class="beginner title-pr" style="background-color: #79BC9E">
<span>Beginner's </span>Track
<span style="font-size: 2rem;"> ₹8,000</span>
</h2>
<p class="copy-pr">
<li>Extended 3 month trial period by Echo3D</li>
<li>Three month Hacker plans</li>
<li>6 months free plan of voiceflow pro</li>
<li>Free Taskade Upgrades</li>
<li>Free 90-day trial for balsamiq cloud</li>
<li>25% off the first year of 1Password Families.</li>
<li>Hackofiesta E-Certificates with lifetime validity</li>
</p>
</div>
</div>
</div>
</div>
<div class="prizecard-2">
<div class="page-content-pr">
<div
class="card-pr"
style="
background-image: url(./images/track.jpg);
background-size: 110%;
background-repeat: no-repeat;
background-position: center;
"
>
<div class="content-pr">
<!-- <h2 class="title-pr">1st Prize</h2> -->
<h2 class="beginner title-pr" style="background-color: #AE8089">
<span>All girl's </span>Track
<span style="font-size: 2rem;"> ₹7,000</span>
</h2>
<p class="copy-pr">
<li>Extended 3 month trial period by Echo3D</li>
<li>Three month Hacker plans</li>
<li>6 months free plan of voiceflow pro</li>
<li>Free Taskade Upgrades</li>
<li>Free 90-day trial for balsamiq cloud</li>
<li>25% off the first year of 1Password Families.</li>
<li>Hackofiesta E-Certificates with lifetime validity</li>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="container-p">
<div class="card">
<div class="image">
<img href="#" src="./img/sponsor/polygon-logo-colored.svg" />
</div>
<h3 class="modgud" style="padding-bottom: 10px">
Best Hack built with Ethereum
</h3>
<div class="content">
<h3 style="padding-bottom: 10px">
Best Hack built with Ethereum
</h3>
<ul>
<li>₹15, 000 for the best hack built on Ethereum</li>
<li>
Eligibility to apply for internship/full-time roles and
seed funding of up to 5,000 USD for winners!
</li>
</ul>
<button
class="btn-clear btn-light btn-glitch theme-btn"
style="border: none"
>
<a
href="https://www.notion.so/Polygon-Devfolio-Hackathon-Season-Prize-de8961d5eeff4780963749da0b75037c"
>See More</a
>
</button>
</div>
</div>
<div class="card">
<div class="image">
<img href="#" src="./img/sponsor/polygon-logo-colored.svg" />
</div>
<h3 class="modgud" style="padding-bottom: 10px">
Best Hack built with Polygon
</h3>
<div class="content">
<h3 style="padding-bottom: 10px">
Best Hack built with Polygon
</h3>
<ul>
<li>₹10, 000 for the best hack built on Polygon</li>
<li>
Eligibility for internship/full-time role interviews and
seed funding of upto 5000 USD
</li>
</ul>
<button
class="btn-clear btn-light btn-glitch theme-btn"
style="border: none"
>
<a
href="https://www.notion.so/Polygon-Devfolio-Hackathon-Season-Prize-de8961d5eeff4780963749da0b75037c"
>See More</a
>
</button>
</div>
</div>
<div class="card">
<div class="image">
<img
href="#"
src="./img/sponsor/Filecoin Coloured White Text.png"
/>
</div>
<h3 class="modgud" style="padding-bottom: 10px">
Best Hack built with Ethereum
</h3>
<div class="content">
<h3 style="padding-bottom: 10px">
Best Hack built with Ethereum
</h3>
<ul>
<li>₹20,000 for best use of IPFS and/or Filecoin</li>
<li>
Microgrants up to 5000 USD, open grants up to 50,000 USD
Learn more
<a
href="https://github.com/filecoin-project/devgrants/blob/master/README.md"
>here</a
>
</li>
</ul>
<button
class="btn-clear btn-light btn-glitch theme-btn"
style="border: none"
>
<a
href="https://www.notion.so/Filecoin-Devfolio-Hackathon-Season-Prize-998fc3fe477e474086ae1d5ed1685203"
>See More</a
>
</button>
</div>
</div>
<div class="card">
<div class="image">
<img href="#" src="./img/sponsor/tezos-logo-1.svg" />
</div>
<h3 class="modgud" style="padding-bottom: 10px">
Best Hack built with Tezos
</h3>
<div class="content">
<h3 style="padding-bottom: 10px">
Best Hack built with Tezos
</h3>
<ul>
<li>₹20,000 for best Dapp built on Tezos</li>
<li>
Continuity grant opportunity up to 5,000 USD for an
outstanding project.
</li>
</ul>
<button
class="btn-clear btn-light btn-glitch theme-btn"
style="border: none"
>
<a
href="https://www.notion.so/Tezos-Devfolio-Hackathon-Season-Prize-e90b6811b0df43e5a7dadf534fc000ff"
>See More</a
>
</button>
</div>
</div>
<div class="card">
<div class="image">
<img href="#" src="./img/sponsor/Celo Logo [email protected]" />
</div>
<h3 class="modgud" style="padding-bottom: 10px">
Best Hack built with Celo
</h3>
<div class="content">
<h3 style="padding-bottom: 10px">
Best Hack built with Celo
</h3>
<ul>
<li>₹20,000 for best Dapp built on Celo</li>
</ul>
<button
class="btn-clear btn-light btn-glitch theme-btn"
style="border: none"
>
<a
href="https://www.notion.so/Celo-Devfolio-Hackathon-Season-Prize-8b98dac17f134abeae863d5d98c01ff0"
>See More</a
>
</button>
</div>
</div>
<div class="card">
<div class="image" style="min-height: 100px">
<img
href="https://climateresilient.world/"
src="./img/sponsor/termius.png"
style="width: 100%; height: auto"
/>
</div>
<h3 class="modgud" style="padding-bottom: 10px; top: -22px">
Convert CAMS react desktop site to mobile app
</h3>
<div class="content">
<h3 style="padding-bottom: 10px">
Convert CAMS react desktop site to mobile app
</h3>
<ul>
<li>For an individual - ₹ 10000</li>
<li>For a team - Max of 4 participants ₹4000 each</li>
</ul>
<button
class="btn-clear btn-light btn-glitch theme-btn"
style="border: none"
>
<a href="https://github.com/CriticalAssetManagement"
>See More</a
>
</button>
</div>
</div>
<div class="card">
<div class="image">
<img href="#" src="./img/sponsor/Koii Logo blue.png" />
</div>
<h3 class="modgud" style="padding-bottom: 10px">
Best Hack built with Koii
</h3>
<div class="content">
<h3 style="padding-bottom: 10px">
Best Hack built with koii
</h3>
<ul>
<li>
Use the KoiiX framework and the Koii SDK to build a dApp
</li>
<li>First prize - 15000 INR</li>
<li>Second prize - 7500 INR</li>
<li>
Goodies and merch for all people with valid submissions
</li>
</ul>
<button
class="btn-clear btn-light btn-glitch theme-btn"
style="border: none"
>
<a href="https://docs.koii.network/">See More</a>
</button>
</div>
</div>
<div class="card">
<div class="image">
<img href="#" src="./img/sponsor/felvin.png" />
</div>
<h3 class="modgud" style="padding-bottom: 10px; top: -22px">
Create Open Source Instant Apps using Felvin Platform
</h3>
<div class="content">
<h3 style="padding-bottom: 10px">
Create Open Source Instant Apps using Felvin Platform
</h3>
<ul>
<li>
Create awesome Open Source Instant Apps at
<a href="https://github.com/felvin-search/instant-apps"
>Felvin Search</a
>
</li>
<li>Prizes worth ₹20,000</li>
</ul>
<button class="btn-clear btn-light btn-glitch theme-btn">
<a
href="https://melon-nectarine-432.notion.site/Felvin-b7b2691f91cd435c807948d59a134d76"
>See More</a
>
</button>
</div>
</div>
</div>
</div>
<div
style="
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-image: url(./images/78255-background-looping-animation.gif);
background-position: center;
"
>
<div style="padding-bottom: 25px" id="speakers"></div>
<div
class="Prizes-heading glitch2"
data-glitch2="SPEAKERS"
style="color: white; background-color: transparent"