-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal.html
1343 lines (1055 loc) · 53.9 KB
/
final.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" class="no-js">
<head>
<!-- Basic metas
====================================================== -->
<meta charset="utf-8">
<meta name="description" content="">
<meta name="author" content="C. Ashim">
<!-- Mobile specific metas
====================================================== -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Page title
====================================================== -->
<title>Eclectika 2018</title>
<!--===================Preloader================ -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<style>
/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P');
.body {
font-family: 'Press Start 2P', cursive;
background: #212121;
height: 100%;
width:100%;
z-index: 9999;
position: fixed;
}
.body .container {
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
display: flex;
z-index: 999999;
}
.body .text {
font-weight: 120;
font-size: 38px;
color: #66fcf1;
}
.dud {
color: green;
}
@media(max-width: 500px){
.text{
font-weight: 90;
font-size: 24px;
}
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<!-- Links for icons and fonts
====================================================== -->
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
<!-- links for favicon
====================================================== -->
<link rel="shortcut icon" href="images/logo.png" type="image/x-icon">
<link rel="icon" href="images/logo.png" type="image/x-icon">
<!-- Links for css
====================================================== -->
<!-- bootstrap css link -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- owl carousel css links -->
<link href="css/owl.carousel.min.css" rel="stylesheet">
<link href="css/owl.theme.default.min.css" rel="stylesheet">
<!-- animate css link -->
<link href="css/animate.css" rel="stylesheet">
<!-- custom css links -->
<link href="css/main.css" rel="stylesheet" type="text/css">
<link href="css/media_query.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Jquery links-->
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/jquery-migrate-3.0.0.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.2/modernizr.js"></script>
<script src="game/js/index.js" type="text/javascript"></script>
</head>
<!-- Body starts
====================================================== -->
<body data-spy="scroll" data-target=".navbar-default" data-offset="100">
<!-- preloader -->
<!-- preloader -->
<div class = "body">
<div class="container">
<div class="text"></div>
</div>
</div>
<!-- Header starts
====================================================== -->
<header id="header">
<nav class="navbar-default" data-scroll-header>
<div class="container">
<div class="navbar-header">
<!-- Button at the top-right corner of
extra-small devices (mobiles and iPads) -->
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false">
<span class="sr-only"> Toggle Nagivation </span>
<span class="icon-bar bar1"> </span>
<span class="icon-bar bar2"> </span>
<span class="icon-bar bar3"> </span>
</button>
<!-- logo at the
left-top corner of the page -->
<!-- <a href="index.html" class="logo-new"><img src="images/logo-sanskriti.png" alt="brand-logo"></a> -->
</div>
<!-- End of .navbar-header -->
<!-- Navigation bar to call defferent pages,
not visible on extra-small devices -->
<div class="collapse navbar-collapse" id="navbar">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a data-scroll href="#header">Home</a></li>
<li><a data-scroll href="#About">About</a></li>
<li><a data-scroll href="#Activities">Activities</a></li>
<li><a data-scroll href="#Pronights">Pronights</a></li>
<li><a data-scroll href="#EDM">EDM</a></li>
<li><a data-scroll href="#team">Team</a></li>
<li><a data-scroll href="#Gallery">Gallery</a></li>
<li><a data-scroll href="#contact">contact</a></li>
</ul>
<!-- End of .navbar-right -->
<!-- Socia icons -->
<ul class="social list-inline navbar-nav navbar-left">
<li><a href="#" data-toggle="tooltip" data-placement="bottom" title="home-logo">
<img id="logo-here" src="images/logo.png" alt="logo" />
</a></li>
<li><a href="#" data-toggle="tooltip" data-placement="bottom" title="Facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="bottom" title="Twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="bottom" title="Google-plus"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
</ul>
<!-- End of .social -->
</div>
<!-- End of #navbar -->
</div>
<!-- End of .container -->
</nav>
<!-- End of nav -->
</header>
<!-- End of header -->
<!-- Section banner starts
====================================================== -->
<section class="banner bg-1" data-stellar-background-ratio=".2">
<div id = "game-wrapper">
<iframe id="gamebox" height="500px" width="700px" scrolling="no" src="game/index.html">
</iframe>
<div id="ec-wrapper"><img id="eclectika" src="images/game/EC.png" /></div>
<div id="gameOn-wrapper"><img id="gameOn" src="images/game/play.png" /></div>
</div>
</section>
<!-- End of .banner -->
<!-- Section Sign In starts
====================================================== -->
<section class="Sign In">
<div class="container">
<div class="row">
<!-- End of .col-sm-8 -->
<div id = "button-container" class="anchor col-sm-4">
<a href="login/" class="btn hvr-trim">Sign In</a>
</div>
<!-- End of link -->
</div>
<!-- End of .row -->
</div>
<!-- End of .container -->
</section>
<!-- End of .Sign In -->
<!-- Section about_us starts
====================================================== -->
<!-- End of .about_us -->
<!-- Section About starts
====================================================== -->
<section class="About" id="About">
<div class="container">
<div class="row">
<div class="col-sm-8">
<div class="top_part">
<div class="txt_container">
<h3><strong>About Us</strong></h3>
<h5>Eclectika 18</h5>
</div>
<!-- End of .txt_container -->
</div>
<!-- End of .top_part -->
<div class="bottom_part">
<p>Eclectika , the cultural festival of NIT Raipur is widely renowned as the largest fest in central India. With a participation roster exceeding over 1 hundred colleges across the academic demographic of India, Eclectika is a glorious rendition of the ideals of innovation, conception and determination to achieve high heights of success, and is a phenomenal platform to nurture and inspire talent, while uniting a wide and diverse participation pool under a single banner. </p>
<p>The 2018 Programme for Eclectika is poised to exceed all expectations in keeping with its strong heritage and excelling in it's core strength as a talent platform to drive excellence.</p>
<p>We look forward to have an enriching experience with all the participants. We can promise it will be entertaining too!</p>
<div class="anchor">
</div>
<!-- End of .anchor -->
</div>
<!-- End of .bottom_part -->
</div>
<!-- End of .col-sm-8 -->
<div class="col-sm-4">
<div class="content wow fadeInRight">
<div class="img_container" data-wow-offset="200" data-wow-delay=".2s">
<img src="images/about-us.png" alt="About_img" class="img-responsive">
</div>
<!-- End of .img_container -->
</div>
<!-- End of .content -->
</div>
<!-- End of col-sm-4 -->
</div>
<!-- End of .row -->
</div>
<!-- End of .container -->
</section>
<!-- End of .About -->
<!-- Section Activities starts
====================================================== -->
<section class="Activities" id="Activities">
<div class="container">
<div class="section_header">
<h2>The Events this Year!</h2>
<p>We'll send you right back into the 90's, with a lot of extravagant activities down
the road!</p>
</div>
<!-- End of .section_header -->
<div class="row">
<div class="col-sm-4">
<div class="content text-center wow fadeInUp">
<img src="images/transparent.gif" alt="service_icon" class="icon1 img-responsive center-block">
<h3>Mega Events</h3>
<p>The name says it all!</p>
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-4 -->
<div class="col-sm-4">
<div class="content text-center wow fadeInUp" data-wow-delay=".1s">
<img src="images/transparent.gif" alt="service_icon" class="icon2 img-responsive center-block">
<h3>Music</h3>
<p>Melodies for serenity and ecstasy.</p>
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-4 -->
<div class="col-sm-4">
<div class="content text-center wow fadeInUp" data-wow-delay=".2s">
<img src="images/transparent.gif" alt="service_icon" class="icon3 img-responsive center-block">
<h3>Dance</h3>
<p>The soul moves with the rythm.</p>
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-4 -->
<div class="col-sm-4">
<div class="content text-center wow fadeInUp" data-wow-delay=".3s">
<img src="images/transparent.gif" alt="service_icon" class="icon4 img-responsive center-block">
<h3>90's Rush</h3>
<p>To take you back in time.</p>
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-4 -->
<div class="col-sm-4">
<div class="content text-center wow fadeInUp" data-wow-delay=".4s">
<img src="images/transparent.gif" alt="service_icon" class="icon5 img-responsive center-block">
<h3>Fine Arts and Literary</h3>
<p>For those with the paint brush amd the Pen.</p>
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-4 -->
<div class="col-sm-4">
<div class="content text-center wow fadeInUp" data-wow-delay=".5s">
<img src="images/transparent.gif" alt="service_icon" class="icon6 img-responsive center-block">
<h3>Informals</h3>
<p>No rules here!</p>
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-4 -->
</div>
<!-- End of .row -->
</div>
<!-- End of .container -->
</section>
<!-- End of .Activities -->
<!-- Section Pronights starts
====================================================== -->
<section class="Pronights text-center" id="Pronights">
<div class="section_header">
<h2>PRONIGHTS</h2>
<p>Our biggest Stars Who set the stage ablaze One night every year. </p>
</div>
<!-- End of .section_header -->
<div class="owl-carousel owl-theme">
<div class="item wow fadeInUp" data-wow-delay=".1s">
<img src="images/pro/1.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Shruti Pathak</h5>
</div>
</div>
<!-- End of .item -->
<div class="item wow fadeInUp" data-wow-delay=".2s">
<img src="images/pro/2.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Sachin-Jigar</h5>
</div>
</div>
<!-- End of .item -->
<div class="item wow fadeInUp" data-wow-delay=".3s">
<img src="images/pro/3.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Sachin-Jigar</h5>
</div>
</div>
<!-- End of .item -->
<div class="item wow fadeInUp" data-wow-delay=".4s">
<img src="images/pro/6.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Mohit Chauhan</h5>
</div>
</div>
<!-- End of .item -->
<div class="item wow fadeInUp" data-wow-delay=".5s">
<img src="images/pro/5.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Jigar</h5>
</div>
</div>
<div class="item wow fadeInUp" data-wow-delay=".5s">
<img src="images/pro/7.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Mohit Chauhan</h5>
</div>
</div>
<div class="item wow fadeInUp" data-wow-delay=".5s">
<img src="images/pro/8.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Laghori</h5>
</div>
</div>
<div class="item wow fadeInUp" data-wow-delay=".5s">
<img src="images/pro/9.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Underground Authority</h5>
</div>
</div>
<!-- End of .item -->
<!-- End of .item / Last item-->
<!-- To add more items to this section simply
copy and paste any of the items underneath the last item -->
</div>
<!-- End of .owl-carousel -->
</section>
<!-- End of .best_works -->
<!-- Section for Pronights starts here but this will be EDM Nights -->
<section class="EDM text-center" id="EDM">
<div class="section_header">
<h2>EDM NIGHT</h2>
<p>Let your hair down and loose yourself in the thumping beats. </p>
</div>
<!-- End of .section_header -->
<div class="owl-carousel owl-theme">
<div class="item wow fadeInUp" data-wow-delay=".1s">
<img src="images/edm/2.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Shilpi Sharma</h5>
</div>
</div>
<!-- End of .item -->
<div class="item wow fadeInUp" data-wow-delay=".2s">
<img src="images/edm/3.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Vanmoon</h5>
</div>
</div>
<!-- End of .item -->
<div class="item wow fadeInUp" data-wow-delay=".3s">
<img src="images/edm/1.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Sartek</h5>
</div>
</div>
<!-- End of .item -->
<div class="item wow fadeInUp" data-wow-delay=".4s">
<img src="images/edm/4.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Shilpi Sharma</h5>
</div>
</div>
<!-- End of .item -->
<div class="item wow fadeInUp" data-wow-delay=".5s">
<img src="images/edm/5.jpg" class="img-responsive" alt="works">
<div class="overlay">
<h5>Vanmoon</h5>
</div>
</div>
<!-- End of .item -->
<!-- End of .item / Last item-->
<!-- To add more items to this section simply
copy and paste any of the items underneath the last item -->
</div>
<!-- End of .owl-carousel -->
</section>
<!-- Section counter_up starts
====================================================== -->
<section class="counter_up">
<div class="overlay">
<div class="container">
<iframe src="https://www.youtube.com/embed/ONa5qs6X8Hk" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
<!-- End of .container -->
</div>
<!-- End of .overlay -->
</section>
<!-- End of .counter_up -->
<!-- Section team starts
====================================================== -->
<section class="skills" id = "mobile-team">
<div class="container">
<div class="partner_logos owl-carousel owl-theme">
<div class="item">
<img src="images/team/jatin.png" alt="partners logo" class="img-responsive">
<p>Jatin Rao Saini</p>
</div>
<!-- End of .item -->
<div class="item">
<img src="images/team/venkat.png" alt="partners logo" class="img-responsive">
<p>Venkat Ramana</p>
</div>
<!-- End of .item -->
<div class="item">
<img src="images/team/tanya.png" alt="partners logo" class="img-responsive">
<p>Tanya Agrawal</p>
</div>
<!-- End of .item -->
<div class="item">
<img src="images/team/rajan.png" alt="partners logo" class="img-responsive">
<p>Rajan Lad</p>
</div>
<!-- End of .item -->
<div class="item">
<img src="images/team/rishabh.png" alt="partners logo" class="img-responsive">
<p>Rishabh Jain</p>
</div>
<!-- End of .item -->
<div class="item">
<img src="images/team/ravi.png" alt="partners logo" class="img-responsive">
<p>MSP Ravi</p>
</div>
<!-- End of .item -->
<div class="item">
<img src="images/team/mukul.png" alt="partners logo" class="img-responsive">
<p>Mukul Kaushik</p>
</div>
<!-- End of .item -->
<div class="item">
<img src="images/team/priyank.png" alt="partners logo" class="img-responsive">
<p>Priyank Agrawal</p>
</div>
<!-- End of .item -->
<div class="item">
<img src="images/team/ranjith.png" alt="partners logo" class="img-responsive">
<p>Ranjith Kumar</p>
</div>
<!-- End of .item -->
<!-- to add more items copy and paste one of
the items underneath the last item -->
</div>
<!-- End of .artner_logos -->
</div>
<!-- End of .container -->
</section>
<!-- End of .skills -->
<section class="team" id="team">
<div class="container">
<div class="section_header">
<h2>Our Excellent Team</h2>
<p>The Faces Behind it all, whose Grit and Passion makes it happen.</p>
</div>
<!-- End of .section_header -->
<div class="matrix">
<div class="row">
<div class="col-xs-12 col-md-offset-3 col-md-3">
<div class="content transp wow zoomIn">
<div class="img_container">
<img src="images/transp.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<div class="inner">
<h3>Creatives Team</h3>
<p>The people who paint the canvas.</p>
</div>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-6">
<div class="content">
<div class="img_container">
<img src="images/team/jatin.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<h3>Jatin Rao</h3>
<p>Creatives</p>
<ul class="list-inline text-center">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Instagram"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-6">
<div class="content">
<div class="img_container">
<img src="images/team/venkat.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<h3>Venkat Ramana</h3>
<p>Creatives</p>
<ul class="list-inline text-center">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Instagram"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-6">
<div class="content">
<div class="img_container">
<img src="images/team/tanya.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<h3>Tanya Agrawal</h3>
<p>Sponsorship</p>
<ul class="list-inline text-center">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Instagram"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-6">
<div class="content">
<div class="img_container">
<img src="images/team/rajan.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<h3>Rajan Lad</h3>
<p>Sponsorship</p>
<ul class="list-inline text-center">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Instagram"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-12">
<div class="content transp wow zoomIn">
<div class="img_container">
<img src="images/transp.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<div class="inner">
<h3>Sponsorship Team</h3>
<p>The Liason to the world outside the Campus.</p>
</div>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
</div>
<!-- End of .row -->
<div class="row">
<div class="col-xs-12 col-md-offset-3 col-md-3">
<div class="content transp wow zoomIn">
<div class="img_container">
<img src="images/transp.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<div class="inner">
<h3>Event Management</h3>
<p>The people who make things happen, and Happening!</p>
</div>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-6">
<div class="content">
<div class="img_container">
<img src="images/team/rishabh.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<h3>Rishabh Jain</h3>
<p>Events</p>
<ul class="list-inline text-center">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Instagram"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-6">
<div class="content">
<div class="img_container">
<img src="images/team/ravi.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<h3>MSP Ravi</h3>
<p>Events</p>
<ul class="list-inline text-center">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Instagram"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-6">
<div class="content">
<div class="img_container">
<img src="images/team/mukul.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<h3>Mukul Kaushik</h3>
<p>PR</p>
<ul class="list-inline text-center">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Instagram"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-6">
<div class="content">
<div class="img_container">
<img src="images/team/priyank.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<h3>Priyank Agrawal</h3>
<p>PR</p>
<ul class="list-inline text-center">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Instagram"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-6">
<div class="content">
<div class="img_container">
<img src="images/team/ranjith.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<h3>Ranjith Kumar</h3>
<p>PR</p>
<ul class="list-inline text-center">
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Pinterest"><i class="fa fa-pinterest"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Instagram"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
<div class="col-md-3 col-xs-12">
<div class="content transp wow zoomIn">
<div class="img_container">
<img src="images/transp.png" alt="team_img" class="img-responsive">
</div>
<!-- End of .img_container -->
<div class="overlay">
<div class="inner">
<h3>Public Relations</h3>
<p>Our Liason to the world outside the Campus.</p>
</div>
</div>
<!-- End of .overlay -->
</div>
<!-- End of .content -->
</div>
<!-- End of .col-sm-3 -->
</div>
<!-- End of .row -->
</div>
<!-- End of .matrix -->
</div>
<!-- End of .container -->
</section>
<!-- End of .team -->
<!-- section skills starts
====================================================== -->
<section class="skills">
<div class="container">
<div class="partner_logos owl-carousel owl-theme">
<div class="item">
<img src="images/spons/1-cspdcl.png" alt="partners logo" class="img-responsive">
<img src="images/spons/2-vedanta.png" alt="partners logo" class="img-responsive">
<img src="images/spons/3-bc.png" alt="partners logo" class="img-responsive">
</div>
<!-- End of .item -->
<div class="item">
<img src="images/spons/4-cg-tourism.png" alt="partners logo" class="img-responsive">
<img src="images/spons/youth.png" alt="partners logo" class="img-responsive">
<img src="images/spons/6-clean-tech.png" alt="partners logo" class="img-responsive">
</div>
<!-- End of .item -->
<div class="item">
<img src="images/spons/7-ec.png" alt="partners logo" class="img-responsive">
<img src="images/spons/8-wsso.png" alt="partners logo" class="img-responsive">
<img src="images/spons/9-toppr.png" alt="partners logo" class="img-responsive">
</div>
<!-- End of .item -->