-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
1150 lines (1086 loc) · 51.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!-- <head> -->
<!-- <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> -->
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- <title>SBH</title>
<link rel="icon" href="./img/sbh-logo.ico" />
Google font
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700,900" rel="stylesheet"> -->
<!-- Bootstrap -->
<!-- <link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" /> -->
<!-- Owl Carousel -->
<!-- <link type="text/css" rel="stylesheet" href="css/owl.carousel.css" />
<link type="text/css" rel="stylesheet" href="css/owl.theme.default.css" /> -->
<!-- <link rel="stylesheet" href="css/font-awesome.min.css"> -->
<!-- Custom stlylesheet -->
<!-- <link type="text/css" rel="stylesheet" href="css/style.css" /> -->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='shortcut icon' href='img/sbh.ico' type='image/x-icon'>
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>SBH</title>
<link rel="icon" href="./img/bh-logo.ico" />
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700,900" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Owl Carousel -->
<link type="text/css" rel="stylesheet" href="css/owl.carousel.css" />
<link type="text/css" rel="stylesheet" href="css/owl.theme.default.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/ribbon.css" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Header -->
<header id="header" class="transparent-navbar">
<!-- container -->
<div class="container">
<!-- navbar header -->
<div class="navbar-header">
<!-- Logo -->
<div class="navbar-brand">
<a class="logo" href="index.html">
<img class="logo-img" src="./img/final.png" alt="logo">
<img class="logo-alt-img" src="./img/final.png" alt="logo">
</a>
</div>
<!-- /Logo -->
<!-- Mobile toggle -->
<button class="navbar-toggle">
<i class="fa fa-bars"></i>
</button>
<!-- /Mobile toggle -->
</div>
<!-- /navbar header -->
<!-- Navigation -->
<nav id="nav">
<ul class="main-nav nav navbar-nav navbar-right">
<li><a href="#home">Home</a></li>
<li><a href="#about">Event</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#prizes">Prizes</a></li>
<!-- <li><a href="#speakers">Judges</a></li> -->
<li><a href="#faqs">Faq</a></li>
<!-- <li><a href="#sponsors">Sponsors</a></li> -->
<li><a href="#exhibitor">Exhibitor Registration</a></li>
<li><a href="#download">Downloads</a></li>
<li><a href="#feedback-section">Contact</a></li>
<li><a href = "http://www.jecrcfoundation.com/" target = "_blank">About us</a></li>
<!-- <li><a href="#">Blog</a></li> -->
</ul>
</nav>
<!-- /Navigation -->
</div>
<!-- /container -->
</header>
<!-- /Header -->
<!-- Home -->
<div id="home">
<!-- background image -->
<div class="section-bg" style="background-image:url(./img/fp.jpg)"></div>
<!-- /background image -->
<!-- home wrapper -->
<div class="home-wrapper">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- home content -->
<div class="col-md-8 col-md-offset-2">
<div class="home-content">
<h1>Smart Business Hackathon </h1>
<h4 class="lead">Sponsored by TEQIP III & jointly organised by RTU. </h4>
<h4>23-24 Feb 2019</h4>
<button class="register-btn" type="submit" data-toggle="modal" data-target="#myModal">Team Registration</button></center>
</div>
</div>
<!-- /home content -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /home wrapper -->
</div>
<!-- /Home -->
<!-- Ribbon -->
<div class="to-close">
<i class="fa fa-window-close close-button" aria-hidden="true"></i>
</div>
<div class="ribbon-parent ">
<div class="ribbon">
<div class="medallion"></div>
<div class="ribbon-1">
<span class="inner">
<span class="fadeLeft">Smart</span>
</span>
</div>
<div class="ribbon-2">
<span class="inner">
<span class="fadeRight">Business hackathon</span>
</span>
</div>
<div class="ribbon-3">
<span class="inner">
<span class="fadeLeft">GRAND PRIZE Worth</span>
</span>
</div>
<div class="ball fadeIn">
<span class="ball-text">
<strong>Rs.1,00,000</strong>
& much more
</span>
</div>
</div>
</div>
<!-- /Ribbon -->
<!-- About -->
<div id="about" class="section">
<div class="section-bg" style="background-image:url(https://inpadel.in/wp-content/uploads/2017/04/blue-background-023.jpg)" ></div>
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h3 class="title"><span>About</span> <span style="color: #dd0a37;">Event</span></h3>
</div>
<!-- /section title -->
<div class="col-md-8 col-md-offset-2 text-center">
<!-- about content -->
<div class="about-content">
<p>
<font color="white">Smart Business Hackathon is an initiative sponsored by Technical Education Quality Improvement Program by Government of India (TEQIP) and will be jointly organized by Rajasthan Technical University and JECRC Foundation, Jaipur. Smart Business Hackathon is an innovative competition of individuals, young entrepreneurs, assorted into groups of 2-4 participants, in solving business cases.</font>
</p>
</div>
<!-- /about content -->
<!-- Numbers -->
<div id="numbers">
<!-- row -->
<div class="row">
<!-- number -->
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="number">
<h3>36
<!-- <span class="counter" data-from="0" data-to="36" data-speed="1500">0</span> -->
</h3>
<p>Hours</p>
</div>
</div>
<!-- /number -->
<!-- number -->
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="number">
<h3>500+</h3>
<p>Participants</p>
</div>
</div>
<!-- /number -->
<!-- number -->
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="number">
<h3>50+</h3>
<p>Startup Exhibitors</p>
</div>
</div>
<!-- /number -->
<!-- number -->
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="number">
<h3>20+</h3>
<p>CEO's & Founders</p>
</div>
</div>
<!-- /number -->
</div>
<!-- /row -->
</div>
<!-- /Numbers -->
</div>
</div>
<!-- row -->
</div>
<!-- /container -->
</div>
<!-- /About -->
<!-- Galery -->
<div id="galery">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- galery owl -->
<div id="galery-owl" class="owl-carousel owl-theme">
<!-- galery item -->
<div class="galery-item">
<img src="./img/pic1.jpg" alt="">
</div>
<!-- /galery item -->
<!-- galery item -->
<div class="galery-item">
<img src="./img/pic2.jpg" alt="">
</div>
<!-- /galery item -->
<!-- galery item -->
<div class="galery-item">
<img src="./img/pic3.jpg" alt="">
</div>
<!-- /galery item -->
</div>
<!-- /galery owl -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Galery -->
<!-- Video CTA -->
<!-- <div id="video-cta" class="section"> -->
<!-- background image -->
<!-- g" style="background-image:url(./img/background02.jpg)" data-stellar-background-ratio="0.5"></div> -->
<!-- /background image -->
<!-- container -->
<!-- <div class="container"> -->
<!-- row -->
<!-- <div class="row"> -->
<!-- cta content -->
<!-- <div class="col-md-8 col-md-offset-2">
<div class="cta-content text-center">
<a class="video-play" href="#">
<i class="fa fa-play"></i>
</a>
<h2>Watch this video</h2>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
</div> -->
<!-- /cta content -->
<!-- </div> -->
<!-- /row -->
<!-- </div> -->
<!-- /container -->
<!-- </div> -->
<!-- /Video CTA -->
<div id="quotes" class="section">
<div class="container">
<div class="row">
<div class='col-md-offset-2 col-md-8 text-center'>
<h3 class="title">
<span class="appear">Words of</span>
<span style="color: #dd0a37;" class="appear">Wisdom</span>
</h3>
</div>
</div>
<div class='row'>
<div class='col-md-offset-2 col-md-8'>
<div class="carousel slide" data-ride="carousel" id="quote-carousel">
<!-- Bottom Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#quote-carousel" data-slide-to="0" class="active"></li>
<li data-target="#quote-carousel" data-slide-to="1"></li>
<li data-target="#quote-carousel" data-slide-to="2"></li>
<li data-target="#quote-carousel" data-slide-to="3"></li>
<li data-target="#quote-carousel" data-slide-to="4"></li>
</ol>
<!-- Carousel Slides / Quotes -->
<div class="carousel-inner">
<!-- Quote 1 -->
<div class="item active">
<blockquote>
<div class="row">
<div class="col-sm-3 text-center">
<img class="img-circle" src="data:image/jpeg;base64,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" style="width: 100px;height:100px;">
<!--<img class="img-circle" src="https://s3.amazonaws.com/uifaces/faces/twitter/kolage/128.jpg" style="width: 100px;height:100px;">-->
</div>
<div class="col-sm-9">
<p>I see startups, technology, and innovations as executive and effective instruments for india's transformation.</p>
<small>Narendra Modi</small>
</div>
</div>
</blockquote>
</div>
<div class="item">
<blockquote>
<div class="row">
<div class="col-sm-3 text-center">
<img class="img-circle" src="http://bsmedia.business-standard.com/_media/bs/img/article/2015-01/14/full/1421174857-546.jpg" style="width: 100px;height:100px;">
</div>
<div class="col-sm-9">
<p>If you don't build your dream.Someone else will hire you to help them build theirs.</p>
<small>Dhirubhai Ambani</small>
</div>
</div>
</blockquote>
</div>
<div class="item">
<blockquote>
<div class="row">
<div class="col-sm-3 text-center">
<img class="img-circle" src="https://pbs.twimg.com/profile_images/918825630006853632/Blp2RId7_400x400.jpg" style="width: 100px;height:100px;">
</div>
<div class="col-sm-9">
<p>No defeat is final,until you stop trying.</p>
<small>Prakash Javadekar</small>
</div>
</div>
</blockquote>
</div>
<div class="item">
<blockquote>
<div class="row">
<div class="col-sm-3 text-center">
<img class="img-circle" src="https://www.biography.com/.image/t_share/MTE5NDg0MDU0NTIzODQwMDE1/steven-jobs-9354805-2-402.jpg" style="width: 100px;height:100px;">
</div>
<div class="col-sm-9">
<p>Innovation distinguishes between a leader and a follower..</p>
<small>Steve Jobs</small>
</div>
</div>
</blockquote>
</div>
<div class="item">
<blockquote>
<div class="row">
<div class="col-sm-3 text-center">
<img class="img-circle" src="http://www.indiaeditor.com/wp-content/uploads/2018/05/IMG_1424-400x330.png" style="width: 100px;height:100px;">
</div>
<div class="col-sm-9">
<p>You can't say what the outcome of a competition is going to be,so now i am ready to accept any result that comes my way,if i give my best shot.</p>
<small>Rajyavardhan Singh Rathore</small>
</div>
</div>
</blockquote>
</div>
</div>
<!-- Carousel Buttons Next/Prev -->
<a data-slide="prev" href="#quote-carousel" class="left carousel-control"><i class="fa fa-chevron-left"></i></a>
<a data-slide="next" href="#quote-carousel" class="right carousel-control"><i class="fa fa-chevron-right"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- Event Schedule -->
<div id="schedule" class="section">
<div class="section-bg" style="background-image:url(https://inpadel.in/wp-content/uploads/2017/04/blue-background-023.jpg)"></div>
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h3 class="title"><span>Event</span> <span style="color: #dd0a37;">Schedule</span></h3>
</div>
<!-- /section title -->
<div class="col-md-8 col-md-offset-2">
<div class="events-wrapper">
<!-- event -->
<div class="event">
<div class="event-day">
<div>
<span class="day">23</span>
<span class="year">Feb, 2019</span>
</div>
</div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i><font color="white">8 : 00 AM</font></p>
<h3 class="event-title">Registrations</h3>
<!-- <p>Till 8:40am there will be breakfast after this there will be inauguration which consist speech of Chief guest,Rtu official & director of jecrc.</p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event">
<div class="event-hour"></div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i> <font color="white">9 : 00 AM onwards</font></p>
<h3 class="event-title">Opening ceremony </h3>
<!-- <p>There will be first round of mentoring from 11:30am to 1:00pm(7-10 min per team), after evaluation lunch begins. </p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event">
<div class="event-hour"></div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i><font color="white"> 9 : 45 AM onwards</font></p>
<h3 class="event-title">Hackathon begins </h3>
<!-- <p>There will be first round of mentoring from 11:30am to 1:00pm(7-10 min per team), after evaluation lunch begins. </p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event">
<div class="event-hour"></div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i><font color="white"> 9 : 45 AM </font></p>
<h3 class="event-title">Exhibition begins</h3>
<!-- <p>Till 5:30 there will be tea and snacks after it judges will go through first round of evaluation(3 judges per panel,3 mins of presenting & 4 mins of Q&A).</p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event">
<div class="event-hour"></div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i> <font color="white">11 : 30 AM - 1 : 00 PM</font></p>
<h3 class="event-title">First round of mentoring session</h3>
<!-- <p>There will be lot of activities to freshen your mood.</p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event">
<div class="event-hour"></div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i><font color="white"> 6 : 00 PM - 7 : 30 PM</font></p>
<h3 class="event-title">First round of evaluation</h3>
<!-- <p>There will be lot of activities to freshen your mood.</p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event">
<div class="event-day">
<div>
<span class="day">24</span>
<span class="year">Feb, 2019</span>
</div>
</div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i><font color="white">9 : 00 AM - 10 : 00 AM</font> </p>
<h3 class="event-title">IInd round of evaluation</h3>
<!-- <p>After yoga session and breakfast there will be IInd round of evaluation(3 judges per panel,evaluating implementation of ideas).</p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event">
<div class="event-hour"></div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i> <font color="white">12 : 00 PM </font></p>
<h3 class="event-title">Power judging round</h3>
<!-- <p>7 mins per team,4 mins of presentation & 3 mins of Q&A in presence of all judges after it there will be lunch.</p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event">
<div class="event-hour"></div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i> <font color="white">2 : 00 PM - 6 : 00 PM</font></p>
<h3 class="event-title">Angel Investors Meet</h3>
<!-- <p>Crores of funding by Angel investers.</p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event">
<div class="event-hour"></div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i> <font color="white">6 : 00 PM - 8 : 00 PM</font></p>
<h3 class="event-title">Result Declaration</h3>
<!-- <p>Result finalization by judges at the venue.</p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<div class="event">
<div class="event-hour"></div>
<div class="event-content">
<p class="event-time"><i class="fa fa-clock-o"></i> <font color="white"> 8 : 00 PM</font></p>
<h3 class="event-title">Closing Ceremony</h3>
<!-- <p>Result finalization by judges at the venue.</p> -->
<!-- <p>By <a href="#">John Doe</a></p> -->
</div>
</div>
<!-- /event -->
<!-- event -->
<!-- <div class="download-btn">
<a href="inventnote.pdf" class="main-btn" download>Download Format</a>
</div> -->
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Event Schedule -->
<!-- Prizes -->
<div id="prizes" class="section">
<div class="section-bg" style="background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOEAAADhCAMAAAAJbSJIAAAAA1BMVEX///+nxBvIAAAASElEQVR4nO3BgQAAAADDoPlTX+AIVQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwDcaiAAFXD1ujAAAAAElFTkSuQmCC)"></div>
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- section title -->
<div class="section-title">
<h3 class="title"><span>Event</span>
<span style="color: #dd0a37;">Prizes</span></h3>
</div>
<!-- /section title -->
<div class="col-md-8 col-md-offset-2 text-center">
<!-- prizes content -->
<div class="about-content">
<h3>Exciting cash prizes for best performing groups</h3>
<h4>1st prize-Rs 1,00,000/-</h4>
<h4>2nd prize-Rs 50,000/-</h4>
<h4>3rd prize-Rs 25,000/-</h4>
<p>Certificate of participation for all participants.</p>
<h5>Funding opportunity by Angel Investors</h5>
</div>
<!-- /prizes content -->
</div>
</div>
<!-- row -->
</div>
<!-- /container -->
</div>
<!-- /Prizes -->
<!-- Speakers -->
<!-- <div id="speakers" class="section"> -->
<!-- container -->
<!-- <div class="container"> -->
<!-- row -->
<!-- <div class="row"> -->
<!-- section title -->
<!-- <div class="section-title">
<h3 class="title"><span>Our</span> <span style="color: #dd0a37;">Judges</span></h3>
</div> -->
<!-- section title -->
<!-- speaker -->
<!-- <div class="col-md-4 col-sm-6">
<div class="speaker" data-toggle="modal" data-target="#speaker-modal-1">
<div class="speaker-img">
<img src="./img/speaker01.jpg" alt="">
</div>
<div class="speaker-body">
<div class="speaker-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa fa-linkedin"></i></a>
</div>
<div class="speaker-content">
<h2>John Doe</h2>
<span>Manager, CEO</span>
</div>
</div>
</div>
</div> -->
<!-- /speaker -->
<!-- speaker -->
<!-- <div class="col-md-4 col-sm-6">
<div class="speaker" data-toggle="modal" data-target="#speaker-modal-1">
<div class="speaker-img">
<img src="./img/speaker02.jpg" alt="">
</div>
<div class="speaker-body">
<div class="speaker-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa fa-linkedin"></i></a>
</div>
<div class="speaker-content">
<h2>John Doe</h2>
<span>Manager, CEO</span>
</div>
</div>
</div>
</div> -->
<!-- /speaker -->
<!-- speaker -->
<!-- <div class="col-md-4 col-sm-6">
<div class="speaker" data-toggle="modal" data-target="#speaker-modal-1">
<div class="speaker-img">
<img src="./img/speaker03.jpg" alt="">
</div>
<div class="speaker-body">
<div class="speaker-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa fa-linkedin"></i></a>
</div>
<div class="speaker-content">
<h2>John Doe</h2>
<span>Manager, CEO</span>
</div>
</div>
</div>
</div> -->
<!-- /speaker -->
<!-- speaker modal -->
<!-- <div id="speaker-modal-1" class="speaker-modal modal fade">
<div class="modal-dialog">
<div class="modal-content">
<button type="button" class="speaker-modal-close" data-dismiss="modal"></button>
<div class="modal-body">
<div class="row">
<div class="col-md-5">
<div class="speaker-modal-img">
<img src="./img/speaker-info.jpg" alt="">
</div>
</div>
<div class="col-md-7">
<div class="speaker-modal-content">
<h2 class="speaker-name">John Doe</h2>
<span class="speaker-job">- Manager, CEO</span>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<div class="speaker-website">
<h4>Website</h4>
<a href="#">www.johndoe.com</a>
</div>
<div class="speaker-social">
<h4>Social Profile</h4>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa fa-linkedin"></i></a>
</div>
<div class="speaker-events">
<h4>Sessions</h4>
<div class="speaker-event">
<span><strong>Day 1 -</strong> February 20, 2018 8 : 00 AM - 11 : 00 AM</span>
<p>His id altera fabellas facilisis. Has eros assueverit cu</p>
</div>
<div class="speaker-event">
<span><strong>Day 2 -</strong> February 20, 2018 8 : 00 AM - 11 : 00 AM</span>
<p>At mucius deserunt delicatissimi eam, labitur detraxit ut sit</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- /speaker modal -->
<!-- </div> -->
<!-- /row -->
<!-- </div> -->
<!-- /container -->
<!-- </div> -->
<!-- /Speakers -->
<!-- <faq> -->
<section id="faqs" class="section" >
<div class="section-bg" style="background-image:url(https://inpadel.in/wp-content/uploads/2017/04/blue-background-023.jpg)"></div>
<div class="container wow fadeInUp">
<div class="row">
<div class="section-title">
<h3 class="title"><span>Frequently Asked</span> <span style="color: #dd0a37;">Questions</span></h3>
<div class="section-title-divider"></div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 faq-item">
<div class="faq-icon"><i class="fa fa-money"></i></div>
<h4 class="faq-title" style="color: #000;">What is the registration fee?</h4>
<p class="faq-description"><font color="white">For RTU students,it's free & for non rtu students fees is 2500</font></p>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 faq-item">
<div class="faq-icon"><i class="fa fa-bed"></i></div>
<h4 class="faq-title" style="color: #000;">What about accomodation and food?</h4>
<p class="faq-description"><font color="white">Accomodation and food are absolutely free.</font></p>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 faq-item">
<div class="faq-icon"><i class="fa fa-car"></i></div>
<h4 class="faq-title" style="color: #000;">Will travel expenses be reimbursed?</h4>
<p class="faq-description"><font color="white">Travel expenses will be bare by yourself.</font></p>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 faq-item">
<div class="faq-icon"><i class="fa fa-map"></i></div>
<h4 class="faq-title" style="color: #000;">What is the last date of registration?</h4>
<p class="faq-description"><font color="white">The last date of registration is 31<sup>st</sup>Jan 2019.</font></p>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 faq-item">
<div class="faq-icon"><i class="fa fa-desktop"></i></div>
<h4 class="faq-title" style="color: #000;">What can we build?</h4>
<p class="faq-description"><font color="white">Proper Business idea with financial model,presentation & prototype.</font></p>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 faq-item">
<div class="faq-icon"><i class="fa fa-code"></i></div>
<h4 class="faq-title" style="color: #000;">Who can apply?</h4>
<p class="faq-description"><font color="white">Everyone is heartly welcome.</font></p>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 faq-item">
<div class="faq-icon"><i class="fa fa-thumbs-up"></i></div>
<h4 class="faq-title" style="color: #000;">What is the criteria for selection of a team?</h4>
<p class="faq-description"><font color="white">Evaluation criteria will include novelty of the idea, complexity, clarity and details in the prescribed format.</font></p>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 faq-item">
<div class="faq-icon"><i class="fa fa-thumbs-up"></i></div>
<h4 class="faq-title" style="color: #000;">Can I be a part of more than 1 team?</h4>
<p class="faq-description"><font color="white">After registration, participants are required to form their team by logging in.</font></p>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-12 faq-item">
<div class="faq-icon"><i class="fa fa-users"></i></div>
<h4 class="faq-title" style="color: #000;">What should be the size of a team?</h4>
<p class="faq-description"><font color="white">A team can consist of 2 to 4 members.</font></p>
</div>
</div>
</div>
<br><br>
</section>
<!-- </faq> -->
<!-- Sponsors -->
<!-- <div id="sponsors" class="section"> -->
<!-- container -->
<!-- <div class="container"> -->
<!-- row -->
<!-- <div class="row"> -->
<!-- section title -->
<!-- <div class="section-title">
<h3 class="title"><span>Our</span> <span style="color: #dd0a37;">Sponsors</span></h3>
</div> -->
<!-- /section title -->
<!-- sponsor -->
<!-- <div class="col-md-3 col-sm-4 col-xs-6">
<a href = "#" target = "_blank">
<img src="http://www.livingyoga.co.za/wp-content/uploads/2013/05/white-block.jpg" alt="">
</a>
</div> -->
<!-- /sponsor -->
<!-- sponsor -->
<!-- <div class="col-md-3 col-sm-4 col-xs-6">
<a href = "https://jecrcuniversity.edu.in/" target = "_blank">
<img src="./img/ju.png" alt="">
</a>
</div> -->
<!-- /sponsor
<!-- sponsor -->
<!-- <div class="col-md-3 col-sm-4 col-xs-6">
<a href = "http://www.rtu.ac.in/" target = "_blank">
<img src="./img/rtu.jpg" alt="">
</a>
</div> -->
<!-- /sponsor -->
<!-- sponsor -->
<!-- <div class="col-md-3 col-sm-4 col-xs-6">
<a href = "https://jecrcuniversity.edu.in/" target = "_blank">
<img src="./img/ju.png" alt="">
</a>
</div> -->
<!-- /sponsor -->
<!-- sponsor -->
<!-- <div class="col-md-3 col-sm-4 col-xs-6">
<a href="#" class="sponsor">
<img src="./img/sponsor.png" alt="">
</a>
</div> -->
<!-- /sponsor -->
<!-- sponsor -->
<!-- <div class="col-md-3 col-sm-4 col-xs-6">
<a href="#" class="sponsor">
<img src="./img/sponsor.png" alt="">
</a>
</div> -->
<!-- /sponsor -->
<!-- sponsor -->
<!-- <div class="col-md-3 col-sm-4 col-xs-6">
<a href="#" class="sponsor">
<img src="./img/sponsor.png" alt="">
</a>
</div> -->
<!-- /sponsor -->
<!-- sponsor -->
<!-- <div class="col-md-3 col-sm-4 col-xs-6">
<a href="#" class="sponsor">
<img src="./img/sponsor.png" alt="">
</a>
</div> -->
<!-- /sponsor -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /Sponsors -->
<!-- CTA -->
<div id="cta" class="section">
<!-- background image -->
<div class="section-bg" style="background-image:url(./img/background03.jpg)" data-stellar-background-ratio="0.5"></div>
<!-- /background image -->
<!-- container -->
<div class="container">
<!-- container -->
<div class="row">
<!-- cta content -->
<div class="col-md-8 col-md-offset-2">
<div class="cta-content text-center">
<h2>Get Registered Now!</h2>
<p class="lead">Apply to a 36 hour business hackathon, prove to the jury of experts that you are the best and win cash prizes worth 1.75 lakh, and at the same time get the opportunity to get funded by Investors.</p>
<button class="register-btn" type="submit" data-toggle="modal" data-target="#myModal">Team Registration</button>
</div>
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<div class="modal fade text-center" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 id="myModalLabel">
Registration
</h3>
<i class="fa fa-close close" data-dismiss="modal"></i>
</div>
<div class="modal-body">
<form class="pure-form pure-form-stacked" id="registrationForm" method="POST" data-email="[email protected]"
action="https://script.google.com/macros/s/AKfycbzClQHi7VXZGRs3K2U1zVVf2UiDVX9QUQQFS0jBuw/exec">
<div class="tab-pane active" id="Registration">
<div class="row row-form">
<label class="col-md-6 col-sm-6 col-xs-12" for="team-name" >Team Name</label>
<input class="col-md-6 col-sm-6 col-xs-12 control-label" required type="text" placeholder="Team Name" name="team-name" id="team-name">
<label class="col-md-6 col-sm-6 col-xs-12" for="member">Team Size</label>
<input class="col-md-6 col-sm-6 col-xs-12 control-label" required type="text" id="member" name="member" placeholder="Team Size" onchange="addFields()">
<p id="limit" class="limit col-md-offset-2 col-md-8 col-sm-12 col-xs-12"></p>
<h4 class="col-md-12 col-sm-12 col-xs-12" style="text-decoration: underline;"><font color="red">Leader Details</font></h4>
<label class="col-md-6 col-sm-6 col-xs-12" for="leader-name">Leader Name</label>
<input class="col-md-6 col-sm-6 col-xs-12 control-label" required type="text" name="leader-name" placeholder="Leader Name">
<label class="col-md-6 col-sm-6 col-xs-12" for="leader-email">Leader Email</label>
<input class="col-md-6 col-sm-6 col-xs-12 control-label" required type="email" name="leader-email" placeholder="Leader Email">
<label class="col-md-6 col-sm-6 col-xs-12" for="leader-contact">Leader Contact No.</label>
<input class="col-md-6 col-sm-6 col-xs-12 control-label" required type="number" name="leader-contact" placeholder="Leader Contact No." max="9999999999x">
<div class="" id="member-details">
</div>
<label id="register-label" class="col-md-6 col-sm-6 col-xs-12 control-label"><span style="color: #dd0a37;">Idea</span></label>
<textarea required name="Message" class="col-md-6 col-sm-6 col-xs-12 register-input" id="contact-message" placeholder="Submit your idea" required></textarea>
</div>
<p>* Download format from <a href="format.pdf" target="_blank" download><font color="red">here</font></a>.</p>
<p>Note: In case of 4 members, one member must be a girl.</p>
<center><button class="feedback-btn" type="submit">Register</button></center>
</div>
</form>
<div style="display:none;" id="registration_message">
<span>Your idea is submitted sucessfully!</span>
</div>
</div>
</div>
</div>
</div>
<!-- /CTA -->
<!-- Contact -->
<form class="pure-form pure-form-stacked" id="gform" method="POST" data-email="[email protected]"
action="https://script.google.com/macros/s/AKfycbwPXKhYexmfz5XbDwAwzPARJda7ToOKhClbbj2zUBZSzUqjeHuw/exec">
<div id="exhibitor" class="section">
<div class="container">
<center>
<h3 class="title">
<!-- <span class="appear">Exhibitor</span>
<span style="color: #dd0a37;" class="appear">Registration</span>
</h3> -->
<div id="exhibitor-section" class="section-title">
<h3 class="title"><span>Registration for</span> <span style="color: #dd0a37;">Exhibitor</span></h3>
<p>Showcase your innovative startups</p></center>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<form class="form-horizontal">
<div class="form-group">
<label>Name</label>
<input type="text" name="Name" class="form-control" id="contact-name" placeholder="Enter your name here" required>
</div>
<div class="form-group">
<label>Email</label>
<input type="email" name="Email" class="form-control" id="contact-email" placeholder="[email protected]" required>
</div>
<div class="form-group">
<label>Mobile number</label>
<input type="tel" pattern="^\d{10}$" name="Mobile" class="form-control" id="contact-mobile" placeholder="1234567890" required>
</div>
<div class="form-group">
<label>Name & address of your company </label>
<input type="text" name="address" class="form-control" id="contact-address" placeholder="xyz & abc(raj)" required>
</div>
<div class="form-group">
<label>Company's reg no with date</label>
<input type="text" name="Reg_no." class="form-control" id="contact-regno." placeholder="abc123 & 1/1/18" required>
</div>
<div class="form-group ">
<label>About your startup</label>
<textarea required name="startup" class="form-control" id="Startup" placeholder="Some brief introduction about your startup" required></textarea>
</div>
<div class="form-group ">
<label>Any other requirements</label>
<textarea required name="Others" class="form-control" id="others" placeholder="Some brief introduction about your startup" ></textarea>
</div>
<h5><u>Note:-</u> <ul style="padding-left: 10px">
<li>Stalls will be of size 10*10.</li>
<li>Registration fee for Exhibitor: ₹1000 + ₹4000(refundable) = ₹5000</li>
<li>Downlaod Exhibitor's manual from <a href="Exhibitors_Manual-_SBH.pdf" target="_blank" download><font color="red">here</a> </li>
</ul> </h5>
<center><button class="feedback-btn" type="submit">Register</button></center>