-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1642 lines (1513 loc) · 112 KB
/
index.html
File metadata and controls
1642 lines (1513 loc) · 112 KB
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>
<head>
<meta charset="utf-8">
<title>Execute 2.0</title>
<!-- Stylesheets -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/newStyle.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/style1.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link media="all" href="wp-content/cache/autoptimize/css/autoptimize_01644d4233d7f0dd09059bdb68d4f715.css"
rel="stylesheet" />
<link href="plugins/revolution/css/settings.css" rel="stylesheet" type="text/css">
<!-- REVOLUTION SETTINGS STYLES -->
<link href="plugins/revolution/css/layers.css" rel="stylesheet" type="text/css"><!-- REVOLUTION LAYERS STYLES -->
<link href="plugins/revolution/css/navigation.css" rel="stylesheet" type="text/css">
<!-- REVOLUTION NAVIGATION STYLES -->
<link rel="shortcut icon" href="images/logo.png" type="image/x-icon">
<link rel="icon" href="images/logo.png" type="image/x-icon">
<!-- Responsive -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<!-- codepen snippets -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<!-- codepen snippets end-->
<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script><![endif]-->
<!--[if lt IE 9]><script src="js/respond.js"></script><![endif]-->
<!-- Icons from FontAwesome, Divanshu Garg-->
<script src="https://kit.fontawesome.com/e316621057.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="page-wrapper">
<!-- Preloader -->
<div class="preloader"></div>
<!-- Main Header-->
<header class="main-header">
<!--Header-Upper-->
<div class="header-upper">
<div class="outer-container">
<div class="clearfix">
<div class="pull-left ecelldtu-logo">
<div class="logo"><a href="https://ecelldtu.in"><img src="./images/ECellLogo.png"~
alt="E-CellLOGO" title=""></a></div>
</div>
<div class="pull-left dukaan-logo">
<div class="logo2"><a href="https://mydukaan.io"><img
src="./images/DukaanLogo.jpeg"
alt="Dukaan-logo" title=""></a></div>
</div>
<!--Nav Box-->
<div class="nav-outer clearfix">
<!--Mobile Navigation Toggler-->
<div class="mobile-nav-toggler"> <span class="icon"> <i class="fa-solid fa-bars"> </i> </span> </div>
<!-- Main Menu -->
<nav class="main-menu navbar-expand-md navbar-light">
<div class="collapse navbar-collapse clearfix" id="navbarSupportedContent">
<ul class="navigation clearfix" style="position:relative;">
<li class="current dropdown"><a href="index.html">Home</a>
</li>
<li><a href="#about">About Us</a></li>
<li><a href="#schedule2">Schedule</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#contact">Contact us</a></li>
<li class="reg_butt"><div class="link-box">
<a href="https://execute.devfolio.co" class="theme-btn btn-style-one">Register Now <span
class=""></span></a> </div></li>
</ul>
</div>
</nav>
</div>
</div>
<!-- Outer btn -->
<div class="outer-btn">
</div>
</div>
</div>
</div>
<!--End Header Upper-->
<!-- Mobile Menu -->
<div class="mobile-menu">
<!-- <div class="menu-backdrop"></div> -->
<div class="close-btn"><i style="font-size: 1.6em;" class="fa-solid fa-xmark"></i></div>
<!--Here Menu Will Come Automatically Via Javascript / Same Menu as in Header-->
<nav class="menu-box">
<div class="nav-logo"><a href="index.html"><img src="images/ecelltext_ccexpress.png" alt="" title=""></a>
</div>
<ul class="navigation clearfix">
<!--Keep This Empty / Menu will come through Javascript-->
</ul>
</nav>
</div><!-- End Mobile Menu -->
</header>
<!--End Main Header -->
<!--Main Slider-->
<section class="main-slider">
<div class="rev_slider_wrapper fullwidthbanner-container" id="rev_slider_one_wrapper" data-source="gallery">
<div class="rev_slider fullwidthabanner" id="rev_slider_one" data-version="5.4.1">
<ul>
<!-- Slide 1 -->
<li data-transition="parallaxvertical" data-description="Slide Description" data-easein="default"
data-easeout="default" data-fsmasterspeed="1500" data-fsslotamount="7" data-fstransition="fade"
data-hideafterloop="0" data-hideslideonmobile="off" data-index="rs-1681"
data-masterspeed="default" data-param1="" data-param10="" data-param2="" data-param3=""
data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9=""
data-rotate="0" data-saveperformance="off" data-slotamount="default"
data-thumb="images/main-slider/1.jpg">
<img alt="" class="rev-slidebg" data-bgfit="cover" data-bgparallax="10"
data-bgposition="center center" data-bgrepeat="no-repeat" data-no-retina=""
src="images/main-slider/1.jpg">
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-4"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['-435','15','15','15']"
data-voffset="['260','0','0','0']" data-x="['left','left','left','left']"
data-y="['bottom','bottom','bottom','bottom']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-dots-1"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-3"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['-60','15','15','15']"
data-voffset="['325','0','0','0']" data-x="['right','right','right','right']"
data-y="['bottom','bottom','bottom','bottom']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-circle-1"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-3"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['-75','15','15','15']"
data-voffset="['140','0','0','0']" data-x="['left','left','left','left']"
data-y="['top','top','top','top']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-circle-2"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-4"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['350','15','15','15']"
data-voffset="['400','0','0','0']" data-x="['right','right','right','right']"
data-y="['top','top','top','top']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-plus"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-5"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['200','15','15','15']"
data-voffset="['220','0','0','0']" data-x="['right','right','right','right']"
data-y="['top','top','top','top']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon twist-line-1"></span>
</div>
<div class="tp-caption" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingtop="[0,0,0,0]" data-responsive_offset="on"
data-type="text" data-height="none" data-width="['650','650','670','400']"
data-whitespace="normal" data-hoffset="['15','15','15','15']"
data-voffset="['-150','-150','-150','-150']" data-x="['left','left','left','left']"
data-y="['middle','middle','middle','middle']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":1000,"speed":1500,"frame":"0","from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<div class="title">28th-29th May 2022</div>
</div>
<div class="tp-caption" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingtop="[0,0,0,0]" data-responsive_offset="on"
data-type="text" data-height="none" data-width="['720','780','650','600']"
data-whitespace="normal" data-hoffset="['15','15','15','15']"
data-voffset="['-40','-30','-30','-50']" data-x="['left','left','left','left']"
data-y="['middle','middle','middle','middle']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":1500,"speed":1500,"frame":"0","from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<h2 class="Execute">Execute <br>Hackathon 2.0</h2>
<!-- <div class="glitch" data-text="GLITCH" style="font-size: 15vh;">Execute</div>
<br>
<div class="glitch" data-text="GLITCH" style="margin-left: 0%; font-size: 15vh;">Hackathon 2.0</div> -->
<div class="title">Region: Worldwide (Online)</div>
</div>
<div class="tp-caption tp-resizeme" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingtop="[0,0,0,0]" data-responsive_offset="on"
data-type="text" data-height="none" data-whitespace="normal"
data-width="['650','650','650','480']" data-hoffset="['15','15','15','15']"
data-voffset="['125','125','125','135']" data-x="['left','left','left','left']"
data-y="['middle','middle','middle','middle']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":2000,"speed":1500,"frame":"0","from":"y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power4.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<div class="link-box">
<a href="https://execute.devfolio.co" class="theme-btn btn-style-one">Register Now <span
class=""></span></a>
<a href="#about" class="theme-btn btn-style-two">Learn More <span
class=""></span></a>
</div>
</div>
</li>
<!-- Slide 1 -->
<li data-transition="parallaxvertical" data-description="Slide Description" data-easein="default"
data-easeout="default" data-fsmasterspeed="1500" data-fsslotamount="7" data-fstransition="fade"
data-hideafterloop="0" data-hideslideonmobile="off" data-index="rs-1682"
data-masterspeed="default" data-param1="" data-param10="" data-param2="" data-param3=""
data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9=""
data-rotate="0" data-saveperformance="off" data-slotamount="default"
data-thumb="images/main-slider/1.jpg">
<img alt="" class="rev-slidebg" data-bgfit="cover" data-bgparallax="10"
data-bgposition="center center" data-bgrepeat="no-repeat" data-no-retina=""
src="images/main-slider/2.jpg">
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-4"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['-435','15','15','15']"
data-voffset="['260','0','0','0']" data-x="['left','left','left','left']"
data-y="['bottom','bottom','bottom','bottom']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-dots-1"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-3"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['-60','15','15','15']"
data-voffset="['325','0','0','0']" data-x="['right','right','right','right']"
data-y="['bottom','bottom','bottom','bottom']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-circle-1"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-3"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['-75','15','15','15']"
data-voffset="['140','0','0','0']" data-x="['left','left','left','left']"
data-y="['top','top','top','top']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-circle-2"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-4"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['350','15','15','15']"
data-voffset="['400','0','0','0']" data-x="['right','right','right','right']"
data-y="['top','top','top','top']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-plus"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-5"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['200','15','15','15']"
data-voffset="['220','0','0','0']" data-x="['right','right','right','right']"
data-y="['top','top','top','top']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon twist-line-1"></span>
</div>
<div class="tp-caption" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingtop="[0,0,0,0]" data-responsive_offset="on"
data-type="text" data-height="none" data-width="['650','650','670','400']"
data-whitespace="normal" data-hoffset="['15','15','15','15']"
data-voffset="['-150','-150','-150','-150']" data-x="['left','left','left','left']"
data-y="['middle','middle','middle','middle']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":1000,"speed":1500,"frame":"0","from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<div class="title">28th-29th May 2022</div>
</div>
<div class="tp-caption" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingtop="[0,0,0,0]" data-responsive_offset="on"
data-type="text" data-height="none" data-width="['720','780','650','600']"
data-whitespace="normal" data-hoffset="['15','15','15','15']"
data-voffset="['-40','-30','-30','-50']" data-x="['left','left','left','left']"
data-y="['middle','middle','middle','middle']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":1500,"speed":1500,"frame":"0","from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<h2 class="Execute">Execute <br>Hackathon 2.0</h2>
<!-- <div class="glitch" data-text="GLITCH" style="font-size: 15vh;">Execute</div>
<br>
<div class="glitch" data-text="GLITCH" style="font-size: 15vh;">Hackathon 2.0</div> -->
<div class="title">Region: Worldwide (Online)</div>
</div>
<div class="tp-caption tp-resizeme" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingtop="[0,0,0,0]" data-responsive_offset="on"
data-type="text" data-height="none" data-whitespace="normal"
data-width="['650','650','650','480']" data-hoffset="['15','15','15','15']"
data-voffset="['125','125','125','135']" data-x="['left','left','left','left']"
data-y="['middle','middle','middle','middle']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":2000,"speed":1500,"frame":"0","from":"y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power4.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<div class="link-box">
<a href="https://execute.devfolio.co" class="theme-btn btn-style-one">Register Now <span
class=""></span></a>
<a href="#" class="theme-btn btn-style-two">Learn More <span
class=""></span></a>
</div>
</div>
</li>
<!-- Slide 1 -->
<li data-transition="parallaxvertical" data-description="Slide Description" data-easein="default"
data-easeout="default" data-fsmasterspeed="1500" data-fsslotamount="7" data-fstransition="fade"
data-hideafterloop="0" data-hideslideonmobile="off" data-index="rs-1683"
data-masterspeed="default" data-param1="" data-param10="" data-param2="" data-param3=""
data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9=""
data-rotate="0" data-saveperformance="off" data-slotamount="default"
data-thumb="images/main-slider/1.jpg">
<img alt="" class="rev-slidebg" data-bgfit="cover" data-bgparallax="10"
data-bgposition="center center" data-bgrepeat="no-repeat" data-no-retina=""
src="images/main-slider/3.jpg">
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-4"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['-435','15','15','15']"
data-voffset="['260','0','0','0']" data-x="['left','left','left','left']"
data-y="['bottom','bottom','bottom','bottom']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-dots-1"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-3"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['-60','15','15','15']"
data-voffset="['325','0','0','0']" data-x="['right','right','right','right']"
data-y="['bottom','bottom','bottom','bottom']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-circle-1"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-3"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['-75','15','15','15']"
data-voffset="['140','0','0','0']" data-x="['left','left','left','left']"
data-y="['top','top','top','top']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-circle-2"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-4"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['350','15','15','15']"
data-voffset="['400','0','0','0']" data-x="['right','right','right','right']"
data-y="['top','top','top','top']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon icon-plus"></span>
</div>
<div class="tp-caption tp-resizeme big-ipad-hidden tp-shape tp-shapewrapper rs-parallaxlevel-5"
data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]" data-paddingright="[0,0,0,0]"
data-paddingtop="[0,0,0,0]" data-responsive_offset="on" data-type="text" data-height="none"
data-whitespace="nowrap" data-width="none" data-hoffset="['200','15','15','15']"
data-voffset="['220','0','0','0']" data-x="['right','right','right','right']"
data-y="['top','top','top','top']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<span class="icon twist-line-1"></span>
</div>
<div class="tp-caption" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingtop="[0,0,0,0]" data-responsive_offset="on"
data-type="text" data-height="none" data-width="['650','650','670','400']"
data-whitespace="normal" data-hoffset="['15','15','15','15']"
data-voffset="['-150','-150','-150','-150']" data-x="['left','left','left','left']"
data-y="['middle','middle','middle','middle']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":1000,"speed":1500,"frame":"0","from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<div class="title">28th-29th May 2022</div>
</div>
<div class="tp-caption" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingtop="[0,0,0,0]" data-responsive_offset="on"
data-type="text" data-height="none" data-width="['720','780','650','600']"
data-whitespace="normal" data-hoffset="['15','15','15','15']"
data-voffset="['-40','-30','-30','-50']" data-x="['left','left','left','left']"
data-y="['middle','middle','middle','middle']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":1500,"speed":1500,"frame":"0","from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<h2 class="Execute">Execute <br>Hackathon 2.0</h2>
<!-- <div class="glitch" data-text="GLITCH" style="font-size: 15vh;">Execute</div>
<br>
<div class="glitch" data-text="GLITCH" style="font-size: 15vh;">Hackathon 2.0</div> -->
<div class="title">Region: Worldwide (Online)</div>
</div>
<div class="tp-caption tp-resizeme" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingtop="[0,0,0,0]" data-responsive_offset="on"
data-type="text" data-height="none" data-whitespace="normal"
data-width="['650','650','650','480']" data-hoffset="['15','15','15','15']"
data-voffset="['125','125','125','135']" data-x="['left','left','left','left']"
data-y="['middle','middle','middle','middle']" data-textalign="['top','top','top','top']"
data-frames='[{"delay":2000,"speed":1500,"frame":"0","from":"y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power4.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"auto:auto;","ease":"Power3.easeInOut"}]'>
<div class="link-box">
<a href="https://execute.devfolio.co" class="theme-btn btn-style-one">Register Now <span
class=""></span></a>
<a href="#" class="theme-btn btn-style-two">Learn More <span
class=""></span></a>
</div>
</div>
</li>
</ul>
</div>
</div>
</section>
<!--End Main Slider-->
<!-- About Section -->
<section id="about" class="about-section">
<div class="parallax-scene parallax-scene-1 anim-icons">
<span data-depth="0.40" class="parallax-layer icon icon-circle-3"></span>
<span data-depth="0.99" class="parallax-layer icon icon-circle-4"></span>
</div>
<div class="auto-container">
<div class="row">
<!-- Content Column -->
<div class="content-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="sec-title">
<!-- <span class="title">About Conference</span> -->
<a href="https://ecelldtu.in/" target="_blank"><h2>About Us</h2></a>
</div>
<div class="text" style="font-size: 1.4em; text-align: justify;">
<a href="https://ecelldtu.in/" target="_blank">E-Cell DTU,</a> for the past 12 years has been advocating the spirit of being a ‘creator’ by providing the students with the
right guidance and mentorship from venture capitalists, angel investors, and top industrialists and striving to create
an entrepreneurial ecosystem.
<br><br>
We attempt to foster new values amongst young individuals to make them exemplary engineers imbibed with the idea of
productive, innovative, and independent thinking. We aim to create a 'change' with out-of-the-box ideas and training
individuals to make them the creators of this change.
<br><br>
<a href="https://mydukaan.io/" target="_blank" rel="noopener noreferrer">Dukaan®</a> is a platform that allows offline businesses to sell their products and services online. On our platform, the
users can create and manage beautiful product catalogs (catalogs) right from a smartphone and share them with their
customers easily on different social media apps such as WhatsApp Business, WhatsApp, Facebook, Instagram, etc. Praised
by users all over India, our platform has saved declining businesses by helping them transfer their shops online. The
journey has just begun, and we are on a mission to make India truly digital.
<br><br>
<a href="https://mydukaan.io/" target="_blank" rel="noopener noreferrer">Dukaan®</a> in collaboration with Entrepreneurship Cell, DTU brings to you Execute 2.0 which will provide the essential
platform for those who strive to create a change in society through their out-of-the-box ideas, zeal, and ardor. Execute
will sprint your mind, make you brainstorm extensively, and stretch you beyond your limits. It is a one-of-a-kind
experience for amateurs, professionals, and most importantly hustlers. Be a part of executing and show your worth and
potential to the world of transforming dreams into reality.
</div>
<div class="btn-box">
<a href="#contact" class="theme-btn btn-style-one">Contact Us <span class=""></span></a>
</div>
</div>
</div>
<!-- Image Column -->
<div class="image-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="image-box">
<figure class="image wow fadeInRight"><a href="images/resource/image-1.jpg"
class="lightbox-image" data-fancybox="images"><img src="images/resource/image-1.jpg"
alt=""></a></figure>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End About Section -->
<section id="schedule" class="shedule-section">
<div class="auto-container">
<div class="sec-title">
<span class="title">Prizes</span>
<h2>TOTAL PRIZE POOL OF ₹ 9 LAKHS</h2>
</div>
</section>
<!-- ======= Buy Ticket Section ======= -->
<section id="buy-tickets" class="section-with-bg">
<div class="container" data-aos="fade-up">
<br>
<div class="row" style="align-items: center; justify-content: center;">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="100" style="margin-top: 5px; margin-bottom: 5px;">
<div class="card mb-5 mb-lg-0 gold">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center prize-font" style="opacity: 100%; font-size: 35px; font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">🏆 Winner 🏆 </h5> <br>
<h6 class="card-price text-center" style="color: black">₹ 5,00,000</h6>
</div>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="200" style="margin-top: 5px; margin-bottom: 5px;">
<div class="card mb-5 mb-lg-0 silver">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center prize-font" style="opacity: 100%; font-size: 35px; font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">1st runner up</h5> <br>
<h6 class="card-price text-center" style="color: black">₹ 2,50,000</h6>
</div>
</div>
</div>
<!-- Pro Tier -->
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="300" style="margin-top: 5px; margin-bottom: 5px;">
<div class="card bronze">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center prize-font" style="opacity: 100%; font-size: 35px; font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">2nd runner up</h5> <br>
<h6 class="card-price text-center" style="color: black;">₹ 1,00,000</h6>
</div>
</div>
</div>
</div>
</div>
<br>
</div>
</section>
<section id="schedule" class="shedule-section">
<div class="auto-container">
<div class="sec-title">
<h2>TRACK PRIZES</h2>
</div>
</section>
<section id="buy-tickets" class="section-with-bg">
<div class="container" data-aos="fade-up">
<br>
<div class="row" style="align-items: center; justify-content: center;">
<div class="col-lg-5" data-aos="fade-up" data-aos-delay="200" style="margin-top: 5px; margin-bottom: 5px;">
<div class="card mb-5 mb-lg-0 tezos">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center prize-font" style="opacity: 100%; font-size: 35px; font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">Tezos Track</h5> <br>
<p style="visibility:hidden">heh <br> he <br>he <br></p>
<h6 class="card-price text-center" style="color: black">₹ 50,000</h6>
</div>
</div>
</div>
<div class="col-lg-5" data-aos="fade-up" data-aos-delay="200" style="margin-top: 5px; margin-bottom: 5px;">
<div class="card mb-5 mb-lg-0 arcana">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center prize-font" style= "opacity: 100%; font-size: 35px; font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; color: white !important;">Arcana Track</h5> <br>
<p style="visibility:hidden">heh <br> he <br> he <br></p>
<h6 class="card-price text-center" style="color: white">₹ 20,000</h6>
</div>
</div>
</div>
<!-- Pro Tier -->
</div>
</div>
<br>
</div>
</section>
<!-- End Buy Ticket Section -->
<!-- Pricing Section -->
<!-- <section class="pricing-section">
<div class="auto-container">
<div class="sec-title text-center">
<span class="title">Want to Join Us?</span>
<h2>Pricing and Pass</h2>
</div>
<div class="row" style="display: flex; justify-content: center;"> -->
<!-- Pricing Block -->
<!-- <div class="pricing-block col-lg-4 col-md-6 col-sm-12 wow fadeInUp" data-wow-delay="1200ms">
<div class="inner-box">
<figure class="image"><img width="200px" src="images/resource/pricing-3.png" alt=""></figure>
<span class="title">Advanced Pass</span>
<h4 class="price"><s>₹300</s> → ₹250</h4>
<h3 class="title" style="font-size: 22px; color:rgb(255, 153, 0)">Early registeration discount of
₹50/- <br></h3>
<ul style="list-style-type: circle; font-weight: 700; font-size: 15px; color:#02a1e6;">
<li>Only for first 100 teams.</li>
<li>Use Promo Code- 'EXE2150'</li>
</ul> -->
<!-- <ul class="features">
<li>10 Pages Responsive Website</li>
<li>10 SEO Keywords</li>
<li>2 Video Camplaigns</li>
<li>5 PPC Campaigns</li>
</ul> -->
<!--<div class="btn-box">
<a href="https://unstop.com/competitions/319334/register"
class="theme-btn">BUY Ticket<span class=""></span></a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--End Pricing Section -->
<!-- Speakers Section -->
<section class="speakers-section" style="background-image: url(images/background/1.jpg);">
<div class="parallax-scene parallax-scene-2 anim-icons">
<span data-depth="0.40" class="parallax-layer icon icon-circle-5"></span>
<span data-depth="0.99" class="parallax-layer icon icon-circle-5"></span>
</div>
<div class="auto-container">
<div class="sec-title light text-center">
<!-- <span class="title">Our Speakers</span> -->
<h2>Our Judges</h2>
</div>
<div class="row" style="display: flex; justify-content: center; align-items:stretch;">
<!-- Speaker Block -->
<div class="speaker-block col-lg-4 col-md-6 col-sm-12 wow fadeInUp" data-wow-delay="400ms">
<div class="inner-box">
<div class="image-box">
<figure class="image"><img src="images/judges/Speaker1.jpg" alt="">
<div class="social-links">
<ul>
<li><a href="#"><span class="fab fa-facebook-f"></span></a></li>
<li><a href="#"><span class="fab fa-twitter"></span></a></li>
<li><a href="#"><span class="fab fa-linkedin-in"></span></a></li>
<li><a href="#"><span class="fab fa-pinterest-p"></span></a></li>
</ul>
</div>
</figure>
</div>
<div class="caption-box">
<h4 class="name"><a href="speaker-single.html">ADITYA KAPOOR</a></h4>
<span class="designation">Chief Development Architect at SAP</span>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-4 col-md-6 col-sm-12 wow fadeInUp" data-wow-delay="800ms">
<div class="inner-box">
<div class="image-box">
<figure class="image"><img src="images/judges/speaker2.jpg" alt="">
<div class="social-links">
<ul>
<li><a href="#"><span class="fab fa-facebook-f"></span></a></li>
<li><a href="#"><span class="fab fa-twitter"></span></a></li>
<li><a href="#"><span class="fab fa-linkedin-in"></span></a></li>
<li><a href="#"><span class="fab fa-pinterest-p"></span></a></li>
</ul>
</div>
</figure>
</div>
<div class="caption-box">
<h4 class="name"><a href="speaker-single.html">CHINMAY JAIN</a></h4>
<span class="designation">CTO of WLPayments</span>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-4 col-md-6 col-sm-12 wow fadeInUp">
<div class="inner-box">
<div class="image-box">
<figure class="image"><img src="images/judges/speaker3.jfif" alt="">
<div class="social-links">
<ul>
<li><a href="#"><span class="fab fa-facebook-f"></span></a></li>
<li><a href="#"><span class="fab fa-twitter"></span></a></li>
<li><a href="#"><span class="fab fa-linkedin-in"></span></a></li>
<li><a href="#"><span class="fab fa-pinterest-p"></span></a></li>
</ul>
</div>
</figure>
</div>
<div class="caption-box">
<h4 class="name"><a href="speaker-single.html">PANKAJ KANKAR</a></h4>
<span class="designation">Reliance Retail</span>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-4 col-md-6 col-sm-12 wow fadeInUp" data-wow-delay="400ms">
<div class="inner-box">
<div class="image-box">
<figure class="image"><img src="images/judges/speaker4.jpg" alt="">
<div class="social-links">
<ul>
<li><a href="#"><span class="fab fa-facebook-f"></span></a></li>
<li><a href="#"><span class="fab fa-twitter"></span></a></li>
<li><a href="#"><span class="fab fa-linkedin-in"></span></a></li>
<li><a href="#"><span class="fab fa-pinterest-p"></span></a></li>
</ul>
</div>
</figure>
</div>
<div class="caption-box">
<h4 class="name"><a href="speaker-single.html">SANDEEP GOYAL</a></h4>
<span class="designation">Principal Software Engineering Manager Microsoft</span>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-4 col-md-6 col-sm-12 wow fadeInUp" data-wow-delay="400ms">
<div class="inner-box">
<div class="image-box">
<figure class="image"><img src="images/judges/speaker5.jpg" alt="">
<div class="social-links">
<ul>
<li><a href="#"><span class="fab fa-facebook-f"></span></a></li>
<li><a href="#"><span class="fab fa-twitter"></span></a></li>
<li><a href="#"><span class="fab fa-linkedin-in"></span></a></li>
<li><a href="#"><span class="fab fa-pinterest-p"></span></a></li>
</ul>
</div>
</figure>
</div>
<div class="caption-box">
<h4 class="name"><a href="speaker-single.html">SANKET ATAL</a></h4>
<span class="designation">Salesforce</span>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-4 col-md-6 col-sm-12 wow fadeInUp" data-wow-delay="400ms">
<div class="inner-box">
<div class="image-box">
<figure class="image"><img src="images/judges/speaker6.jpg" alt="">
<div class="social-links">
<ul>
<li><a href="#"><span class="fab fa-facebook-f"></span></a></li>
<li><a href="#"><span class="fab fa-twitter"></span></a></li>
<li><a href="#"><span class="fab fa-linkedin-in"></span></a></li>
<li><a href="#"><span class="fab fa-pinterest-p"></span></a></li>
</ul>
</div>
</figure>
</div>
<div class="caption-box">
<h4 class="name"><a href="speaker-single.html">SUBHASH CHOUDHARY</a></h4>
<span class="designation">Co-Founder and CTO Dukaan</span>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-4 col-md-6 col-sm-12 wow fadeInUp" data-wow-delay="800ms">
<div class="inner-box">
<div class="image-box">
<figure class="image"><img src="images/judges/speaker7.jpeg" alt="">
<div class="social-links">
<ul>
<li><a href="#"><span class="fab fa-facebook-f"></span></a></li>
<li><a href="#"><span class="fab fa-twitter"></span></a></li>
<li><a href="#"><span class="fab fa-linkedin-in"></span></a></li>
<li><a href="#"><span class="fab fa-pinterest-p"></span></a></li>
</ul>
</div>
</figure>
</div>
<div class="caption-box">
<h4 class="name"><a href="speaker-single.html">VIKRAM GUPTA</a></h4>
<span class="designation">CTO Snapdeal</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Speakers Section -->
<!-- Shedule Section -->
<section id="schedule2" class="shedule-section">
<div class="auto-container">
<div class="sec-title">
<span class="title">About Timings</span>
<h2>Schedule Plan</h2>
</div>
<div class="shedule-tabs tabs-box">
<div class="btns-box">
<!--Tabs Box-->
<ul class="tab-buttons clearfix">
<li class="tab-btn active-btn" data-tab="#tab-1">First Day <span>May 28, 2022 <br>
(Saturday)</span></li>
<li class="tab-btn" data-tab="#tab-2">Second Day <span>May 29, 2022 <br>(Sunday)</span></li>
</ul>
</div>
<div class="tabs-content">
<!--Tab-->
<div class="tab active-tab" id="tab-1">
<!-- Shedule Block -->
<div class="shedule-block">
<div class="inner-box clearfix">
<figure class="thumbs-box"><img src="images/resource/inauguration.jpg" alt=""></figure>
<div style="margin-left: 2em;" class="content-box">
<div class="date"><span class="icon far fa-clock"></span>11:30 AM
</div>
<h4><a href="shedule.html">INAUGURATION</a></h4>
<div class="text">The Hackathon will be inaugurated by the esteemed dignitaries,
after which teams will be informed about the guidelines, event schedule and the problem statement.The 'execution' of
transforming ordinary into extraordinary will commence.
</div>
<!-- <ul class="shedule-info clearfix">
<li><span>by</span> <a href="#">Samanta Doe</a> CEO of Houz</li>
<li>Auditorium A</li>
</ul> -->
</div>
<!-- <div class="btn-box">
<a href="shedule.html" class="theme-btn btn-style-three">Read More</a>
</div> -->
</div>
</div>
<!-- Shedule Block -->
<!-- <div class="shedule-block">
<div class="inner-box clearfix">
<figure class="thumbs-box"><img src="images/resource/thumb-2.jpg" alt=""></figure>
<div class="content-box">
<div class="date"><span class="icon far fa-clock"></span>12.00 PM - 05.00 PM
</div>
<h4><a href="shedule.html">READY-SET-HACK</a></h4>
<div class="text">
The problem statement will be released and the hackers will be starting their
vigorous brainstorm session.
Everyone will be having 24 hours to mould and shape the solution to the problem.
</div>
<ul class="shedule-info clearfix">
<li><span>by</span> <a href="#">Samanta Doe</a> CEO of Houz</li>
<li>Auditorium A</li>
</ul>
</div>
<div class="btn-box">
<a href="shedule.html" class="theme-btn btn-style-three">Read More</a>
</div>
</div>
</div> -->
<!-- Shedule Block -->
<div class="shedule-block">
<div class="inner-box clearfix">
<figure class="thumbs-box"><img src="images/resource/check1.jpg" alt=""></figure>
<div style="margin-left: 2em;" class="content-box">
<div class="date"><span class="icon far fa-clock"></span>02:00 PM
</div>
<h4><a href="shedule.html">CHECKPOINT #1</a></h4>
<div class="text">
Teams would be required to submit their initial work along with a short description in the form of a GitHub
link/presentation/word document. (Mentors will be assigned to only those teams who make a successful submission).
</div>
<!-- <ul class="shedule-info clearfix">
<li><span>by</span> <a href="#">Samanta Doe</a> CEO of Houz</li>
<li>Auditorium A</li>
</ul> -->
</div>
<!-- <div class="btn-box">
<a href="shedule.html" class="theme-btn btn-style-three">Read More</a>
</div> -->
</div>
</div>
<!-- Shedule Block -->
<div class="shedule-block">
<div class="inner-box clearfix">
<figure class="thumbs-box"><img src="images/resource/mentoringSession.jpg" alt=""></figure>
<div style="margin-left: 2em;" class="content-box">
<div class="date"><span class="icon far fa-clock"></span>06:00 PM
</div>
<h4><a href="shedule.html">MENTORING SESSION</a></h4>
<div class="text">
The teams will be assigned mentors to validate their progress and provide insights into their proposed solutions. The
mentors would be industry professionals and proficient in their fields.
</div>
<!-- <ul class="shedule-info clearfix">
<li><span>by</span> <a href="#">Samanta Doe</a> CEO of Houz</li>
<li>Auditorium A</li>
</ul> -->
</div>
<!-- <div class="btn-box">
<a href="shedule.html" class="theme-btn btn-style-three">Read More</a>
</div> -->
</div>
</div>
<!-- Shedule Block -->
<div class="shedule-block">
<div class="inner-box clearfix">
<figure class="thumbs-box"><img src="images/resource/workshop.JPG" alt=""></figure>
<div style="margin-left: 2em;" class="content-box">
<div class="date"><span class="icon far fa-clock"></span>08:00 PM
</div>
<h4><a href="shedule.html">WORKSHOPS</a></h4>
<div class="text">
Teams will be attending insightful workshops organised by Entrepreneurship Cell, DTU through its partners. These would
serve to be beneficial for the participants equipping them with the skills needed to succeed.
</div>
</div>
<!-- <div class="btn-box">
<a href="shedule.html" class="theme-btn btn-style-three">Read More</a>
</div> -->
</div>
</div>
<!-- Shedule Block -->
<div class="shedule-block">
<div class="inner-box clearfix">
<figure class="thumbs-box"><img src="images/resource/check2.jpg" alt=""></figure>
<div style="margin-left: 2em;" class="content-box">
<div class="date"><span class="icon far fa-clock"></span>10:00 PM
</div>
<h4><a href="shedule.html">CHECKPOINT #2</a></h4>
<div class="text">
Teams will be required to update their progress on their hack/solution. A Github link with code would be mandatory to
submit, along with a short description. The teams can additionally submit a Presentation/Word Document as well.
</div>
</div>
<!-- <div class="btn-box">
<a href="shedule.html" class="theme-btn btn-style-three">Read More</a>
</div> -->
</div>
</div>
</div>
<!--Tab-->
<div class="tab" id="tab-2">
<!-- Shedule Block -->
<div class="shedule-block">
<div class="inner-box clearfix">
<figure class="thumbs-box"><img src="images/resource/check3.jpg" alt=""></figure>
<div style="margin-left: 2em;" class="content-box">
<div class="date"><span class="icon far fa-clock"></span>06:00 AM
</div>
<h4><a href="shedule.html">CHECKPOINT #3</a></h4>
<div class="text">
Teams will be required to update their progress on their hack/solution. A Github link with code would be mandatory to
submit, along with a short description. The teams can additionally submit a Presentation/Word Document as well.
</div>
<!-- <ul class="shedule-info clearfix">
<li><span>by</span> <a href="#">Samanta Doe</a> CEO of Houz</li>
<li>Auditorium A</li>
</ul> -->
</div>
<!-- <div class="btn-box">
<a href="shedule.html" class="theme-btn btn-style-three">Read More</a>
</div> -->
</div>
</div>
<!-- Shedule Block -->
<div class="shedule-block">
<div class="inner-box clearfix">
<figure class="thumbs-box"><img src="images/resource/finalSubmission.jpg" alt=""></figure>
<div style="margin-left: 2em;" class="content-box">
<div class="date"><span class="icon far fa-clock"></span>11:00 PM
</div>
<h4><a href="shedule.html">FINAL SUBMISSION</a></h4>
<div class="text">
The hacking mayhem will reach the finish line where every team would be required to submit their final hack/solution in
form of a Github link/Zip file. Along with the final pitch deck that they will present in front of the esteemed judging
panel.
</div>
<!-- <ul class="shedule-info clearfix">
<li><span>by</span> <a href="#">Samanta Doe</a> CEO of Houz</li>
<li>Auditorium A</li>
</ul> -->
</div>
<!-- <div class="btn-box">
<a href="shedule.html" class="theme-btn btn-style-three">Read More</a>
</div> -->
</div>
</div>
<!-- Shedule Block -->
<div class="shedule-block">
<div class="inner-box clearfix">
<figure class="thumbs-box"><img src="images/resource/judgingRound.jpg" alt=""></figure>
<div style="margin-left: 2em;" class="content-box">
<div class="date"><span class="icon far fa-clock"></span>05:30 PM
</div>