-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
2093 lines (2027 loc) · 107 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 class="wide wow-animation" lang="en">
<head>
<title>Home</title>
<meta name="format-detection" content="telephone=no" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Jaro:[email protected]&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jaro:[email protected]&display=swap" rel="stylesheet">
<meta
name="viewport"
content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8" />
<link rel="icon" href="images/Logo - Dark BG.png" type="image/x-icon" />
<!-- Using Font Awesome CDN link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- Stylesheets-->
<link
rel="stylesheet"
type="text/css"
href="//fonts.googleapis.com/css?family=Poppins:400,500,600%7CTeko:300,400,500%7CMaven+Pro:500"
/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/fonts.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/timeline.css" />
<style>
.ie-panel {
display: none;
background: #212121;
padding: 10px 0;
box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.3);
clear: both;
text-align: center;
position: relative;
z-index: 1;
}
html.ie-10 .ie-panel,
html.lt-ie-10 .ie-panel {
display: block;
}
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Jaro:[email protected]&display=swap');
</style>
</head>
<body>
<div class="ie-panel">
<a href="http://windows.microsoft.com/en-US/internet-explorer/"
><img
src="images/ie8-panel/warning_bar_0000_us.jpg"
height="42"
width="820"
alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today."
/></a>
</div>
<div class="preloader">
<div class="preloader-body">
<div class="cssload-container">
<span></span><span></span><span></span><span></span>
</div>
</div>
</div>
<div class="page">
<div id="home">
<!-- Page Header-->
<header class="section page-header">
<!-- RD Navbar-->
<div class="rd-navbar-wrap">
<nav
class="rd-navbar rd-navbar-classic"
data-layout="rd-navbar-fixed"
data-sm-layout="rd-navbar-fixed"
data-md-layout="rd-navbar-fixed"
data-md-device-layout="rd-navbar-fixed"
data-lg-layout="rd-navbar-static"
data-lg-device-layout="rd-navbar-fixed"
data-xl-layout="rd-navbar-static"
data-xl-device-layout="rd-navbar-static"
data-xxl-layout="rd-navbar-static"
data-xxl-device-layout="rd-navbar-static"
data-lg-stick-up-offset="46px"
data-xl-stick-up-offset="46px"
data-xxl-stick-up-offset="46px"
data-lg-stick-up="true"
data-xl-stick-up="true"
data-xxl-stick-up="true"
>
<div style="background-color: black;" class="rd-navbar-main-outer">
<div class="rd-navbar-main">
<!-- RD Navbar Panel-->
<div style="background-color: black;" class="rd-navbar-panel">
<!-- RD Navbar Toggle-->
<button
class="rd-navbar-toggle"
data-rd-navbar-toggle=".rd-navbar-nav-wrap"
>
<span></span>
</button>
<!-- RD Navbar Brand-->
<div class="rd-navbar-brand">
<a class="brand" href="index.html"
><img style="height: 50px; width: 50px;"
src="images/Logo - Dark BG.png"
alt=""
width="50"
height="50"
/></a>
<a class="brand" href="https://www.instagram.com/_geek.room/"
><img style="height: 50px; width: 50px;"
src="images/geek_room_log.png"
alt=""
width="50"
height="50"
/></a>
</div>
</div>
<div class="rd-navbar-main-element">
<div class="rd-navbar-nav-wrap">
<!-- RD Navbar Share-->
<ul class="rd-navbar-nav">
<li class="rd-nav-item active">
<a class="rd-nav-link" href="#home">Home</a>
</li>
<li class="rd-nav-item">
<a class="rd-nav-link" href="#about">About</a>
</li>
<li class="rd-nav-item">
<a class="rd-nav-link" href="#sponsors">Sponsors</a>
</li>
<li class="rd-nav-item">
<a class="rd-nav-link" href="#team">Judges</a>
</li>
<li class="rd-nav-item">
<a class="rd-nav-link" href="https://linktr.ee/codecubicle.hackathon">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
<!-- Swiper-->
<section
class="section swiper-container swiper-slider swiper-slider-classic"
data-loop="true"
data-autoplay="4859"
data-simulate-touch="true"
data-direction="vertical"
data-nav="false"
>
<div class="swiper-wrapper text-center">
<div
class="swiper-slide"
>
<div class="background-wrapper">
<video autoplay muted loop class="background-video">
<source src="video\cube2.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<!-- <img src="images\grbg.jpg" alt="Background Image" class="background-image"> -->
<!--data-slide-bg="images/slider-1-slide-2-1770x742.jpg"-->
<div class="swiper-slide-caption section-md">
<div class="container">
<h1 style='font-family: "Jaro", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-size:600%;' class="alfa-slab-one-regular" data-caption-animate="fadeInLeft" data-caption-delay="0">
Code Cubicle
</h1>
<div class="text-width-large" data-caption-animate="fadeInRight" data-caption-delay="100">
<p>Experience the pulse of innovation at Noida's premier co-working space.</p>
<p>Where <span style="color: #5ab9ea; font-weight: bold;">coding meets creativity</span>, join a dynamic community of students, professionals, and tech enthusiasts.</p>
<p>Together, let's <span style="color: #5ab9ea; font-weight: bold;">break barriers</span> and <span style="color: #5ab9ea; font-weight: bold;">forge new paths</span>!</p>
</div>
<a
class="button button-primary button-ujarak"
href="https://code-cubicle.devfolio.co/"
target="_blank"
>Register NOW!</a
>
</div>
</div>
</div>
</div>
<div
class="swiper-slide"
>
<!--data-slide-bg="images/slider-1-slide-4-1770x742.jpg"-->
<div class="background-wrapper">
<video autoplay muted loop class="background-video">
<source src="video/geekroombg.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<!-- <img src="images\BACK.jpg" alt="Background Image" class="background-image"> -->
<div class="swiper-slide-caption section-md">
<div class="container">
<h1 style='font-family: "Jaro", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-size:600%;' stdata-caption-animate="fadeInLeft" data-caption-delay="0">
Geek Room
</h1>
<p
class="text-width-large"
data-caption-animate="fadeInRight"
data-caption-delay="100"
>
A vibrant coding community dedicated to collective growth and innovation. From dynamic hackathons to mentorship programs, we offer opportunities for skill enhancement and collaboration. </p>
<a
class="button button-primary button-ujarak"
href="https://www.linkedin.com/company/geekr00m/"
target="_blank"
>Get in touch</a
>
</div>
</div>
</div>
</div>
<!-- <div
class="swiper-slide"
data-slide-bg="images/slider-1-slide-6-1770x742.jpg"
<div class="background-wrapper">
<img src="images\reskbg.jpg" alt="Background Image" class="background-image">
<div class="swiper-slide-caption section-md">
<div class="container">
<h1 data-caption-animate="fadeInLeft" data-caption-delay="0">
Reskill
</h1>
<p
class="text-width-large"
data-caption-animate="fadeInRight"
data-caption-delay="100"
>
The program is designed to prioritize minimal risk and cost-effective pricing providing services like Hiring, Training, and Coaching. It is designed to attract a diverse range of individuals with specialized skills from outside the "traditional" Business Central ecosystem. Through an in-depth training and coaching regimen, Reskill transforms new hires into adept Business Central consultants and developers, equipping them to navigate the complexities of today's digital landscape.
</p>
<a
class="button button-primary button-ujarak"
href="https://partner.microsoft.com/en-us/blog/article/reskill-bridging-the-talent-gap-in-dynamics-365-business-central" target="_blank"
>Know More </a
>
</div>
</div>
</div>
</div>-->
</div>
<!-- Swiper Pagination-->
<div class="swiper-pagination__module">
<div class="swiper-pagination__fraction">
<span class="swiper-pagination__fraction-index">00</span
><span class="swiper-pagination__fraction-divider">/</span
><span class="swiper-pagination__fraction-count">00</span>
</div>
<div class="swiper-pagination__divider"></div>
<div class="swiper-pagination"></div>
</div>
</section>
</div>
<!-- See all services-->
<section
class="section section-sm section-first bg-default text-center"
id="about"
>
<div class="container">
<div class="row row-30 justify-content-center">
<div class="col-md-7 col-lg-5 col-xl-6 text-lg-left wow fadeInUp">
<img
src="images/logogr.png"
alt=""
width="415"
height="592"
/>
</div>
<div class="col-lg-7 col-xl-6">
<div class="row row-30">
<div class="col-sm-6 wow fadeInRight">
<article class="box-icon-modern box-icon-modern-custom">
<div>
<h3 class="box-icon-modern-big-title">
About Code Cubicle
</h3>
<div class="box-icon-modern-decor"></div>
<a class="button button-primary button-ujarak" href="#"
>Learn More</a
>
</div>
</article>
</div>
<div class="col-sm-6 wow fadeInRight" data-wow-delay=".1s">
<article class="box-icon-modern box-icon-modern-2">
<div class="box-icon-modern-icon fas fa-users"></div>
<h5 class="box-icon-modern-title">
<a href="#">CONNECTIVITY</a>
</h5>
<div class="box-icon-modern-decor"></div>
<p class="box-icon-modern-text">
Participants have the opportunity to connect with experienced mentors and judges, enhancing their learning and networking experience during the hackathon.
</p>
</article>
</div>
<div class="col-sm-6 wow fadeInRight" data-wow-delay=".2s">
<article class="box-icon-modern box-icon-modern-2">
<div class="box-icon-modern-icon fas fa-cogs"></div>
<h5 class="box-icon-modern-title">
<a href="#">TRANSFORM</a>
</h5>
<div class="box-icon-modern-decor"></div>
<p class="box-icon-modern-text">
Code Cubicle goes beyond coding. Join us to revolutionize tech, where your skills shape the future.
</p>
</article>
</div>
<div class="col-sm-6 wow fadeInRight" data-wow-delay=".1s">
<article class="box-icon-modern box-icon-modern-2">
<div class="box-icon-modern-icon fas fa-handshake"></div>
<h5 class="box-icon-modern-title">
<a href="#">COLLABORATE</a>
</h5>
<div class="box-icon-modern-decor"></div>
<p class="box-icon-modern-text">
Participants with us to reach tech's forefront. Engage our dynamic community, boosting innovation and visibility.
</p>
</article>
</div> </div>
</div>
</div>
</div>
</section>
<!-- Cta-->
<section class="section section-fluid bg-default">
<div
class="parallax-container"
data-parallax-img="tt1.png"
>
<div
class="parallax-content section-xl context-dark bg-overlay-68 bg-mobile-overlay"
>
<div class="container">
<div class="row row-30 justify-content-end text-right">
<div class="col-sm-7">
<h3 class="wow fadeInLeft">Our Mentors </h3>
<p>
Meet our dedicated mentors, ready to guide
and <span style="color:orange;">inspire</span> you on your journey to success.
With <span style="color: orange;">diverse</span> expertise and a passion for mentoring,
they're here to help you thrive.
</p>
<div class="group-sm group-middle group justify-content-end">
<a
class="button button-primary button-ujarak"
href="./mentors.html"
data-toggle="modal"
>Here they are!</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section section-sm section-fluid bg-default" id="">
<div class="container-fluid">
<h2>Problem Statements</h2>
<div class="row row-sm row-30 justify-content-center">
<div class="col-md-6 col-lg-5 wow fadeInRight">
<p class="" data-wow-delay=".1s">
The hackathon is a canvas for your creativity and ideas.
However, below are a few problem statements to spark your imagination and just to get you started:
</p>
</div>
</div><br><br>
<div class="container">
<div class="card">
<div class="body">
<div class="table-responsive">
<div id="DataTables_Table_0_wrapper" class="dataTables_wrapper no-footer"><div class="dataTables_length" id="DataTables_Table_0_length"></div><div id="DataTables_Table_0_filter" class="dataTables_filter"></div><table class="table table-bordered dataTable no-footer" id="DataTables_Table_0" aria-describedby="DataTables_Table_0_info">
<thead>
<tr><th class="sorting" tabindex="0" aria-controls="DataTables_Table_0" rowspan="1" colspan="1" aria-label="Problem Statement: activate to sort column ascending" style="width: 157.887px;">Problem Statement</th><th class="sorting sorting_asc" tabindex="0" aria-controls="DataTables_Table_0" rowspan="1" colspan="1" aria-label="Category: activate to sort column descending" style="width: 112.162px;" aria-sort="ascending">Category</th><th class="sorting" tabindex="0" aria-controls="DataTables_Table_0" rowspan="1" colspan="1" aria-label="Description: activate to sort column ascending" style="width: 909.15px;">Description</th></tr>
</thead>
<tbody>
<!-- Add your Problem Statements content here -->
<tr class="odd">
<td class="">Personalized Learning</td>
<td class="sorting_1">Ed-Tech</td>
<td class="">Traditional education often follows a one-size-fits-all approach, which may not
cater to the diverse learning needs of students. Technology can facilitate
personalized learning experiences by utilizing adaptive learning platforms,
AI-driven tutors, and learning analytics to tailor educational content and pace
to individual student abilities and preferences.
</td>
</tr><tr class="even">
<td class=""> Gamified Homework Assignments</td>
<td class="sorting_1">Ed-Tech</td>
<td class="">Design a gamified homework platform that transforms traditional assignments
into interactive quests, challenges, or simulations, incentivizing students to
complete tasks, review concepts, and earn rewards while having fun and
learning.</td>
</tr><tr class="odd">
<td class="">Rehabilitation</td>
<td class="sorting_1">Healthcare</td>
<td class="">Can you find ways to incorporate enjoyable activities into the recovery
process so that it can provide a sense of accomplishment, help reduce
stress, and provide a sense of purpose and meaning in life to people
recovering from various problems such as addiction, therapies etc</td>
</tr><tr class="even">
<td class="">Affordability</td>
<td class="sorting_1">Healthcare</td>
<td class="">Rising healthcare costs make it difficult for individuals and families in rural
areas to afford necessary medical treatments, medications, and insurance
premiums. Can you ponder upon this problem and find some unique solutions?</td>
</tr><tr class="odd">
<td class=""> Money Management for Young Adults</td>
<td class="sorting_1">FinTech</td>
<td class="">Young adults (aged 18-25) are financially savvy but lack the tools and
guidance to confidently navigate their financial futures. Design an inclusive
FinTech solution that empowers them to manage their money effectively and
build a secure financial foundation.</td>
</tr>
<tr class="even">
<td class="">Fraud and Security</td>
<td class="sorting_1">FinTech</td>
<td class="">Financial fraud, including identity theft, payment fraud, and cyberattacks, are
really common these days. Can blockchain or tech in general help in this
matter?</td>
</tr><tr class="odd">
<td class="">Open Innovation</td>
<td class="sorting_1">-</td>
<td class="">This is the real “open” open innovation, just build anything that solves a real
world problem</td>
</tr></tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- timeline section start - sanchit -->
<section>
<div class="container py-7">
<h2 class="text-uppercase text-letter-spacing-xs my-0 text-primary font-weight-bold">
Timeline
</h2>
<p class="text-sm text-dark mt-0 mb-5">Plan your hack: The official hackathon timeline</p>
<!-- Days -->
<div class="row justify-content-center">
<div class="d-flex">
<div class="col-lg-6 mb-3" id="Wednesday, May 15">
<h4 class="mt-0 mb-3 text-dark op-8 font-weight-bold">
May 15-16 (Online)
</h4>
<ul class="list-timeline list-timeline-primary">
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">08:00 </span> - Hack Begins</p>
</li>
<!-- <li class="list-timeline-item show p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column" data-toggle="collapse" data-target="#day-1-item-2">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-primary font-weight-bold op-8 infinite animated flash" data-animate="flash" data-animate-infinite="1" data-animate-duration="3.5" style="animation-duration: 3.5s;">Now</span> - Sponsor session</p>
<p class="my-0 collapse flex-fw text-uppercase text-xs text-dark op-8 show" id="day-1-item-2"> Talk: Wireframing / <span class="text-primary">Room 19</span> </p>
</li> -->
<!-- <li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column" data-toggle="collapse" data-target="#day-1-item-4">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">13:00 - 15:00</span> - Anthony Jonas</p>
<p class="my-0 collapse flex-fw text-uppercase text-xs text-dark op-8" id="day-1-item-4"> Talk: OpenData / <span class="text-primary">Room 31</span> </p>
</li> -->
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">18:00 </span> - Mentoring Round</p>
</li>
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">May 16th </span> - Mentoring Results</p>
</li>
<!-- <li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column" data-toggle="collapse" data-target="#day-1-item-6">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">16:00 - 18:00</span> - Jesscia Lawrence</p>
<p class="my-0 collapse flex-fw text-uppercase text-xs text-dark op-8" id="day-1-item-6"> Talk: Ninja coding / <span class="text-primary">Room 31</span> </p>
</li> -->
<!-- <li class="list-timeline-item p-0 pb-3 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">18:00 - 23:00</span> - After conference</p>
</li> -->
</ul>
</div>
<div class="col-lg-6 mb-3" id="Sunday, May 19">
<h4 class="mt-0 mb-3 text-dark op-8 font-weight-bold">
May 19 (Offline)
</h4>
<ul class="list-timeline list-timeline-primary">
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">09:00 </span> - Reporting</p>
</li>
<li class="p-0 pb-6 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8"> </span> </p>
</li>
<li class="p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8"> </span> </p>
</li>
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">10:00 </span> - Presentation Round</p>
</li>
<li class="p-0 pb-6 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8"> </span> </p>
</li>
<li class="p-0 pb-6 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8"> </span> </p>
</li>
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">15:00 </span> - Final Results</p>
</li>
<!-- <li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column" data-toggle="collapse" data-target="#day-2-item-4">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">13:00 - 15:00</span> - Bruce Lawson</p>
<p class="my-0 collapse flex-fw text-uppercase text-xs text-dark op-8" id="day-2-item-4"> Talk: Big Data / <span class="text-primary">Room 19</span> </p>
</li>
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">15:00 - 16:00</span> - Coffee Break</p>
</li>
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column" data-toggle="collapse" data-target="#day-2-item-6">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">16:00 - 18:00</span> - Anthony Jonas</p>
<p class="my-0 collapse flex-fw text-uppercase text-xs text-dark op-8" id="day-2-item-6"> Talk: OpenData / <span class="text-primary">Room 31</span> </p>
</li>
<li class="list-timeline-item p-0 pb-3 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">18:00 - 23:00</span> - After conference</p>
</li> -->
</ul>
</div>
</div>
<!-- <div class="col-lg-4 mb-3" id="Sunday, Nov 15th">
<h4 class="mt-0 mb-3 text-dark op-8 font-weight-bold">
Sunday, Nov 15th
</h4>
<ul class="list-timeline list-timeline-primary">
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">09:00 - 10:00</span> - Registration</p>
</li>
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column" data-toggle="collapse" data-target="#day-3-item-2">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">10:00 - 12:00</span> - Jesscia Lawrence</p>
<p class="my-0 collapse flex-fw text-uppercase text-xs text-dark op-8" id="day-3-item-2"> Talk: Ninja coding / <span class="text-primary">Room 31</span> </p>
</li>
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">12:00 - 13:00</span> - Lunch Break</p>
</li>
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column" data-toggle="collapse" data-target="#day-3-item-4">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">13:00 - 15:00</span> - Anthony Jonas</p>
<p class="my-0 collapse flex-fw text-uppercase text-xs text-dark op-8" id="day-3-item-4"> Talk: OpenData / <span class="text-primary">Room 31</span> </p>
</li>
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">15:00 - 16:00</span> - Coffee Break</p>
</li>
<li class="list-timeline-item p-0 pb-3 pb-lg-4 d-flex flex-wrap flex-column" data-toggle="collapse" data-target="#day-3-item-6">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">16:00 - 18:00</span> - Anthony Jonas</p>
<p class="my-0 collapse flex-fw text-uppercase text-xs text-dark op-8" id="day-3-item-6"> Talk: OpenData / <span class="text-primary">Room 31</span> </p>
</li>
<li class="list-timeline-item p-0 pb-3 d-flex flex-wrap flex-column">
<p class="my-0 text-dark flex-fw text-sm text-uppercase"><span class="text-inverse op-8">18:00 - 23:00</span> - After conference</p>
</li>
</ul>
</div> -->
</div>
</div>
</section>
<!-- timeline section end - sanchit -->
<!-- Latest Projects-->
<section
class="section section-sm section-fluid bg-default text-center"
id="sponsors"
>
<div class="container-fluid">
<h2 class="wow fadeInLeft">Sponsors</h2>
<p class="quote-jean wow fadeInRight" data-wow-delay=".1s">
OUR ESTEEMED SPONSORS
</p>
<!-- <div class="isotope-filters isotope-filters-horizontal"> -->
<!-- <button
class="isotope-filters-toggle button button-md button-icon button-icon-right button-default-outline button-wapasha"
data-custom-toggle="#isotope-3"
data-custom-toggle-hide-on-blur="true"
data-custom-toggle-disable-on-blur="true"
>
<span class="icon fa fa-caret-down"></span>Filter -->
<!-- </button> -->
<!-- <ul class="isotope-filters-list" id="isotope-3"> -->
<!-- <li><a class="active" href="#" data-isotope-filter="*" data-isotope-group="gallery">All</a></li> -->
<!-- <li><a href="#" data-isotope-filter="Type 1" data-isotope-group="gallery">Past Sponsers</a></li>
<li><a href="#" data-isotope-filter="Type 2" data-isotope-group="gallery">New Sponsers</a></li> -->
<!-- <li><a href="#" data-isotope-filter="Type 3" data-isotope-group="gallery">QA & Testing</a></li>
<li><a href="#" data-isotope-filter="Type 4" data-isotope-group="gallery">UX and Design</a></li> -->
<!-- </ul> -->
<!-- </div> -->
<div class="row row-30 isotope" data-isotope-layout="fitRows" data-isotope-group="gallery" data-lightgallery="group">
<div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1">
<!-- Thumbnail Classic-->
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/polygon.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/polygon.png" data-lightgallery="item"><img src="images/sponser/polygon.png" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://polygon.technology/">Polygon</a></h5>
</div>
<p class="thumbnail-classic-text">Enabling an infinitely scalable web of sovereign blockchains that feels like a single chain. Powered by ZK tech.</p>
</div>
</article>
</div>
<div
class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight"
data-filter="Type 1"
data-wow-delay=".1s"
>
<!-- Thumbnail Classic-->
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/ethindia.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/ethindia.png" data-lightgallery="item"><img src="images/sponser/ethindia.png" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://ethindia.co/">ETH India</a></h5>
</div>
<p class="thumbnail-classic-text">World's Biggest Ethereum Hackathon.</p>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1" data-wow-delay=".2s">
<!-- Thumbnail Classic-->
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/devfolio.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/devfolio.png" data-lightgallery="item"><img src="images/sponser/devfolio.png" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://devfolio.co/">Devfolio</a></h5>
</div>
<p class="thumbnail-classic-text">Devfolio for communities. No more creating Google Forms and managing participants in an Excel sheet.</p>
</div>
</article>
</div>
<!-- <div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1" data-wow-delay=".3s">
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/bobble_ai.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/bobble_ai.png" data-lightgallery="item"><img src="images/fullwidth-gallery-4-420x350.jpg" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://bobble.ai/en/home">Bobble AI</a></h5>
</div>
<p class="thumbnail-classic-text">The latest and finest keyboard application to make your regional conversations more interesting</p>
</div>
</article>
</div> -->
<!-- <div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInLeft" data-filter="Type 1">
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/coding_ninja.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/coding_ninja.png" data-lightgallery="item"><img src="images/fullwidth-gallery-5-420x350.jpg" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://www.codingninjas.com/">Coding Ninja</a></h5>
</div>
<p class="thumbnail-classic-text">A 3-stage learning model to turn you into a Coding Ninja</p>
</div>
</article>
</div> -->
<div
class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInLeft"
data-filter="Type 2"
data-wow-delay=".2s"
>
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure" style="width: 73%;" ><img src="images/sponser/navan_ai_logo.jpeg" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/navan_ai_logo.jpeg" data-lightgallery="item"><img src="images/sponser/navan_ai_logo.jpeg" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://nayan.co/">Nayan AI</a></h5>
</div>
<p class="thumbnail-classic-text">Train models in minutes. Deploy in few clicks. No code Computer Vision platform for businesses.</p>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInLeft" data-filter="Type 1" data-wow-delay=".2s">
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/balmse.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/balmse.png" data-lightgallery="item"><img src="images/sponser/balmse.png" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://www.balmse.co.in/">Balmse</a></h5>
</div>
<p class="thumbnail-classic-text"> your gateway to a world of refined indulgence. </p>
</div>
</article>
</div>
<!-- <div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInLeft" data-filter="Type 1" data-wow-delay=".3s">
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/echo3D.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/echo3D.png" data-lightgallery="item"><img src="images/fullwidth-gallery-8-420x350.jpg" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://www.echo3d.com/">echo 3D</a></h5>
</div>
<p class="thumbnail-classic-text">Faster 3D Deployment. Stream optimized 3D assets to any web page</p>
</div>
</article>
</div> -->
<!-- <div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1">
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/lazer_crazer.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/lazer_crazer.png" data-lightgallery="item"><img src="images/fullwidth-gallery-1-420x350.jpg" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://www.lazercrazer.in/">Lazer Crazer</a></h5>
</div>
<p class="thumbnail-classic-text">DELHI'S LARGEST AND TOP RATED LASER TAG ARENA IN HAUZ KHAS VILLAGE</p>
</div>
</article>
</div> -->
<div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1">
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/quill.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/quill.png" data-lightgallery="item"><img src="images/sponser/quill.png" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://www.quillaudits.com/smart-contract-audit">Quill Audits</a></h5>
</div>
<p class="thumbnail-classic-text">We are a comprehensive process to scrutinise a smart contract's code that is used to interact with a cryptocurrency or blockchain.</p>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1">
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure" style="width: 73%;"><img src="images/sponser/unnamed.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/unnamed.png" data-lightgallery="item"><img src="images/sponser/unnamed.png" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://www.stockgro.club/">StockGro</a></h5>
</div>
<p class="thumbnail-classic-text">StockGro is India's first and leading social investment platform .</p>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1">
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure" style="width: 73%;"><img src="images/sponser/givemycertificate_logo.jpeg" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/givemycertificate_logo.jpeg" data-lightgallery="item"><img src="images/sponser/givemycertificate_logo.jpeg" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://givemycertificate.com/">GiveMyCertificate</a></h5>
</div>
<p class="thumbnail-classic-text"> With our platform, organizations can effortlessly issue thousands of certificates in less than 10 minutes..</p>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1">
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure" style="width: 73%;"><img src="images/sponser/download (1).png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/download (1).png" data-lightgallery="item"><img src="images/sponser/download (1).png" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://gen.xyz/">.xyz</a></h5>
</div>
<p class="thumbnail-classic-text">xyz is a bold, fresh choice for users who crave creativity and versatility in a domain name.</p>
</div>
</article>
</div>
<!-- <div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1"> -->
<!-- <article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/verbwire.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/verbwire.png" data-lightgallery="item"><img src="images/fullwidth-gallery-1-420x350.jpg" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://www.verbwire.com/">Verbwire</a></h5>
</div>
<p class="thumbnail-classic-text">Empowering every developer. Launch a smart contract in seconds.</p>
</div>
</article>
</div> -->
<!-- <div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1">
<article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/wildr.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/wildr.png" data-lightgallery="item"><img src="images/fullwidth-gallery-1-420x350.jpg" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="https://wildr.com/">Wildr</a></h5>
</div>
<p class="thumbnail-classic-text">The world's first truly positive, non-toxic social network for real people with real stories.</p>
</div>
</article>
</div>
<div class="col-sm-6 col-lg-4 col-xxl-3 isotope-item wow fadeInRight" data-filter="Type 1"> -->
<!-- <article class="thumbnail thumbnail-classic thumbnail-md">
<div class="thumbnail-classic-figure"><img src="images/sponser/befikra.png" alt="" width="420" height="350"/>
</div>
<div class="thumbnail-classic-caption">
<div class="thumbnail-classic-title-wrap"><a class="icon fl-bigmug-line-zoom60" href="images/sponser/befikra.png" data-lightgallery="item"><img src="images/fullwidth-gallery-1-420x350.jpg" alt="" width="420" height="350"/></a>
<h5 class="thumbnail-classic-title"><a href="#">befikra</a></h5>
</div>
<p class="thumbnail-classic-text">Just stickers ain't it ?</p>
</div>
</article> -->
</div>
</div>
</div>
</section>
<!-- Years of experience-->
<h2>Prizes And Perks</h2><br>
<section class="section section-sm bg-default">
<div class="container">
<div
class="row row-30 row-xl-24 justify-content-center align-items-center align-items-lg-start text-left"
>
<div class="col-md-6 col-lg-5 col-xl-4 text-center">
<a class="text-img" href="#">
<div id="particles-js"></div>
<span class="counter">10</span></a
>
</div>
<div class="col-sm-8 col-md-6 col-lg-5 col-xl-4">
<div class="text-width-extra-small offset-top-lg-24 wow fadeInUp">
<h3 class="title-decoration-lines-left">LAKH <br> Worth of Prizes</h3>
<p class="text-gray-500">
With ❤️ from geek room and our esteemed sponsors
</p>
</div>
</div>
<div
class="col-sm-10 col-md-8 col-lg-6 col-xl-4 wow fadeInRight"
data-wow-delay=".1s"
>
<div
class="row justify-content-center border-2-column offset-top-xl-26"
>
<div class="col-9 col-sm-6">
<div class="counter-amy">
<div class="counter-amy-number">
<span class="counter">10</span
><span class="symbol">+</span>
</div>
<h6 class="counter-amy-title">hackathons organized</h6>
</div>
</div>
<div class="col-9 col-sm-6">
<div class="counter-amy">
<div class="counter-amy-number">
<span class="counter">3</span><span class="symbol">K+</span>
</div>
<h6 class="counter-amy-title">Participants</h6>
</div>
</div>
<div class="col-9 col-sm-6">
<div class="counter-amy">
<div class="counter-amy-number">
<span class="counter">12</span><span class="symbol">+</span>
</div>
<h6 class="counter-amy-title">College Teams</h6>
</div>
</div>
<div class="col-9 col-sm-6">
<div class="counter-amy">
<div class="counter-amy-number">
<span class="counter">500+</span>
</div>
<h6 class="counter-amy-title">Members</h6>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<a href="">
<div class="row row-30 justify-content-center">
<div class="col-md-6 col-lg-5 col-xl-4">
<div class="box-pricing box-pricing-black">
<div class="box-pricing-body">
<img src="images/judges/img3.jpeg"><br>
<div class="box-pricing-divider">
<div class="divider"></div>
<span>WINNER</span>
<h5 class="box-pricing-title">Prizes worth 25K+ INR<br> And More to top performers </h5>
</div>
</div></a>
</div>
</div>
<a href="#">
<div class="col-md-6 col-lg-5 col-xl-4">
<div class="box-pricing box-pricing-black ">
<div class="box-pricing-body">
<img src="images/judges/img4.jpeg">
<div class="box-pricing-divider">
<div class="divider"></div>
<span>GIFTS</span>
<h5 class="box-pricing-title">Swags, Merchandise & Coupons for Participants</h5>
</div>
</div></a>
</div>
</div>
</div>
</div>
</section>
<div class="col-lg-6 col-xl-12 align-self-center ">
<div class="row row-30 justify-content-center ">
<div class="card" style="width: 18rem;">
<img src="images/judges/img5.png" class="card-img-top" alt="...">
<div class="card-body card bg-dark" style="background-color: black;">
<h6 class="card-title" style=" color: white;">Prizes worth 5K INR Winner team.</h6>
</div>
</div>
<div
class="col-sm-6 col-md-5 col-lg-6 col-xl-3 wow fadeInLeft"
data-wow-delay=".1s"
>
<div class="row row-30 justify-content-center ">
<div class="card" style="width: 18rem;">
<img src="images/judges/img5.png" class="card-img-top" alt="...">
<div class="card-body card bg-dark" style="background-color: black;">
<h6 class="card-title" style=" color: white;">Prizes worth 3K INR to 1st Runner-up Team.</h6>
</div>
</div>
</div>
</div>
<div
class="col-sm-6 col-md-5 col-lg-6 col-xl-3 wow fadeInLeft"
data-wow-delay=".2s"
>
<div class="row row-30 justify-content-center ">
<div class="card" style="width: 18rem;">
<img src="images/judges/img5.png" class="card-img-top" alt="...">
<div class="card-body card bg-dark" style="background-color: black;">
<h6 class="card-title" style=" color: white;">Prizes worth 2K INR to 2nd Runner-up Team.</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<h1 style="text-align: center;">Meet Our Judges</h1>
<section class="section section-sm section-fluid bg-default" id="team">
<div class="container-fluid">
<div class="row row-sm row-30 justify-content-center">
<div class="col-md-6 col-lg-5 col-xl-3 wow fadeInRight">
<article class="team-classic team-classic-lg">
<a class="team-classic-figure" href="#"
><img
src="images/judges/Nikhil.jpg"
alt=""
width="420"
height="424"
/></a>
<div class="team-classic-caption">
<h4 class="team-classic-name"><a href="#">Nikhil Sahni</a></h4>
<p class="team-classic-status">Founder @Bynd</p>
<p class="team-classic-status">Ai Engineer</p>
</div>
</article>
</div>
<div
class="col-md-6 col-lg-5 col-xl-3 wow fadeInRight"
data-wow-delay=".1s"
>
<!-- Team Classic-->
<article class="team-classic team-classic-lg">
<a class="team-classic-figure" href="#"
><img
src="images/judges/Maninder.jpg"
alt=""