-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
990 lines (909 loc) · 45.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- !FAVICON -->
<link rel="shortcut icon" href="./assets/H4C Box.png" type="image/x-icon">
<script src="https://kit.fontawesome.com/e57fcbd46d.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.9/typed.min.js" async="" defer=""></script>
<script>
$(".jumbotron").css({ height: $(window).height() + "px" });
$(window).on("resize", function() {
$(".jumbotron").css({ height: $(window).height() + "px" });
});
// typing effect js
// window.onload = function () {
// console.log("loaded")
// var typed = new Typed('#typed', {
// strings: ["WELCOME TO IEEE SSIT", "CROPIN TECHNOLOGIES AND RISKCOVRY", "PRESENTS", "HACK4CAUSE", "MACHINE LEARNING", "ARTICIAL INTELLIGENCE","WEBDEV","",""],
// backSpeed: 15,
// smartBackspace: true,
// backDelay: 1900,
// startDelay: 500,
// typeSpeed: 25,
// loop: true,
// });
// };
</script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
var progressPath = document.querySelector('.progress-wrap path');
var pathLength = progressPath.getTotalLength();
progressPath.style.transition = progressPath.style.WebkitTransition = 'none';
progressPath.style.strokeDasharray = pathLength + ' ' + pathLength;
progressPath.style.strokeDashoffset = pathLength;
progressPath.getBoundingClientRect();
progressPath.style.transition = progressPath.style.WebkitTransition = 'stroke-dashoffset 10ms linear';
var updateProgress = function() {
var scroll = $(window).scrollTop();
var height = $(document).height() - $(window).height();
var progress = pathLength - (scroll * pathLength / height);
progressPath.style.strokeDashoffset = progress;
}
updateProgress();
$(window).scroll(updateProgress);
var offset = 50;
var duration = 550;
jQuery(window).on('scroll', function() {
if(jQuery(this).scrollTop() > offset) {
jQuery('.progress-wrap').addClass('active-progress');
} else {
jQuery('.progress-wrap').removeClass('active-progress');
}
});
jQuery('.progress-wrap').on('click', function(event) {
event.preventDefault();
jQuery('html, body').animate({scrollTop: 0}, duration);
return false;
})
});
</script>
<link rel="stylesheet" href="backToTop.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="phone.css">
<!-- animation section -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<title>Hack4Cause 4.0</title>
</head>
<body>
<div class="landingcontainer">
<div class="landnavbar">
<div class="landmenu">
<a target="_blank" href="https://www.ssitvit.tech/"><h3 class="landlogo">IEEE <span> SSIT </span> VIT</h3></a>
<div class="landhamburger-landmenu">
<div class="landingbar"></div>
</div>
</div>
</div>
<div class="main-landingcontainer">
<div class="landmain">
<header>
<div class="landoverlay">
<div class="landinner">
<!-- typing effect -->
<h1 ><span id="typed"> </span><span class="typed-cursor"></span></h1>
<h3 class="landtitle">BIGGEST HACKATHON IN VIT</h3>
<div class="timer">
<div id="countdown"></div>
<div class="marker">
<div class="timertags">Days </div>
<div class="timertags"> Hours </div>
<div class="timertags"> Minutes </div>
<!-- <div class="tags"> Seconds</div> -->
</div>
</div>
<a target="_blank" href="https://h4c-registations.herokuapp.com/register">
<button class="landbtn">Register Now</button></a>
</div>
</div>
</header>
</div>
<div class="shadow one"></div>
<div class="shadow two"></div>
</div>
<div class="navlinks">
<ul>
<li>
<a href="#" style="--i: 0.05s;">Home</a>
</li>
<li>
<a href="#about" style="--i: 0.1s;">About Us</a>
</li>
<li>
<a href="#tracks" style="--i: 0.15s;">Tracks</a>
</li>
<li>
<a href="#domains" style="--i: 0.2s;">Domains</a>
</li>
<li>
<a href="#speakers" style="--i: 0.3s;">Speakers</a>
</li>
<li>
<a href="#clients" style="--i: 0.25s;">Sponsors</a>
</li>
<li>
<a href="#organisers" style="--i: 0.3s;">Organizers</a>
</li>
<li>
<a href="#faq" style="--i: 0.3s;">FAQs</a>
</li>
<li>
<a href="#contact" style="--i: 0.3s;">Contact Us</a>
</li>
</ul>
</div>
</div>
<div class="progress-wrap">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
</div>
<!-- About Us Section -->
<section class="section" >
<br>
<h1 class="sectionHeader" id="about">About Us</h1>
<br>
<div class="cards-outer">
<div class="container">
<div class="grid-item">
<div class="grid-item-inner">
<p>  IEEE-SSIT would like to bring Hack4Cause, a 36-hours hackathon which aims to bring creativity and
innovation among students. Hack4Cause brings students from different domains of engineering together to
build, design and use the latest technology to hack into real-world problems. The dates for the event are
the <strong>17<sup>th</sup> July and 18<sup>th</sup> July</strong>. The main motive behind
Hack-4-Cause is to bring a change in the
perspective of students in critical industrial situations. As the students will be solving industry-based
problems, they will get to know the technologies involved in leading industries. This event will not
only bridge the gap between theoretical and practical knowledge but at the same time motivate
students to take challenges and come up with an innovative solution to these challenges.</p>
<a target="_blank" class="more-link" href="https://www.ssitvit.tech/">LEARN MORE</a>
</div>
</div>
</div>
</div>
</div>
<br>
<!-- Perks -->
<h1 class="sectionHeader">Perks</h1>
<div class="container2">
<div class="cardperks">
<h3 class="title"> INNOVATIONS </h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div class="circle">
<h3 class="perkDesc">Hackathons are an innovative demonstrating ground for new ideas. Animate the imaginative thinking of members and hazard taking in a easy real-time platform.</h3>
</svg>
</div>
</div>
<div class="cardperks ">
<h3 class="title"> COUPONS WORTH ₹ 1 lakh+</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div class="circle">
<h3 class="perkDesc">Coupons worth rupees 100k will be awarded to the champions of Hack4Cause.</h3>
</svg>
</div>
</div>
<div class="cardperks">
<h3 class="title"> BUILD YOUR SKILLS</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div class="circle">
<h3 class="perkDesc">Cooperation, critical thinking and imagination are three key abilities that everybody can hone - regardless of your experience.</h3>
</svg>
</div>
</div>
<!-- <div class="card">
<h3 class="title"><i class="fas fa-users-cog"></i></h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div class="circle">
<p class="">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Libero delectus ea aut quo, autem blanditiis consequatur iure tempora officia. Mollitia?</p>
</svg>
</div>
</div> -->
</div>
<div class="container2">
<div class="cardperks">
<h3 class="title">COMPETE FROM ANYWHERE</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div class="circle">
<h3 class="perkDesc">With no movement costs or geographic barriers, members can sign in from the serenity of their own home and work together with partners on their timetables.</h3>
</svg>
</div>
</div>
<div class="cardperks">
<h3 class="title"> HACKATHON T-SHIRT</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div class="circle">
<h3 class="perkDesc">Free Hackathon T-Shirts will be sent out to lucky winners.</h3>
</svg>
</div>
</div>
<div class="cardperks resperk">
<h3 class="title">GAME NIGHT WITH PRIZES</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div class="circle">
<h2 class="perkDesc ">Nothing beats the adrenaline rush of gaming after a stressful day. Here, we bring you GAME NIGHT in which the bravest conquerors will receive prizes.</h2>
</svg>
</div>
</div>
<!-- <div class="card">
<h3 class="title"><i class="fas fa-users-cog"></i></h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div class="circle">
<h3 class="perkDesc">Great Oppurtunity</h3>
</svg>
</div>
</div> -->
</div>
</section>
<br>
<!-- !Tracks Section -->
<section class="section" id="tracks" >
<br>
<h1 class="sectionHeader">Tracks</h1>
<br>
<div class="trackContainer">
<div class="trackCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="trackContent">
<h2>01</h2>
<h3>Healthcare</h3>
<p>In India, considerable work has been done to reform the healthcare sector, which has involves the government and various stakeholders. Delivering affordable health care to billions of people presents enormous challenges for the medical community</p>
</div>
</div>
<div class="trackCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="trackContent">
<h2>02</h2>
<h3>Agriculture</h3>
<p>Being the primary source of income for more than half the nation, advancements in the field of agriculture are synchronous with the nation's strides towards becoming a global superpower.</p>
</div>
</div>
<div class="trackCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="trackContent">
<h2>03</h2>
<h3>Education & Productivity</h3>
<p>Education is the foundation on which the development of every citizen and the nation as a whole built on. Education can shape an individual's life, both in the classroom and outside. Productivity is very essential in every sector for rapid development</p>
</div>
</div>
<div class="trackCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="trackContent">
<h2>04</h2>
<h3>Crisis and Disaster Management</h3>
<p>Disaster Management can be defined as the organization and management of resources and responsibilities for dealing with all humanitarian aspects of emergencies.</p>
</div>
</div>
<div class="trackCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="trackContent">
<h2>05</h2>
<h3>Security & Surveillance</h3>
<p>Security and surveillance are implemented by criminal justice agencies to maintain order, enforce the law and to reduce victimization in the society.</p>
</div>
</div>
<div class="trackCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="trackContent">
<h2>06</h2>
<h3>Industrial Development</h3>
<p > With the start of industrial revolution in late 1800s, industrial development is seen as a key player to determine a nation's human development and quality of living.</p>
</div>
</div>
<div class="trackCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="trackContent">
<h2>07</h2>
<h3>Fintech</h3>
<p>Fintech has also been a key game changer for entrepreneurs, making it easier for startups and small businesses to secure loans, manage payroll, and process payments.</p>
</div>
</div>
<div class="trackCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="trackContent">
<h2>08</h2>
<h3>Open Innovation</h3>
<p>Open innovation is a concept AI originated that falls directly in the gap between business and academics. It leads to greater technological advancements in a relatively shorter time because together we work, together we innovate.</p>
</div>
</div>
</div>
</section>
<!-- !Domains Section -->
<br>
<section class="section" id="domains" >
<br>
<h1 class="sectionHeader">Domains</h1>
<br>
<div class="trackContainer">
<div class="domainCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="domainContent">
<h2>01</h2>
<h3>Block Chain</h3>
</div>
</div>
<div class="domainCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="domainContent">
<h2>02</h2>
<h3>Internet of Things</h3>
</div>
</div>
<div class="domainCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="domainContent">
<h2>03</h2>
<h3>Cyber Security</h3>
</div>
</div>
<div class="domainCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="domainContent">
<h2>04</h2>
<h3>Artificial Intelligence</h3>
</div>
</div>
<div class="domainCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="domainContent">
<h2>05</h2>
<h3>Image Processing</h3>
</div>
</div>
<div class="domainCard" data-aos="fade-up" data-aos-anchor-placement="top-center">
<span></span>
<span></span>
<span></span>
<span></span>
<div class="domainContent">
<h2>06</h2>
<h3>Software Development</h3>>
</div>
</div>
</div>
</section>
<!--!speakers spot-->
<section class="section" id="speakers">
<br>
<h1 class="sectionHeader">SPEAKER'S SECTION</h1>
<div class="profiles">
<div class="profile"data-aos="zoom-in-right" >
<a href="https://www.linkedin.com/in/kumardwij-bhatnagar/" target="_blank">
<img src="./assets/speakers/kumardwij.jpeg" class="profile-img">
</a>
<h3 class="user-name">Kumardwij Bhatnagar</h3>
<p>Cyber Security Consultant at PWC India.</p>
</div>
<div class="profile" data-aos="zoom-in-right">
<a href="https://www.instagram.com/htmlhints/" target="_blank">
<img src="./assets/speakers/tanisqh.jpeg" class="profile-img">
</a>
<h3 class="user-name">Tanishq Wadhwani</h3>
<p>Founder and CEO of C4 projects. <br>
Deep Learning Engineer at Dn-Analytix.
</p>
</div>
<!-- <div class="profile" data-aos="zoom-in-left">
<img src="./assets/speakers/speaker1.jpg" class="profile-img">
<h3 class="user-name">Naman</h3>
<h5>Hello</h5>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Numquam esse in cupiditate natus dolorem cumque, eos quae atque! Consectetur, laboriosam.</p>
</div>
<div class="profile" data-aos="zoom-in-left">
<img src="./assets/speakers/speaker1.jpg" class="profile-img">
<h3 class="user-name">Naman</h3>
<h5>Hello</h5>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Numquam esse in cupiditate natus dolorem cumque, eos quae atque! Consectetur, laboriosam.</p>
</div> -->
</div>
</section>
<!--!Sponsors -->
<section id="clients">
<br>
<div class="container">
<div class="section-header">
<h3 class="section-title">Sponsors</h3>
<span class="section-divider"></span>
</div>
<h4 class="title-sponsor">TITLE SPONSOR</h4>
<span class="section-divider-2"></span>
<div class="row wow fadeInUp">
<!-- <div class="col-md-4"></div> -->
<!-- <div class="m-auto">
<a class="sponsor-link" href="https://www.cropin.com/" target="_blank">
<img class="sponsor-img" src="./assets/sponsors/cropin_logo.png" alt="CROPIN">
</a>
</div> -->
<div class="m-auto">
<a class="sponsor-link" href="https://riskcovry.com/" target="_blank">
<img class="sponsor-img" src="./assets/sponsors/riskcovry.png" alt="CROPIN" height="20px">
</a>
</div>
</div>
<h4 class="title-sponsor">PROUD SPONSORS</h4>
<span class="section-divider-2"></span>
<div class="sponsors">
<div class="sponsor">
<a class="sponsor-link" href="http://rosenfeldmedia.com/" target="_blank">
<img class="sponsor-img" src="./assets/sponsors/rm-logo.svg" alt="RM">
</a>
</div>
<div class="sponsor">
<a class="sponsor-link" href="https://virtuosonetsoft.com/" target="_blank">
<img class="sponsor-img" src="./assets/sponsors/vn-logo.png" alt="Virtuoso">
</a>
</div>
</div>
<div class="group">
<div>
<h4 class="title-sponsor">INNOVATION PARTNER</h4>
<span class="section-divider-2"></span>
<div class="sponsors">
<div class="sponsor">
<a class="sponsor-link" href="https://hoverrobotix.com/" target="_blank">
<img class="sponsor-img" src="./assets/sponsors/hover-logo.png" alt="Hover">
</a>
</div>
</div>
</div>
<div>
<h4 class="title-sponsor">KNOWLEDGE PARTNER</h4>
<span class="section-divider-2"></span>
<div class="sponsors">
<div class="sponsor">
<a class="sponsor-link" href="https://phnxglobal.com/#/" target="_blank">
<img class="sponsor-img phxGlobal" src="./assets/sponsors/phoenix.png" alt="Hover">
</a>
</div>
</div>
</div>
<div class="codingBlocks">
<h4 class="title-sponsor ">EDUCATION PARTNER</h4>
<span class="section-divider-2"></span>
<div class="sponsors ">
<div class="sponsor ">
<a class="sponsor-link" href="https://codingblocks.com/" target="_blank" style="height: 5vh; width: 5vh;">
<img class="sponsor-img " src="./assets/sponsors/cb-white-logo.png" alt="Hover">
</a>
</div>
</div>
</div>
</div>
<div class="group expgrp">
<div class="sponsorwidth expimg1">
<h4 class="title-sponsor ">PARTNER</h4>
<span class="section-divider-2"></span>
<div class="sponsors ">
<div class="sponsor expimg4">
<a class="sponsor-link" href="https://hoverrobotix.com/" target="_blank">
<img class="sponsor-img" src="./assets/sponsors/memezton.jpg" alt="Hover">
</a>
<a class="sponsor-link" href="https://www.c4projects.tech/" target="_blank">
<img class="sponsor-img" src="./assets/sponsors/c4-logo.png" alt="Hover">
</a>
</div>
</div>
</div>
<div class="expimg3" >
<h4 class="sponsorposition">CERTIFICATE PARTNER</h4>
<span class="section-divider-2"></span>
<div class="sponsors ">
<div class="sponsor sponsorposition-img">
<a class="sponsor-link expimg3" href="https://snapperfuturetech.com/" target="_blank">
<img class="sponsor-img " src="./assets/sponsors/snapperFutureTech.png" alt="Hover">
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--! Brouchure -->
<section id="call-to-action">
<div class="container pt-4 pb-4">
<div class="row d-flex justify-content-center">
<div class="col-lg-9 text-center ">
<h3 class="cta-title">Interested in Sponsoring ?</h3>
<p class="cta-text"> Here's the brochure.</p>
</div>
</div>
<div class="row d-flex justify-content-center ">
<div class="col-lg-3 cta-btn-container text-center ">
<a class="cta-btn align-middle"
href="https://drive.google.com/file/d/1MiXJ4mteQZf0nCLSZ1QfdYBPlE6IA5ID/view?usp=sharing"
target="_blank">Brochure</a>
</div>
</div>
</div>
</section>
<!-- !Student Organizers -->
<br>
<section class="studentOrganizers" id="organizers">
<div class="section-header">
<h3 class="section-title studOrg-Heading">Student Organizers
</h3>
</div>
<div class="studOrg-container">
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Tanishi.jpg" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Tanishi <br>Gahtori <br><br><span>Chairperson</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Naman.jpeg" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Naman <br>Jain <br><br><span>General Secretary</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Jayant.jpg" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Jayant <br>Ranjan <br><br><span>Vice-Chairperson</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Shaurya.jpg" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Shaurya <br>Kohli <br><br><span>Technical Chair (Software)</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Pranav.jpg" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Pranav<br> Kadambi <br><br><span>Projects Head (Software)</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Akshad.jpeg" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Akshad <br>Patel <br><br><span>Technical Chair (Hardware)</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Harshvardhan.jpg" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Harshvardhan Singh <br><br><span>Projects Head (Hardware)</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Jiya.jpg" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Jiya <br>Garg <br><br><span>Finance Head</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Amrasha.jpg" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Amrasha Srivastava<br><br><span>Public Relations Head</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Nadeem.jpg" >
</div>
<div class="studOrg-contentBox">
<h3>Nadeem <br>Parvez <br><br><span>Design Chair</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Utkarsh.jpg" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Utkarsh <br> Sinha <br><br><span>Advisory Board</span></h3>
</div>
</div>
</div>
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/team/Gunjan.JPG" alt="">
</div>
<div class="studOrg-contentBox">
<h3>Gunjan Raj<br> Tiwari <br><br><span>Advisory Board</span></h3>
</div>
</div>
</div>
</div>
</section>
<!-- !Faculty Organizer and Student Organizers have same class -->
<section class="facultyOrg">
<div class="section-header">
<h3 class="section-title">Faculty Organizer
</h3>
</div>
<div class="studOrg-container">
<div class="studOrgCard">
<div class="studOrgContent">
<div class="studOrg-img">
<img src="./assets/faculty/V_Santhi.jpg" alt="">
</div>
<div class="studOrg-contentBox">
<br><br>
<h3>Dr. SANTHI V</h3>
</div>
</div>
</div>
</div>
</section>
<!-- !FAQ Section -->
<section class="section" id="faq">
<br><br>
<br /><h1 class="sectionHeader">Frequently Asked Questions</h1>
<div class="container py-3">
<div class="row">
<div class="col-10 mx-auto">
<div class="accordion" id="faqExample">
<div class="card mb-4">
<div class="card-header p-2" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link btn-wrap-text FAQHead" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Q: Who all can register?
</button>
</h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#faqExample">
<div class="card-body">
The hackathon is open for all
</div>
</div>
</div>
<div class="card mb-4">
<div class="card-header p-2" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link btn-wrap-text FAQHead collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Q: What is the registration fee?
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#faqExample">
<div class="card-body">
Registrations asre completely free
</div>
</div>
</div>
<div class="card mb-4">
<div class="card-header p-2" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link btn-wrap-text FAQHead collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Q. How many members in a team?
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#faqExample">
<div class="card-body">
there can be minimum of 3 and maximum of 5 members in a team
</div>
</div>
</div>
<!-- <div class="card mb-4">
<div class="card-header p-2" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link btn-wrap-text FAQHead collapsed" type="button" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
Q. What is code of conduct?
</button>
</h5>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingThree" data-parent="#faqExample">
<div class="card-body">
The answer to this question can go here. This FAQ example can contain all the Q/A that is needed.
</div>
</div>
</div> -->
<div class="card mb-4">
<div class="card-header p-2" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link btn-wrap-text FAQHead collapsed" type="button" data-toggle="collapse" data-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive">
Q. When do applications close?
</button>
</h5>
</div>
<div id="collapseFive" class="collapse" aria-labelledby="headingThree" data-parent="#faqExample">
<div class="card-body">
Application closes on 29th april
</div>
</div>
</div>
<!-- <div class="card mb-4">
<div class="card-header p-2" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link btn-wrap-text FAQHead collapsed" type="button" data-toggle="collapse" data-target="#collapseSix" aria-expanded="false" aria-controls="collapseSix">
Q. Who are the judges?
</button>
</h5>
</div>
<div id="collapseSix" class="collapse" aria-labelledby="headingThree" data-parent="#faqExample">
<div class="card-body">
The answer to this question can go here. This FAQ example can contain all the Q/A that is needed.
</div>
</div>
</div> -->
<div class="card mb-4">
<div class="card-header p-2" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link btn-wrap-text FAQHead collapsed" type="button" data-toggle="collapse" data-target="#collapseSeven" aria-expanded="false" aria-controls="collapseSeven">
Q. What is the duration of the hack?
</button>
</h5>
</div>
<div id="collapseSeven" class="collapse" aria-labelledby="headingThree" data-parent="#faqExample">
<div class="card-body">
Hack4Cause will go on for 24-36 hours
</div>
</div>
</div>
</div>
</div>
</div>
<!--/row-->
</div>
<!--container-->
</section>
<div class="container-fluid pb-0 mb-0 justify-content-center text-light " id="contact">
<br>
<footer>
<div class="row my-5 justify-content-center py-5">
<div class="col-11">
<div class="row ">
<div class="col-xl-4 col-md-2 col-sm-2 col-6 my-auto mx-auto a">
<img src="./assets/SSITLogo.png" alt="" class="footerLogo" height="130px">
</div>
<div class="col-xl-4 col-md-2 col-sm-2 col-6 my-auto mx-auto a map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3888.0016147110123!2d79.15722781536499!3d12.971748218383519!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bad479f0ccbe067%3A0xfef222e5f36ecdeb!2sVellore%20Institute%20of%20Technology!5e0!3m2!1sen!2sin!4v1606466328745!5m2!1sen!2sin" width="400" height="300" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
<div class="col-xl-2 col-md-4 col-sm-4 col-12">
<h6 class="mb-3 mb-lg-4 bold-text "><b>MENU</b></h6>
<ul class="list-unstyled">
<li><a href="">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#tracks">Tracks</a></li>
<li><a href="#domains">Domains</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#clients">Sponsors</a></li>
<li><a href="https://h4c-registations.herokuapp.com/register">Register</a></li>
</ul>
</div>
<div class="col-xl-2 col-md-4 col-sm-4 col-12">
<h6 class="mb-3 mb-lg-4 text-muted bold-text mt-sm-0 mt-5"><b>ADDRESS</b></h6>
<p class="mb-1">Vellore Institute of Technology</p>
<p>Vellore, Tamil Nadu - 632014</p>
</div>
</div>
<div class="row ">
<div class="col-xl-8 col-md-4 col-sm-4 col-auto my-md-0 mt-5 order-sm-1 order-3 align-self-end">
<p class="social text-muted mb-0 pb-0 bold-text"> <span class="mx-2"><a href="https://www.facebook.com/SSITVIT" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a></span> <span class="mx-2"><a href="https://www.linkedin.com/company/ieee-ssit-vit/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a></span> <span class="mx-2"><a href="https://www.instagram.com/ieeessit/" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a></span> </p><small class="rights"><span>®</span> IEEE SSIT - VIT All Rights Reserved.</small>
</div>
<div class="col-xl-2 col-md-4 col-sm-4 col-auto order-1 align-self-end ">
<h6 class="mt-55 mt-2 text-muted bold-text"><b>Email Us</b></h6><a href="mailto:[email protected]"><small> <span><i class="fa fa-envelope" aria-hidden="true"></i></span> [email protected]</small></a>
<br>
<br><br>
</div>
<div class="col-xl-2 col-md-4 col-sm-4 col-auto order-2 align-self-end mt-3 ">
<h6 class="text-muted bold-text"><b>Reach us at</b></h6><a href="tel: 7294992887"><small><span><i class="fa fa-phone" aria-hidden="true"></i></span> +91 7294992887</small></a>
<br><br>
<a href="whatsapp: 9513017739"><small><span><i class="fa fa-whatsapp" aria-hidden="true"></i></span> +91 9513017739</small></a>
</div>
</div>
</div>
</div>
</footer>
</div>
<script src="app.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>