-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
2984 lines (2915 loc) · 206 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" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Equinox</title>
<meta name="author" content="wish" />
<link rel="shortcut icon" href="favicon.ico">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://use.typekit.net/uok8swb.css">
<link rel="stylesheet" type="text/css" href="src/css/base.css" />
<link rel="stylesheet" type="text/css" href="src/css/main.css" />
<link rel="stylesheet" type="text/css" href="src/css/speakers.css" />
<link rel="stylesheet" type="text/css" href="src/css/events-mobile.css">
<link rel="stylesheet" type="text/css" href="src/css/events-main.css">
<link rel="stylesheet" href="src/css/team.css">
<link href="https://fonts.cdnfonts.com/css/futura-lt" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css"
integrity="sha512-1cK78a1o+ht2JcaW6g8OXYwqpev9+6GqOkz9xmBN9iUUhIndKtxwILGWYOSibOKjLsEdjyjZvYDq/cZwNeak0w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- CSS only -->
<link rel="stylesheet" href="src/css/timeline.css">
<link href="https://fonts.cdnfonts.com/css/megalopolis-x" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/smooth-scrollbar/8.7.4/smooth-scrollbar.min.js"
integrity="sha512-uTuRVg2sX1/cMtqmqW82QpIDCgeDKPeBddz928F4aPJgUWfdiU0GycmSgXBfQhKDy+K1SPYC/72NaNJdCnqeWw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://kit.fontawesome.com/1701e96119.js" crossorigin="anonymous"></script>
<script>
document.documentElement.className = "js";
var supportsCssVars = function () {
var e, t = document.createElement("style");
return t.innerHTML = "root: { --tmp-var: bold; }", document.head.appendChild(t), e = !!(window.CSS &&
window.CSS.supports && window.CSS.supports("font-weight", "var(--tmp-var)")), t.parentNode
.removeChild(t), e
};
supportsCssVars() || alert("Please view this demo in a modern browser that supports CSS Variables.");
</script>
<link rel="stylesheet" href="https://use.typekit.net/lma7zwj.css">
<link rel="stylesheet" type="text/css" href="dist/app.css" />
<link rel="stylesheet" href="https://use.typekit.net/uok8swb.css">
<link rel="stylesheet" type="text/css" href="src/css/demo.css" />
<link rel="stylesheet" type="text/css" href="src/css/revealer.css" />
<link rel="stylesheet" type="text/css" href="src/css/sponsors.css">
<!-- include the plain JS version -->
<script src="dist/app.js"></script>
<script src="https://js.linkz.ai/?key=61fa74aa56ad72006f4c0675"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ERWC9834CY"></script>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Poppins:ital,wght@0,400;0,600;0,700;0,800;0,900;1,500&display=swap"
rel="stylesheet" />
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-ERWC9834CY');
</script>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Allura&family=Dancing+Script:wght@400;500;600;700&family=Great+Vibes&family=Julius+Sans+One&family=Orbitron:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Audiowide&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Audiowide&display=swap" rel="stylesheet">
</head>
<body>
<div id="preloader">
<div class="Loader" data-text="Loading">
<span class="Loader__Circle"></span>
<span class="Loader__Circle"></span>
<span class="Loader__Circle"></span>
<span class="Loader__Circle"></span>
</div>
</div>
<div class="perspective">
<div class="container-menu">
<div class="outer-nav--return"></div>
<div id="viewport" class="l-viewport">
<div class="l-wrapper">
<header class="header">
<div class="header-child header-child-first">
<a class="header-child-text">
22nd - 24th APRIL 2022
</a>
</div>
<div class="header-child">
<a>
<div class="header--nav-toggle">
<a class="header-child-text">
<p>MENU</p>
</a>
</div>
<div class="header--nav-toggle">
<span></span>
</div>
</a>
</div>
</header>
<ul class="l-main-content main-content">
<li class="l-section section section--is-active">
<!-- <div class="app__content" style="transform:translateZ(0)">
<div class='time-wrapper'>
<div class='time-part-wrapper'>
<div class='time-part days tens'>
<div class='digit-wrapper'>
<span class='digit'>0</span>
<span class='digit'>9</span>
<span class='digit'>8</span>
<span class='digit'>7</span>
<span class='digit'>6</span>
<span class='digit'>5</span>
<span class='digit'>4</span>
<span class='digit'>3</span>
<span class='digit'>2</span>
<span class='digit'>1</span>
<span class='digit'>0</span>
</div>
</div>
<div class='time-part days ones'>
<div class='digit-wrapper'>
<span class='digit'>0</span>
<span class='digit'>9</span>
<span class='digit'>8</span>
<span class='digit'>7</span>
<span class='digit'>6</span>
<span class='digit'>5</span>
<span class='digit'>4</span>
<span class='digit'>3</span>
<span class='digit'>2</span>
<span class='digit'>1</span>
<span class='digit'>0</span>
</div>
</div>
</div>
<div class='time-part-wrapper'>
<div class='time-part minutes tens'>
<div class='digit-wrapper'>
<span class='digit'>0</span>
<span class='digit'>2</span>
<span class='digit'>1</span>
<span class='digit'>0</span>
</div>
</div>
<div class='time-part minutes ones'>
<div class='digit-wrapper'>
<span class='digit'>3</span>
<span class='digit'>2</span>
<span class='digit'>1</span>
<span class='digit'>0</span>
<span class='digit'>9</span>
<span class='digit'>8</span>
<span class='digit'>7</span>
<span class='digit'>6</span>
<span class='digit'>5</span>
<span class='digit'>4</span>
<span class='digit'>3</span>
<span class='digit'>2</span>
<span class='digit'>1</span>
<span class='digit'>0</span>
<span class='digit'>9</span>
<span class='digit'>8</span>
<span class='digit'>7</span>
<span class='digit'>6</span>
<span class='digit'>5</span>
<span class='digit'>4</span>
<span class='digit'>3</span>
<span class='digit'>2</span>
<span class='digit'>1</span>
<span class='digit'>0</span>
</div>
</div>
</div>
<div class='time-part-wrapper'>
<div class='time-part seconds tens'>
<div class='digit-wrapper'>
<span class='digit'>0</span>
<span class='digit'>5</span>
<span class='digit'>4</span>
<span class='digit'>3</span>
<span class='digit'>2</span>
<span class='digit'>1</span>
<span class='digit'>0</span>
</div>
</div>
<div class='time-part seconds ones'>
<div class='digit-wrapper'>
<span class='digit'>0</span>
<span class='digit'>9</span>
<span class='digit'>8</span>
<span class='digit'>7</span>
<span class='digit'>6</span>
<span class='digit'>5</span>
<span class='digit'>4</span>
<span class='digit'>3</span>
<span class='digit'>2</span>
<span class='digit'>1</span>
<span class='digit'>0</span>
</div>
</div>
</div>
<div class='time-part-wrapper'>
<div class='time-part hundredths tens'>
<div class='digit-wrapper'>
<span class='digit'>0</span>
<span class='digit'>5</span>
<span class='digit'>4</span>
<span class='digit'>3</span>
<span class='digit'>2</span>
<span class='digit'>1</span>
<span class='digit'>0</span>
</div>
</div>
<div class='time-part hundredths ones'>
<div class='digit-wrapper'>
<span class='digit'>0</span>
<span class='digit'>9</span>
<span class='digit'>8</span>
<span class='digit'>7</span>
<span class='digit'>6</span>
<span class='digit'>5</span>
<span class='digit'>4</span>
<span class='digit'>3</span>
<span class='digit'>2</span>
<span class='digit'>1</span>
<span class='digit'>0</span>
</div>
</div>
</div>
</div>
</div> -->
<!-- <div class="date-badge">
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 101 183.06">
<defs>
<style>
.cls-1,
.cls-3 {
fill: #000000;
}
.cls-1 {
stroke: #000000;
}
.cls-1,
.cls-4,
.cls-5 {
stroke-miterlimit: 10;
}
.cls-2 {
opacity: 0.6;
}
.cls-4,
.cls-5 {
fill: none;
}
.cls-4 {
stroke: #f1f2f2;
stroke-dasharray: 12;
}
.cls-5 {
stroke: #fff;
stroke-dasharray: 6;
}
.cls-6 {
font-size: 41px;
}
.cls-6,
.cls-7 {
fill: #f1f2f2;
font-family: BungeeInline-Regular, Bungee Inline;
}
.cls-7 {
font-size: 24px;
}
.cls-8 {
letter-spacing: -0.01em;
}
</style>
</defs>
<polygon class="cls-1" points="0.5 0.5 100.5 0.5 100.5 157.01 50.5 182.5 0.5 155.65 0.5 0.5" />
<g class="cls-2">
<polygon class="cls-3"
points="2.65 3.31 96.86 3.31 96.86 153.69 50.5 177.18 2.65 152.16 2.65 3.31" />
<polygon class="cls-4"
points="2.65 3.31 96.86 3.31 96.86 153.69 50.5 177.18 2.65 152.16 2.65 3.31" />
<polygon class="cls-5"
points="2.65 3.31 96.86 3.31 96.86 153.69 50.5 177.18 2.65 152.16 2.65 3.31" />
</g>
<image width="1861" height="1391" transform="translate(11.42 19.65) scale(0.04)"
xlink:href="src/img/equinox.png" /><text class="cls-6"
transform="translate(13.1 120.91)">8-9</text><text class="cls-7"
transform="translate(9.6 144.69)">Apri<tspan class="cls-8" x="66.24" y="0">l</tspan></text>
</svg>
</div> -->
<div class="cda-removeleft cda-naked cda-noimg demo-4">
<main>
<div class="content">
<div id="app"></div>
<div class="min-vh-100 d-flex flex-column w-100">
<div
class="content__title-wrap flex-grow-1 d-flex align-items-center justify-content-center">
<span class="">
<img class="logo" width="502px" height="400px"
src="https://ik.imagekit.io/instaclone/equinox/equinox_qBRsMd4uBxz.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643547338869" />
<!-- <h2 class="content__title">Equinox</h2> -->
</span>
</div>
<div class="d-flex justify-content-md-end justify-content-center p-3">
<div class="social-buttons">
<a href="https://www.instagram.com/equinoxiiitl/"
class="social-buttons__button social-button social-button--instagram"
aria-label="Instagram">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.linkedin.com/company/equinox-iiitl/"
class="social-buttons__button social-button social-button--linkedin"
aria-label="LinkedIn">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://discord.com/invite/PytHHH8yxN"
class="social-buttons__button social-button social-button--discord"
aria-label=Discord">
<i class="fab fa-discord"></i>
</a>
<a href="https://twitter.com/equinoxiiitl"
class="social-buttons__button social-button social-button--twitter"
aria-label="Twitter">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.facebook.com/equinox22"
class="social-buttons__button social-button social-button--facebook"
aria-label="Facebook">
<i class="fab fa-facebook"></i>
</a>
</div>
</div>
</div>
</div>
</main>
</div>
</li>
<li class="l-section section main-events" style="overflow: hidden;">
<div class="events-main-slideshow">
<section class="events-slideshow" id="js-header">
<div class="slideshow__slide js-slider-home-slide is-current" data-slide="1">
<div class="slideshow__slide-background-parallax background-absolute js-parallax"
data-speed="-1" data-position="top" data-target="#js-header">
<div class="slideshow__slide-background-load-wrap background-absolute">
<div class="slideshow__slide-background-load background-absolute">
<div class="slideshow__slide-background-wrap background-absolute">
<div class="slideshow__slide-background background-absolute">
<div
class="slideshow__slide-image-wrap background-absolute">
<div class="slideshow__slide-image background-absolute"
style="background-image: url(src/img/hof.png)">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="slideshow__slide-caption">
<div class="slideshow__slide-caption-text">
<div class="container js-parallax" data-speed="2" data-position="top"
data-target="#js-header"
style="display: flex; align-items: center; justify-content: center; flex-direction: column;">
<h1 class="slideshow__slide-caption-title">
</h1>
<h1 class="slideshow__slide-caption-title">
<img src="src/img/hof-logo.png" alt="" style="height: 15vh;">
</h1>
<button class="skew-button"><span><a href="https://hack.iiitl.ac.in"
target="_blank">JOIN
HERE</a></span></button>
<!-- <a class="slideshow__slide-caption-subtitle -load o-hsub -link"
href="#">
<span class="slideshow__slide-caption-subtitle-label">See
how</span>
</a> -->
</div>
</div>
</div>
</div>
<div class="slideshow__slide js-slider-home-slide is-next" data-slide="2">
<div class="slideshow__slide-background-parallax background-absolute js-parallax"
data-speed="-1" data-position="top" data-target="#js-header">
<div class="slideshow__slide-background-load-wrap background-absolute">
<div class="slideshow__slide-background-load background-absolute">
<div class="slideshow__slide-background-wrap background-absolute">
<div class="slideshow__slide-background background-absolute">
<div
class="slideshow__slide-image-wrap background-absolute">
<div class="slideshow__slide-image background-absolute"
style="background-image: url('src/img/tedx.png');">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="slideshow__slide-caption">
<div class="slideshow__slide-caption-text">
<div class="container js-parallax" data-speed="2" data-position="top"
data-target="#js-header">
<h1 class="slideshow__slide-caption-title">
<img src="src/img/TEDx B.png" alt="" style="height: 20vh;">
</h1>
<button class="skew-button"><span><a href="#" target="_blank">JOIN
HERE</a></span></button>
<!-- <a class="slideshow__slide-caption-subtitle -load o-hsub -link"
href="#">
<span class="slideshow__slide-caption-subtitle-label">Learn more
about</span>
</a> -->
</div>
</div>
</div>
</div>
<div class="slideshow__slide js-slider-home-slide is-prev" data-slide="3">
<div class="slideshow__slide-background-parallax background-absolute js-parallax"
data-speed="-1" data-position="top" data-target="#js-header">
<div class="slideshow__slide-background-load-wrap background-absolute">
<div class="slideshow__slide-background-load background-absolute">
<div class="slideshow__slide-background-wrap background-absolute">
<div class="slideshow__slide-background background-absolute">
<div
class="slideshow__slide-image-wrap background-absolute">
<div class="slideshow__slide-image background-absolute"
style="background-image: url('src/img/axelrod.png');">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="slideshow__slide-caption">
<div class="slideshow__slide-caption-text">
<div class="container js-parallax" data-speed="2" data-position="top"
data-target="#js-header"
style="display: flex; align-items: center; justify-content: center; flex-direction: column;">
<h1 class="slideshow__slide-caption-title">
<img src="src/img/axelrod-logo.png" alt=""
style="height: 25vh;">
</h1>
<button class="skew-button"><span><a
href="https://axelrodduels.iiitl.ac.in/"
target="_blank">JOIN
HERE</a></span></button>
</div>
</div>
</div>
</div>
<div class="slideshow__slide js-slider-home-slide is-prev" data-slide="4">
<div class="slideshow__slide-background-parallax background-absolute js-parallax"
data-speed="-1" data-position="top" data-target="#js-header">
<div class="slideshow__slide-background-load-wrap background-absolute">
<div class="slideshow__slide-background-load background-absolute">
<div class="slideshow__slide-background-wrap background-absolute">
<div class="slideshow__slide-background background-absolute">
<div
class="slideshow__slide-image-wrap background-absolute">
<div class="slideshow__slide-image background-absolute"
style="background-image: url('src/img/incognito.png');">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="slideshow__slide-caption">
<div class="slideshow__slide-caption-text">
<div class="container js-parallax" data-speed="2" data-position="top"
data-target="#js-header"
style="display: flex; align-items: center; justify-content: center; flex-direction: column; padding-top: 5vh;">
<h1 class="slideshow__slide-caption-title">
<img src="src/img/incognito-logo.png" alt=""
style="height: 20vh;">
</h1>
<button class="skew-button"><span><a href="https://ctf3.ninja"
target="_blank">JOIN
HERE</a></span></button>
<!-- <a class="slideshow__slide-caption-subtitle -load o-hsub -link"
href="#">
<span class="slideshow__slide-caption-subtitle-label">Everybody
needs</span>
</a> -->
</div>
</div>
</div>
</div>
<div class="slideshow__slide js-slider-home-slide is-prev" data-slide="5">
<div class="slideshow__slide-background-parallax background-absolute js-parallax"
data-speed="-1" data-position="top" data-target="#js-header">
<div class="slideshow__slide-background-load-wrap background-absolute">
<div class="slideshow__slide-background-load background-absolute">
<div class="slideshow__slide-background-wrap background-absolute">
<div class="slideshow__slide-background background-absolute">
<div
class="slideshow__slide-image-wrap background-absolute">
<div class="slideshow__slide-image background-absolute"
style="background-image: url('src/img/codechef.jpg');">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="slideshow__slide-caption">
<div class="slideshow__slide-caption-text">
<div class="container js-parallax" data-speed="2" data-position="top"
data-target="#js-header">
<h1 class="slideshow__slide-caption-title">
<img src="src/img/dic.png" alt="" style="height: 15vh;">
</h1>
<!-- <a class="slideshow__slide-caption-subtitle -load o-hsub -link"
href="#">
<span class="slideshow__slide-caption-subtitle-label">Everybody
needs</span>
</a> -->
</div>
</div>
</div>
</div>
<div class="c-header-home_footer">
<div class="o-container">
<div class="c-header-home_controls -nomobile o-button-group">
<div class="js-parallax is-inview" data-speed="1" data-position="top"
data-target="#js-header">
<button
class="o-button -white -square -left js-slider-home-button js-slider-home-prev"
type="button">
<span class="o-button_label">
<svg class="o-button_icon" role="img">
<use xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="#arrow-prev"></use>
</svg>
</span>
</button>
<button
class="o-button -white -square js-slider-home-button js-slider-home-next"
type="button">
<span class="o-button_label">
<svg class="o-button_icon" role="img">
<use xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="#arrow-next"></use>
</svg>
</span>
</button>
</div>
</div>
</div>
</div>
</section>
</div>
<svg xmlns="http://www.w3.org/2000/svg">
<symbol viewBox="0 0 18 18" id="arrow-next">
<path id="arrow-next-arrow.svg"
d="M12.6,9L4,17.3L4.7,18l8.5-8.3l0,0L14,9l0,0l-0.7-0.7l0,0L4.7,0L4,0.7L12.6,9z" />
</symbol>
<symbol viewBox="0 0 18 18" id="arrow-prev">
<path id="arrow-prev-arrow.svg"
d="M14,0.7L13.3,0L4.7,8.3l0,0L4,9l0,0l0.7,0.7l0,0l8.5,8.3l0.7-0.7L5.4,9L14,0.7z" />
</symbol>
</svg>
</li>
<li class="l-section section" style="display: block!important;">
<section class="main-section">
<section class="grid-events">
<span class="title title--medium">Codebyte</span>
<figure>
<img src="src/img/codebyte.png"
alt="">
<a href="https://assessment.hackerearth.com/challenges/college/indian-institute-of-information-technologylucknow-test-draft-2-6/" target="_blank" rel="noopener noreferrer">
<figcaption>Register</figcaption>
</a>
</figure>
</section>
<section class="big-text">
<p>CodeByte, where programmers of all levels put
their skills to the test. Competitors work their
way through a series of online algorithmic
puzzles, but with a twist.</p>
</section>
<!-- <section class="grid-events">
<span class="title title--medium">Dream in Code</span>
<figure>
<img src="https://ik.imagekit.io/instaclone/equinox/rear_76R3tIRFk.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643549829968"
alt="">
<a href="" target="_blank" rel="noopener noreferrer">
<figcaption>Register</figcaption>
</a>
</figure>
</section>
<section class="big-text">
<p>Dream-in-Code, a global coding competition, where
programmers of all levels put their skills to
the test. Competitors work their way through a
series of online algorithmic puzzles to earn a
spot at the finals, all for a chance to win the
championship title and take a grand prize
home.It is based on ACM style rounds that
continue for 3 hours unless the information
about the round states other duration time. </p>
</section> -->
<!-- <section class="grid-events">
<span class="title title--medium">Incognito V3.0</span>
<figure>
<img src="https://ik.imagekit.io/instaclone/equinox/icognito_VLy16ChAakD.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643549968735"
alt="">
<a href="" target="_blank" rel="noopener noreferrer">
<figcaption>Register</figcaption>
</a>
</figure>
</section>
<section class="big-text">
<p>"Computers are good at following instructions,
but not at keeping your secrets." The flagship
CTF event, an international contest that gathers
more than 300 teams from all around the globe.
Your skills will be pushed to the limits by
advanced real life cyber-attack scenarios
prepared by Equinox cybersecurity experts. So
get ready to capture the flags and rise to the
top.</p>
</section> -->
<section class="grid-events">
<span class="title title--medium">CODUO</span>
<figure>
<img src="https://ik.imagekit.io/instaclone/equinox/max_mhegKNE_1.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643550259005"
alt="">
<a href="" target="_blank" rel="noopener noreferrer">
<figcaption>Register</figcaption>
</a>
</figure>
</section>
<section class="big-text">
<p>Here, you have to participate with either your
coding partner or alone to solve some
algorithmic problems full of logic building and
other maths mastering puzzles. Coduo will take
place in two steps, one is prelims to be held on
“Codechef”, and second one is finals on a
platform known as “Hackerearth”. This
competition is focused on testing your problem
solving, logical thinking and coding skills.</p>
</section>
<section class="grid-events">
<span class="title title--medium">Foss Weekend</span>
<figure>
<img src="https://ik.imagekit.io/instaclone/equinox-events/ezgif-1-ed07b24cbd_YFdrhSgJq.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1647680277182"
alt="">
<a href="https://github.com/Equinox-IIIT-Lucknow/FOSS-Weekend" target="_blank"
rel="noopener noreferrer">
<figcaption>Register</figcaption>
</a>
</figure>
</section>
<section class="big-text">
<p>A 3 day long event FOSS Weekend presented by GitHub and Axios, where you will get
the opportunity to handle issues related to the technology that interests you.
This event will be a great chance for growing developers of 1st year to practice
and brush up their skills in git, which is a very essential part of their
learning journey.</p>
</section>
<section class="grid-events">
<span class="title title--medium">Valonox</span>
<figure>
<img src="https://ik.imagekit.io/instaclone/equinox-events/valonax_1-min_evkESj7va.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1647518482580"
alt="">
<a href="https://forms.gle/4hCU4uNPFptmpsmF6" target="_blank"
rel="noopener noreferrer">
<figcaption>Register</figcaption>
</a>
</figure>
</section>
<section class="big-text">
<p>We present to you the second edition of Valonox, a Valorant tournament that’ll
take place from 21st of March.
All the gamers out there, tie your shoelaces and pull up your socks, "New fight,
new tactics, keep it fresh yeah?"
Registrations open for teams as well as individuals.</p>
</section>
<section class="grid-events">
<span class="title title--medium">Hello World</span>
<figure>
<img src="https://ik.imagekit.io/instaclone/equinox-events/hello_world-min_kGlg9Dxgo.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1647518443529"
alt="">
<a href="https://forms.gle/cpfNd4i1pNNa5u6t6" target="_blank"
rel="noopener noreferrer">
<figcaption>Register</figcaption>
</a>
</figure>
</section>
<section class="big-text">
<p>The event "HelloWorld" in which you will have to write a program to print "Hello
World" and create a pull request to submit it in our GitHub Repository!
Seems pretty easy, right!?
But there's a catch - the participant whose code will be the most INEFFICIENT is
going to win!
You can use any language/tool you want as long as it can output "HelloWorld" in
the terminal.</p>
</section>
<section class="grid-events">
<span class="title title--medium">Code Arena</span>
<figure>
<img src="src/img/codearena.png"
alt="">
<a href="https://www.youtube.com/c/EquinoxIIITLucknow" target="_blank"
rel="noopener noreferrer">
<figcaption>Register</figcaption>
</a>
</figure>
</section>
<section class="big-text">
<p>Equinox'22 is unfolding another event from its
list of events, " CodeArena '', a coding
tournament to garner all the coders at a single
place.</p>
</section>
<section class="grid-events">
<span class="title title--medium">Fresher's Cup</span>
<figure>
<img src="src/img/freshers-cup.png"
alt="">
<a href="https://www.youtube.com/c/EquinoxIIITLucknow" target="_blank"
rel="noopener noreferrer">
<figcaption>Register</figcaption>
</a>
</figure>
</section>
<section class="big-text">
<p>This event is being conducting exclusively for
the freshers here at IIIT Lucknow and it’ll be
hosted in two rounds, Prelims and Finals.
We hope you’re as excited as we are and we hope
to see all of you freshers there, ready to
eat,code, sleep and repeat.</p>
</section>
<section class="grid-events">
<span class="title title--medium">IIITL Cup</span>
<figure>
<img src="src/img/iiitl-cup.png"
alt="">
<a href="https://www.youtube.com/c/EquinoxIIITLucknow" target="_blank"
rel="noopener noreferrer">
<figcaption>Register</figcaption>
</a>
</figure>
</section>
<section class="big-text">
<p>As the name suggests, IIITL cup is meant solely
for the students of our college, irrespective of
batch. It’ll be a fierce competition between all
the batches and we hope to see participation in
heaps.
We hope to amass the whole crowd of the college
and let them show off their skills, as the name
of the winner will go down in IIITL history.</p>
</section>
</section>
<div class="mainEvents" id="mainEvents">
<div class="eventsHover">
<div class="eventsHover-1">
</div>
<div class="eventsHover-2">
</div>
</div>
<main class="eventsContent">
<h1 class="page-title | title" style="user-select: none;">Equinox <span
class="slideshow__title__offset | title__offset">Events</span></h1>
<section class="content | scrollarea-ctn">
<div class="scrollarea | slideshow">
<ul class="slideshow-list">
<!-- <li class="slideshow-list__el">
<article class="tile | js-tile">
<a href="#">
<figure class="tile__fig">
<img src="https://ik.imagekit.io/instaclone/equinox/hackathon_wMKb8kELm.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643549520014"
data-hover="https://ik.imagekit.io/instaclone/equinox/hackathon-1_UpjhVkTmjhh.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643549548283"
alt="Woods & Forests" class="tile__img">
</figure>
<div class="tile__content">
<h2 class="tile__title | title title--medium "> <span
class="title__offset title__offset--medium">HackoFiesta</span>
</h2>
<div class="tile__cta">
<span class="btn-inline">See more</span>
</div>
<div class="tile__desc">
<p class="title__info">HackOFiesta v3.0 will be the
third hackathon hosted by the IIIT Lucknow
presented to you by Equinox'22. This event will
witness 36 hours of intense hacking which will
culminate with hackers coming up with innovative
projects to solve real-life problems. This time
we are more excited than ever to execute our
hackathon from 8th April - 10th April 2022.
The HackOFiesta will witness a collaboration
between 1-5 bright minded and intellectual
hackers aiming to design, build and present the
most innovative solution to a problem.
</p>
</div>
<div class="tile__link">
https://hack.iiitl.ac.in/
</div>
</div>
</a>
</article>
</li> -->
<li class="slideshow-list__el">
<article class="tile | js-tile">
<a href="#">
<figure class="tile__fig">
<img src="https://ik.imagekit.io/instaclone/equinox/rear_76R3tIRFk.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643549829968"
data-hover="src/img/codebyte.png"
alt="Rocks & Mountains" class="tile__img">
</figure>
<div class="tile__content">
<h2 class="tile__title | title title--medium ">
<span
class="title__offset title__offset--medium">Codebyte</span>
</h2>
<div class="tile__cta">
<span class="btn-inline">See more</span>
</div>
<div class="tile__desc">
<p>CodeByte, where programmers of all levels put
their skills to the test. Competitors work their
way through a series of online algorithmic
puzzles, but with a twist. </p>
</div>
<div class="tile__link">
https://assessment.hackerearth.com/challenges/college/indian-institute-of-information-technologylucknow-test-draft-2-6/
</div>
</div>
</a>
</article>
</li>
<!-- <li class="slideshow-list__el">
<article class="tile | js-tile">
<a href="#">
<figure class="tile__fig">
<img src="https://ik.imagekit.io/instaclone/equinox/cyber_8fREeLZMux2.webp?ik-sdk-version=javascript-1.4.3&updatedAt=164354995889"
data-hover="https://ik.imagekit.io/instaclone/equinox/icognito_VLy16ChAakD.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643549968735"
alt="Rocks & Mountains" class="tile__img">
</figure>
<div class="tile__content">
<h2 class="tile__title | title title--medium ">
<span
class="title__offset title__offset--medium">Incognito
V3.0</span>
</h2>
<div class="tile__cta">
<span class="btn-inline">See more</span>
</div>
<div class="tile__desc">
<p>"Computers are good at following instructions,
but not at keeping your secrets." The flagship
CTF event, an international contest that gathers
more than 300 teams from all around the globe.
Your skills will be pushed to the limits by
advanced real life cyber-attack scenarios
prepared by Equinox cybersecurity experts. So
get ready to capture the flags and rise to the
top.</p>
</div>
<div class="tile__link">
</div>
</div>
</a>
</article>
</li> -->
<li class="slideshow-list__el">
<article class="tile | js-tile">
<a href="#">
<figure class="tile__fig">
<img src="https://ik.imagekit.io/instaclone/equinox/max_mhegKNE_1.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643550259005"
data-hover="https://ik.imagekit.io/instaclone/equinox/self_q6mEg5zp4S_.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643550213161"
alt="Rocks & Mountains" class="tile__img">
</figure>
<div class="tile__content">
<h2 class="tile__title | title title--medium ">
<span
class="title__offset title__offset--medium">CODUO</span>
</h2>
<div class="tile__cta">
<span class="btn-inline">See more</span>
</div>
<div class="tile__desc">
<p>Here, you have to participate with either your
coding partner or alone to solve some
algorithmic problems full of logic building and
other maths mastering puzzles. Coduo will take
place in two steps, one is prelims to be held on
“Codechef”, and second one is finals on a
platform known as “Hackerearth”. This
competition is focused on testing your problem
solving, logical thinking and coding skills.</p>
</div>
<div class="tile__link">
</div>
</div>
</a>
</article>
</li>
<li class="slideshow-list__el">
<article class="tile | js-tile">
<a href="#">
<figure class="tile__fig">
<img src="https://ik.imagekit.io/instaclone/equinox/app_d3XgWpVUZ.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1643550212675"
data-hover="https://ik.imagekit.io/instaclone/equinox-events/ezgif-1-ed07b24cbd_YFdrhSgJq.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1647680277182"
alt="Rocks & Mountains" class="tile__img">
</figure>
<div class="tile__content">
<h2 class="tile__title | title title--medium ">
<span
class="title__offset title__offset--medium">Foss
Weekend</span>
</h2>
<div class="tile__cta">
<span class="btn-inline">See more</span>
</div>
<div class="tile__desc">
<p>A 3 day long event FOSS Weekend presented by
GitHub and Axios, where you will get the
opportunity to handle issues related to the
technology that interests you. This event will
be a great chance for growing developers of 1st
year to practice and brush up their skills in
git, which is a very essential part of their
learning journey. </p>
</div>
<div class="tile__link">
https://github.com/Equinox-IIIT-Lucknow/FOSS-Weekend
</div>
</div>
</a>
</article>
</li>
<li class="slideshow-list__el">
<article class="tile | js-tile">
<a href="#">
<figure class="tile__fig">
<img src="src/img/gaming.jpg"
data-hover="https://ik.imagekit.io/instaclone/equinox-events/valonax_1-min_evkESj7va.webp?ik-sdk-version=javascript-1.4.3&updatedAt=1647518482580"
alt="Rocks & Mountains" class="tile__img">
</figure>
<div class="tile__content">
<h2 class="tile__title | title title--medium ">
<span
class="title__offset title__offset--medium">Valonox</span>
</h2>