-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
5017 lines (5004 loc) · 190 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>
<!-- Last Published: Fri Feb 25 2022 04:48:05 GMT+0000 (Coordinated Universal Time) -->
<html
data-wf-page="621598b100b641150e305478"
data-wf-site="61e5bb75ba3a7e40020bd3b2"
>
<head>
<meta charset="utf-8" />
<title>INVENTO 2k23 At IET-DAVV</title>
<meta
name="keywords"
content="technology, innovation, software, hardware, circuits, techfest, IET DAVV, career, learning environment, event, fest, indore, india, college, students, tech, gameofcode, fun, hackathon, hackvento, robots, robowar, war"
/>
<meta
content="Invento is the annual techfest of IET DAVV conducted by its students for spirit of technology and innovation in field of software, hardware and circuits. It aims to provide students with enthusiasm and learning environment that directs path for their future and career."
name="description"
/>
<meta content="Invento 2k23" property="og:title" />
<meta
content="Invento is the annual techfest of IET DAVV conducted by its students for spirit of technology and innovation in field of software, hardware and circuits. It aims to provide students with enthusiasm and learning environment that directs path for their future and career."
property="og:description"
/>
<meta content="Invento 2k23" property="twitter:title" />
<meta
content="Invento is the annual techfest of IET DAVV conducted by its students for spirit of technology and innovation in field of software, hardware and circuits. It aims to provide students with enthusiasm and learning environment that directs path for their future and career."
property="twitter:description"
/>
<meta property="og:type" content="website" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta name="geo.country" content="IN" />
<meta name="geo.region" content="MP" />
<meta name="geo.placename" content="Indore, Madhya Pradesh" />
<link href="/styles.css" rel="stylesheet" type="text/css" />
<style>
@media (min-width: 992px) {
html.w-mod-js:not(.w-mod-ix)
[data-w-id="6e7598f0-4ae8-b765-38bc-ef4f35557c23"] {
-webkit-transform: translate3d(0, 102%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
-moz-transform: translate3d(0, 102%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
-ms-transform: translate3d(0, 102%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
transform: translate3d(0, 102%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
}
html.w-mod-js:not(.w-mod-ix)
[data-w-id="6e7598f0-4ae8-b765-38bc-ef4f35557c30"] {
-webkit-transform: translate3d(0, 100%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
-moz-transform: translate3d(0, 100%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
-ms-transform: translate3d(0, 100%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
transform: translate3d(0, 100%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
}
html.w-mod-js:not(.w-mod-ix)
[data-w-id="6e7598f0-4ae8-b765-38bc-ef4f35557c46"] {
-webkit-transform: translate3d(0, 100%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
-moz-transform: translate3d(0, 100%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
-ms-transform: translate3d(0, 100%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
transform: translate3d(0, 100%, 0) scale3d(1, 1, 1) rotateX(0)
rotateY(0) rotateZ(0) skew(0, 0);
}
}
</style>
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link
href="https://fonts.gstatic.com"
rel="preconnect"
crossorigin="anonymous"
/>
<script
src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"
type="text/javascript"
></script>
<script type="text/javascript">
WebFont.load({
google: {
families: [
"Inter:regular,500,600,700,800,900:latin,latin-ext",
"Inter:100,200,300,regular",
"IBM Plex Mono:100,200,300,regular,500,600,700",
],
},
});
</script>
<!--[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="./assets/Logo.svg" rel="shortcut icon" type="image/x-icon" />
<link href="./assets/Logo.svg" rel="apple-touch-icon" />
<style>
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>
<script type="text/javascript">
window.__WEBFLOW_CURRENCY_SETTINGS = {
currencyCode: "USD",
$init: true,
symbol: "$",
decimal: ".",
fractionDigits: 2,
group: ",",
template:
'{{wf {"path":"symbol","type":"PlainText"} }} {{wf {"path":"amount","type":"CommercePrice"} }} {{wf {"path":"currencyCode","type":"PlainText"} }}',
hideDecimalForWholeNumbers: false,
};
</script>
</head>
<body >
<div class="loader wf-section">
<!-- <div class="loader-wrapper">
<div class="progress-bar-wrapper"><div class="progress-bar"></div></div>
</div> -->
</div>
<div class="full-page" >
<div class="nav-wrapper">
<nav class="wrappernav">
<div
data-animation="default"
class="navbar white-version w-nav"
data-easing2="ease"
data-easing="ease"
data-collapse="medium"
role="banner"
data-no-scroll="1"
data-duration="0"
data-doc-height="1"
>
<div class="w-layout-grid navgrid">
<a
href="/"
id="w-node-_703e939d-fb81-d5e3-3360-68b6ba39a388-ba39a384"
class="brand w-nav-brand"
style="display: flex"
><img
src="./assets/Logo.svg"
loading="lazy"
alt=""
class="image-brand"
/>
<p style="color: white; padding: 2%">Invento</p></a
>
<nav
role="navigation"
id="w-node-_703e939d-fb81-d5e3-3360-68b6ba39a38a-ba39a384"
class="nav-menu w-nav-menu"
>
<div class="inner-nav-wrapper">
<div class="main-navbar">
<div class="nav-item-wrapper">
<div
data-is-ix2-target="1"
class="lottie-animation"
data-w-id="703e939d-fb81-d5e3-3360-68b6ba39a390"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/61f0ae2c972551a5ec15a479_line_white.json"
data-loop="0"
data-direction="1"
data-autoplay="0"
data-renderer="svg"
data-default-duration="2.0416666666666665"
data-duration="0"
data-ix2-initial-state="0"
></div>
</div>
<div class="nav-item-wrapper">
<div
data-is-ix2-target="1"
class="lottie-animation"
data-w-id="703e939d-fb81-d5e3-3360-68b6ba39a392"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/61f0ae2c972551a5ec15a479_line_white.json"
data-loop="0"
data-direction="1"
data-autoplay="0"
data-renderer="svg"
data-default-duration="2.0416666666666665"
data-duration="0"
data-ix2-initial-state="0"
></div>
</div>
<div class="nav-item-wrapper">
<div
data-is-ix2-target="1"
class="lottie-animation"
data-w-id="703e939d-fb81-d5e3-3360-68b6ba39a394"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/61f0ae2c972551a5ec15a479_line_white.json"
data-loop="0"
data-direction="1"
data-autoplay="0"
data-renderer="svg"
data-default-duration="2.0416666666666665"
data-duration="0"
data-ix2-initial-state="0"
></div>
<div
data-hover="true"
data-delay="0"
class="dropdown w-dropdown"
>
<div class="dropdown-toggle w-dropdown-toggle">
<div
class="icon text-white w-icon-dropdown-toggle"
></div>
<div>Sponsors</div>
</div>
<nav class="dropdown-list w-dropdown-list">
<div>
<a
href="#goldsponsor"
aria-current="page"
class="dropdown-link w-dropdown-link w--current"
>Sponsors</a
><a
href="#titlesponsor"
class="dropdown-link w-dropdown-link"
>Partner</a
>
</div>
</nav>
</div>
</div>
<div class="nav-item-wrapper">
<div
data-is-ix2-target="1"
class="lottie-animation"
data-w-id="703e939d-fb81-d5e3-3360-68b6ba39a3a7"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/61f0ae2c972551a5ec15a479_line_white.json"
data-loop="0"
data-direction="1"
data-autoplay="0"
data-renderer="svg"
data-default-duration="2.0416666666666665"
data-duration="0"
data-ix2-initial-state="0"
></div>
<div
data-hover="true"
data-delay="0"
class="dropdown w-dropdown"
>
<a href="#about">
<div class="dropdown-toggle w-dropdown-toggle">
<div class="icon text-white"></div>
<div>About</div>
</div></a
>
<!-- <nav class="dropdown-list w-dropdown-list">
<div>
<a
href="/features/01"
class="dropdown-link w-dropdown-link"
>Features 01</a
><a
href="/features/02"
class="dropdown-link w-dropdown-link"
>Features 02</a
><a
href="/features/03"
class="dropdown-link w-dropdown-link"
>Features 03</a
><a
href="/features/04"
class="dropdown-link w-dropdown-link"
>Features 04</a
><a
href="/features/05"
class="dropdown-link w-dropdown-link"
>Features 05</a
>
</div>
</nav> -->
</div>
</div>
<div class="nav-item-wrapper">
<div
data-is-ix2-target="1"
class="lottie-animation"
data-w-id="703e939d-fb81-d5e3-3360-68b6ba39a3ba"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/61f0ae2c972551a5ec15a479_line_white.json"
data-loop="0"
data-direction="1"
data-autoplay="0"
data-renderer="svg"
data-default-duration="2.0416666666666665"
data-duration="0"
data-ix2-initial-state="0"
></div>
<div
data-hover="true"
data-delay="0"
class="dropdown w-dropdown"
>
<div class="dropdown-toggle w-dropdown-toggle">
<div
class="icon text-white w-icon-dropdown-toggle"
></div>
<div>Why Attend</div>
</div>
<nav class="dropdown-list w-dropdown-list">
<a
href="#innovate"
class="dropdown-link w-dropdown-link"
>Innovate</a
><a
href="#inspire"
class="dropdown-link w-dropdown-link"
>Inspire</a
><a
href="#ignite"
class="dropdown-link w-dropdown-link"
>Ignite</a
>
</nav>
</div>
</div>
<div class="nav-item-wrapper">
<div
data-is-ix2-target="1"
class="lottie-animation"
data-w-id="703e939d-fb81-d5e3-3360-68b6ba39a3cc"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/61f0ae2c972551a5ec15a479_line_white.json"
data-loop="0"
data-direction="1"
data-autoplay="0"
data-renderer="svg"
data-default-duration="2.0416666666666665"
data-duration="0"
data-ix2-initial-state="0"
></div>
<div
data-hover="true"
data-delay="0"
class="dropdown w-dropdown"
>
<div class="dropdown-toggle w-dropdown-toggle">
<div
class="icon text-white w-icon-dropdown-toggle"
></div>
<div>Highlights</div>
</div>
<nav class="dropdown-list w-dropdown-list">
<a
href="#hackvento"
class="dropdown-link w-dropdown-link"
/* style="color: #757575"*/
>Hackvento</a
><a
href="#gameofcodes"
class="dropdown-link w-dropdown-link"
*/style="color: #757575"*/
>Game of Codes</a
><a
href="#robowars"
class="dropdown-link w-dropdown-link"
/*style="color: #757575"*/
>Robowars</a
>
<a
href="#misc"
class="dropdown-link w-dropdown-link"
/*style="color: #757575"*/
>Miscellaneous</a
>
</nav>
</div>
</div>
</div>
<div class="w-layout-grid grid-buttons nav">
<a
id="w-node-_703e939d-fb81-d5e3-3360-68b6ba39a3da-ba39a384"
href="#timeline"
class="topnav-button outline w-inline-block"
><div>Timeline</div></a
>
<div
id="w-node-_703e939d-fb81-d5e3-3360-68b6ba39a3dd-ba39a384"
class="main-button-wrapper"
>
<a
id="w-node-_703e939d-fb81-d5e3-3360-68b6ba39a3de-ba39a384"
href="https://linktr.ee/Invento2k23"
target="_blank"
class="button small w-inline-block"
><div class="circular-arrow">
<img
src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/61e5bb75ba3a7ec9880bd403_cta-arrow-white.svg"
loading="lazy"
alt=""
class="icon-arrow"
/>
</div>
<div>Register Now!</div></a
>
<div class="m-button-shadow"></div>
</div>
</div>
</div>
</nav>
<div
id="w-node-_703e939d-fb81-d5e3-3360-68b6ba39a3e4-ba39a384"
class="menu-button w-nav-button"
>
<div class="menu-mobile">
<div
data-is-ix2-target="1"
class="lottie-menu"
data-w-id="703e939d-fb81-d5e3-3360-68b6ba39a3e6"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/6205830c25307d2eb2a48ebd_button2.json"
data-loop="0"
data-direction="1"
data-autoplay="0"
data-renderer="svg"
data-default-duration="3"
data-duration="0"
data-ix2-initial-state="91"
></div>
</div>
</div>
</div>
</div>
</nav>
<div class="overlayer-nav"></div>
</div>
<div class="section titles bg-red wf-section" style="height: 100vh;">
<div class="container header w-container">
<!-- <img
src="assets/collegelogo.png"
loading="lazy"
width="206"
alt=""
class="image-smile"
/> -->
<div class="w-layout-grid main-grid no-gap">
<div
id="w-node-f16383f7-a435-9fbd-d177-bd0fbd8c4c1c-0e305478"
class="content-wrapper inner-padding-small"
>
<img
src="assets/collegelogo.png"
loading="lazy"
width="206"
alt=""
class="image-logo"
/>
</div>
<div
id="w-node-_457eb3c8-9b36-effc-ee78-fda56a38a58f-0e305478"
class="overflow"
>
<div class="head-college-name" style="color: white;">IET DAVV`s</div>
<div class="xlarge" style="color: white;">INVENTO</div>
</div>
<div
id="w-node-d0a5ca32-c852-da7c-b576-7f40495022cb-0e305478"
class="content-wrapper flex-horizontal"
style="display: flex; justify-content: center"
>
<div class="overflow-wrapper" style="width: 40vw">
<div class="overflow-wrapper flex">
<div class="hero-flex-ticker" style="color: white;">
<div class="heading-regular uppercase">
Central India's Largest TechFest
</div>
<div class="divider-bullet ticker"></div>
<div class="heading-regular uppercase">#INVENTO 2k23</div>
<div class="divider-bullet ticker"></div>
<div class="heading-regular uppercase">OCTOBER 13-14</div>
<div class="divider-bullet ticker"></div>
</div>
<div class="hero-flex-ticker" style="color: white;">
<div class="heading-regular uppercase">
Central India's Largest TechFest
</div>
<div class="divider-bullet ticker"></div>
<div class="heading-regular uppercase">#INVENTO 2k23</div>
<div class="divider-bullet ticker"></div>
<div class="heading-regular uppercase">OCTOBER 13-14</div>
<div class="divider-bullet ticker"></div>
</div>
<div class="hero-flex-ticker" style="color: white;">
<div class="heading-regular uppercase">
Central India's Biggest TechFest
</div>
<div class="divider-bullet ticker"></div>
<div class="heading-regular uppercase">#INVENTO 2k23</div>
<div class="divider-bullet ticker"></div>
<div class="heading-regular uppercase">OCTOBER 13-14</div>
<div class="divider-bullet ticker"></div>
</div>
</div>
</div>
<div class="xlarge" style="color: white;">2k23</div>
</div>
</div>
<div class="wrapper-heading inner-padding-small">
<div class="w-layout-grid grid-buttons">
<div id="w-node-acbeed1e-14e6-2f5d-f965-c0dfd171fa89-0e305478">
<div
data-w-id="f22dbb03-ea9e-a94b-045a-7963939b43b2"
class="main-button-wrap"
>
<a
id="w-node-f22dbb03-ea9e-a94b-045a-7963939b43b3-939b43b2"
href="https://linktr.ee/Invento2k23"
target="_blank"
class="button w-inline-block"
><div class="m-button-label">
<div class="circular-arrow">
<img
src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/61e5bb75ba3a7ec9880bd403_cta-arrow-white.svg"
loading="lazy"
alt=""
class="icon-arrow"
/>
</div>
<div class="label-button" style="color: white !important;">Register Now!</div>
</div>
<div class="m-button-hover"></div
></a>
<div class="m-button-shadow"></div>
</div>
</div>
<a
id="w-node-_786cc278-92ec-6bcd-270f-eeb81f660a90-0e305478"
href="https://linktr.ee/Invento2k23"
class="button inline w-inline-block"
><div style="color:white !important;">Learn more</div>
<div class="outline-hover"></div
></a>
</div>
</div>
</div>
</div>
<div class="section bg-color wf-section" id="about">
<div class="container top-padding-large w-container">
<div class="w-layout-grid main-grid padding-bottom-medium">
<div
id="w-node-_2b6e6bfb-df51-26f9-8670-bce9cb867456-0e305478"
class="callout-wrapper padding-bottom-small"
>
<h1 class="heading-xlarge text-yellow margin-bottom-small">
Innovate. Inspire. Ignite.
</h1>
<p class="main-paragraph size-large text-white-opacity">
Invento is the annual techfest of IET DAVV conducted by its
students for spirit of technology and innovation in field of
software, circuits and machines. It aims to provide students
with enthusiasm and learning environment that directs path for
their future and career.
</p>
<div class="flex">
<div
class="lottie-animation-2"
data-w-id="b4c2dd96-84ad-3220-d100-e3d8ca40b388"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/620a95bf9ede664b27335e16_shape1_pink.json"
data-loop="1"
data-direction="1"
data-autoplay="1"
data-is-ix2-target="0"
data-renderer="svg"
data-default-duration="3"
data-duration="0"
></div>
</div>
</div>
<div
id="w-node-_6341ee7c-c590-47e8-d3cc-5c75418cc276-0e305478"
class="callout-wrapper"
>
<h2 class="heading-small">About Invento</h2>
</div>
<div
id="w-node-_81188912-1a14-4c5a-bc90-bdd228b6ae42-0e305478"
class="callout-box-wrapper"
>
<div class="value large text-yellow">15+</div>
<h2 class="heading-small">Events</h2>
</div>
<div
id="w-node-f7d7c5ec-455e-8ae7-b61e-26ef975f4ca9-0e305478"
class="callout-box-wrapper"
>
<div class="value large text-yellow">3500+</div>
<h2 class="heading-small">FootFall</h2>
</div>
<div
id="w-node-b0816f0d-a2b5-4786-b910-6eec436879a1-0e305478"
class="callout-box-wrapper"
>
<div class="value large text-yellow">100K+</div>
<h2 class="heading-small">Worth of Prizes</h2>
</div>
</div>
</div>
</div>
<div data-w-id="9088d6c6-88de-9ea2-c7ed-b2bfa4356ca2" class="track">
<div class="section-wide bg-color wf-section">
<div class="container w-container">
<div class="w-layout-grid main-grid">
<h1
id="w-node-_9088d6c6-88de-9ea2-c7ed-b2bfa4356ca6-0e305478"
class="heading-xlarge-hero"
>
Why Attend<br />Invento?
</h1>
</div>
</div>
<div class="circle-section bg-yellow">
<div class="inner-circle bg-dark-gray"></div>
</div>
</div>
<div class="inner-section-content">
<div class="container w-container">
<div class="w-layout-grid main-grid">
<div id="w-node-_28280f35-779c-5cf2-008c-0516b6395e27-0e305478">
<div
class="content-wrapper padding-bottom-medium"
id="innovate"
>
<div
id="w-node-_9088d6c6-88de-9ea2-c7ed-b2bfa4356cac-0e305478"
class="heading-medium text-white margin-bottom-xsmall"
>
Unleash Innovation.
</div>
<p class="medium-paragraph">
Immerse yourself in a world of cutting-edge technology and
boundless creativity at our tech event, featuring
captivating sessions, thrilling Hackvento hackathon, intense
Robo Wars, and mind-boggling Speed Cube challenges. Get
ready to push the limits of innovation!
</p>
<div class="flex">
<div
class="lottie-animation-2"
data-w-id="01c3f3e3-59c1-c584-d75d-f23ff8a34bec"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/620a95bf9ede664b27335e16_shape1_pink.json"
data-loop="1"
data-direction="1"
data-autoplay="1"
data-is-ix2-target="0"
data-renderer="svg"
data-default-duration="3"
data-duration="0"
></div>
</div>
</div>
<div class="content-wrapper padding-bottom-medium" id="inspire">
<div
id="w-node-_08554a2f-2762-7f3f-016d-3410720612af-0e305478"
class="heading-medium text-white margin-bottom-xsmall"
>
Epic Tech Showdown.
</div>
<p class="medium-paragraph">
Join us for an electrifying showcase of skills and
intellect! Witness fierce competitions like CSS Challenge and
Game of Code, where participants battle wits and engineering
prowess. From programming showdowns to robotic battles, be
part of the ultimate tech showdown that will leave you on
the edge of your seat.
</p>
<div class="flex">
<div
class="lottie-animation-2"
data-w-id="653ee000-8b44-90e1-3579-08c2c7d0ea9a"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/620a96ef46edaf416d112404_shape1_purple%20light.json"
data-loop="1"
data-direction="1"
data-autoplay="1"
data-is-ix2-target="0"
data-renderer="svg"
data-default-duration="3"
data-duration="0"
></div>
</div>
</div>
<div class="content-wrapper padding-bottom-medium" id="ignite">
<div
id="w-node-_12b2382e-5e38-aaa8-1ee9-c06ea75b302b-0e305478"
class="heading-medium text-white margin-bottom-xsmall"
>
Learn, Connect, Excel.
</div>
<p class="medium-paragraph">
Elevate your tech prowess through insightful sessions by
industry experts and thought leaders. Engage in networking
opportunities that could shape your future and gain exposure
to diverse technological domains. Don't miss your chance to
learn, connect, and excel in the dynamic realm of
technology.
</p>
<div class="flex">
<div
class="lottie-animation-2"
data-w-id="f4463b55-d5bb-4eb4-e0d0-01b007bc268d"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/620a9a3d2873b02d8b93575b_shape1_purple.json"
data-loop="1"
data-direction="1"
data-autoplay="1"
data-is-ix2-target="0"
data-renderer="svg"
data-default-duration="3"
data-duration="0"
></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section bg-dark-gray wf-section">
<div class="container w-container" style="padding-top: 0; padding-bottom: 0;">
<div
id="w-node-_6e7598f0-4ae8-b765-38bc-ef4f35557c1a-0e305478"
class="center-wrapper inner-padding-medium"
style="margin-top: 0; margin-bottom: 0;"
>
<h2 class="heading-large margin-bottom-xsmall">Main Events</h2>
<p class="medium-paragraph">
Come and Take Part in the Main Event of Invento 2k23 and Win Exciting Prizes.
</p>
</div>
<div class="w-layout-grid main-grid">
<a
id="w-node-_12ff7464-3378-7f39-ebe9-0837a7ccdcfa-0e305478"
href="https://linktr.ee/Invento2k23"
class="content-wrapper cards w-inline-block"
><div class="w-layout-grid grid-card">
<div
id="w-node-_12ff7464-3378-7f39-ebe9-0837a7ccdcfc-0e305478"
class="center-flex-wrapper-device square"
>
<div id="hackvento">
<img
src="https://bsmedia.business-standard.com/_media/bs/img/article/2017-04/01/full/1491033252-3429.jpg?im=FeatureCrop,size=(1200,900)"
alt=""
class="big-event-card"
/>
</div>
</div>
<div
id="w-node-_12ff7464-3378-7f39-ebe9-0837a7ccdcfe-0e305478"
class="inner-card-content"
>
<h2 class="heading-large margin-bottom-xsmall">Hackvento</h2>
<p class="main-paragraph text-white-opacity-strong">
Unleash innovation in code at Hackvento! Collaborate to
solve real-world challenges, compete for prizes, and
transform ideas into impactful solutions.
</p>
<p style="color: white; background-color: rgba(11, 156, 175, 0.852); border-radius:1rem; padding: 1px 5em 1px;">14 October 2023</p>
</div>
</div></a
><a
id="w-node-_12ff7464-3378-7f39-ebe9-0837a7ccdd03-0e305478"
href="https://linktr.ee/Invento2k23"
class="content-wrapper cards w-inline-block"
><div class="w-layout-grid grid-card">
<div class="center-flex-wrapper-device square">
<div
id="robowars"
style="
width: max-content;
object-fit: cover;
/* margin-bottom: 8%; */
"
>
<img
src="assets/SAVE_20210324_194657.webp"
alt=""
class="big-event-card"
/>
</div>
</div>
<div
id="w-node-_12ff7464-3378-7f39-ebe9-0837a7ccdd07-0e305478"
class="inner-card-content"
>
<h2 class="heading-large margin-bottom-xsmall">Robo Wars</h2>
<p class="main-paragraph text-white-opacity-strong">
Craft and control battle-ready robots, compete for
supremacy, and witness intense clashes of engineering and
strategy in the electrifying arena of Robo Wars.
</p>
<p style="color: white; background-color: rgba(11, 156, 175, 0.852); border-radius:1rem; padding: 1px 5em 1px;">14 October 2023</p>
</div>
</div></a
>
</div>
<div class="flex center">
<div
class="lottie-animation-2"
data-w-id="63e82e61-0e3e-b537-801a-d690b2e863e6"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/620a95bf9ede664b27335e16_shape1_pink.json"
data-loop="1"
data-direction="1"
data-autoplay="1"
data-is-ix2-target="0"
data-renderer="svg"
data-default-duration="3"
data-duration="0"
></div>
<div
class="lottie-animation-2"
data-w-id="63e82e61-0e3e-b537-801a-d690b2e863e7"
data-animation-type="lottie"
data-src="https://assets.website-files.com/61e5bb75ba3a7e40020bd3b2/620a96ef46edaf416d112404_shape1_purple%20light.json"
data-loop="1"
data-direction="1"
data-autoplay="1"
data-is-ix2-target="0"
data-renderer="svg"
data-default-duration="3"
data-duration="0"
></div>
</div>
</div>
<div class="container" id="gameofcodes">
<div class="w-layout-grid main-grid" id="misc">
<div
id="w-node-_6e7598f0-4ae8-b765-38bc-ef4f35557c1a-0e305478"
class="center-wrapper inner-padding-medium"
>
<h2 class="heading-large margin-bottom-xsmall">Events.</h2>
<p class="medium-paragraph">
Unveiling Tomorrow's Innovations Today
</p>
</div>
</div>
</div>
<div class="container padding-bottom-medium">
<div class="w-dyn-list">
<div role="list" class="collection-list-col w-dyn-items">
<div
id="w-node-_6e7598f0-4ae8-b765-38bc-ef4f35557c20-0e305478"
role="listitem"
class="collection-item w-dyn-item"
>
<a
data-w-id="6e7598f0-4ae8-b765-38bc-ef4f35557c21"
href="https://linktr.ee/Invento2k23"
class="link-block w-inline-block"
><div
data-w-id="6e7598f0-4ae8-b765-38bc-ef4f35557c23"
style="background-color: #673ab7"
class="box-speakers"
>
<div class="overflow">
<div class="speaker-ticker-wrapper left">
<div class="s-ticker-flex">
<div
style="color: hsla(24, 92.88%, 69.44%, 1)"
class="heading-large no-wrap"
>
Speed Cubing
</div>
<div
style="
background-color: hsla(24, 92.88%, 69.44%, 1);
"
class="dot-divider"
></div>
</div>
<div class="s-ticker-flex">
<div
style="color: hsla(24, 92.88%, 69.44%, 1)"
class="heading-large no-wrap"
>
Speed Cubing
</div>
<div
style="
background-color: hsla(24, 92.88%, 69.44%, 1);
"
class="dot-divider"
></div>
</div>
<div class="s-ticker-flex">
<div
style="color: hsla(24, 92.88%, 69.44%, 1)"
class="heading-large no-wrap"
>
Speed Cubing
</div>
<div
style="
background-color: hsla(24, 92.88%, 69.44%, 1);
"
class="dot-divider"
></div>
</div>
</div>
</div>
<div class="overflow">
<div
data-w-id="6e7598f0-4ae8-b765-38bc-ef4f35557c30"
class="speaker-ticker-wrapper"
>
<div
style="
-webkit-transform: translate3d(-100%, 0, 0)
scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0)
skew(0, 0);
-moz-transform: translate3d(-100%, 0, 0)
scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0)
skew(0, 0);
-ms-transform: translate3d(-100%, 0, 0)
scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0)
skew(0, 0);
transform: translate3d(-100%, 0, 0) scale3d(1, 1, 1)
rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
"
class="s-ticker-flex right"
>
<div
style="color: hsla(24, 92.88%, 69.44%, 1)"
class="heading-large no-wrap"
>
Day 01
</div>
<div
style="
background-color: hsla(24, 92.88%, 69.44%, 1);
"
class="dot-divider"
></div>
</div>
<div
style="
-webkit-transform: translate3d(-100%, 0, 0)
scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0)
skew(0, 0);
-moz-transform: translate3d(-100%, 0, 0)
scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0)
skew(0, 0);
-ms-transform: translate3d(-100%, 0, 0)
scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0)
skew(0, 0);
transform: translate3d(-100%, 0, 0) scale3d(1, 1, 1)
rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
"
class="s-ticker-flex right"
>
<div
style="color: hsla(24, 92.88%, 69.44%, 1)"
class="heading-large no-wrap"
>
Day 01
</div>
<div
style="
background-color: hsla(24, 92.88%, 69.44%, 1);
"
class="dot-divider"
></div>
</div>
<div
style="
-webkit-transform: translate3d(-100%, 0, 0)
scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0)
skew(0, 0);