-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1841 lines (1828 loc) · 64.6 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>
<!-- This site was created in Webflow. https://www.webflow.com -->
<!-- Last Published: Wed Dec 14 2022 14:47:43 GMT+0000 (Coordinated Universal Time) -->
<html
data-wf-page="637bcccebab43b485c8d55e1"
data-wf-site="637bcccebab43bac1a8d55de"
>
<head>
<meta charset="utf-8" />
<title>Ethos - Northeast India's Largest Hackathon</title>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="Webflow" name="generator" />
<link href="css/normalize.css" rel="stylesheet" type="text/css" />
<link href="css/webflow.css" rel="stylesheet" type="text/css" />
<link
href="css/spiritofethos.webflow.css"
rel="stylesheet"
type="text/css"
/>
<!-- [if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" type="text/javascript"></script><![endif] -->
<script type="text/javascript">
!(function (o, c) {
var n = c.documentElement,
t = " w-mod-";
(n.className += t + "js"),
("ontouchstart" in o ||
(o.DocumentTouch && c instanceof DocumentTouch)) &&
(n.className += t + "touch");
})(window, document);
</script>
<link href="images/favicon.ico?v=2" rel="shortcut icon" type="image/x-icon" />
<link rel="icon" type="image/x-icon" href="/images/favicon.ico?v=2" />
<link href="images/webclip.png" rel="apple-touch-icon" />
</head>
<body data-w-id="637bcccebab43bef118d55e2" class="body">
<div class="effectwrap">
<div class="embed w-embed">
<div class="cursor cursor--small"></div>
<div class="cursor cursor--big"></div>
</div>
<img src="placeholder.svg" loading="lazy" alt="" />
<div class="effect">
<img
src="images/effectmask.png"
loading="lazy"
data-w-id="fd183d6a-3e51-b88d-4ad4-003cfd6cda35"
sizes="100vw"
srcset="images/effectmask-p-500.png 500w, images/effectmask.png 708w"
alt=""
class="effectimg"
/>
</div>
</div>
<div class="clickholdwrap">
<div class="paragraph is--centeraligned is--white">
CLICK AND<br />HOLD
</div>
</div>
<div class="section nav wf-section">
<div class="container nav w-container">
<div class="logo_wrap">
<img
src="images/logo.svg"
loading="lazy"
alt=""
class="placeholder"
/>
</div>
<div class="cta_wrap">
<!-- <div data-w-id="104fb196-3d59-ac11-4577-01c9bf376358" class="secondary_button">
<div class="primary_button_inner">
<div class="paragraph_button">Register</div>
<div class="paragraph_button">Register</div>
</div>
</div> -->
<div class="devfolio-navbar-wrapper">
<div
class="apply-button"
data-hackathon-slug="ethosiitg"
data-button-theme="dark-inverted"
style="height: 44px; width: 312px"
></div>
</div>
<div
data-w-id="450481e2-c94c-4612-dc50-f4b4a7e3add6"
class="secondary_button"
>
<div class="primary_button_inner">
<a href="https://bit.ly/3YGMyDK" target="_blank">
<div class="paragraph_button">View Problem Statements</div>
<div class="paragraph_button">View Problem Statements</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="section hero wf-section" id="tracks">
<div class="container is--fullheight w-container">
<div class="hero_block">
<div class="hero_title_wrap">
<div class="heading_line_wrap">
<h1 class="heading">Be a part of North East's</h1>
</div>
<div class="heading_line_wrap">
<h1 class="heading">Largest Hackathon.</h1>
<div class="heroparawrap">
<div class="paragraph">
Whether you're writing your first line of code, playing
around with APIs, or building the next blockchain, Ethos is
the place for you. We'll see you soon, this January,
right here at IIT Guwahati.
</div>
</div>
</div>
</div>
<div class="hero_buttons_wrap">
<!-- <div data-w-id="25855f37-c6f6-e42b-156e-7b3aa507f5c3" class="primary_button">
<div class="primary_button_inner">
<div class="paragraph_button is--white">Register</div>
<div class="paragraph_button is--white">Register</div>
</div>
</div> -->
<div
class="apply-button"
data-hackathon-slug="ethosiitg"
data-button-theme="dark"
style="height: 44px; width: 312px"
></div>
<!-- <a href="https://bit.ly/3YGMyDK" target="_blank" \>
<div class="primary_button_inner">
<div class="paragraph_button is--white">View PS</div>
<div class="paragraph_button is--white">View PS</div>
</div></a
> -->
</div>
</div>
<div class="hero_img_wrap">
<img
src="images/newelts_nonfilled.png"
loading="lazy"
sizes="100vw"
srcset="
images/newelts_nonfilled.png 500w,
images/newelts_nonfilled.png 800w,
images/newelts_nonfilled.png 1080w,
images/newelts_nonfilled.png 1600w
"
alt=""
class="placeholder"
/>
</div>
<div class="bg_grid_wrap"></div>
</div>
</div>
<div class="section tracks">
<div class="tracks_img_wrap">
<div class="tracks_img_inner">
<img
src="images/newelts_filled.png"
loading="lazy"
sizes="100vw"
srcset="
images/newelts_filled.png 500w,
images/newelts_filled.png 800w,
images/newelts_filled.png 1080w,
images/newelts_filled.png 1600w
"
alt=""
class="placeholder"
/>
</div>
</div>
<div class="tracks_content">
<div class="tracks_title_wrap">
<div class="heading_line_wrap">
<h1 class="heading">Tracks</h1>
</div>
<div class="tracks_desc_wrap">
<div class="paragraph2">
Click the button below to view all the problem statements.
</div>
<!-- <div class="paragraph">We have something for everyone; maybe you wish to be the pioneers in the new web3 technologies, or maybe you like some good old-fashioned software development; we have something for all; with commercial and government problem statements, you are sure to find something to pour your passion into.</div> -->
</div>
<div
data-w-id="104fb196-3d59-ac11-4577-01c9bf376358"
class="primary_button"
>
<a href="https://bit.ly/3YGMyDK" target="_blank">
<div class="primary_button_inner">
<div class="paragraph_button is--white">View Problem Statements</div>
<div class="paragraph_button is--white">View Problem Statements</div>
</div>
</a>
</div>
</div>
<div class="tracks_card_wrap">
<a href="https://bit.ly/3YGMyDK" target="_blank">
<div
data-w-id="17e4a53a-df9d-b025-9ecc-3ab95d7c9345"
class="tracks_card_outer"
>
<div class="tracks_card_inner">
<div class="headingthree">Machine Learning</div>
<div class="tracks_card_tagwrap">
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">Computer Vision</div>
<div class="paragraph">Tag text</div>
</div>
</div>
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">Info Retrieval</div>
<div class="paragraph">Tag text</div>
</div>
</div>
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">Face Identification</div>
<div class="paragraph">Tag text</div>
</div>
</div>
</div>
</div>
<div class="tracks_card_mask">
<div class="tracks_card_hover">
<div class="tracks_card_img"><img src="images/ml.svg" /></div>
<div class="tracks_card_gradient"></div>
<div class="tracks_card_mask_content">
<div class="headingthree is--white">Machine Learning</div>
<div class="paragraph is--white">
Use the power of the latest machine learning algorithms to
tackle crucial tasks given by Assam State Police
Department, that will power the technology to fight crime
in the state.
</div>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="tracks_card_wrap">
<a href="https://bit.ly/3YGMyDK" target="_blank">
<div
data-w-id="f34c9d94-fe0d-1042-2772-3276f4476f4e"
class="tracks_card_outer"
>
<div class="tracks_card_inner">
<div class="headingthree">Cybersecurity</div>
<div class="tracks_card_tagwrap">
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">CTF</div>
<div class="paragraph">Tag text</div>
</div>
</div>
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">Pen-testing</div>
<div class="paragraph">Tag text</div>
</div>
</div>
</div>
</div>
<div class="tracks_card_mask">
<div class="tracks_card_hover">
<div class="tracks_card_img">
<img src="images/cybersec.svg" />
</div>
<div class="tracks_card_gradient"></div>
<div class="tracks_card_mask_content">
<div class="headingthree is--white">Cybersecurity</div>
<div class="paragraph is--white">
Learn the art of hacking and defend against it by
participating in competitions ideated by Saptang Labs.
</div>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="tracks_card_wrap">
<a href="https://bit.ly/3YGMyDK" target="_blank">
<div
data-w-id="8bca0ef6-1c85-8954-05ac-985774c97f68"
class="tracks_card_outer"
>
<div class="tracks_card_inner">
<div class="headingthree">Development</div>
<div class="tracks_card_tagwrap">
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">App Dev</div>
<div class="paragraph">Tag text</div>
</div>
</div>
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">Web Dev</div>
<div class="paragraph">Tag text</div>
</div>
</div>
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">Full-stack</div>
<div class="paragraph">Tag text</div>
</div>
</div>
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">APIs</div>
<div class="paragraph">Tag text</div>
</div>
</div>
</div>
</div>
<div class="tracks_card_mask">
<div class="tracks_card_hover">
<div class="tracks_card_img">
<img src="images/dev.svg" />
</div>
<div class="tracks_card_gradient"></div>
<div class="tracks_card_mask_content">
<div class="headingthree is--white">Development</div>
<div class="paragraph is--white">
Develop full-stack applications or use APIs by our
partners to tackle real world problems.
</div>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="tracks_card_wrap">
<a href="https://bit.ly/3YGMyDK" target="_blank">
<div
data-w-id="6f0fb27b-5571-8b9e-13c1-e8e2092a366e"
class="tracks_card_outer"
>
<div class="tracks_card_inner">
<div
data-w-id="b697d26f-dc83-1845-3b7a-71901c0abf2f"
class="headingthree"
>
Blockchain
</div>
<div class="tracks_card_tagwrap">
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">Web 3</div>
<div class="paragraph">Tag text</div>
</div>
</div>
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">Ethereum</div>
<div class="paragraph">Tag text</div>
</div>
</div>
<div class="tag_outer">
<div class="tag_inner">
<div class="paragraph">Solana</div>
<div class="paragraph">Tag text</div>
</div>
</div>
</div>
</div>
<div class="tracks_card_mask">
<div class="tracks_card_hover">
<div class="tracks_card_img">
<img src="images/blockchain.png" />
</div>
<div class="tracks_card_gradient"></div>
<div class="tracks_card_mask_content">
<div class="headingthree is--white">Blockchain</div>
<div class="paragraph is--white">
Cutting edge problem statements in the field of blockchain
and web3 technologies
</div>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
<div
data-w-id="63d9e7b5-c399-99ca-28eb-d44d96c73616"
class="interaction_helper"
>
<div class="mobile_img_wrap">
<div class="tracks_img_inner">
<img
src="images/mobilehero.png"
loading="lazy"
sizes="100vw"
srcset="
images/mobilehero.png 500w,
images/mobilehero.png 800w,
images/mobilehero.png 1080w,
images/mobilehero.png 1600w
"
alt=""
class="placeholder"
/>
</div>
</div>
</div>
<div id="about" class="section spirit wf-section">
<div class="spirit_content">
<div class="spirit_card_wrap">
<div class="spirit_title_wrap">
<div class="heading_line_wrap">
<h1 class="heading">The spirit</h1>
</div>
<div class="heading_line_wrap">
<div class="spacer _4"></div>
<h1 class="heading">— of ethos.</h1>
</div>
</div>
</div>
<div
data-w-id="505290bc-d05b-3348-da8b-935267a666eb"
class="spirit_card_wrap"
>
<div class="heading_two_wrap">
<h2 class="heading_two">Build</h2>
<h2 class="heading_two">Build</h2>
</div>
<div class="spirit_card_para_wrap">
<div class="paragraph">
Write code, build websites, and create apps. This will be your
chance to convert your ideas to reality.
</div>
</div>
<div class="spirit_image_wrap">
<img
src="images/build-min.JPG"
loading="lazy"
sizes="(max-width: 479px) 35vw, 14vw"
srcset="
images/build-min.JPG 500w,
images/build-min.JPG 800w,
images/build-min.JPG 1080w,
images/build-min.JPG 1600w,
images/build-min.JPG 2000w,
images/build-min.JPG 2600w,
images/build-min.JPG 3200w
"
alt=""
class="placeholder"
/>
</div>
</div>
<div
data-w-id="1bbb9483-15de-a1e5-1eba-eac849f78dda"
class="spirit_card_wrap"
>
<div class="heading_two_wrap">
<h2 class="heading_two">Connect</h2>
<h2 class="heading_two">Connect</h2>
</div>
<div class="spirit_card_para_wrap">
<div class="paragraph">
Get an opportunity to connect and interact with the smartest minds
across the country, and to meet industry leaders across a
multitude of domains and expertise.
</div>
</div>
<div class="spirit_image_wrap">
<img
src="images/isro.jpg"
loading="lazy"
sizes="(max-width: 479px) 35vw, 14vw"
srcset="
images/isro.jpg 500w,
images/isro.jpg 800w,
images/isro.jpg 1080w,
images/isro.jpg 1600w,
images/isro.jpg 2000w,
images/isro.jpg 2600w,
images/isro.jpg 3200w
"
alt=""
class="placeholder"
/>
</div>
</div>
<div
data-w-id="74c6e56f-0189-08f4-f46e-2b34a103c1cc"
class="spirit_card_wrap"
>
<div class="heading_two_wrap">
<h2 class="heading_two">Believe</h2>
<h2 class="heading_two">Believe</h2>
</div>
<div class="spirit_card_para_wrap">
<div class="paragraph">
Anything is possible if there is a strong belief. Ethos will serve
as the platform you need to showcase your talent and ideas to the
world.
</div>
</div>
<div class="spirit_image_wrap">
<img
src="images/believe-min.JPG"
loading="lazy"
sizes="(max-width: 479px) 35vw, 14vw"
srcset="
images/believe-min.JPG 500w,
images/believe-min.JPG 800w,
images/believe-min.JPG 1080w,
images/believe-min.JPG 1600w,
images/believe-min.JPG 2000w,
images/believe-min.JPG 2600w,
images/believe-min.JPG 3200w
"
alt=""
class="placeholder"
/>
</div>
</div>
</div>
</div>
<div class="section featured wf-section">
<div class="feature_content_wrap">
<div
data-w-id="5f08fa18-5f4f-a1a9-efb4-1761bce43952"
class="feature_card_wrap"
>
<div class="feature_card_imgwrap">
<img
src="images/showdown-min.JPG"
loading="lazy"
sizes="(max-width: 479px) 79vw, 32vw"
srcset="
images/showdown-min.JPG 500w,
images/showdown-min.JPG 800w,
images/showdown-min.JPG 1080w,
images/showdown-min.JPG 1600w,
images/showdown-min.JPG 2000w,
images/showdown-min.JPG 2600w,
images/showdown-min.JPG 3200w
"
alt=""
class="placeholder"
/>
</div>
<div class="feature_card_content">
<div class="heading_three_wrap">
<div class="headingthree">Intense 48-hour showdown</div>
</div>
<div class="feature_card_para_wrap">
<div class="paragraph">
With problems from Assam police, you will get a chance to solve
genuine issues faced in the North East. On 7th January, 25 teams
from all over India will compete in an offline hackathon for an
intense 48 hours.
</div>
</div>
<div class="feature_card_shadow"></div>
</div>
</div>
<div
data-w-id="45d50188-399b-05f6-9841-fb0d104b17a3"
class="feature_card_wrap"
>
<div class="feature_card_imgwrap">
<img
src="images/teams.JPG"
loading="lazy"
width="3000"
sizes="(max-width: 479px) 79vw, 32vw"
srcset="
images/teams.JPG 500w,
images/teams.JPG 800w,
images/teams.JPG 1080w,
images/teams.JPG 1600w,
images/teams.JPG 2000w,
images/teams.JPG 2600w,
images/teams.JPG 3200w
"
alt=""
class="placeholder"
/>
</div>
<div class="feature_card_content">
<div class="heading_three_wrap">
<div class="headingthree">Teams from all over India</div>
</div>
<div class="feature_card_para_wrap">
<div class="paragraph">
Compete against talent from different parts of the nation, and
learn from the unique blend of diversity and unity.
</div>
</div>
<div class="feature_card_shadow"></div>
</div>
</div>
<div
data-w-id="36b97d9a-aca0-d81d-71b0-666d73ccccc8"
class="feature_card_wrap"
>
<div class="feature_card_imgwrap">
<img
src="images/iitg.jpg"
loading="lazy"
sizes="(max-width: 479px) 79vw, 32vw"
srcset="images/iitg.jpg 500w"
alt=""
class="placeholder"
/>
</div>
<div class="feature_card_content">
<div class="heading_three_wrap">
<div class="headingthree">Chance to visit IIT Guwahati</div>
</div>
<div class="feature_card_para_wrap">
<div class="paragraph">
Experience the beautiful campus of IIT Guwahati and all it has
to offer, build connections and attend talks here on the campus.
</div>
</div>
<div class="feature_card_shadow"></div>
</div>
</div>
</div>
</div>
<div class="section showoff wf-section">
<div class="showoff_wrap">
<div class="showoff_images">
<div class="showoff_imgwrap one">
<img
src="images/contri-back.jpg"
loading="lazy"
sizes="(max-width: 479px) 70vw, 24vw"
srcset="
images/contri-back.jpg 500w,
images/contri-back.jpg 800w,
images/contri-back.jpg 1080w,
images/contri-back.jpg 1600w,
images/contri-back.jpg 2000w,
images/contri-back.jpg 2600w,
images/contri-back.jpg 3200w
"
alt=""
class="placeholder"
/>
</div>
<div class="showoff_imgwrap two">
<img
src="images/contribution_showoff.jpg"
loading="lazy"
sizes="(max-width: 479px) 70vw, 24vw"
srcset="
images/contribution_showoff.jpg 500w,
images/contribution_showoff.jpg 800w,
images/contribution_showoff.jpg 1080w,
images/contribution_showoff.jpg 1600w,
images/contribution_showoff.jpg 2000w,
images/contribution_showoff.jpg 2600w,
images/contribution_showoff.jpg 3200w
"
alt=""
class="placeholder"
/>
</div>
</div>
<div class="showoff_content">
<div class="showoff_title_wrap">
<div class="heading_line_wrap">
<h1 class="heading">Contribution and Showing off</h1>
</div>
<div class="heading_line_wrap">
<h1 class="heading">don't have to be different.</h1>
</div>
</div>
<div class="showoff_desc_wrap">
<div class="showoff_badges_wrap">
<div class="showoff_badges_overlay"></div>
<div class="showoff_badges_inner">
<div class="showoff_badge">
<img
src="https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg"
loading="lazy"
alt=""
/>
</div>
<div class="showoff_badge">
<img
src="https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg"
loading="lazy"
alt=""
/>
</div>
<div class="showoff_badge">
<img
src="https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg"
loading="lazy"
alt=""
/>
</div>
<div class="showoff_badge">
<img
src="https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg"
loading="lazy"
alt=""
/>
</div>
<div class="showoff_badge">
<img
src="https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg"
loading="lazy"
alt=""
/>
</div>
</div>
<div class="showoff_badges_inner">
<div class="showoff_badge">
<img
src="https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg"
loading="lazy"
alt=""
/>
</div>
<div class="showoff_badge">
<img
src="https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg"
loading="lazy"
alt=""
/>
</div>
<div class="showoff_badge">
<img
src="https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg"
loading="lazy"
alt=""
/>
</div>
<div class="showoff_badge">
<img
src="https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg"
loading="lazy"
alt=""
/>
</div>
<div class="showoff_badge">
<img
src="https://d3e54v103j8qbb.cloudfront.net/plugins/Basic/assets/placeholder.60f9b1840c.svg"
loading="lazy"
alt=""
/>
</div>
</div>
</div>
<div class="showoff_para_wrap">
<div class="paragraph">
Along with the competition, at IIT Guwahati, you will get to
explore the beautiful campus, connect with people from all over
India, and attend talks by industry leaders.
</div>
</div>
</div>
<div class="showoff_cta_wrap">
<!-- <div data-w-id="e5343ca6-3ea1-f550-c573-06d848463456" class="primary_button">
<div class="primary_button_inner">
<div class="paragraph_button is--white">Register</div>
<div class="paragraph_button is--white">Register</div>
</div>
</div> -->
<div
class="apply-button"
data-hackathon-slug="ethosiitg"
data-button-theme="dark"
style="height: 44px; width: 312px"
></div>
</div>
</div>
</div>
</div>
<div class="section companies wf-section" id="sponsors">
<div class="companies_wrap">
<div class="companies_title_wrap">
<h1 class="heading_two">Sponsors and Partners</h1>
</div>
<div class="companies_outer_wrap">
<div class="companies_logo_outer">
<img
src="images/saptang.png"
loading="lazy"
alt=""
class="placeholder logo associate-sponsor"
/>
</div>
<div class="companies_logo_outer">
<img
src="images/assam_police.png"
loading="lazy"
alt=""
class="placeholder logo associate-sponsor"
/>
</div>
</div>
<div class="companies_outer_wrap">
<div class="companies_logo_outer">
<img
src="images/devfolio.svg"
loading="lazy"
alt=""
class="placeholder logo sponsor"
/>
</div>
<div class="companies_logo_outer">
<img
src="images/polygon.svg"
loading="lazy"
alt=""
class="placeholder logo sponsor"
/>
</div>
</div>
<div class="companies_outer_wrap">
<div class="companies_logo_outer">
<img
src="images/solana.svg"
loading="lazy"
alt=""
class="placeholder logo bronze-sponsor"
/>
</div>
<div class="companies_logo_outer">
<img
src="images/filecoin.svg"
loading="lazy"
alt=""
class="placeholder logo bronze-sponsor"
/>
</div>
<div class="companies_logo_outer">
<img
src="images/replit.png"
loading="lazy"
alt=""
class="placeholder logo bronze-sponsor"
/>
</div>
</div>
</div>
</div>
<div
data-w-id="eab788e7-07f0-f379-3cbc-bb24c5ee5735"
id="timeline"
class="section timeline wf-section"
>
<div class="timeline_bgimg_block">
<div class="timeline_bgimg_wrap">
<img
src="images/timeline_left.png"
loading="lazy"
sizes="20vw"
srcset="images/timeline_left.png 500w"
alt=""
class="placeholder"
/>
</div>
<div class="timeline_bgimg_wrap">
<img
src="images/timeline_right.png"
loading="lazy"
sizes="20vw"
srcset="images/timeline_right.png 500w"
alt=""
class="placeholder"
/>
</div>
</div>
<div class="timeline_title_block">
<div class="heading_line_wrap">
<h1 class="heading">Timeline</h1>
</div>
<div class="timeline_desc_wrap">
<div class="paragraph is--centeraligned">
A series of events that will take place during the competition.
</div>
</div>
</div>
<div class="timeline_content_block">
<div class="timeline_cards_block">
<div
data-w-id="c810555a-cde1-796b-727a-e3f9ed90ded6"
class="timeline_card_wrap is--right"
>
<div class="timeline_card_imgwrap">
<img
src="images/timeline1.png"
loading="lazy"
sizes="(max-width: 479px) 13vw, (max-width: 1279px) 7vw, 100vw"
srcset="images/timeline1.png 500w, images/timeline1.png 800w"
alt=""
class="placeholder"
/>
</div>
<div class="timeline_card_content">
<div class="heading_three_wrap">
<div class="headingthree">
Registrations
<span class="timeline_info">15th Dec to 22nd Dec 2022</span>
</div>
</div>
<div class="timelilne_card_parawrap">
<div class="paragraph">
Participants can register for the hackathon on Devfolio, and
can start working on the problem statements. During this time,
they can also form teams and choose the idea they wish to work
on.
</div>
</div>
</div>
<div class="timeline_card_shadow"></div>
</div>
<div
data-w-id="1c66ee1e-a474-e86e-9369-cba9003cd602"
class="timeline_card_wrap"
>
<div class="timeline_card_content is--rightaligned">
<div class="heading_three_wrap">
<div class="headingthree">
Round 1 Deadline <span class="timeline_info">24th Dec</span>
</div>
</div>
<div class="timelilne_card_parawrap">
<div class="paragraph is--rightaligned">
Participants are expected to submit their first round
submissions on Devfolio, in the form of PPTs. The submissions
will be evaluated by the judges and the top teams will be
selected for the final round.
</div>
</div>
</div>
<div class="timeline_card_imgwrap">
<img
src="images/timeline2.png"
loading="lazy"
sizes="(max-width: 479px) 13vw, (max-width: 1279px) 7vw, 100vw"
srcset="
images/timeline2.png 500w,
images/timeline2.png 800w,
images/timeline2.png 1080w,
images/timeline2.png 1600w
"
alt=""
class="placeholder"
/>
</div>
<div class="timeline_card_shadow"></div>
</div>
<div
data-w-id="71b076d3-eff5-201c-fcbc-ba5c0e4f5174"
class="timeline_card_wrap is--right"
>
<div class="timeline_card_imgwrap">
<img
src="images/timeline3.png"
loading="lazy"
sizes="(max-width: 479px) 13vw, (max-width: 1279px) 7vw, 100vw"
srcset="images/timeline3.png 500w, images/timeline3.png 800w"
alt=""
class="placeholder"
/>
</div>
<div class="timeline_card_content">
<div class="heading_three_wrap">
<div class="headingthree">
Round 1 Results <span class="timeline_info">25th Dec</span>
</div>
</div>
<div class="timelilne_card_parawrap">
<div class="paragraph">
We will release the list of the shortlisted teams for the
final round. These participants will be eligible to make the
final code submissions.
</div>
</div>
</div>
<div class="timeline_card_shadow"></div>
</div>
<div