forked from hack4bengal/hack4bengal.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp_index.html
1272 lines (1153 loc) · 60 KB
/
temp_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 content="width=device-width, initial-scale=1.0" name="viewport">
<title>Hack4Bengal</title>
<meta
content="Hack4Bengal began with the idea of bringing together the best of the best in the field of technology and provide a platform for the students to showcase their skills and work."
name="description">
<meta content="hack4bengal" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.ico" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="css/style1.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SBJFT4043Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-SBJFT4043Y');
</script>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center">
<div class="container d-flex align-items-center">
<h1 class="logo me-auto"><a href="index.html">Hack<span>4</span>Bengal</a></h1>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#timeline">Timeline</a></li>
<li><a class="nav-link scrollto" href="#themes">Themes</a></li>
<li><a class="nav-link scrollto " href="#sponsors">Sponsors</a></li>
<li><a class="nav-link scrollto " href="#prizes">Prizes</a></li>
<li><a class="nav-link scrollto" href="team.html">Team</a></li>
<li><a class="nav-link scrollto" href="events.html">Events</a></li>
<li>
<a id="nav-items-dash" href="" class="nav-link scrollto">
<div class="apply-button" data-hackathon-slug="hack4bengal" data-button-theme="light"
style="height: 44px; width: 312px; "></div>
</a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container" data-aos="zoom-out" data-aos-delay="100">
<div class="row">
<div class="col-xl-6">
<h1> </h1>
<h2> </h2>
<div class="btn-join-discord scrollto py-2 col-lg-6 col-md-12 col-sm-12">
<a href="https://discord.gg/HaRVXjm5FP" target="_blank"
style="height: 44px;width: 312px; max-width: 312px; text-align: center;"
class="btn-lg register-btn discord"><i class='bi bi-discord' style="font-style: normal;">  Join
Discord Server</i></a>
</div>
<div class="py-2 col-lg-6 col-md-12 col-sm-12">
<div class="apply-button" data-hackathon-slug="uplift" data-button-theme="light"
style="height: 44px; width: 312px"></div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= sponsors Section ======= -->
<section id="testimonials" class="testimonials" style="padding-bottom: 0px;">
<div class="container" data-aos="fade-up">
<div class="section-title" style="padding: 0px">
<h2 style="color: red">Starts In</h2>
<h2 id="counterTimer"></h2>
<style>
#counterTimer {
font-size: 120px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
@media (max-width: 768px) {
#counterTimer {
font-size: 30px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
}
@media (max-height: 500px) {
#counterTimer {
font-size: 30px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
}
</style>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Apr 8, 2022 22:00:00").getTime();
// Update the count down every 1 second
var x = setInterval(function () {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("counterTimer").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= themes Section ======= -->
<section id="counts" class="counts">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-emoji-smile"></i>
<span data-purecounter-start="0" data-purecounter-end="1500" data-purecounter-duration="1"
class="purecounter"></span>
<p>Enthusiast Members</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="bi bi-journal-richtext"></i>
<span data-purecounter-start="0" data-purecounter-end="31" data-purecounter-duration="1"
class="purecounter"></span>
<p>Community Partners</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-headset"></i>
<span data-purecounter-start="0" data-purecounter-end="85" data-purecounter-duration="1"
class="purecounter"></span>
<p>SKEPSIS Events</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-award"></i>
<span data-purecounter-start="0" data-purecounter-end="20" data-purecounter-duration="1"
class="purecounter"></span>
<p>Sponsors</p>
</div>
</div>
</div>
</div>
</section>
<!-- ======= About Section ======= -->
<section id="about" class="about section-bg">
<div class="container" data-aos="fade-up">
<div class="row no-gutters">
<div class="content col-xl-5 d-flex align-items-stretch">
<div class="content">
<h3>Hack4Bengal,<br> a Skepsis SNU Initiative</h3>
<p>
Hack4Bengal began with the idea of bringing together the best of the best in the field of technology and
provide a platform for the students to showcase their skills and work.
</p>
<a href="https://snuniv.ac.in" class="about-btn"><span>About us</span> <i
class="bx bx-chevron-right"></i></a>
<a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf" class="about-btn"><span>MLH: Code of Conduct</span> <i
class="bx bx-chevron-right"></i></a>
</div>
</div>
<div class="col-xl-7 d-flex align-items-stretch">
<div class="icon-boxes d-flex flex-column justify-content-center">
<div class="row">
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-receipt"></i>
<h4>Digitally Together</h4>
<p>Get the feel of a Physical Hackathon even Digitally</p>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-cube-alt"></i>
<h4>Exciting Rewards</h4>
<p>Get rewarded for the work you do, and always win!</p>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-images"></i>
<h4>Most Awaited</h4>
<p>More than 6 months of planning, and here we are
</p>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-shield"></i>
<h4>Community in Making</h4>
<p>Skepsis has over 15 Chapters. Active 50+ Core Members and 1500+ Participating Members.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Testimonials Section ======= -->
<section id="timeline" class="testimonials">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Hackathon Timeline</h2>
<p>The Hackathon will not only be a 48 Hours blast, it would be a timeline of madness. Stay tuned with us for
an awesome experience.</p>
</div>
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/reg_starts.jpg" class="testimonial-img" alt="">
<h3>Registration Starts</h3>
<h4>Jan 1, 2022</h4>
<p>
The Hackathon will be annnouced on 1st January, 2022. Get ready to be a part of a development
rollercoaster.
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/reg_closes.jpg" class="testimonial-img" alt="">
<h3>Registration Closes</h3>
<h4>Apr 1, 2022</h4>
<p>
The Teams need to register their team within this time frame. The maximum size of Team will be 4. Do
choose your team wisely.
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/pre_hack.jpg" class="testimonial-img" alt="">
<h3>PreHackathon Sessions</h3>
<h4>Apr 1 to Apr 8, 2022</h4>
<p>
The different community partners will take part and host different events on Coding,
Development & Community Building.
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/hack.png" class="testimonial-img" alt="">
<h3>Hackathaon Running</h3>
<h4>Apr 8 to 10, 2022</h4>
<p>
These 48 hrs, endulge yourself in developing the best possible solution competing over 100s
of teams for a social cause.
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/winner.jpg" class="testimonial-img" alt="">
<h3>Winner Announcement</h3>
<h4>Apr 18, 2022</h4>
<p>
Winners from different categories and best solution achivers will be announced in this phase. Prizes
will be distributed as per dates.
</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/closing.jpg" class="testimonial-img" alt="">
<h3>Closing Ceremony</h3>
<h4>Apr 20, 2022</h4>
<p>
Join us for some engaging sessions by our sponsors, community partners and organizers. Declaration
of next season :P
</p>
</div>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= themes Section ======= -->
<section id="themes" class="themes section-bg ">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Project Themes</h2>
<p></p>
</div>
<div class="row">
<div class="col-md-6">
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
<i class="bi bi-briefcase"></i>
<h4><a href="#">Healthcare</a></h4>
<p>The Healthcare is mainly focused on developing solution for the Ministry of Health. You are supposed to
come up with innovative ideas and implement them for the better need of the Healthcare System.</p>
</div>
</div>
<div class="col-md-6 mt-4 mt-md-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="200">
<i class="bi bi-card-checklist"></i>
<h4><a href="#">Education</a></h4>
<p>As the Covid world enforced the Education System to indulged into digital curriculum, you are supposed
to come up with innovative solution that will help the education syetem for a better e-learning system.
</p>
</div>
</div>
<div class="col-md-6 mt-4 mt-md-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="300">
<i class="bi bi-bar-chart"></i>
<h4><a href="#">Fin-Tech</a></h4>
<p>As the world is leaning towards adapting the use of
Cryptocurrency and online payment systems, this track expects you to bring your
imagination and enhance or
automate financial themes and processes.
</p>
</div>
</div>
<div class="col-md-6 mt-4 mt-md-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="400">
<i class="bi bi-binoculars"></i>
<h4><a href="#">Sustainability</a></h4>
<p>This track will seek to build projects that will make our lives more sustainable, including but not
limited to teaching others how to ethically consume and creating greener technologies for the future.
</p>
</div>
</div>
<div class="col-md-6 mt-4 mt-md-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="500">
<i class="bi bi-brightness-high"></i>
<h4><a href="#">Community</a></h4>
<p>This track serves to build for the community. Build for solving the problems of the society. Find
solutions for the problems of inclusion in the community etc. Each and every project that makes our
lives better will adore this track.</p>
</div>
</div>
<div class="col-md-6 mt-4 mt-md-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="600">
<i class="bi bi-calendar4-week"></i>
<h4><a href="#">Open Innovation</a></h4>
<p>A young mind is full of ideas which can not be submerged into particular barriers. So this domain is to
come up with some innovative, and we think this will
be one of the best platforms to showcase your ideas.</p>
</div>
</div>
</div>
</div>
</section><!-- End themes Section -->
</div>
</div>
</section><!-- End sponsors Section -->
<!-- Timeline Section -->
<!-- cd-timeline -->
<section id="sponsors" class="sponsors">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Sponsors</h2>
<p>Thank you to all our Sponsors for making this event possible. Without their support, this idea couldn't
have been materialized. You can check out more about them from the below given links.</p>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="sponsors-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">Platinum</li>
<li data-filter=".filter-card">Gold</li>
<li data-filter=".filter-web">Silver</li>
</ul>
</div>
</div>
<div class="row sponsors-container" data-aos="fade-up" data-aos-delay="200">
<!-- <div class="col-lg-4 col-md-6 sponsors-item filter-app">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/snu.png" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/snu.png" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Sister Nivedita University, DG 1/2 Action Area 1, Newtown Kolkata"><i class="bx bx-plus"></i></a>
<a href="https://snuniv.ac.in" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div> -->
<div class="col-lg-4 col-md-6 sponsors-item filter-app">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/devfolio.jpg" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/devfolio.jpg" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Devfolio"><i class="bx bx-plus"></i></a>
<a href="https://devfolio.co" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-app">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/polygon.jpg" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/polygon.jpg" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Polygon"><i class="bx bx-plus"></i></a>
<a href="https://polygon.technology" target="_blank" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-app">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/Github.png" width="616" height="128" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/Github.png" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Github"><i class="bx bx-plus"></i></a>
<a href="https://github.com/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-card">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/filecoin.jpg" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/filecoin.jpg" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Filecoin"><i class="bx bx-plus"></i></a>
<a href="https://filecoin.io" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-card">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/celo.jpg" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/celo.jpg" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Celo"><i class="bx bx-plus"></i></a>
<a href="https://celo.org" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-card">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/tezos.jpg" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/tezos.jpg" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Tezos"><i class="bx bx-plus"></i></a>
<a href="https://tezos.com" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-card">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/Postman.png" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/Postman.png" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Tezos"><i class="bx bx-plus"></i></a>
<a href="https://www.postman.com/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-web">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/stickermule.png" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/stickermule.png" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="StickerMule"><i class="bx bx-plus"></i></a>
<a href="http://hackp.ac/mlh-stickermule-hackathons" target="_blank" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-web">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/gmc.jpg" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/gmc.jpg" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Give My Certificate3"><i class="bx bx-plus"></i></a>
<a href="https://givemycertificate.com" target="_blank" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-web">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/digitalocean.jpg" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/digitalocean.jpg" data-gallery="sponsorsGallery"
class="sponsors-lightbox" title="Digital Ocean"><i class="bx bx-plus"></i></a>
<a href="https://digitalocean.com" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-web">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/taskade.jpg" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/taskade.jpg" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Taskade"><i class="bx bx-plus"></i></a>
<a href="https://taskade.com" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-web">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/1p.jpg" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/1p.jpg" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="1Password"><i class="bx bx-plus"></i></a>
<a href="https://1password.com" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-web">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/interview-cake.png" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/interview-cake.png" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Interview Cake"><i class="bx bx-plus"></i></a>
<a href="https://www.interviewcake.com/" target="_blank" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-web">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/leading-learners.png" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/leading-learners.png" data-gallery="sponsorsGallery"
class="sponsors-lightbox" title="Leading Learners"><i class="bx bx-plus"></i></a>
<a href="https://www.leadlearners.ca/" target="_blank" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 sponsors-item filter-web">
<div class="sponsors-wrap">
<img src="assets/img/sponsors/e3.png" class="img-fluid" alt="">
<div class="sponsors-info">
<div class="sponsors-links">
<a href="assets/img/sponsors/e3.png" data-gallery="sponsorsGallery" class="sponsors-lightbox"
title="Leading Learners"><i class="bx bx-plus"></i></a>
<a href="https://www.echo3d.co/" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="sponsor-us section-title">
<h2><button type="button" class="sponsor-us"><a href="https://bit.ly/h4b-sponsor-us">Sponsor Us</a></button>
</h2>
<style>
.sponsor-us {
border: #000;
border-radius: 30px;
padding: 10px 20px 10px 20px;
font-size: 20px;
font-weight: bold;
color: red;
}
</style>
</div>
</div>
</section><!-- End Counts Section -->
<section id="prizes" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Prizes</h2>
<p>Hackathon Prize Details</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Overall Winner</h5>
<h6 class="card-price text-center">₹ 20,000</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Exclusive H4B Tshirt</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Stickers</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Goodie Bag from Sponsors</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>A lot more to come!</li>
</ul>
<hr>
<div class="text-center" style="margin-bottom: 10px">
<button type="button" class="btn" data-bs-toggle="modal" data-ticket-type="standard-access" onclick="window.location.href='https://bit.ly/Overall-Winner-Swags';">Learn More</button>
</div>
</div>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">First Runner's Up</h5>
<h6 class="card-price text-center">₹ 15,000</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Exclusive H4B Tshirt</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Stickers</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Goodie Bag from Sponsors</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>A lot more to come!</li>
</ul>
<hr>
<div class="text-center" style="margin-bottom: 10px">
<button type="button" class="btn" data-bs-toggle="modal" data-ticket-type="standard-access" onclick="window.location.href='https://bit.ly/1st-Runner-Up-Swags';">Learn More</button>
</div>
</div>
</div>
</div>
<!-- Pro Tier -->
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Second Runner's Up</h5>
<h6 class="card-price text-center">₹ 10,000</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Exclusive H4B Tshirt</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Stickers</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Goodie Bag from Sponsors</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>A lot more to come!</li>
</ul>
<hr>
<div class="text-center" style="margin-bottom: 10px">
<button type="button" class="btn" data-bs-toggle="modal" data-ticket-type="standard-access" onclick="window.location.href='https://bit.ly/2nd-Runner-Up-Swags';">Learn More</button>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="300">
<div class="card">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Best Girls' Team</h5>
<h6 class="card-price text-center">₹ 4,000</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Exclusive H4B Tshirt</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Stickers</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Goodie Bag from Sponsors</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>A lot more to come!</li>
</ul>
<hr>
<div class="text-center" style="margin-bottom: 10px">
<button type="button" class="btn" data-bs-toggle="modal" data-ticket-type="standard-access" onclick="window.location.href='https://heathered-zenobia-a78.notion.site/Best-Girl-s-Team-Swag-Details-dad11a97e9884dbdb9e2dd59993995ca';">Learn More</button>
</div>
</div>
</div>
</div>
<!-- Pro Tier -->
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="300">
<div class="card">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Best Beginners' Team</h5>
<h6 class="card-price text-center">Vouchers</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Exclusive H4B Tshirt</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Stickers</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Goodie Bag from Sponsors</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>A lot more to come!</li>
</ul>
<hr>
<div class="text-center" style="margin-bottom: 10px">
<button type="button" class="btn" data-bs-toggle="modal" data-ticket-type="standard-access" onclick="window.location.href='https://heathered-zenobia-a78.notion.site/Best-Beginner-s-Team-Swag-Details-8f1e5f373cd14d7ea3dc5f218a5a9ed2';">Learn More</button>
</div>
</div>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Tezos H4b Award</h5>
<h6 class="card-price text-center">Sponsor</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Tshirt</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Stickers</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Goodie Bag from Sponsors</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>A lot more to come!</li>
</ul>
<hr>
<div class="text-center" style="margin-bottom: 10px">
<button type="button" class="btn" data-bs-toggle="modal" data-ticket-type="standard-access" onclick="window.location.href='https://devfolio.notion.site/Filecoin-Devfolio-Hackathon-Season-Prize-998fc3fe477e474086ae1d5ed1685203';">Learn More</button>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Celo H4B Award</h5>
<h6 class="card-price text-center">Sponsor</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>₹20,000 for best Dapp built on Celo</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Continuity Support</li>
</ul>
<hr>
<div class="text-center" style="margin-bottom: 10px">
<button type="button" class="btn" data-bs-toggle="modal" data-ticket-type="standard-access" onclick="window.location.href = 'https://www.notion.so/Celo-Devfolio-Hackathon-Season-Prize-8b98dac17f134abeae863d5d98c01ff0'">Learn More</button>
</div>
</div>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Filecoin H4B Award</h5>
<h6 class="card-price text-center">Sponsor</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>₹20000 for best use of IPFS</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>₹20000 for best use of Filecoin</li>
</ul>
<hr>
<div class="text-center" style="margin-bottom: 10px">
<button type="button" class="btn" data-bs-toggle="modal" data-ticket-type="standard-access" onclick="window.location.href='https://devfolio.notion.site/Filecoin-Devfolio-Hackathon-Season-Prize-998fc3fe477e474086ae1d5ed1685203';">Learn More</button>
</div>
</div>
</div>
</div>
<!-- Pro Tier -->
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="300">
<div class="card">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Polygon H4B Award</h5>
<h6 class="card-price text-center">Sponsor</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>₹10,000 for best hack built on ETH, or </li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>₹15,000 for best hack built on ETH + Polygon</li>
</ul>
<hr>
<div class="text-center" style="margin-bottom: 10px">
<button type="button" class="btn" data-bs-toggle="modal" data-ticket-type="standard-access" onclick="window.location.href='https://www.notion.so/Polygon-Devfolio-Hackathon-Season-Prize-de8961d5eeff4780963749da0b75037c';" >Learn More</button>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="row justify-content-center">
<div class="col-lg-4 " data-aos="fade-up" data-aos-delay="100">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">All Participants</h5>
<h6 class="card-price text-center">#Swagsforall</h6>
<h6 class="text-center">On Valid Submission</h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>MLH Swags</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Taskade 5-year Upgrade</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>1Password access for 1 year</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>$100 DigitalOcean Credits for 60 days</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Full Interview Course by Interview Cake</li>
</ul>
<hr>
<!-- <div class="text-center" style="margin-bottom: 10px">
<button type="button" class="btn" data-bs-toggle="modal" data-ticket-type="standard-access" href="">Learn More</button>
</div> -->
</div>
</div>
</div>
</div>
</div>
<!-- ======= Team Section ======= -->
<!-- ======= Frequently Asked Questions Section ======= -->
<section id="faq" class="faq">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Frequently Asked Questions</h2>
</div>
<ul class="faq-list accordion" data-aos="fade-up">
<li>
<a data-bs-toggle="collapse" class="collapsed" data-bs-target="#faq1">WHAT IS A HACKATHON? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-x icon-close"></i></a>
<div id="faq1" class="collapse" data-bs-parent=".faq-list">
<p>
A hackathon is social coding event where programmers, designers, and developers collaborate to solve a
problem and compete for cash prizes. It’s one part party, one part work-hard overnight battle against
the clock and the competition.
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#faq2" class="collapsed">WHY WOULD SOMEONE PARTICIPATE IN A
HACKATHON? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-x icon-close"></i></a>
<div id="faq2" class="collapse" data-bs-parent=".faq-list">
<p>
People participate in hackathons for lots of reason: the challenge, the creative outlet, the community
collaboration, the networking, the swag and maybe Prizes!
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#faq3" class="collapsed">WHO CAN PARTICIPATE? ARE THERE ANY
PREREQUISITES OR REQUIRED SKILLS?<i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-x icon-close"></i></a>
<div id="faq3" class="collapse" data-bs-parent=".faq-list">
<p>
Anyone is welcome to participate in this event. While experience coding and programming is a huge plus,
teams will also need strong presentation skills and brilliant ideas.
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#faq4" class="collapsed">DO I NEED A TEAM? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-x icon-close"></i></a>
<div id="faq4" class="collapse" data-bs-parent=".faq-list">
<p>
While you can work alone, Hack4Bengal is a team event, so working with others is encouraged. There are a
few ways to find teammates: You can pick your team from people you already know, post in our Discord
Server to other members, find a team member via DevPost, meet them at pre-hackathon info sessions or the
kickoff party.
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#faq5" class="collapsed">IS THERE ANYTHING THAT I NEED TO PREP?
<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-x icon-close"></i></a>
<div id="faq5" class="collapse" data-bs-parent=".faq-list">
<p>
Other than finding fellow brilliant minds with complementary skills to team up with, there is nothing
that you need to prepare in advance.
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#faq6" class="collapsed">IS THERE ANYTHING FEE INVOLVED?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-x icon-close"></i></a>
<div id="faq6" class="collapse" data-bs-parent=".faq-list">
<p>
It's free for everyone to participate. There is no money involved at any point during this Hackathon.
</p>
</div>
</li>
</ul>
</div>
</section><!-- End Frequently Asked Questions Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Team</h2>
<p>H4B comprises of a 20+ Members Team led by 3. Let's make this event a grand success together.</p>
</div>
<div style="justify-content: center; align-items: center;" class="row">
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="100">
<div class="member-img">
<img src="assets/img/team/manish.jpg" class="img-fluid" alt="Manish Kumar Barnwal">