-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
1291 lines (1239 loc) · 51.8 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 http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no">
<meta charset="utf-8">
<title>Anwesha_beta</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/animate.min.css" rel="stylesheet" >
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/theme.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="css/colors/blue.css" rel="stylesheet" class="colors">
<link rel="stylesheet" type="text/css" href="css/finalcustomization.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!--<link href="css/updates.css" type="text/css" rel="stylesheet">-->
<!-- <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"> -->
<!-- Google Font -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Fredericka+the+Great|Playball&display=swap&subset=latin-ext" rel="stylesheet">
<!-- Favicons -->
<link rel="shortcut icon" href="images/ico/title_icon.ico">
<link rel="apple-touch-icon" href="images/ico/title_icon_57.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/ico/title_icon_72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/ico/title_icon_114.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/ico/title_icon_114.png">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<style>
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,200italic,300,300italic,400italic,600,600italic,700,700italic,900,900italic);
body {
font-family: 'Source Sans Pro', sans-serif;
line-height: 1.5;
color: white;
font-size: 15px;
font-weight: 400;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
}
.heading-title {
margin-bottom: 100px;
}
.text-center {
text-align: center;
}
.heading-title h3 {
margin-bottom: 0;
letter-spacing: 2px;
font-weight: normal;
}
.p-top-30 {
padding-top: 30px;
}
.half-txt {
width: 60%;
margin: 0 auto;
display: inline-block;
line-height: 25px;
color: white;
}
.text-uppercase {
text-transform: uppercase;
}
.team-member, .team-member .team-img {
position: relative;
}
.team-member {
overflow: hidden;
}
.team-member, .team-member .team-img {
position: relative;
}
.team-hover {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: 0;
border: 20px solid rgba(0, 0, 0, 0.1);
background-color: rgba(255, 255, 255, 0.90);
opacity: 0;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.team-member:hover .team-hover .desk {
top: 35%;
}
.team-member:hover .team-hover, .team-member:hover .team-hover .desk, .team-member:hover .team-hover .s-link {
opacity: 1;
}
.team-hover .desk {
position: absolute;
top: 0%;
width: 100%;
opacity: 0;
-webkit-transform: translateY(-55%);
-ms-transform: translateY(-55%);
transform: translateY(-55%);
-webkit-transition: all 0.3s 0.2s;
transition: all 0.3s 0.2s;
padding: 0 20px;
}
.desk, .desk h4, .team-hover .s-link a {
text-align: center;
color: #222;
}
.team-member:hover .team-hover .s-link {
bottom: 10%;
}
.team-member:hover .team-hover, .team-member:hover .team-hover .desk, .team-member:hover .team-hover .s-link {
opacity: 1;
}
.team-hover .s-link {
position: absolute;
bottom: 0;
width: 100%;
opacity: 0;
text-align: center;
-webkit-transform: translateY(45%);
-ms-transform: translateY(45%);
transform: translateY(45%);
-webkit-transition: all 0.3s 0.2s;
transition: all 0.3s 0.2s;
font-size: 35px;
}
.desk, .desk h4, .team-hover .s-link a {
text-align: center;
color: #222;
}
.team-member .s-link a {
margin: 0 10px;
color: white;
font-size: 16px;
}
.team-title {
position: static;
padding: 20px 0;
display: inline-block;
letter-spacing: 2px;
width: 100%;
}
.team-title h5 {
margin-bottom: 0px;
display: block;
text-transform: uppercase;
}
.team-title span {
font-size: 12px;
text-transform: uppercase;
color: white;
letter-spacing: 1px;
}
.contained{
background-color: black;
}
</style>
</head>
<body data-spy="scroll" data-target="#mynav" data-offset="85">
<!-- Preloader -->
<div id="preloader">
<div id="status">
<div class="spinner">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
</div>
</div>
<!-- End Preloader -->
<header>
<!-- Bootstrap Menu -->
<div id="navigation">
<div class="navbar-wrapper">
<nav class="navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="row">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"></a>
</div>
<div id="mynav" class="navbar-collapse collapse">
<ul class="nav navbar-nav main-nav-list">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="https://www.anwesha.info/ca/ca.php" target="_blank">CA</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#aftermovie">Aftermovie</a></li>
<li><a href="#multitcity">Multicity</a></li>
<li><a href="#updates">Updates</a></li>
<li><a href="#celebs">Celebs</a></li>
<!--<li><a href="#signup">Register</a></li>-->
<li><a href="#contacts">Contact</a></li>
</ul>
</div>
</div>
</div>
</nav>
</div>
</div>
<!-- End Bootstrap Menu -->
<!-- Slider -->
<section id="home">
<div id="home-slider" class="carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner">
<div class="item active">
<video autoplay muted loop id="myVideo">
<source src="./comingsoon/rain.mp4" type="video/mp4">
</video>
<div class="caption">
<h1 class="animated fadeInLeftBig"><strong>Anwesha, IIT PATNA</strong></h1>
<p class="animated fadeInRightBig">For regular updates</p>
<a data-scroll class="learn-more animated fadeInUpBig" href="#updates">Click Here</a>
</div>
</div>
<div class="item" style="background-image: url(images/slider/BG-2.JPG)"> <!-- Change Image -->
<div class="caption">
<h1 class="animated fadeInLeftBig"><strong>Campus</strong> Ambassador</h1>
<p class="animated fadeInRightBig">Share What We Believe</p>
<a data-scroll class="learn-more animated fadeInUpBig" href="./ca/ca.php" target="_blank">Visit CA website</a>
</div>
</div>
<!--<div class="item" style="background-image: url(images/slider/bg-3.jpg)"> Change Image
</div>-->
</div>
<a class="left-control" href="#home-slider" data-slide="prev"><i class="fa fa-angle-left"></i></a>
<a class="right-control" href="#home-slider" data-slide="next"><i class="fa fa-angle-right"></i></a>
</div>
</section>
<!-- End Slider -->
</header>
<!-- About Xlight -->
<section class="section-wrapper" id="about">
<div class="why-us" style="background-image: url('images/about_bg.jpg'); background-position: 0px center, 0px center;background-size: cover;">
<div class="container">
<div class="row">
<!-- Block Title -->
<div class="section-title wow fadeInUp" data-wow-duration="1s" data-wow-delay="300ms">
<h1><span id="aboutHead">ABOUT US</span></h1>
</div>
<!-- End Block Title -->
<!-- About Us Icons -->
<div class="wrapper-why-us">
<div class="col-lg-12 col-sm-12 wow fadeInDown" data-wow-duration="1s" data-wow-delay="300ms">
<p id="aboutDescription">Anwesha is the annual fest of IIT Patna with a myriad of events encompassing cultural, technical and management areas. We believe in turning moments into memories worth cherishing for a lifetime. Since it's inception in 2010, Anwesha has grown to be an epitome of grandiosity being one of the most anticipated student organized youth festival in all of North-East India. Anwesha has been steadily expanding its roots ever since it came into existence and has created an indelible impression in the minds and hearts of each one of those involved with it. </p>
<p id="aboutDescription">Anwesha, which is the Sanskrit word for "Quest", aptly justifies it purpose as the ultimate quest for talent and potential. We believe in turning moments into memories worth cherishing for a lifetime. The 3-day extravaganza achieves just that by providing experiences that permanently etch themselves into the slate of your memory board to last for aeons to come.</p>
<p id="aboutDescription">With the ever-inspiring motto of "Think. Dream. Live." Anwesha urges every individual to push themselves to the maximum. With acclaimed celebrities, eminent speakers and international artists in the likes of Raghu Dixit, Sundeep Sharma, Sahil Shah, Nitish Kumar, Ravi Shankar, Jack Eye Jones having graced its stage, Anwesha has always been the haven for utmost fun and entertainment and has been continually living manifolds beyond what is expected of it. We receive an ever-increasing footfall every year, with the last edition witnessing a massive number of 10,000, involving enthusiasts hailing from all domains.</p>
</div>
</div>
<!-- End About Us Icons -->
</div>
</div>
</div>
</div>
<!-- End About Xlight -->
<!-- Facts -->
<div class="facts parallax">
<div class="overlay">
<div class="wrapper-block-facts">
<div class="container">
<div class="row">
<div class="element-title">
<h1 class="main-color wow fadeInUp" data-wow-duration="1s" data-wow-delay="300ms">Stats</h1>
</div>
</div>
<div class="row">
<div class="wrapper-number">
<div class="col-lg-4 col-md-4">
<div class="number wow fadeInRight" data-wow-duration="1s" data-wow-delay="300ms">
<p class="timer" data-from="0" data-to="160" data-speed="2000">160</p>
</div>
<div class="number-title wow fadeInDown" data-wow-duration="1s" data-wow-delay="300ms">
Colleges
</div>
</div>
<div class="col-lg-4 col-md-4">
<div class="number wow fadeInRight" data-wow-duration="1s" data-wow-delay="300ms">
<p class="timer" data-from="0" data-to="900000" data-speed="2000">900000</p>
</div>
<div class="number-title wow fadeInDown" data-wow-duration="1s" data-wow-delay="300ms">
Eyeballs
</div>
</div>
<div class="col-lg-4 col-md-4">
<div class="number wow fadeInRight" data-wow-duration="1s" data-wow-delay="450ms">
<p class="timer" data-from="0" data-to="70" data-speed="2000">70</p>
</div>
<div class="number-title wow fadeInDown" data-wow-duration="1s" data-wow-delay="450ms">
Events
</div>
</div>
<div class="col-lg-4 col-md-4">
<div class="number wow fadeInRight" data-wow-duration="1s" data-wow-delay="450ms">
<p class="timer" data-from="0" data-to="10" data-speed="2000">10</p>
</div>
<div class="number-title wow fadeInDown" data-wow-duration="1s" data-wow-delay="450ms">
Cities
</div>
</div>
<div class="col-lg-4 col-md-4">
<div class="number wow fadeInRight" data-wow-duration="1s" data-wow-delay="600ms">
<p class="timer" data-from="0" data-to="10000" data-speed="2000">15000</p>
</div>
<div class="number-title wow fadeInDown" data-wow-duration="1s" data-wow-delay="600ms">
Footfall
</div>
</div>
<div class="col-lg-4 col-md-4">
<div class="number wow fadeInRight" data-wow-duration="1s" data-wow-delay="750ms">
<p class="timer" data-from="0" data-to="10" data-speed="2000">10</p>
</div>
<div class="number-title wow fadeInDown" data-wow-duration="1s" data-wow-delay="750ms">
Editions
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Facts -->
</section>
<!-- End About Section -->
<!-- Gallery Section -->
<section class="section-wrapper contained" id="gallery">
<div class="works">
<!-- Block Title -->
<div class="element-title">
<div class="row">
<div class="container">
<div class="section-title wow fadeInDown" data-wow-duration="1s" data-wow-delay="300ms">
<h1><span>Event Gallery</span></h1>
</div>
<h1 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay="300ms">Checkout Our Awesome Events</h1>
<h3 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay="300ms">These are some of our <span class="main-color">Events</span>, Made With <span class="main-color">Love & Passion</span></h3>
</div>
</div>
</div>
<!-- End Block Title -->
<div class="row">
<div class="container-fluid">
<div class="wrapper-works">
<div class="portfoliO">
<ul id="filters" class="wow fadeInRight" data-wow-duration="1s" data-wow-delay="300ms">
<li><span class="filter active" data-filter="all">All</span></li>
<li><span class="filter" data-filter=".category-1">Cultural</span></li>
<li><span class="filter" data-filter=".category-2">Technical</span></li>
<li><span class="filter" data-filter=".category-3">Arts & Welfare</span></li>
</ul>
<div class="portfolio-wrap">
<div class="myport wow fadeInDown" data-wow-duration="1s" data-wow-delay="600ms">
<div class="mix category-1 portfolio" data-myorder="1">
<div class="img-holder">
<a class="folio-read-more" href="cult_gallery.html" data-single_url="portfolio-single-image.html" title="This is the description">
<img class="" src="images/works/Satanz1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-2 portfolio" data-cat="category-2" data-myorder="2">
<div class="img-holder">
<a class="folio-read-more" href="tech_gallery.html" data-single_url="portfolio-single-image.html" title="This is the description">
<img class="" src="images/works/robo1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-3 portfolio" data-cat="category-3" data-myorder="3">
<div class="img-holder">
<a class="folio-read-more" href="art_gallery.html" data-single_url="portfolio-single-image.html" title="This is the description">
<img class="" src="images/works/darpan1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-1 portfolio" data-cat="category-1" data-myorder="4">
<div class="img-holder">
<a class="folio-read-more" href="cult_gallery.html" data-single_url="portfolio-slider.html" title="This is the description">
<img class="" src="images/works/Syng1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-2 portfolio" data-cat="category-2" data-myorder="5">
<div class="img-holder">
<a class="folio-read-more" href="tech_gallery.html" data-single_url="portfolio-slider.html" title="This is the description">
<img class="" src="images/works/aqua1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-3 portfolio" data-cat="category-3" data-myorder="6">
<div class="img-holder">
<a class="folio-read-more" href="art_gallery.html" data-single_url="portfolio-slider.html" title="This is the description">
<img class="" src="images/works/face1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-1 portfolio" data-cat="category-1" data-myorder="7">
<div class="img-holder">
<a class="folio-read-more" href="cult_gallery.html" data-single_url="portfolio-video-youtube.html" title="This is the description">
<img class="" src="images/works/Heel1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-2 portfolio" data-cat="category-2" data-myorder="8">
<div class="img-holder">
<a class="folio-read-more" href="tech_gallery.html" data-single_url="portfolio-video-youtube.html" title="This is the description">
<img class="" src="images/works/rocket1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-3 portfolio" data-cat="category-3" data-myorder="9">
<div class="img-holder">
<a class="folio-read-more" href="art_gallery.html" data-single_url="portfolio-video-youtube.html" title="This is the description">
<img class="" src="images/works/arty1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-1 portfolio" data-cat="category-1" data-myorder="10">
<div class="img-holder">
<a class="folio-read-more" href="cult_gallery.html" data-single_url="portfolio-video-vimeo.html" title="This is the description">
<img class="" src="images/works/Maidan1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-2 portfolio" data-cat="category-2" data-myorder="11">
<div class="img-holder">
<a class="folio-read-more" href="tech_gallery.html" data-single_url="portfolio-video-vimeo.html" title="This is the description">
<img class="" src="images/works/idea1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="mix category-3 portfolio" data-cat="category-3" data-myorder="12">
<div class="img-holder">
<a class="folio-read-more" href="art_gallery.html" data-single_url="portfolio-video-vimeo.html" title="This is the description">
<img class="" src="images/works/peinture1.jpg" alt="This is the title"> <!-- Change Image -->
<div class="works-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="works-overlay-category">Explore</div>
<div class="works-overlay-text">Live Captures</div>
<div class="works-overlay-icon"><i class="fa fa-image"></i></div>
</div>
</a>
</div>
</div>
<div class="gap"></div>
<div class="gap"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Single Project -->
<div id="works-single-wrap">
<div id="works-single">
</div>
</div>
<!-- End Single Project -->
</div>
</section>
<!-- aftermovie -->
<section class="section-wrapper" id="aftermovie">
<div class="partners parallax">
<div class="overlay">
<div class="wrapper-block-partners">
<!-- Block Title -->
<div class="element-title">
<div class="row">
<div class="container">
<h1 class="main-color wow fadeInDown" data-wow-duration="1s" data-wow-delay="300ms">Aftermovie</h1>
</div>
</div>
</div>
<!-- End Block Title -->
<div class="row">
<div class="container">
<div class="wrapper-partners video-container">
<iframe class="wow fadeInRight" width="853" height="480" src="https://www.youtube.com/embed/tare6Drw0Ng" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Partners -->
</section>
<!-- End Works Section -->
<!-- Price Section -->
<section class="section-wrapper" id="multitcity">
<div class="pricing" style="background-image: url('images/multi.jpg'); background-position: 0px center, 0px center;background-size: cover;">
<!-- Block Title -->
<div class="element-title">
<div class="row">
<div class="container">
<div class="section-title wow fadeInDown" data-wow-duration="1s" data-wow-delay="300ms">
<h1><span id="title">Multitcity Auditions</span></h1>
</div>
<!-- <h1 id="subTitle" class="wow fadeInUp" data-wow-duration="1s" data-wow-delay="300ms">Our Previous Editions</h1> -->
</div>
</div>
</div>
<!-- End Block Title -->
<div class="row">
<div class="container">
<div class="wrapper-pricing">
<!-- Plan 1 -->
<div class="col-lg-3 col-md-3 wow fadeInRight" data-wow-duration="1s" data-wow-delay="700ms">
<div class="single-table featured">
<h4 id="eventDate">Allahabad</h4>
<div>
<img src="images/allahabad.jpg" id="multi_img" class="img-thumbnail rounded">
</div>
<span class="price" id="eventDate">2nd Nov 19</span>
<ul id="grey">
<li>Heel Turn</li>
<li>Syngphony</li>
<li>Mr & Ms Anwesha</li>
<li>Mr.Gigglers</li>
<li>Maidaan-E-Jung</li>
</ul>
<a class="btn-price" href="https://www.facebook.com/anwesha.iitpatna/photos/a.172775642755089/2785585964807364/?type=3&theater">Explore More</a>
</div>
</div>
<!-- Plan 2 -->
<div class="col-lg-3 col-md-3 wow fadeInRight" data-wow-duration="1s" data-wow-delay="700ms">
<div class="single-table featured">
<h4 id="eventDate">Dhanbad</h4>
<div>
<img src="images/dhanbad.jpg" id="multi_img" class="img-thumbnail rounded">
</div>
<span class="price" id="eventDate">20th Oct 2019</span>
<ul id="grey">
<li>Heel Turn</li>
<li>Syngphony</li>
<li>Mr & Ms Anwesha</li>
<li>Mr.Gigglers</li>
<li>Maidaan-E-Jung</li>
</ul>
<a class="btn-price" href="https://www.facebook.com/anwesha.iitpatna/photos/a.973019692730676/2761209920578302/?type=3&theater">Explore More</a>
</div>
</div>
<!-- Plan 3 -->
<div class="col-lg-3 col-md-3 wow fadeInRight" data-wow-duration="1s" data-wow-delay="700ms">
<div class="single-table featured">
<h4 id="eventDate">Lucknow</h4>
<div>
<img src="images/lucknow.jpg" id="multi_img" class="img-thumbnail rounded">
</div>
<span class="price" id="eventDate">12th Oct 19</span>
<ul id="grey">
<li>Heel Turn</li>
<li>Syngphony</li>
<li>Mr & Ms Anwesha</li>
<li>Mr.Gigglers</li>
<li>Maidaan-E-Jung</li>
</ul>
<a class="btn-price" href="https://www.facebook.com/anwesha.iitpatna/photos/a.973019692730676/2731625016870126/?type=3&theater">Explore More</a>
</div>
</div>
<!-- Plan 4 -->
<div class="col-lg-3 col-md-3 wow fadeInRight" data-wow-duration="1s" data-wow-delay="700ms">
<div class="single-table featured">
<h4 id="eventDate">Kanpur</h4>
<div>
<img src="images/kanpur.jpg" id="multi_img" class="img-thumbnail rounded">
</div>
<span class="price" id="eventDate">14th Sep 19</span>
<ul id="grey">
<li>Heel Turn</li>
<li>Syngphony</li>
<li>Mr & Ms Anwesha</li>
<li>Maidaan-E-Jung</li>
<li>Mr.Gigglers</li>
</ul>
<a class="btn-price" href="https://www.facebook.com/anwesha.iitpatna/photos/a.172775642755089/2681758111856817/?type=3&theater">Explore More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clients parallax">
<!-- Block Title -->
<div class="overlay">
<div class="wrapper-block-clients">
<div class="element-title">
<div class="row">
<div class="container">
<h1 class="main-color wow fadeInDown" data-wow-duration="1s" data-wow-delay="300ms">Celebrities at Anwesha</h1>
<h3 class="white-color wow fadeInUp" data-wow-duration="1s" data-wow-delay="300ms">Feel the Excitement</h3>
</div>
</div>
</div>
<!-- End Block Title -->
<div class="row">
<div class="container">
<div class="wrapper-clients wow fadeInDown" data-wow-duration="1s" data-wow-delay="500ms">
<!-- Start Testimonial Slider -->
<div class="carousel slide carousel-mod" data-ride="carousel" id="testimonial">
<div class="carousel-inner">
<!-- Testimonial #1 -->
<div class="item active">
<div class="row">
<div class="col-lg-12 col-sm-12">
<img src="images/performances/raghu.jpg" height="500px" class="img-thumbnail">
</div>
</div>
</div>
<!-- End Testimonial #1 -->
<!-- Testimonial #2 -->
<div class="item">
<div class="row">
<div class="col-lg-12 col-sm-12">
<img src="images/performances/nalayak.JPG" height="500" class="img-thumbnail">
</div>
</div>
</div>
<!-- End Testimonial #2 -->
<!-- Testimonial #3 -->
<div class="item">
<div class="row">
<div class="col-lg-12 col-sm-12">
<img src="images/performances/chaarHazari.JPG" height="500px" class="img-thumbnail">
</div>
</div>
</div>
<!-- End Testimonial #3 -->
<!-- Testimonial #4 -->
<div class="item">
<div class="row">
<div class="col-lg-12 col-sm-12">
<img src="images/performances/agni.JPG" height="500px" class="img-thumbnail">
</div>
</div>
</div>
<!-- End Testimonial #4 -->
<!-- Testimonial #5 -->
<div class="item">
<div class="row">
<div class="col-lg-12 col-sm-12">
<img src="images/performances/Sahil.JPG" height="500px" class="img-thumbnail">
</div>
</div>
</div>
<!-- End Testimonial #5 -->
<!-- Testimonial #6 -->
<div class="item">
<div class="row">
<div class="col-lg-12 col-sm-12">
<img src="images/performances/jack.JPG" height="500px" class="img-thumbnail">
</div>
</div>
</div>
<!-- End Testimonial #6 -->
</div>
<a class="left-control" href="#testimonial" data-slide="prev"><i class="fa fa-angle-left"></i></a>
<a class="right-control" href="#testimonial" data-slide="next"><i class="fa fa-angle-right"></i></a>
<ol class="carousel-indicators">
<li data-target="#testimonial" data-slide-to="0" class="active"></li>
<li data-target="#testimonial" data-slide-to="1"></li>
<li data-target="#testimonial" data-slide-to="2"></li>
<li data-target="#testimonial" data-slide-to="3"></li>
<li data-target="#testimonial" data-slide-to="4"></li>
<li data-target="#testimonial" data-slide-to="5"></li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Price Section -->
<div class="contained" id="updates">
<div class="row">
<div class="heading-title text-center">
<div class="section-title wow fadeInDown" data-wow-duration="1s" data-wow-delay="300ms">
<h1><span>UPDATES</span></h1>
</div>
<h1 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay="300ms">Keep checking us out here for the latest info regarding Anwesha2k20.</h1>
</div>
<div class="col-md-4 col-sm-4">
<div class="team-member">
<div class="team-img">
<img src="images/cloud.jpg" alt="team member" class="img-responsive resiz">
</div>
<div class="team-hover">
<div class="desk">
<p>
<h4>To enroll yourself follow the given steps:</h4>
<ol>
<li>Step1 : Register youself at <a href="https://www.foxmula.com">Foxmula</a></li>
<li>Step2 : Fill the given google form in the <a href="https://forms.gle/XPa2ZmUgpbqoxM2i7">link</a></li>
<li>Step3 : Click here for payment:</li>
<div class="razorpay-embed-btn" data-url="https://rzp.io/l/anwesha" data-text="Pay Now" data-color="#190C07" data-size="small">
<script>
(function(){
var d=document; var x=!d.getElementById('razorpay-embed-btn-js')
if(x){ var s=d.createElement('script'); s.defer=!0;s.id='razorpay-embed-btn-js';
s.src='https://cdn.razorpay.com/static/embed_btn/bundle.js';d.body.appendChild(s);} else{var rzp=window['__rzp__'];
rzp && rzp.init && rzp.init()}})();
</script>
</div>
</ol>
</p>
<h4>For more info please click on the <a href="pdfs/foxmula.pdf">link</a></h4>
</div>
<div class="s-link">
</div>
</div>
</div>
<div class="team-title">
<h4>Training,Placement and Internship</h4>
<span>in association with Foxmula</span>
</div>
</div>
<div class="col-md-4 col-sm-4">
<div class="team-member">
<div class="team-img">
<img src="images/workshop.jpg" alt="team member" class="img-responsive resiz">
</div>
<div class="team-hover">
<div class="desk">
<h4>For more info and to register, please click on the <a href="http://robotechlabs.com/iit-patna-workshop-schedule/">link</a></h4>
<p>
</p>
</div>
<div class="s-link">
<a href="https://www.facebook.com/events/515951159247534/"><img src="https://img.icons8.com/android/24/000000/facebook-new.png" \></a>
<a href="https://www.instagram.com/p/B4LAEyAnLW7/"><img src="https://img.icons8.com/ios/24/000000/instagram-new.png" \></a>
</div>
</div>
</div>
<div class="team-title">
<h4>Technical Management Workshop</h4>
<span>in association with TechProLabz</span>
</div>
</div>
<div class="col-md-4 col-sm-4">
<div class="team-member">
<div class="team-img">
<img src="images/CA_poster.jpg" alt="ca" class="img-responsive resiz">
</div>
<div class="team-hover">
<div class="desk">
<a href="./ca/ca.php"><button class="btn btn-primary">Link to CA page</button></a>
<p>
</p>
</div>
<div class="s-link">
<a href="https://www.facebook.com/anwesha.iitpatna/photos/a.973019692730676/2819510188081608/?type=3&theater"><img src="https://img.icons8.com/android/24/000000/facebook-new.png" \></a>
<a href="https://www.instagram.com/p/B4w_UUVnKXM/"><img src="https://img.icons8.com/ios/24/000000/instagram-new.png" \></a>
</div>
</div>
</div>
<div class="team-title">
<h4>Campus Ambassador Program</h4>
<span></span>
</div>
</div>
<!-- <div class="col-md-4 col-sm-4">
<div class="team-member">
<div class="team-img">
<img src="https://image.freepik.com/free-photo/elegant-man-with-thumbs-up_1149-1595.jpg" alt="team member" class="img-responsive">
</div>
<div class="team-hover">
<div class="desk">
<h4>Hello World</h4>
<p>I love to introduce myself as a hardcore Web Designer.</p>
</div>
<div class="s-link">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
</div>
</div>
</div>
<div class="team-title">
<h5>Franklin Harbet</h5>
<span>HR Manager</span>
</div>
</div>
<div class="col-md-4 col-sm-4">
<div class="team-member">
<div class="team-img">
<img src="https://image.freepik.com/free-photo/well-dressed-executive-with-crossed-arms_1098-3930.jpg" alt="team member" class="img-responsive">
</div>
<div class="team-hover">
<div class="desk">
<h4>I love to design</h4>
<p>I love to introduce myself as a hardcore Web Designer.</p>
</div>
<div class="s-link">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
</div>
</div>
</div>
<div class="team-title">
<h5>Linda Anderson</h5>
<span>Marketing Manager</span>
</div>
</div> -->
</div>
</div>
<!--Teams section-->
<section class="section-wrapper" id="celebs">
<div class="team" style="background-image: url('images/celeb1_bg.jpg'); background-position: 0px center, 0px center;background-size: cover;">
<!-- Block Title -->
<div class="meet-the-team">
<div class="element-title">
<div class="row">
<div class="container">
<div class="section-title wow fadeInDown" data-wow-duration="1s" data-wow-delay="300ms">
<h1><span>MEET THE CELEBS</span></h1>
</div>
<h1 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay="300ms">Artists Featured in the Past</h1>
</div>
</div>
</div>
<!-- End Block Title -->
<div class="row">
<div class="container">
<div class="wrapper-team">
<div class="col-lg-3 col-md-3">
<div class="team-member">
<div class="team-member-holder wow flipInY" data-wow-duration="1s" data-wow-delay="300ms">
<div class="team-member-image">
<img src="images/team/sandeepSharma.jpg" alt="" /> <!-- Change Image -->
<div class="team-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="team-member-social-list">
<a class="team-member-social-list-item" href="https://www.facebook.com/anwesha.iitpatna/photos/fpp.163423960356924/2298332180199414/?type=3&theater"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
<div class="team-member-meta">
<h4 class="team-member-name"><span class="main-color">S</span>undeep <span class="main-color">S</span>harma</h4>
<div class="team-member-role">Standup Comedian</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3">
<div class="team-member">
<div class="team-member-holder wow flipInY" data-wow-duration="1s" data-wow-delay="500ms">
<div class="team-member-image">
<img src="images/team/sahilShah.jpg" alt="" /> <!-- Change Image -->
<div class="team-overlay">
<div class="img-overlay"></div>
</div>
<div class="overlay-content">
<div class="team-member-social-list">
<a class="team-member-social-list-item" href="https://www.facebook.com/anwesha.iitpatna/photos/a.172775642755089/1809745535724750/?type=3&theater"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
<div class="team-member-meta">
<h4 class="team-member-name"><span class="main-color">S</span>ahil <span class="main-color">S</span>hah</h4>
<div class="team-member-role">Standup Comedian</div>
</div>
</div>
</div>
</div>