forked from AryaPatel1111/ISASpark
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1098 lines (1034 loc) · 48.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous" />
<link href="https://unpkg.com/ionicons@4.5.10-0/dist/css/ionicons.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css"
integrity="sha512-aOG0c6nPNzGk+5zjwyJaoRUgCdOrfSDhmMID2u4+OIslr0GjpLKo7Xm0Ao3xmpM4T8AmIouRkqwj1nrdVsLKEQ=="
crossorigin="anonymous" />
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/navbar.css" />
<link rel="stylesheet" href="./assets/css/about.css" />
<link rel="stylesheet" href="./assets/css/intro.css" />
<link rel="stylesheet" href="./assets/css/timeline.css" />
<link rel="stylesheet" href="./assets/css/speakers.css" />
<link rel="stylesheet" href="./assets/css/faq.css" />
<link rel="stylesheet" href="./assets/css/contactus.css" />
<link rel="stylesheet" href="./assets/css/sponsors.css" />
<link rel="stylesheet" href="./assets/css/footer.css" />
<link rel="stylesheet" href="./assets/css/tracks.css" />
<link rel="stylesheet" href="./assets/css/prizes.css" />
<link rel="icon" href="./assets/images/Spark_LOGO.svg" type="image/x-icon">
<title>iHack</title>
<style></style>
</head>
<body>
<!--==================
Navbar starts here
==================-->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo03"
aria-controls="navbarTogglerDemo03" aria-expanded="false" aria-label="Toggle navigation">
<div class="toggler-line"></div>
<div class="toggler-line toggler-middle-line"></div>
<div class="toggler-line toggler-bottom-line"></div>
</button>
<a class="navbar-brand" href="#"><img src="./assets/images/Spark_LOGO.svg" /></a>
<div class="collapse navbar-collapse" id="navbarTogglerDemo03">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0 navbar-body">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#intro">Home</a>
</li>
<li class="nav-item ">
<a class="nav-link active" href="#aboutus">About</a>
</li>
<li class="nav-item ">
<a class="nav-link active" href="#tracks">Tracks</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#prizes">Prizes</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#timeline">Timeline</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#speakers">Speakers</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#sponsors">Sponsors</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#contactus">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!--==================
Navbar ends here
==================-->
<!--==================
Intro starts here
==================-->
<button onclick="topFunction()" id="myBtn" title="Go to top"><img id="scroll-top-img"
src="./assets/images/Scrolltop.svg"></button>
<div class="container-fluid intro-wrapper d-flex flex-column justify-content-between" id="intro">
<div class="row d-flex flex-row-reverse">
<div class="col-md-6 ihack">
<div class="ihack-behind d-flex justify-content-end">
<span>iHACK</span>
<div class="ihack-front">
<h1>iHACK</h1>
</div>
</div>
<div class="year d-flex justify-content-end">
<h1>2021</h1>
</div>
<div class="dates d-flex justify-content-end">
<p>1st - 3rd <span>May, 2021</span></p>
</div>
</div>
<div class="col-md-6 intro-content">
<h1>ISA-VIT</h1>
<h3>About iHack</h3>
<p class="message">
ISA-VIT is proud to present iHACK, a 48-hour hackathon and the cornerstone for SPARK’21. It is not only a
hackathon, but also a perfect stepping stone to ignite a creative SPARK in newcomers. This hack also caters to
the seasoned veterans, challenging them to intertwine their creativity with their technical skills. This hack
will provide you with sharp-minded mentors, a smooth hackathon experience, and the chance to win exciting
prizes and goodies. We open the gates for not only skilled coders, but also students, designers, innovators,
and everyone with the passion to shoot their shot. We wish you all the best, and may the best Hackers prevail!
</p>
<a class="discord-button" target="_blank" href="https://discord.gg/amfwRUht"><img
src="./assets/images/discord.svg" />Join our Discord</a>
</div>
</div>
<div class="row d-flex justify-content-center scroll-container">
<a class="d-flex justify-content-center scrollbottom " href="#aboutus"><img class=""
src="./assets/images/Scrollbottom.svg"></a>
</div>
</div>
<!--==================
Intro ends here
==================-->
<!--==================
About Us starts here
==================-->
<div class="container-fluid aboutus-wrapper wrapper" data-aos="fade-down">
<div class="row">
<div class="col">
<div class="d-flex justify-content-center" style="width: 100% !important">
<div class="banner-behind" id="aboutus">
<div class="banner-front">
<h1>About Us</h1>
</div>
</div>
</div>
<div class="aboutus-content">
<p>
ISA-VIT works under the International Society of Automation as a non-profit student chapter in VIT
University, Vellore.
Our vision is to set a standard for those who apply technology and engineering to improve the management,
safety,
and security of modern automation and embedded systems throughout the industry.
Our function is to conduct various speaker sessions, technical sessions, events, and hands-on workshops all
in the
interest of enthusiastic students to help them realize their interests and foster their curiosity.
<br><br>
Spark is the annual flagship event conducted by ISA-VIT. It is a platform to showcase ingenuity and
technical skills. The first Spark event was conducted in 2013 and has amassed large public interest among
students since then. Spark 2021 includes a 48- hour hackathon along with hands-on workshops, speaker
sessions conducted by esteemed speakers, and an assortment of various other events.
</p>
</div>
</div>
</div>
</div>
<!--==================
About Us ends here
==================-->
<!--==================
Tracks starts here
==================-->
<div class="container-fluid tracks-wrapper wrapper" id="tracks" data-aos="fade-down">
<div class="row">
<div class="col">
<div class="d-flex justify-content-center" style="width: 100% !important">
<div class="banner-behind" id="#tracks">
<div class="banner-front">
<h1>Tracks</h1>
</div>
</div>
</div>
<div class="tracks-content">
<div class="row">
<div class="col-6 col-md-4 track-card-wrap">
<div class="track-card d-flex flex-column justify-content-between">
<div class="track-card-content d-flex justify-content-center" id="track-card-content-1">
<img src="./assets/images/care.svg" />
</div>
<div class="track-card-heading d-flex justify-content-center" id="track-card-heading-1">
<h3>Healthcare and Social Responsibility
</h3>
</div>
<div class="track-footer d-flex flex-column align-items-center " id="track-footer-1">
<img class="track-footer-image" id="track-footer-image-1" src="./assets/images/Subtract.svg">
<p class="track-desc disappear" id="track-desc-1">The world today faces a huge number of challenges in
the field of healthcare and societal concerns. We, being
the future of the society, hold the responsibility to use
technology- a great engine of change, as a tool to
tackle these problems.
</p>
</div>
</div>
</div>
<div class="col-6 col-md-4 track-card-wrap">
<div class="track-card d-flex flex-column justify-content-between">
<div class="track-card-content d-flex justify-content-center" id="track-card-content-2">
<img src="./assets/images/Edutech.svg" />
</div>
<div class="track-card-heading d-flex justify-content-center" id="track-card-heading-2">
<h3>Education<br> Technology</h3>
</div>
<div class=" track-footer d-flex flex-column align-items-center " id="track-footer-2">
<img class="track-footer-image" id="track-footer-image-2" src="./assets/images/Subtract.svg">
<p class="track-desc disappear" id="track-desc-2">In today’s world, technology is incorporated in
almost
every aspect of our lives including education. This
enables an improved learning environment which
boosts student outcomes, increases student
engagement and participation in class.
</p>
</div>
</div>
</div>
<div class="col-6 col-md-4 track-card-wrap">
<div class="track-card d-flex flex-column justify-content-between">
<div class="track-card-content d-flex justify-content-center" id="track-card-content-3">
<img src="./assets/images/Openinnovation.svg" />
</div>
<div class="track-card-heading d-flex justify-content-center" id="track-card-heading-3">
<h3>Open<br> Innovation</h3>
</div>
<div class=" track-footer d-flex flex-column align-items-center " id="track-footer-3">
<img class="track-footer-image" id="track-footer-image-3" src="./assets/images/Subtract.svg">
<p class="track-desc disappear" id="track-desc-3">Open Innovation uses knowledge and technological
interventions to accelerate internal innovation, and
expand markets for external use of innovation. Can you truly
think outside the box?
</p>
</div>
</div>
</div>
<div class="col-6 col-md-4 track-card-wrap">
<div class="track-card d-flex flex-column justify-content-between">
<div class="track-card-content d-flex justify-content-center" id="track-card-content-4">
<img src="./assets/images/Safety.svg" />
</div>
<div class="track-card-heading d-flex justify-content-center" id="track-card-heading-4">
<h3>Safety, Security and Surveillance</h3>
</div>
<div class=" track-footer d-flex flex-column align-items-center " id="track-footer-4">
<img class="track-footer-image" id="track-footer-image-4" src="./assets/images/Subtract.svg">
<p class="track-desc disappear" id="track-desc-4">With the ever expanding reach of technology, and
it’s influence on everyday life it is only a matter of time before technology gets intertwined with
security. It is therefore necessary that such technology be made reliable and worthy of keeping
human lives secure.
</p>
</div>
</div>
</div>
<div class="col-6 col-md-4 track-card-wrap">
<div class="track-card d-flex flex-column justify-content-between">
<div class="track-card-content d-flex justify-content-center" id="track-card-content-5">
<img src="./assets/images/blockchain.svg" />
</div>
<div class="track-card-heading d-flex justify-content-center" id="track-card-heading-5">
<h3>Blockchain and<br> cryptocurrency</h3>
</div>
<div class=" track-footer d-flex flex-column align-items-center " id="track-footer-5">
<img class="track-footer-image" id="track-footer-image-5" src="./assets/images/Subtract.svg">
<p class="track-desc disappear" id="track-desc-5">Blockchain is the next big thing in terms of novel
technology, and has been the cornerstone of a rising interest in cryptocurrency and data mining.
Blockchain has been powering bitcoins and as such has highlighted it’s extensive power in the
industry. </p>
</div>
</div>
</div>
<div class="col-6 col-md-4 track-card-wrap">
<div class="track-card d-flex flex-column justify-content-between">
<div class="track-card-content d-flex justify-content-center" id="track-card-content-6">
<img src="./assets/images/disaster.svg" />
</div>
<div class="track-card-heading d-flex justify-content-center" id="track-card-heading-6">
<h3>Disaster<br> Management</h3>
</div>
<div class="track-footer d-flex flex-column align-items-center " id="track-footer-6">
<img class="track-footer-image" id="track-footer-image-6" src="./assets/images/Subtract.svg">
<p class="track-desc disappear" id="track-desc-6">Natural and manmade disasters have been a tale as
old as time itself, however with modern predictive technology, and the innovations to it, we have
the means to preemptively take action and save millions of lives from an untimely fate.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--==================
Tracks ends here
==================-->
<!--==================
Prizes starts here
==================-->
<div class="container-fluid prizes-wrapper wrapper" data-aos="fade-down">
<div class="row">
<div class="col">
<div class="d-flex justify-content-center" style="width: 100% !important">
<div class="banner-behind" id="prizes">
<div class="banner-front">
<h1>Prizes</h1>
</div>
</div>
</div>
<div class="prizes-content">
<div class="row d-flex justify-content-center prizes-desc">
<p>Prizes for winning will range from cash prizes, goodies, coupons, merchandise etc. depending on the
different tracks.</p>
</div>
<div class="row">
<div class="col-4 prize prize-second d-flex flex-column align-items-center">
<div class="prize-image prize-down">
<img src="./assets/images/2nd.svg">
</div>
<div class="prize-underline"></div>
<div class="prize-text">
<p>TBD</p>
</div>
</div>
<div class="col-4 prize prize-first d-flex flex-column align-items-center">
<div class="prize-image">
<img src="./assets/images/1st.svg">
</div>
<div class="prize-underline"></div>
<div class="prize-text">
<p>TBD</p>
</div>
</div>
<div class="col-4 prize prize-third d-flex flex-column align-items-center">
<div class="prize-image prize-down">
<img src="./assets/images/3rd.svg">
</div>
<div class="prize-underline"></div>
<div class="prize-text">
<p>TBD</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--==================
Prizes ends here
==================-->
<!--==================
Timeline starts here
==================-->
<div class="container-fluid timeline-wrapper wrapper" data-aos="fade-down">
<div class="row">
<div class="col">
<div class="d-flex justify-content-center" style="width: 100% !important">
<div class="banner-behind" id="timeline">
<div class="banner-front">
<h1>Timeline</h1>
</div>
</div>
</div>
<div class="timeline-content">
<div class="d-flex justify-content-start">
<img id="start" src="./assets/images/Group 153.svg" />
</div>
<div class="d-flex justify-content-center">
<img id="road" src="./assets/images/Road.svg" />
</div>
<img src="" />
<div class="d-flex justify-content-end">
<img id="finish"
src="./assets/images/red-ribbon-in-finishing-line-icon-icon-cartoon-vector-13600677 3.svg" />
</div>
</div>
</div>
</div>
</div>
<!--==================
Timeline ends here
==================-->
<!--==================
Speakers starts here
==================-->
<div class="container-fluid speakers-wrapper wrapper" data-aos="fade-down">
<div class="row">
<div class="col">
<div class="d-flex justify-content-center" style="width: 100% !important" >
<div class="banner-behind" id="speakers">
<div class="banner-front">
<h1>Speakers</h1>
</div>
</div>
</div>
<div id="speaker-carousel" class="carousel slide" data-interval="false" >
<div class="carousel-inner">
<div class="carousel-item active">
<div class="row">
<div class="col sp">
<img class="speakers-bg" src="./assets/images/Group 141.svg" />
<img class="speakers-img"
src="https://us.123rf.com/450wm/pxlprostudio/pxlprostudio1901/pxlprostudio190106201/116646328-profile-icon-on-black-background-for-graphic-and-web-design-modern-simple-vector-sign-internet-conce.jpg?ver=6" />
</div>
<div class="col speaker">
<h3 class="speaker-name">Speaker</h3>
<div class="speaker-desc-odd">
<h4 class="speaker-job">Senior UI/UX Designer</h4>
<p class="speaker-para">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vel
diam dui egestas amet sed purus viverra cras. Aliquam vitae
commodo facilisis vitae.
</p>
</div>
<div class="speaker-index">01</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class="col speaker">
<h3 class="speaker-name speaker-name-even">Speaker</h3>
<div class="speaker-desc-even">
<h4 class="speaker-job">Senior UI/UX Designer</h4>
<p class="speaker-para">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vel
diam dui egestas amet sed purus viverra cras. Aliquam vitae
commodo facilisis vitae.
</p>
</div>
<div class="speaker-index index-even">02</div>
</div>
<div class="col sp">
<img class="speakers-bg" src="./assets/images/Group 141.svg" />
<img class="speakers-img"
src="https://us.123rf.com/450wm/pxlprostudio/pxlprostudio1901/pxlprostudio190106201/116646328-profile-icon-on-black-background-for-graphic-and-web-design-modern-simple-vector-sign-internet-conce.jpg?ver=6" />
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class="col sp">
<img class="speakers-bg" src="./assets/images/Group 141.svg" />
<img class="speakers-img"
src="https://us.123rf.com/450wm/pxlprostudio/pxlprostudio1901/pxlprostudio190106201/116646328-profile-icon-on-black-background-for-graphic-and-web-design-modern-simple-vector-sign-internet-conce.jpg?ver=6" />
</div>
<div class="col speaker">
<h3 class="speaker-name">Speaker</h3>
<div class="speaker-desc-odd">
<h4 class="speaker-job">Senior UI/UX Designer</h4>
<p class="speaker-para">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vel
diam dui egestas amet sed purus viverra cras. Aliquam vitae
commodo facilisis vitae.
</p>
</div>
<div class="speaker-index">03</div>
</div>
</div>
</div>
</div>
<ol class="carousel-indicators">
<li data-target="#speaker-carousel" data-slide-to="0" class="active"></li>
<li data-target="#speaker-carousel" data-slide-to="1"></li>
<li data-target="#speaker-carousel" data-slide-to="2"></li>
</ol>
<a class="carousel-control-prev" href="#speaker-carousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#speaker-carousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<!--==================
Speakers ends here
==================-->
<!--==================
FAQ starts here
==================-->
<div class="container-fluid faq-wrapper wrapper" data-aos="fade-down">
<div class="row">
<div class="col">
<div class="d-flex justify-content-center" style="width: 100% !important">
<div class="banner-behind" id="faq">
<div class="banner-front">
<h1>FAQs</h1>
</div>
</div>
</div>
<div class="faq-content">
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingOne">
<button class="collapsed acc-button" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne">
1. Can I take part in iHACK if I don’t have teammates? Do all the participants in a team have to be
from the same university?
<div class="plus-minus">
<div class="horizontal-line"></div>
<div class="vertical-line"></div>
</div>
</button>
</h2>
<div id="flush-collapseOne" class="accordion-collapse collapse" aria-labelledby="flush-headingOne"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
Yes, you can, but you will be provided teammates randomly. There are no restrictions regarding
universities. Your team can have members from different universities across the globe!
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingThree">
<button class="collapsed acc-button" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseThree" aria-expanded="false" aria-controls="flush-collapseThree">
2. How long is the Hackathon? Is the event paid?
<div class="plus-minus">
<div class="horizontal-line"></div>
<div class="vertical-line"></div>
</div>
</button>
</h2>
<div id="flush-collapseThree" class="accordion-collapse collapse" aria-labelledby="flush-headingThree"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
The entire hackathon will be 48 hours long and it is completely free of cost.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingFive">
<button class="collapsed acc-button" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseFive" aria-expanded="false" aria-controls="flush-collapseFive">
3. Will there be any events conducted in the days leading up to the main event?
<div class="plus-minus">
<div class="horizontal-line"></div>
<div class="vertical-line"></div>
</div>
</button>
</h2>
<div id="flush-collapseFive" class="accordion-collapse collapse" aria-labelledby="flush-headingFive"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
Yes, there will be workshops conducted weeks prior to the hackathon. These workshops will have topics
based on the tracks for the hackathon.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingNine">
<button class="collapsed acc-button" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseNine" aria-expanded="false" aria-controls="flush-collapseNine">
4. How do I get in touch with mentors?
<div class="plus-minus">
<div class="horizontal-line"></div>
<div class="vertical-line"></div>
</div>
</button>
</h2>
<div id="flush-collapseNine" class="accordion-collapse collapse" aria-labelledby="flush-headingNine"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
A channel will be provided on the Discord server to help you get in touch with the mentors.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingTen">
<button class="collapsed acc-button" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseTen" aria-expanded="false" aria-controls="flush-collapseTen">
5. What can be the size of a team?
<div class="plus-minus">
<div class="horizontal-line"></div>
<div class="vertical-line"></div>
</div>
</button>
</h2>
<div id="flush-collapseTen" class="accordion-collapse collapse" aria-labelledby="flush-headingTen"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
A minimum of 2 and maximum of 5 members in one team.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingEleven">
<button class="collapsed" type="button acc-button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseEleven" aria-expanded="false" aria-controls="flush-collapseEleven">
6. What if I don’t have any coding background?
<div class="plus-minus">
<div class="horizontal-line"></div>
<div class="vertical-line"></div>
</div>
</button>
</h2>
<div id="flush-collapseEleven" class="accordion-collapse collapse" aria-labelledby="flush-headingEleven"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
There are several workshops being held before and during the event where you can get to learn a lot.
Moreover, the mentors will be ready to help you.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingTwelve">
<button class="collapsed" type="button acc-button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseTwelve" aria-expanded="false" aria-controls="flush-collapseTwelve">
7. Can we base our submission off of an earlier prepared project?
<div class="plus-minus">
<div class="horizontal-line"></div>
<div class="vertical-line"></div>
</div>
</button>
</h2>
<div id="flush-collapseTwelve" class="accordion-collapse collapse" aria-labelledby="flush-headingTwelve"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
No, your projects must be built from scratch, however you can incorporate previously built APIs in
your submission.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingThirteen">
<button class="collapsed acc-button" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseThirteen" aria-expanded="false" aria-controls="flush-collapseThirteen">
8. How can I be notified of all the updates about the upcoming events and the hackathon?
<div class="plus-minus">
<div class="horizontal-line"></div>
<div class="vertical-line"></div>
</div>
</button>
</h2>
<div id="flush-collapseThirteen" class="accordion-collapse collapse"
aria-labelledby="flush-headingThirteen" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
You can join the Discord server through the link on the home page, and you can also download the
SPARK’21 app available on Google Play Store.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingFourteen">
<button class="collapsed acc-button" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseFourteen" aria-expanded="false" aria-controls="flush-collapseFourteen">
9. Do I need to give a demo for the product I have built?
<div class="plus-minus">
<div class="horizontal-line"></div>
<div class="vertical-line"></div>
</div>
</button>
</h2>
<div id="flush-collapseFourteen" class="accordion-collapse collapse"
aria-labelledby="flush-headingFourteen" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
If you wish to submit a small presentation or video that demonstrates the working of your product, you
may do so. However, it’s not mandatory.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingFifteen">
<button class="collapsed acc-button" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseFifteen" aria-expanded="false" aria-controls="flush-collapseFifteen">
10. Do we need to have the entire idea fully working?
<div class="plus-minus">
<div class="horizontal-line"></div>
<div class="vertical-line"></div>
</div>
</button>
</h2>
<div id="flush-collapseFifteen" class="accordion-collapse collapse" aria-labelledby="flush-headingFifteen"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
The entire idea need not be fully implemented however, the submission should be functional so that it
can be reviewed by the judges.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--==================
FAQ ends here
==================-->
<!--==================
Sponsors starts here
==================-->
<div class="container-fluid sponsors-wrapper wrapper" data-aos="fade-down">
<div class="row">
<div class="col">
<div class="d-flex justify-content-center" style="width: 100% !important" data-aos="fade-down">
<div class="banner-behind" id="sponsors">
<div class="banner-front">
<h1>Sponsors</h1>
</div>
</div>
</div>
<div class="sponsors-content">
<div class="sponsor-row">
<h3 class="d-flex justify-content-center">Platinum Sponsors</h3>
<div class="d-flex justify-content-center">
<img
src="https://us.123rf.com/450wm/pxlprostudio/pxlprostudio1901/pxlprostudio190106201/116646328-profile-icon-on-black-background-for-graphic-and-web-design-modern-simple-vector-sign-internet-conce.jpg?ver=6" />
</div>
</div>
<div class="sponsor-row">
<h3 class="d-flex justify-content-center">Gold Sponsors</h3>
<div class="d-flex justify-content-center">
<img
src="https://us.123rf.com/450wm/pxlprostudio/pxlprostudio1901/pxlprostudio190106201/116646328-profile-icon-on-black-background-for-graphic-and-web-design-modern-simple-vector-sign-internet-conce.jpg?ver=6" />
</div>
</div>
<div class="sponsor-row">
<h3 class="d-flex justify-content-center">Silver Sponsors</h3>
<div class="d-flex justify-content-center">
<img
src="https://us.123rf.com/450wm/pxlprostudio/pxlprostudio1901/pxlprostudio190106201/116646328-profile-icon-on-black-background-for-graphic-and-web-design-modern-simple-vector-sign-internet-conce.jpg?ver=6" />
</div>
</div>
<div class="sponsor-row">
<h3 class="d-flex justify-content-center">Bronze Sponsors</h3>
<div class="d-flex justify-content-center">
<img
src="https://us.123rf.com/450wm/pxlprostudio/pxlprostudio1901/pxlprostudio190106201/116646328-profile-icon-on-black-background-for-graphic-and-web-design-modern-simple-vector-sign-internet-conce.jpg?ver=6" />
</div>
</div>
</div>
</div>
</div>
</div>
<!--==================
Sponsors ends here
==================-->
<!--==================
Contact Us starts here
==================-->
<div class="container-fluid wrapper contactus-wrapper" data-aos="fade-down">
<div class="col ">
<div class="d-flex justify-content-center">
<div class=" banner-behind" id="contactus">
<div class="banner-front">
<h1>Contact Us</h1>
</div>
</div>
</div>
<div class="contactus-content">
<div class="contactus-form-box">
<div class="side">
<div class="contactus-left">
<h3 class="contactus-title">
Feel free to contact us any time. We will get back to you as
soon as we can!
</h3>
<form class="contactus-form">
<input id="name-input" type="text" placeholder="Name" />
<input id="Email-input" type="text" placeholder="Email" />
<input id="Message-input" type="text" placeholder="Message" />
<p id="nameerror" class="disappear" style="color:red">Enter a valid Name.</p>
<p id="emailerror" class="disappear" style="color:red">Enter a valid Email.</p>
<button id="contactus-button" type="submit" onclick="contactUsHandler()">SEND</button>
</form>
</div>
</div>
<div class="">
<div class="info-svg">
<img src="assets/images/Group 110.svg" />
</div>
</div>
</div>
</div>
</div>
</div>
<!--==================
Contact Us ends here
==================-->
<!--==================
Info starts here
==================-->
<div class="container-fluid info-wrapper wrapper" data-aos="fade-down">
<div class="row">
<div class="col">
<div class="d-flex justify-content-center" style="width: 100% !important">
<div class="banner-behind" id="info">
<div class="banner-front">
<h1>Info</h1>
</div>
</div>
</div>
<div class="info-content">
<div class="info-box d-flex flex-row align-items-center justify-content-between">
<div class="d-flex flex-column info-details">
<div>
<img src="./assets/images/Mask Group.svg" /> isa@vit.ac.in
</div>
<div>
<img src="./assets/images/Mask Group-1.svg" />+91 9537289220
</div>
<div>
<img src="./assets/images/Group.svg" /> VIT University
</div>
</div>
<div class="d-flex flex-column align-items-end">
<img class="spark-bot" src="./assets/images/Group 21.svg" />
</div>
</div>
</div>
</div>
</div>
</div>
<!--==================
Info ends here
==================-->
<!--==================
Footer starts here
==================-->
<footer>
<div class="row align-items-center footer-content">
<div class="footer-logo col-sm-4" id="logo-desk">
<img src="./assets/images/ISA Original White Logo 1.png" />
</div>
<div class="footer-text col-sm-4">
Made with <img src="./assets/images/Vector.svg" /> by ISA-VIT
</div>
<div class="footer-logo col-sm-4" id="logo-mob">
<img src="./assets/images/ISA Original White Logo 1.png" />
</div>
<div class="footer-icons col-sm-4">
<a href="#"><img id="phone" src="./assets/images/Group82.svg" /></a>
<a href="https://www.facebook.com/isavitchapter/" target="_blank"><img id="fb"
src="./assets/images/Group 83.svg" /></a>
<a href="https://www.instagram.com/isa_vit_/?hl=en" target="_blank"><img id="insta"
src="./assets/images/Group 85.svg" /></a>
<a href="https://www.linkedin.com/company/international-society-of-automation-isa-vit/" target="_blank"><img
id="linkedin" class="linkedin-icon" src="./assets/images/Group 86.svg" /></a>
<a href="https://mail.google.com/mail/u/0/?fs=1&to=isavittech@gmail.com&tf=cm" target="_blank"><img id="mail"
class="mail-icon" src="./assets/images/Group 87.svg" /></a>
<a href="https://github.com/isa-vit" target="_blank"><img id="github" class="github-icon"
src="./assets/images/Group 84.svg" /></a>
</div>
</div>
</footer>
<!--==================
Footer ends here
==================-->
<!--======================================================
jQuery first, then Popper.js, then Bootstrap JS
======================================================-->
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"
integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="./assets/js/devfolio.js"></script>
<script>
AOS.init();
$(".nav-link").click(function () {
event.preventDefault();
var y = $(this).attr("href");
console.log(y);
var x = $(y).offset().top - 100;
$([document.documentElement, document.body]).animate({
scrollTop: x
}, 200);
});
$(".scrollbottom").click(function () {
event.preventDefault();
var y = $(this).attr("href");
console.log(y);
var x = $(y).offset().top - 100;
$([document.documentElement, document.body]).animate({
scrollTop: x
}, 200);
});
$('.navbar-collapse').on('show.bs.collapse', function () {
$(".navbar-toggler").css("background-color", "transparent");
$(".navbar-toggler").css("border", "none");
$(".toggler-middle-line").css("margin-left", "15px");
$(".toggler-middle-line").css("transition", "0.2s ease-in");
$(".toggler-bottom-line").css("margin-left", "2px");
$(".toggler-bottom-line").css("transition", "0.2s ease-in");
$(".navbar-toggler").css("transition", "0.2s ease-in");
});
$('.navbar-collapse').on('hide.bs.collapse', function () {
$(".navbar-toggler").css("background-color", " #55BEF6");
$(".toggler-middle-line").css("margin-left", "7px");
$(".toggler-middle-line").css("transition", "0.2s ease-out");
$(".toggler-bottom-line").css("margin-left", "7px");
$(".toggler-bottom-line").css("transition", "0.2s ease-out");
$(".navbar-toggler").css("transition", "0.2s ease-out");
});
// $(".accordion-header").find("button").on('hidden.bs.collapse',function(){
// $(this).find(".vertical-line").toggleClass("disappear");
// });
$(".accordion-collapse").on('show.bs.collapse', function () {
$(this).parent().find(".vertical-line").toggleClass("disappear");
});
$(".accordion-collapse").on('hide.bs.collapse', function () {
$(this).parent().find(".vertical-line").toggleClass("disappear");
});
$(window).ready(function () {
adjustalign();
});
$(window).resize(function () {
adjustalign();
});
function adjustalign() {
if ($(window).width() < 991) {
$(".ihack-behind").removeClass("justify-content-end");
$(".ihack-behind").addClass("justify-content-center");
$(".year").removeClass("justify-content-end");
$(".year").addClass("justify-content-center");
$(".dates").removeClass("justify-content-end");
$(".dates").addClass("justify-content-center");
} else {
$(".ihack-behind").removeClass("justify-content-center");
$(".ihack-behind").addClass("justify-content-end");
$(".year").removeClass("justify-content-center");
$(".year").addClass("justify-content-end");
$(".dates").removeClass("justify-content-center");
$(".dates").addClass("justify-content-end");
}
}
var footoffset = $(document).height() - $(".footer-content").height() -700; // works when hosted
var footoffsetmob = $(document).height() - $(".footer-content").height() - 200;
$(window).scroll(function () {
var $nav = $(".navbar");
$nav.toggleClass("scrolled", $(this).scrollTop() > $nav.height());
if ($(this).scrollTop() > footoffset) {
$("#scroll-top-img").css("display", "none");
}
else {
$("#scroll-top-img").css("display", "block");
}
});
var mybutton = document.getElementById("myBtn");
window.onscroll = function () { scrollFunction() };
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 100) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}