-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1263 lines (1054 loc) · 44.2 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.0, maximum-scale=1.0, user-scalable=no">
<title>Effervescence'20</title>
<!-- FONT-ICONS -->
<link rel="stylesheet" href="lib/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="lib/themify-icons/themify-icons.css">
<link rel="stylesheet" href="lib/Icon-font-7-stroke-PIXEDEN/css/pe-icon-7-stroke.css">
<link rel="stylesheet" href="lib/et-line-font/style.css">
<!-- LIB -->
<link rel="stylesheet" href="lib/animation/animate.css">
<link rel="stylesheet" href="css/custom-animation.css">
<link rel="stylesheet" href="lib/owl-carousel/owl.carousel.css">
<link rel="stylesheet" href="lib/sweetalert/sweetalert.css">
<!-- EFFECT -->
<link rel="stylesheet" type="text/css" href="lib/particle-animation/partical-animation.css">
<!-- TEMPLATE -->
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="css/nc-grids.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/helper.css">
<link rel="stylesheet" href="css/responsive.css">
<!-- THEME -->
<link rel="stylesheet" href="css/themes/theme-03.css">
<!-- CUSTOM -->
<link rel="stylesheet" href="css/custom.css">
<!-- FAVICONS -->
<link rel="icon" href="images/logonew.png">
<link rel="apple-touch-icon" href="images/logonew.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/logonew.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/logonew.png">
</head>
<body class="loader-bg-default5">
<div class="loader">
<div class="loader_inner">
<img src="images/effe20.png"/>
</div>
</div>
<!-- MAIN-WRAPPER -->
<div class="mainwrapper tab-widget">
<!-- data-rgradient="y" data-rg-colors="rgba(11, 94, 146, 1)|rgba(0, 10, 35, 1)" -->
<!-- LAYER-1 -->
<div class="mainwrapper--nclayer1 pd-100 vh100 w100 bg-dark tilter tilter--1 mainbgwrapper" data-bg="images/bgblur.png"
data-nc-md="pd-0 pd-tb-large pd-b-50" data-nc-sm="pd-0 pd-t-80 pd-b-40">
<!-- HEADER -->
<div class="nclayer1--header pos-abs top left w100">
<!-- MOBILE HEADER -->
<div class="mobheader px-h80 flex-cc pos-rel z9 pd-lr-20">
<div class="mobheader--innerwrapper w100">
<div class="flex-row middle-xs">
<div class="flex-col-xs-6 align-l">
<!-- LOGO -->
<a href="#" data-tb="#home" class="logo block px-w80">
<img src="images/logonew.png" alt="brand">
</a><!-- / LOGO -->
</div>
<div class="flex-col-xs-6 align-r flex-cr">
<div class="mob-menu sq40">
<div class="menu-icon">
<span></span>
</div>
</div>
</div>
</div>
</div>
</div><!-- / MOBILE HEADER -->
<!-- NAVIGATION -->
<div class="navigation align-c pd-lr-medium" data-nc-sm="pd-0">
<div class="flex-row middle-md px-h100" data-nc-md="h-auto" data-nc-sm="h-auto">
<div class="flex-col-md-2" data-nc-sm="hide">
<!-- LOGO -->
<a href="#" data-tb="#home" class="logo block px-w80">
<img src="images/logonew.png" alt="brand">
</a><!-- / LOGO -->
</div>
<div class="flex-col-md-10 align-r">
<ul class="nc-navigation-2 navigation--ul f-2 txt-white inline-block txt-upper fs14"
data-nc-sm="pd-20 bg-dark-op" data-nc-md="pd-30">
<li class="navigation--li inline-flex">
<a href="#" data-tb="#home"
class="navigation--box rd-50 mid info-obj img-l g10 align-c mr-b-0 pd-tb-5 pd-lr-20 hov-bg-default hov-txt-white cursor"
data-nc-md="bdr-b bdr-t bdr-op-1 rd-0 align-l"
data-nc-sm="bdr-b bdr-b-1 bdr-op-1 rd-0 align-l">
<span class="img block"><span class="iconwrp fs20"><i
class="pe-7s-home"></i></span></span>
<span class="info">
<span class="fs12 mr-b-0 bold-4 f-2">Home</span>
</span>
</a>
</li>
<li class="navigation--li inline-flex">
<a href="#" data-tb="#about"
class="navigation--box rd-50 mid info-obj img-l g10 align-c mr-b-0 pd-tb-5 pd-lr-20 hov-bg-default hov-txt-white cursor"
data-nc-md="bdr-b bdr-op-1 rd-0 align-l"
data-nc-sm="bdr-b bdr-op-1 rd-0 align-l">
<span class="img block"><span class="iconwrp fs20"><i
class="pe-7s-news-paper"></i></span></span>
<span class="info">
<span class="fs12 mr-b-0 bold-4 f-2">About</span>
</span>
</a>
</li>
<li class="navigation--li inline-flex">
<div class="navigation--box rd-50 mid info-obj img-l g10 align-c mr-b-0 pd-tb-5 pd-lr-20 hov-bg-default hov-txt-white cursor dropdown"
data-nc-md="bdr-b bdr-op-1 rd-0 align-l"
data-nc-sm="bdr-b bdr-op-1 rd-0 align-l">
<span class="img block"><span class="iconwrp fs20"><i
class="pe-7s-bell"></i></span></span>
<span class="info">
<span class="fs12 mr-b-0 bold-4 f-2">Training</span>
</span>
<div class="dropdown-content">
<a href="https://effe.org.in/landing/workshop/">Online Workshop</a>
<a href="https://effe.org.in/landing/summer-training/">Online Summer
Training</a>
<a href="https://www.inmovidutech.com/">Inmovidu</a>
</div>
</div>
</li>
<li class="navigation--li inline-flex">
<a href="gallery/starting-page/index.html"
class="navigation--box rd-50 mid info-obj img-l g10 align-c mr-b-0 pd-tb-5 pd-lr-20 hov-bg-default hov-txt-white cursor"
data-nc-md="bdr-b bdr-op-1 rd-0 align-l"
data-nc-sm="bdr-b bdr-op-1 rd-0 align-l">
<span class="img block"><span class="iconwrp fs20"><i class="fa fa-picture-o"
aria-hidden="true"></i></span></span>
<span class="info">
<span class="fs12 mr-b-0 bold-4 f-2">Gallery</span>
</span>
</a>
</li>
<li class="navigation--li inline-flex">
<a href="#" data-tb="#contact"
class="navigation--box rd-50 mid info-obj img-l g10 align-c mr-b-0 pd-tb-5 pd-lr-20 hov-bg-default hov-txt-white cursor"
data-nc-md="bdr-b bdr-op-1 rd-0 align-l"
data-nc-sm="bdr-b bdr-op-1 rd-0 align-l">
<span class="img block"><span class="iconwrp fs20"><i
class="pe-7s-mail-open-file"></i></span></span>
<span class="info">
<span class="fs12 mr-b-0 bold-4 f-2">Contact</span>
</span>
</a>
</li>
<li class="navigation--li inline-flex">
<a href="#" data-tb="#sponsors"
class="navigation--box rd-50 mid info-obj img-l g10 align-c mr-b-0 pd-tb-5 pd-lr-20 hov-bg-default hov-txt-white cursor"
data-nc-sm="rd-0 bdr-b bdr-op-1 align-l"
data-nc-md="rd-0 bdr-b bdr-op-1 align-l">
<span class="img block"><span class="iconwrp fs20"><i
class="pe-7s-global"></i></span></span>
<span class="info">
<span class="fs12 mr-b-0 bold-4 f-2">Past Sponsors</span>
</span>
</a>
</li>
</ul>
</div>
</div>
</div><!-- / NAVIGATION -->
</div><!-- / HEADER -->
<!-- LAYER-2 -->
<div class="mainwrapper--nclayer2 bg-light h100 w100 tilter__figure overflow-auto bg-cover bg-cc"
data-shadow="0px 10px 44px 2px rgba(0, 0, 0, 0.6)" data-bg="images/effewebedited.png">
<!-- PARTICLE -->
<div id="particles-js" class="nc-bgeffect"></div>
<!-- PARTICLE END -->
<!-- INTRO-SECTION -->
<div id="home" class="tb-pn ncsection w100 flex-cc" data-gradient="y"
data-g-colors="rgba(0, 0, 0, 0.2)|rgba(0, 0, 0, 0.2)">
<div class="inner-wrapper w100 pd-80 align-c" data-nc-sm="align-c pd-30">
<div class="container typo-light w100 tilter__caption">
<!-- MAIN-TEXT -->
<div class="main-text">
<!-- TEXT ANIMATION -->
<div class="text-animation align-c mr-auto w90 animated s008" data-animIn="fadeInUp|0.2"
data-animOut="fadeOutUp|0.3" data-nc-sm="align-c mr-auto">
<div class="carousel-widget" data-anim="zoomIn" id="carousel-widget" data-items="1"
data-itemrange="false" data-tdrag="false" data-mdrag="false" data-pdrag="false"
data-autoplay="true" data-in="zoomIn" data-loop="true" data-hstop="true"
data-hauto="true">
<div class="owl-carousel">
<div class="item">
<h1 style="font-family: 'Cinzel Decorative';" class="f-1 fs56 bold-4" data-nc-sm="fs26">EFFERVESCENCE'20</h1>
</div>
<div class="item">
<h1 style="font-family: 'Cinzel Decorative';" class="f-1 fs56 bold-4" data-nc-sm="fs26">Coming Soon!</h1>
</div>
</div>
</div>
</div><!-- / TEXT ANIMATION -->
<h6 style="font-family: 'Cinzel Decorative';" class="f-2 bold-2 animated s008" data-animIn="fadeInUp|0.3"
data-animOut="fadeOutUp|0.3">
Annual cultural festival of IIIT Allahabad
</h6>
</div><!-- / MAIN-TEXT -->
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel" data-interval="3000">
<div class="carousel-inner">
<div class="carousel-item item active">
<!-- CLOCK -->
<div class="nc-clock align-c mr-tb-60 animated" data-nc-sm="mr-tb-small"
data-animIn="fadeInUp|0.4" data-animOut="fadeOut|0.1">
<div class="countdown-widget light large clock-bdr-r txt-white inline-block f-2 bold-1"
data-nc-md="small" data-nc-sm="tiny">
<div data-day="30" data-month="01" data-year="2021" data-hr="0" data-min="0"
data-sec="0"></div>
</div>
</div><!-- / CLOCK -->
</div>
<div class="carousel-item item">
<div class="nc-clock align-c mr-tb-60 animated" data-nc-sm="mr-tb-small"
data-animIn="fadeInUp|0.4" data-animOut="fadeOut|0.1">
<h1 style="font-family: 'Quicksand';" class="bold-4">The Online Rumble</h1>
<h5 style="font-family: 'Quicksand';" class="bold-2">
Effervescence is organizing The Online Rumble, a collection of online events<br/>of various genres and themes to get you out of your quarantine boredom.
</h5>
<a target="_blank" href="https://effe.org.in/the-online-rumble/"><button type="button" class="btn btn-success">Register!</button></a>
</div>
</div>
</div>
</div>
<!-- SOCIAL-ICON -->
<div class="nc-sociallink align-c w100" data-nc-sm="pos-rel pd-0">
<div class="inner-wrapper inline-block">
<a href="https://www.facebook.com/effervescence.iiita/" title="Facebook"
target="_blank"
class="sq40 inline-flex flex-cc rd-50 txt-white hov-bg-default hov-txt-white fs18 animated s008"
data-animIn="fadeInLeft|0.1" data-animOut="fadeOutUp|0.2"><i
class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://www.instagram.com/goeffervescence/" title="Instagram"
target="_blank"
class="sq40 inline-flex flex-cc rd-50 txt-white hov-bg-default hov-txt-white fs18 animated s008"
data-animIn="fadeInLeft|0.3" data-animOut="fadeOutUp|0.2"><i
class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/company/effe.iiita" title="Linkedin"
target="_blank"
class="sq40 inline-flex flex-cc rd-50 txt-white hov-bg-default hov-txt-white fs18 animated s008"
data-animIn="fadeInLeft|0.4" data-animOut="fadeOutUp|0.2"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
<a href="https://www.youtube.com/user/effervescenceMM13" title="Youtube"
target="_blank"
class="sq40 inline-flex flex-cc rd-50 txt-white hov-bg-default hov-txt-white fs18 animated s008"
data-animIn="fadeInLeft|0.5" data-animOut="fadeOutUp|0.2"><i
class="fa fa-youtube" aria-hidden="true"></i></a>
<a href="https://twitter.com/goeffervescence" title="Twitter" target="_blank"
class="sq40 inline-flex flex-cc rd-50 txt-white hov-bg-default hov-txt-white fs18 animated s008"
data-animIn="fadeInLeft|0.6" data-animOut="fadeOutUp|0.2"><i
class="fa fa-twitter" aria-hidden="true"></i></a>
</div>
</div><!-- / SOCIAL-ICON -->
</div>
</div>
</div><!-- / INTRO-SECTION -->
<!-- ABOUT-SECTION -->
<div id="about" class="tb-pn ncsection ncothsection w100 flex-cc" data-gradient="y"
data-g-colors="rgba((119, 93, 143, .8)|rgba((119, 93, 143, 1)">
<div class="container pd-tb-60 typo-light tilter__caption">
<!-- SECTION HEADER -->
<div class="tabsection--header align-c mr-b-60">
<h1 class="title xlarge f-1 bold-5 animated s008" data-animIn="fadeInUp|0.1"
data-animOut="fadeOutUp|0.1" data-nc-sm="fs50">About</h1>
<p class="title-sub tiny f-2 bold-2 animated s008" data-animIn="fadeInUp|0.2"
data-animOut="fadeOutUp|0.1">WHO WE ARE</p>
</div><!-- / SECTION HEADER -->
<!-- SECTION BODY -->
<div class="tabsection--body align-c">
<div class="flex-row middle-md gt60">
<!-- LEFT -->
<div class="flex-col-md-7 animated s008" data-animIn="fadeInLeft|0.3"
data-animOut="fadeOutUp|0.1" data-nc-sm="mr-b-40"
style="display: flex; text-align: center; justify-content: center; flex-direction: column;">
<img src="images/effe.png" alt="effe" width="200px" style="align-self: center;">
<p class="f-2 animated s008 align-l" data-animIn="fadeInUp|0.5"
data-animOut="fadeOutUp|0.1">
<br /><br />
Indian Institute of Information Technology, Allahabad (A Centre of
Excellence in
Information Technology established by Ministry of HRD, Govt. of India)
is one of the
most prestigious institutes all over India, where a lot of brilliant
young minds come
together to achieve a collective good. The success of its students in
every sphere,
whether cultural or technical, speaks for its great eminence.
<br /><br />
Effervescence is the annual cultural festival of IIIT Allahabad. It is one of
the most
monumental festivals across colleges in North India. This fest brings to light
the
essence and ethos of IIIT Allahabad. An average footfall of 21k+ is witnessed
across
the three days of mind-boggling fun. We, at Effervescence, have hosted a
plethora of
celebrities and eminent personalities in the form of different events.
</p>
</div>
<!-- / LEFT -->
<!-- RIGHT -->
<div class="flex-col-md-5 align-l">
<p class="f-2 animated s008" data-animIn="fadeInUp|0.5"
data-animOut="fadeOutUp|0.1">
Main stage events
of our festivals have been lit up by bands like When Chai Met Toast, The Local
Train, Lagori, and the celebrity
night has been a witness to magnificent performances by celebs like Neeti Mohan,
Farhan Akhtar,
Neha Kakkar, Benny Dayal, Daler Mehndi, Lucky Ali, Sona Mohapatra. People such
as Anubhav Singh Bassi,
Abhijeet Ganguly, Akash Gupta have left the audience in splits of laughter, and
poets
like Sunil Jogi, Kumar Vishwas have left an astonishing impact on crowds through
their subtle wit
and amazing poetry skills. The various cultural events of literature, musical
and
dramatics domain attract overwhelming talent from some of the best institutes
across
India.
<br /><br />
At IIITA, we believe that while academic merit is of paramount importance,
cultural and
sports skills, when incorporated into it, promote the integrated development of
a student
at an educational institution. Effervescence, thus, is an aspiring stride
towards this
developmental goal that we hope to achieve. The fest has grown spectacularly
over the
years, with participation from 120+ colleges making the reach Pan-India. Our
online
events are prominent, attracting participants from as many as 17 countries.
</p>
</div><!-- / RIGHT -->
</div>
</div><!-- / SECTION BODY -->
</div>
</div><!-- / ABOUT-SECTION -->
<!-- SERVICE-SECTION -->
<div id="services" class="tb-pn ncsection ncothsection w100 flex-cc tilter" data-gradient="y"
data-g-colors="rgba(119, 93, 143, .2)|rgba(119, 93, 143, .3)">
<div class="container pd-tb-60 typo-light tilter__caption">
<!-- SECTION HEADER -->
<div class="tabsection--header align-c mr-b-60">
<h1 class="title xlarge f-1 bold-5 animated s008" data-animIn="fadeInUp|0.1"
data-animOut="fadeOutUp|0.1" data-nc-sm="fs50">Register</h1>
<p class="title-sub tiny f-2 bold-2 animated s008" data-animIn="fadeInUp|0.2"
data-animOut="fadeOutUp|0.1">Don't miss any new opportunity,Hurry Up! Register now</p>
</div><!-- / SECTION HEADER -->
<!-- SECTION BODY -->
<div class="tabsection--body align-c">
<div class="flex-row middle-md gt0">
<div class="flex-col-md-12 animated s008" data-animIn="fadeInUp|0.3"
data-animOut="fadeOutUp|0.1">
<div class="nc-form-wrapper w60 mr-auto">
<form action="https://effe.org.in/add.php" method="post"
class="form-widget form-widget-inputicon" data-formtype="newsletter"
data-popup="popup-contact">
<div class="field-wrp">
<input type="hidden" name="to" value="[email protected]">
<div class="flex-row gt20 mb5">
<div class="flex-col-md-12">
<div class="form-group">
<span class="form-widget--icon flex-cc txt-default"><i
class="ti-user"></i></span>
<input
class="light form-control form-widget--form-control form-control-light hov-bdr-color1"
data-label="Name" required data-msg="Please enter name."
type="name" name="name" placeholder="Enter your name">
</div>
<div class="form-group">
<span class="form-widget--icon flex-cc txt-default"><i
class="ti-mobile"></i></span>
<input
class="light form-control form-widget--form-control form-control-light hov-bdr-color1"
data-label="Contact" required
data-msg="Please enter phone number." type="contact"
name="phone" placeholder="Enter your phone number">
</div>
<div class="form-group">
<span class="form-widget--icon flex-cc txt-default"><i
class="ti-email"></i></span>
<input
class="light form-control form-widget--form-control form-control-light hov-bdr-color1"
data-label="Email" required
data-msg="Please enter email." type="email" name="email"
placeholder="Enter your email">
</div>
<div class="form-group">
<span class="form-widget--icon flex-cc txt-default"><i
class="ti-briefcase"></i></span>
<input
class="light form-control form-widget--form-control form-control-light hov-bdr-color1"
data-label="College" required
data-msg="Please enter college." type="college"
name="College" placeholder="Enter your college">
</div>
</div>
</div>
</div>
<button type="submit"
class="form-widget--btn w100 btn solid btn-default">Submit</button>
</form>
<div class="msg-block"></div>
</div>
</div>
</div>
</div><!-- / SECTION BODY -->
</div>
</div><!-- / SERVICE-SECTION -->
<!-- CONTACT-SECTION -->
<div id="contact" class="tb-pn ncsection ncothsection w100 flex-cc tilter" data-gradient="y"
data-g-colors="rgba(119, 93, 143, .2)|rgba(119, 93, 143, .3)">
<div class="container pd-tb-60 typo-light tilter__caption">
<!-- SECTION HEADER -->
<div class="tabsection--header align-c mr-b-60">
<h1 class="title xlarge bold-5 f-1 animated s008" data-animIn="fadeInUp|0.1"
data-animOut="fadeOutUp|0.1" data-nc-sm="fs50">Contact</h1>
<p class="title-sub tiny bold-2 f-2 animated s008" data-animIn="fadeInUp|0.2"
data-animOut="fadeOutUp|0.1">Drop us mail if facing any issues or queries.</p>
</div><!-- / SECTION HEADER -->
<!-- SECTION BODY -->
<div class="tabsection--body align-c">
<div class="flex-row middle-md gt80">
<!-- LEFT -->
<div class="flex-col-md-4 align-l" data-nc-sm="mr-b-40">
<!-- CONTACT BOX -->
<div class="info-obj mr-0 img-l middle-md g20 tiny animated s008"
data-animIn="fadeInUp|0.3" data-animOut="fadeOutUp|0.1">
<div class="img txt-default"><span class="iconwrp"><i
class="ti-email"></i></span></div>
<div class="info">
<h3 class="title tiny mr-b-0 f-2 bold-2">[email protected]</h3>
</div>
</div><!-- / CONTACT BOX -->
<hr class="mr-tb-20 animated s008" data-animIn="fadeInUp|0.4"
data-animOut="fadeOutUp|0.1">
<!-- CONTACT BOX -->
<div class="info-obj mr-0 img-l middle-md g20 tiny animated s008"
data-animIn="fadeInUp|0.5" data-animOut="fadeOutUp|0.1">
<div class="img txt-default"><span class="iconwrp"><i
class="ti-headphone-alt"></i></span></div>
<div class="info">
<h3 class="title tiny mr-b-0 f-2 bold-2">Shashwat Sinha: +91 6291002416</h3>
</div>
</div><!-- / CONTACT BOX -->
<hr class="mr-tb-20 animated s008" data-animIn="fadeInUp|0.5"
data-animOut="fadeOutUp|0.1">
<!-- CONTACT BOX -->
<div class="info-obj mr-0 img-l middle-md g20 tiny animated s008"
data-animIn="fadeInUp|0.5" data-animOut="fadeOut|0.1">
<div class="img txt-default"><span class="iconwrp"><i
class="ti-world"></i></span></div>
<div class="info">
<h3 class="title tiny mr-b-0 f-2 bold-2">effe.org.in</h3>
</div>
</div><!-- / CONTACT BOX -->
<hr class="mr-tb-20 animated s008" data-animIn="fadeInUp|0.6"
data-animOut="fadeOutUp|0.1">
<!-- CONTACT BOX -->
<div class="info-obj mr-0 img-l middle-md g20 tiny animated s008"
data-animIn="fadeInUp|0.7" data-animOut="fadeOutUp|0.1">
<div class="img txt-default"><span class="iconwrp"><i
class="ti-location-pin"></i></span></div>
<div class="info">
<h3 class="title tiny mr-b-0 f-2 bold-2">Indian Institute of Information
Technology Allahabad, Prayagraj 211015, U. P., India</h3>
</div>
</div><!-- / CONTACT BOX -->
</div><!-- / LEFT -->
<!-- RIGHT -->
<div class="flex-col-md-8 align-l">
<!--<div class="nc-form-wrapper animated s008" data-animIn="fadeIn|0.3" data-animOut="fadeOutUp|0.1">
<form action="http://www.ncodeart.com/themeforest/acute/nc/form-data/formdata.php" class="form-widget form-widget-inputicon" data-popup="popup-contact">
<div class="field-wrp">
<input type="hidden" name="to" value="[email protected]">
<div class="flex-row gt20 mb5">
<div class="flex-col-md-6">
<div class="form-group">
<span class="form-widget--icon flex-cc txt-default"><i class="ti-user"></i></span>
<input class="form-control form-widget--form-control form-control-light" data-label="Name" required data-msg="Please enter first-name." type="text" name="fname" placeholder="First-name">
</div>
</div>
<div class="flex-col-md-6">
<div class="form-group">
<span class="form-widget--icon flex-cc txt-default"><i class="ti-user"></i></span>
<input class="form-control form-widget--form-control form-control-light" data-label="Name" required data-msg="Please enter last-name." type="text" name="lname" placeholder="Last-name">
</div>
</div>
<div class="flex-col-md-12">
<div class="form-group">
<span class="form-widget--icon flex-cc txt-default"><i class="ti-email"></i></span>
<input class="form-control form-widget--form-control form-control-light" data-label="Email" required data-msg="Please enter email." type="email" name="email" placeholder="Enter your email">
</div>
</div>
</div>
<div class="flex-col-md-12">
<div class="form-group">
<span class="form-widget--icon flex-cc txt-default"><i class="ti-text"></i></span>
<textarea class="form-control form-widget--form-control form-control-light" data-label="Message" required data-msg="Please enter your message." name="message" placeholder="Add your message" cols="30" rows="10"></textarea>
</div>
</div>
</div>
<button type="submit" class="form-widget--btn w100 btn solid btn-default">Submit</button>
</form>
<div class="msg-block"></div>
</div>-->
<div data-nc-sm="w100">
<div class="nc-map w100 z0-1" style="height: 30vh;">
<iframe class="mapframe" width="700" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?width=600&height=300&hl=en&q=IIIT%20Allahabad%20Prayagraj+(Effervescence,%20IIIT%20Allahabad)&t=&z=16&ie=UTF8&iwloc=B&output=embed"></iframe> <a href='https://www.symptoma.it/'>www.Symptoma.it</a> <script type='text/javascript' src='https://embedmaps.com/google-maps-authorization/script.js?id=eb128ab3122d368a248c38e2eda63b8d7a617077'></script>
</div><!-- / GOOGLE MAP -->
</div>
</div><!-- / RIGHT -->
</div>
</div><!-- / SECTION BODY -->
</div>
</div><!-- / CONTACT-SECTION -->
<!--GALLERY SECTION IN ANOTHER FOLDER -->
<!-- LOCATION-SECTION -->
<div id="sponsors" class="tb-pn ncsection ncothsection w100 flex-cc tilter typo-light" data-gradient="y"
data-g-colors="rgba(119, 93, 143 ,.2)|rgba(119, 93, 143, .3)">
<div class="container pd-tb-60 tilter__caption" data-nc-sm="w100">
<!-- <div class="nc-map vh60 w100 z0-1">
<div class="gmap-widget h100 w100"
data-fullh="y"
data-fullh-wrp="flex-col-lg-6"
data-map-latitude="-37.817136"
data-map-longitude="144.955652"
data-map-markerhd="Envato"
data-map-markerhtml='<div class="pd-10 align-c"><h2 class="fs18 mr-b-10">Envato</h2><p class="fs16 mr-0">PO Box 16122, Collins Street West,<br>Victoria 8007, Australia</p></div>'>
</div>
</div>/ GOOGLE MAP -->
<div id="sponsor">
<div class="row">
<div class="col-12 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/mtv.jpg" alt="bingo"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>MTV Beats</h4>
<p>Powered By</p>
</div>
</div>
<div class=" col-sm-6 sp-div" id="zebronics">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/cocacola.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>CocaCola</h4>
<p>Associate Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/bingo.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Bingo</h4>
<p>Entertainment Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<a href="https://ylink.cc/eBWgL">
<img class="img-fluid" src="./images/sponsors/rozdhan.png" alt="media"
class="sp-image"></a>
</div>
<div class="sponsor-info">
<h4>RozDhan</h4>
<p>Official Infotainment Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div" id="zebronics">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/zebronics.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Zebronics</h4>
<p>Audio Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/redfm.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>RedFm</h4>
<p>Radio Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/FB_IMG_1569996712632.jpg"
alt="media" class="sp-image">
</div>
<div class="sponsor-info">
<h4>Ankur Arora </h4>
<p>Clothing Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/honda.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Honda</h4>
<p>Mobility Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/amul.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Amul</h4>
<p>Dairy Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/ktm.jpg" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>KTM</h4>
<p>Driven By Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/ease.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Ease My Trip</h4>
<p>Official Travel Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/mood.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Mood Indigo</h4>
<p>Talent Showcase Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/ht.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Hindustan Times</h4>
<p>Official Media Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/axis.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Axis Bank</h4>
<p>Banking Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div" id="zebronics">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/spartan.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Spartan Poker</h4>
<p>Poker Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<a href="https://collegedunia.com/"><img class="img-fluid"
src="./images/sponsors/collegeduniya.png" alt="media"
class="sp-image"></a>
</div>
<div class="sponsor-info">
<h4>College Duniya</h4>
<p>Media Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/sbi.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>State Bank Of India</h4>
<p>Banking Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/canara.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Canara Bank</h4>
<p>Banking Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/swiggy.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Swiggy</h4>
<p>Food Delivery Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/3609.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Clickography</h4>
<p>Official Photography Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/resonance.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Resonance Studios</h4>
<p>Recording Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba" style="background-color: green">
<img class="img-fluid" src="./images/sponsors/grapevine.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>GraperVine</h4>
<p>Youth Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/punjabbank.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Punjab National Bank</h4>
<p>Banking Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/overbank.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Indian Overseas Bank</h4>
<p>Banking Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/ed.jpg" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Ed Times</h4>
<p>Media Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/dancecentre.jpg" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Allahabad Dance Centre</h4>
<p>Stage Event Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/hdfc.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>HDFC Bank</h4>
<p>Bank Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/icici.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>ICICI Bank</h4>
<p>Bank Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<img class="img-fluid" src="./images/sponsors/Syndicate.png" alt="media"
class="sp-image">
</div>
<div class="sponsor-info">
<h4>Syndicate Bank</h4>
<p>Bank Partner</p>
</div>
</div>
<div class="col-sm-6 sp-div">
<div class="dabba" id="carhp">
<a href="https://www.carhp.com/"><img class="img-fluid"
src="./images/sponsors/carhp.jpg" alt="media" class="sp-image"></a>
</div>
<div class="sponsor-info">
<h4>CarHP</h4>
<p>Media Partner</p>
</div>
</div>
<div class=" col-sm-6 sp-div">
<div class="dabba">
<a href="https://zoutons.com/"> <img class="img-fluid"
src="./images/sponsors/zoutons.jpg" alt="media" class="sp-image"></a>
</div>
<div class="sponsor-info">
<h4>Zoutons</h4>
<p>Media Partner</p>