-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
1443 lines (1273 loc) · 64.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 content="width=device-width, initial-scale=1.0" name="viewport">
<title>Hack4Bengal 2.0</title>
<meta content="" name="description">
<meta content="" 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|Nunito:300,300i,400,400i,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/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="assets/css/style.css" rel="stylesheet">
</head>
<body>
<div id="loader"></div>
<div id="content">
<!-- ======= Header ======= -->
<header id="header" class="header fixed-top" style="position:fixed;">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center">
<img src="assets/img/logo.png" alt="">
</a>
<nav id="navbar" class="navbar">
<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="#features">Themes and Timeline</a></li>
<li><a class="nav-link scrollto" href="#pricing">Prizes</a></li>
<li><a class="nav-link scrollto" href="#faq">FAQs</a></li>
<li><a class="nav-link scrollto" href="#testimonials">Testimonials</a></li>
<li><a class="nav-link scrollto" href="#team">Team</a></li>
<li><a class="getstarted scrollto" href="#about">Get Started</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle mlh-button"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="hero d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex flex-column justify-content-center">
<h1 data-aos="fade-up">We are back with<br>Hack4Bengal 2.0</h1>
<h2 data-aos="fade-up" data-aos-delay="400">Bringing together the best of the<br>field and provide a
platform<br>showcase of skills</h2>
<div data-aos="fade-up" data-aos-delay="600">
<div class="text-center text-lg-start hero-buttons">
<a href="https://discord.io/Hack4Bengal" target="_blank"
class="btn-get-started scrollto d-inline-flex align-items-center justify-content-center align-self-center"
style="margin-bottom: -50px;">
<span>Join Discord</span>
<i class="bi bi-discord"></i>
</a>
<a href="pre-register.html" target="_blank"
class="btn-get-started scrollto d-inline-flex align-items-center justify-content-center align-self-center">
<span>Pre-Register</span>
<i class="bi bi-arrow-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 hero-img" data-aos="zoom-out" data-aos-delay="200">
</div>
</div>
</div>
</section><!-- End Hero -->
<script src="https://cdn.logwork.com/widget/countdown.js"></script>
<a href="https://logwork.com/countdown-w99p" class="countdown-timer" data-timezone="Asia/Kolkata"
data-textcolor="#dc393b" data-date="2023-01-20 00:00" data-background="#ffffff" data-digitscolor="#dc393b"
style="margin-top: 20px; margin-bottom: -20px; font-family:'Courier New', Courier, monospace;">Registrations begin
in</a>
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="row gx-0">
<div class="col-lg-6 d-flex flex-column justify-content-center" data-aos="fade-up" data-aos-delay="200">
<div class="content" style="background-color: white;">
<h3>Who We Are</h3>
<h2>A Community of enthusiastic hackers, who are ready to take up any challenge.</h2>
<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>
<div class="text-center text-lg-start">
<a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf"
class="btn-read-more d-inline-flex align-items-center justify-content-center align-self-center">
<span>MLH CoC</span>
<i class="bi bi-arrow-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 d-flex align-items-center" data-aos="zoom-out" data-aos-delay="200">
<a href="https://s1.hack4bengal.tech/" target="_blank"><img src="assets/img/about.png" class="img-fluid"
alt=""></a>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Values Section ======= -->
<section id="values" class="values">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Our Values</h2>
<p>We are who we are!</p>
</header>
<div class="d-lg-none">
<div id="values-mobile-control" class="carousel slide" data-bs-ride="carousel" data-bs-interval="2500">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="box">
<img src="assets/img/values-1.png" class="img-fluid" alt="">
<h3>Digitally Together</h3>
<p>Though the Hackathon is offline this time, we will be virtually connected with our community
online</p>
</div>
</div>
<div class="carousel-item">
<div class="box">
<img src="assets/img/values-2.png" class="img-fluid" alt="">
<h3>Exciting Rewards</h3>
<p>Whatever be the contribution, there will be swags for everyone! Yes you read that right</p>
</div>
</div>
<div class="carousel-item">
<div class="box">
<img src="assets/img/values-3.png" class="img-fluid" alt="">
<h3>Most Awaited</h3>
<p>After Season 1, Season 2 is here. What started as a team of 3, is now a community of 1500+
Hackers and still counting.</p>
</div>
</div>
</div>
<div class="carousel-indicators mob-carousel-indicators ">
<button type="button" data-bs-target="#values-mobile-control" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#values-mobile-control" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#values-mobile-control" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
</div>
</div>
<div class="row d-none d-lg-flex">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="box">
<img src="assets/img/values-1.png" class="img-fluid" alt="">
<h3>Digitally Together</h3>
<p>Though the Hackathon is offline this time, we will be virtually connected with our community online
</p>
</div>
</div>
<div class="col-lg-4 mt-4 mt-lg-0" data-aos="fade-up" data-aos-delay="400">
<div class="box">
<img src="assets/img/values-2.png" class="img-fluid" alt="">
<h3>Exciting Rewards</h3>
<p>Whatever be the contribution, there will be swags for everyone! Yes you read that right</p>
</div>
</div>
<div class="col-lg-4 mt-4 mt-lg-0" data-aos="fade-up" data-aos-delay="600">
<div class="box">
<img src="assets/img/values-3.png" class="img-fluid" alt="">
<h3>Most Awaited</h3>
<p>After Season 1, Season 2 is here. What started as a team of 3, is now a community of 1500+ Hackers
and still counting.</p>
</div>
</div>
</div>
</div>
</section>
<!-- ======= Counts Section ======= -->
<section id="counts" class="counts">
<div class="container" data-aos="fade-up">
<div class="row gy-4">
<div class="counter red col-lg-3 col-md-6">
<div class="counter-icon">
<i class="bi bi-emoji-smile" style="color: #dc393b;"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="25" data-purecounter-duration="1"
class="purecounter counter-value"></span>
<h3>Sponsors</h3>
</div>
</div>
</div>
<div class="counter red col-lg-3 col-md-6">
<div class="counter-icon">
<i class="bi bi-journal-richtext" style="color: #dc393b;"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="45" data-purecounter-duration="1"
class="purecounter counter-value"></span>
<h3>Community Partners</h3>
</div>
</div>
</div>
<div class="counter red col-lg-3 col-md-6">
<div class="counter-icon">
<i class="bi bi-headset" style="color: #dc393b;"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="85" data-purecounter-duration="1"
class="purecounter counter-value"></span>
<h3>Events</h3>
</div>
</div>
</div>
<div class="counter red col-lg-3 col-md-6">
<div class="counter-icon">
<i class="bi bi-people" style="color: #dc393b;"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="1500" data-purecounter-duration="1"
class="purecounter counter-value"></span>
<h3>Happy Hackers</h3>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Counts Section -->
<!-- ======= Features Section ======= -->
<section id="features" class="features">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Themes</h2>
<p>Your imagination is the theme!</p>
</header>
<div class="row">
<div class="col-lg-6">
<img src="assets/img/features.png" class="img-fluid" alt="">
</div>
<div class="col-lg-6 mt-5 mt-lg-0 d-flex">
<div class="row align-self-center gy-4">
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="200">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check" id="red-check"></i>
<h3>Build anything</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="300">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check" id="green-check"></i>
<h3 style="color: #15be56;">Imagine Wild</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="500">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check" id="blue-check"></i>
<h3 style="color: #0e31ae;">Implement them</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="400">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check" id="orange-check"></i>
<h3 style="color: #ee6c20;">Debug carefully</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="600">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check" id="pink-check"></i>
<h3 style="color: #bb0852;">Your Dream Project</h3>
</div>
</div>
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="700">
<div class="feature-box d-flex align-items-center">
<i class="bi bi-check" id="sky-check"></i>
<h3 style="color: #4e7fde;">Our Commitment</h3>
</div>
</div>
</div>
</div>
</div> <!-- / row -->
<!-- Feature Tabs -->
<div class="row feture-tabs" data-aos="fade-up">
<div class="col-lg-6">
<h3>Hackathon Timeline: A 36 Hours madness where your crazy ideas become a reality</h3>
<!-- Tabs -->
<ul class="nav nav-pills mb-3">
<li>
<a class="nav-link active" data-bs-toggle="pill" href="#tab1">Ideate</a>
</li>
<li>
<a class="nav-link" data-bs-toggle="pill" href="#tab2">Build</a>
</li>
<li>
<a class="nav-link" data-bs-toggle="pill" href="#tab3">Present</a>
</li>
</ul><!-- End Tabs -->
<!-- Tab Content -->
<div class="tab-content">
<div class="tab-pane fade show active" id="tab1">
<p>The Ideas start brewing in your mind, your imagination becomes wild and you get a thought of
something which might help the community!</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Hackathon Registrations Start</h4>
</div>
<p>Registrations start at max by December 2022 End, till then keep ideating and thinking. The more you
brainstorm and think, the more easy it should be for you to implement your thoughts via Code</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Registrations Close</h4>
</div>
<p>Your idea is ready, you have conceptualized the needs and have registered for Hack4Bengal. Now is
the time to prepare, mostly with Pre-Hackathon Sessions</p>
</div><!-- End Tab 1 Content -->
<div class="tab-pane fade show" id="tab2">
<p>While you prepare for the D-Day and keep taking part in the various pre-hack sessions, the
Hackathon will slowly approach</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Pre Hackathon Sessions</h4>
</div>
<p>Take part in events which will help you transform your crazy ideas into reality. All of those while
winning swags and getting to know stuff</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Hackathon Starts</h4>
</div>
<p>You Code your heart out, think of every possible scenario and turn your idea into a product. Test
-> DeBug -> Code -> Coffee will be your motto. Ofc, the refreshments will be on us :)</p>
</div><!-- End Tab 2 Content -->
<div class="tab-pane fade show" id="tab3">
<p>After a fun but also hectic 36 Hours of Hacking, you will now start to prepare to present your idea
to the Judges! Nervousness kicks in ;)</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Winner Announcement</h4>
</div>
<p>Once the winners are announced and the participants are rewarded, we'll finish it all off with a
Grand Closing Ceremony</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Closing Ceremony</h4>
</div>
<p>With things ending, new things will begin. Did we tell about goodies and pizzas? and if that
doesn't excite you we dont know what will :P</p>
</div><!-- End Tab 3 Content -->
</div>
</div>
<div class="col-lg-6">
<img src="assets/img/features-2.png" class="img-fluid" alt="">
</div>
</div><!-- End Feature Tabs -->
<!-- Feature Icons -->
<div class="row feature-icons" data-aos="fade-up">
<h3>Some Ideas: To help you Ideate</h3>
<div class="row">
<div class="col-xl-4 text-center" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/features-3.png" class="img-fluid p-4" alt="">
</div>
<div class="col-xl-8 d-flex content">
<div class="row align-self-center gy-4">
<div class="col-md-6 icon-box" data-aos="fade-up">
<i class="ri-line-chart-line"></i>
<div>
<h4>Healthcare</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 icon-box" data-aos="fade-up" data-aos-delay="100">
<i class="ri-stack-line"></i>
<div>
<h4>Education</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 icon-box" data-aos="fade-up" data-aos-delay="200">
<i class="ri-brush-4-line"></i>
<div>
<h4>Fin-Tech</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 icon-box" data-aos="fade-up" data-aos-delay="300">
<i class="ri-magic-line"></i>
<div>
<h4>Sustainability</h4>
<p>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 icon-box" data-aos="fade-up" data-aos-delay="400">
<i class="ri-command-line"></i>
<div>
<h4>Community</h4>
<p>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!
</p>
</div>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="500">
<i class="ri-radar-line"></i>
<div>
<h4>Open Innovation</h4>
<p>A young mind is full of ideas which can not be submerged into particular barriers. This is our
main Theme! No Theme! and we think this will be one of the best platforms to showcase your
ideas.</p>
</div>
</div>
</div>
</div>
</div>
</div><!-- End Feature Icons -->
</div>
</section><!-- End Features Section -->
<!-- ======= Services Section =======
<section id="services" class="services">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Services</h2>
<p>Veritatis et dolores facere numquam et praesentium</p>
</header>
<div class="row gy-4">
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="service-box blue">
<i class="ri-discuss-line icon"></i>
<h3>Nesciunt Mete</h3>
<p>Provident nihil minus qui consequatur non omnis maiores. Eos accusantium minus dolores iure perferendis tempore et consequatur.</p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-box orange">
<i class="ri-discuss-line icon"></i>
<h3>Eosle Commodi</h3>
<p>Ut autem aut autem non a. Sint sint sit facilis nam iusto sint. Libero corrupti neque eum hic non ut nesciunt dolorem.</p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="400">
<div class="service-box green">
<i class="ri-discuss-line icon"></i>
<h3>Ledo Markt</h3>
<p>Ut excepturi voluptatem nisi sed. Quidem fuga consequatur. Minus ea aut. Vel qui id voluptas adipisci eos earum corrupti.</p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="500">
<div class="service-box red">
<i class="ri-discuss-line icon"></i>
<h3>Asperiores Commodi</h3>
<p>Non et temporibus minus omnis sed dolor esse consequatur. Cupiditate sed error ea fuga sit provident adipisci neque.</p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="600">
<div class="service-box purple">
<i class="ri-discuss-line icon"></i>
<h3>Velit Doloremque.</h3>
<p>Cumque et suscipit saepe. Est maiores autem enim facilis ut aut ipsam corporis aut. Sed animi at autem alias eius labore.</p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="700">
<div class="service-box pink">
<i class="ri-discuss-line icon"></i>
<h3>Dolori Architecto</h3>
<p>Hic molestias ea quibusdam eos. Fugiat enim doloremque aut neque non et debitis iure. Corrupti recusandae ducimus enim.</p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Pricing Section ======= -->
<section id="pricing" class="pricing">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Prizes</h2>
<p>Check our Rewards</p>
</header>
<div class="d-lg-none">
<div id="prizes-mobile-control" class="carousel slide" data-bs-ride="carousel" data-bs-interval="2500">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="">
<div class="box">
<h3 style="color: #07d5c0;">Winner Team</h3>
<div class="price">TBA</div>
<img src="assets/img/pricing-free.png" class="img-fluid" alt="">
<ul>
<li>TBA</li>
<li>TBA</li>
<li>TBA</li>
</ul>
<a href="#" class="btn-buy">Know more</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="">
<div class="box">
<h3 style="color: #65c600;">Runner Up Team</h3>
<div class="price">TBA</div>
<img src="assets/img/pricing-starter.png" class="img-fluid" alt="">
<ul>
<li>TBA</li>
<li>TBA</li>
<li>TBA</li>
</ul>
<a href="#" class="btn-buy">Know More</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="">
<div class="box">
<h3 style="color: #ff901c;">Second Runner Up</h3>
<div class="price">TBA</div>
<img src="assets/img/pricing-business.png" class="img-fluid" alt="">
<ul>
<li>TBA</li>
<li>TBA</li>
<li>TBA</li>
</ul>
<a href="#" class="btn-buy">Know More</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="">
<div class="box">
<span class="featured" style="font-size: 10px;"> Women in Tech
</span>
<h3 style="color: #ff0071;">Best Girls Team</h3>
<div class="price">TBA</span></div>
<img src="assets/img/pricing-ultimate.png" class="img-fluid" alt="">
<ul>
<li>TBA</li>
<li>TBA</li>
<li>TBA</li>
</ul>
<a href="#" class="btn-buy">Know More</a>
</div>
</div>
</div>
</div>
<div class="carousel-indicators mob-carousel-indicators ">
<button type="button" data-bs-target="#prizes-mobile-control" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#prizes-mobile-control" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#prizes-mobile-control" data-bs-slide-to="2"
aria-label="Slide 3"></button>
<button type="button" data-bs-target="#prizes-mobile-control" data-bs-slide-to="3"
aria-label="Slide 4"></button>
</div>
</div>
</div>
<div class="row gy-4 d-none d-lg-flex" data-aos="fade-left">
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="100">
<div class="box">
<h3 style="color: #07d5c0;">Winner Team</h3>
<div class="price">TBA</div>
<img src="assets/img/pricing-free.png" class="img-fluid" alt="">
<ul>
<li>TBA</li>
<li>TBA</li>
<li>TBA</li>
</ul>
<a href="#" class="btn-buy">Know more</a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="box">
<h3 style="color: #65c600;">Runner Up Team</h3>
<div class="price">TBA</div>
<img src="assets/img/pricing-starter.png" class="img-fluid" alt="">
<ul>
<li>TBA</li>
<li>TBA</li>
<li>TBA</li>
</ul>
<a href="#" class="btn-buy">Know More</a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="300">
<div class="box">
<h3 style="color: #ff901c;">Second Runner Up</h3>
<div class="price">TBA</div>
<img src="assets/img/pricing-business.png" class="img-fluid" alt="">
<ul>
<li>TBA</li>
<li>TBA</li>
<li>TBA</li>
</ul>
<a href="#" class="btn-buy">Know More</a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="400">
<div class="box">
<span class="featured" style="font-size: 10px;"> Women in Tech
</span>
<h3 style="color: #ff0071;">Best Girls Team</h3>
<div class="price">TBA</span></div>
<img src="assets/img/pricing-ultimate.png" class="img-fluid" alt="">
<ul>
<li>TBA</li>
<li>TBA</li>
<li>TBA</li>
</ul>
<a href="#" class="btn-buy">Know More</a>
</div>
</div>
</div>
</div>
</section><!-- End Pricing Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq" class="faq">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>F.A.Q</h2>
<p>Frequently Asked Questions</p>
</header>
<div class="row">
<div class="col-lg-6">
<!-- F.A.Q List 1-->
<div class="accordion accordion-flush" id="faqlist1">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-1">
What is a Hackathon?
</button>
</h2>
<div id="faq-content-1" class="accordion-collapse collapse" data-bs-parent="#faqlist1">
<div class="accordion-body">
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.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-2">
Why should I participate?
</button>
</h2>
<div id="faq-content-2" class="accordion-collapse collapse" data-bs-parent="#faqlist1">
<div class="accordion-body">
People participate in hackathons for lots of reason: the challenge, the creative outlet, the
community collaboration, the networking, the swag and maybe Prizes!
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq-content-3">
Can I participate? Do I need to have any skills? Any Prerequisites?
</button>
</h2>
<div id="faq-content-3" class="accordion-collapse collapse" data-bs-parent="#faqlist1">
<div class="accordion-body">
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.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<!-- F.A.Q List 2-->
<div class="accordion accordion-flush" id="faqlist2">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq2-content-1">
I don't have a team, what to do?
</button>
</h2>
<div id="faq2-content-1" class="accordion-collapse collapse" data-bs-parent="#faqlist2">
<div class="accordion-body">
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.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq2-content-2">
How can I prepare myself?
</button>
</h2>
<div id="faq2-content-2" class="accordion-collapse collapse" data-bs-parent="#faqlist2">
<div class="accordion-body">
Other than finding fellow brilliant minds with complementary skills to team up with, there is
nothing that you need to prepare in advance.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faq2-content-3">
Is there any fees involved?
</button>
</h2>
<div id="faq2-content-3" class="accordion-collapse collapse" data-bs-parent="#faqlist2">
<div class="accordion-body">
It's free for everyone to participate. There is no money involved at any point during this
Hackathon.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End F.A.Q Section -->
<!-- ======= Portfolio Section =======
<section id="portfolio" class="portfolio">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Portfolio</h2>
<p>Check our latest work</p>
</header>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
</div>
</div>
<div class="row gy-4 portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 1</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="App 1"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Web 3"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 2</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="App 2"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 2</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Card 2"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 2</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Web 2"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 3</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="App 3"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 1</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Card 1"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-8.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 3</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-8.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Card 3"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-9.jpg" data-gallery="portfolioGallery" class="portfokio-lightbox" title="Web 3"><i class="bi bi-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bi bi-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Testimonials</h2>
<p>What our Community thinks of us</p>
</header>