-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
860 lines (724 loc) · 36.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>EQUILIBRIO'20</title>
<link rel = "icon" href = "img/logo3.png" type = "image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/venobox/venobox.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!-- <link href="css/header.css" rel="stylesheet"> -->
</head>
<body>
<!--==========================
Header
============================-->
<header id="header" class="header-fixed">
<div class="container-fluid">
<div id="logo" class="pull-left">
<!-- Uncomment below if you prefer to use a text logo -->
<!-- <h1><a href="#main">C<span>o</span>nf</a></h1>-->
<a href="#intro" class="scrollto"><img src="./img/logo.png" alt="" title=""></a>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#intro">Home</a></li>
<li><a href="#about">About</a></li>
<li><div class="dropdown">
<div class="drpbtn" ><a href="#speakers">Events </a></div>
<div class="dropdown-content">
<a href="#workshop">Workshop</a>
<a href="#exhibition">School Exhibition</a>
<!-- <a href="#speakers">Events</a> -->
</div>
</div>
</li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#RoadMap">Road Map</a></li>
<li><a href="#events">Our Team</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#supporters">Sponsors</a></li>
<li><a href="#contact">Contact</a></li>
<li class="buy-tickets"><a href="#buy-tickets">Register Now</a></li>
<li>
<a href="https://www.facebook.com/equilibrio.fest/" target="blank" class="facebook"><i class="fa fa-facebook"></i></a></li>
<li> <a href="https://www.instagram.com/equilibrio_ggv/" target="blank" class="instagram"><i class="fa fa-instagram"></i></a></li>
<!-- <a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a> -->
<li> <a href="https://www.linkedin.com/in/equilibrio-techfest-ggv-bilaspur-07a704110?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BjscpyoEPSUyPCjoR3AiX8A%3D%3D" target="blank" class="linkedin"><i class="fa fa-linkedin"></i></a>
</li>
<!-- <li> <a href="https://www.flickr.com/photos/equilibriotechfest/" target="blank" class="flickr"><i class="fa fa-flickr"></i></a></li> -->
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container wow fadeIn">
<h1 class="mb-4 pb-0">EQUILIBRIO'20</h1>
<h2 class="mb-4 pb-0"><span>CREATE CONSERVE COMPETE</span></h2>
<p class="mb-4 pb-0">16-17 JANUARY</p>
<a href="https://www.youtube.com/watch?v=xU9RqwzqnS8&t=15s" class="venobox play-btn mb-4" data-vbtype="video"
data-autoplay="true"></a>
<a href="#about" class="about-btn scrollto">About The Event</a>
</div>
</section>
<main id="main">
<!--==========================
About Section
============================-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2>About Us</h2>
<p>Equilibrio, the annual techno management fest of Guru Ghasidas Vishwavidyalaya, Bilaspur.Since it's inception in 2013, Equilibrio has emerged as a prime curator of creative minds.Initiated with an aim to serve a prefect launchpad for technocrats to showcase their technical skills and inventiveness. It also encompasses a platform for various activities which includes competitive events, motivating guest talks, workshops, cultural programs and exhibitions.
Being a festival, Equilibrio not only celebrates technology but also promotes a social cause every year. Every year a social cause is considered and students add towards it's rectification in their surroundings and this year will be no different. After its debut, the event has been growing in calibre and popularity.
EQUILIBRIO 2k20 will kick off from 16th January and the glory will continue for two days. Dive into this extravaganza and experience a complete package of fun, thrill and excellence.</p>
</div>
<div class="col-lg-2"></div>
<div class="col-lg-4">
<img src="img/sample.png" class="img-fluid" style="height: 300px; width:150%">
<div><br><h3 style="text-align: center;">New IT ........</h3>
</div>
</div>
</div>
</div>
</section>
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2>FROM THE DESK OF.....</h2>
<p>Equilibrio, the annual techno management fest of Guru Ghasidas Vishwavidyalaya, Bilaspur.Since it's inception in 2013, Equilibrio has emerged as a prime curator of creative minds.Initiated with an aim to serve a prefect launchpad for technocrats to showcase their technical skills and inventiveness. It also encompasses a platform for various activities which includes competitive events, motivating guest talks, workshops, cultural programs and exhibitions.
Being a festival, Equilibrio not only celebrates technology but also promotes a social cause every year. Every year a social cause is considered and students add towards it's rectification in their surroundings and this year will be no different. After its debut, the event has been growing in calibre and popularity.
EQUILIBRIO 2k20 will kick off from 16th January and the glory will continue for two days. Dive into this extravaganza and experience a complete package of fun, thrill and excellence.</p>
</div>
<div class="col-lg-2"></div>
<div class="col-lg-4">
<!-- <p></p> -->
<br><br>
<img src="img/sample.png" class="img-fluid" style="height: 300px; width: 100">
<div><br><h3 style="text-align: center;">Sample</h3>
</div>
</div>
</div>
</div>
</section>
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2>From The ............</h2>
<p>Equilibrio, the annual techno management fest of Guru Ghasidas Vishwavidyalaya, Bilaspur.Since it's inception in 2013, Equilibrio has emerged as a prime curator of creative minds.Initiated with an aim to serve a prefect launchpad for technocrats to showcase their technical skills and inventiveness. It also encompasses a platform for various activities which includes competitive events, motivating guest talks, workshops, cultural programs and exhibitions.
Being a festival, Equilibrio not only celebrates technology but also promotes a social cause every year. Every year a social cause is considered and students add towards it's rectification in their surroundings and this year will be no different. After its debut, the event has been growing in calibre and popularity.
EQUILIBRIO 2k20 will kick off from 16th January and the glory will continue for two days. Dive into this extravaganza and experience a complete package of fun, thrill and excellence.
</p>
</div>
<div class="col-lg-2"></div>
<div class="col-lg-4">
<!-- <p></p> -->
<br><br>
<img src="img/sample.png" class="img-fluid" style="height: 300px; width: 450px">
<div><br><h3 style="text-align: center;">sample</h3>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Speakers Section
============================-->
<section id="speakers" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>EVENTS</h2>
<p>Here are some Outstanding Events</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="speaker">
<a href="AAKAR-details.html"><img src="img/speakers/1.jpg" alt="AAKAR" class="img-fluid"></a>
<div class="details">
<h3><a href="AAKAR-details.html">AAKAR</a></h3>
<p>Check out the Events</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<a href="ALCHEMIST-details.html"><img src="img/speakers/2.jpg" alt="ALCHEMIST" class="img-fluid"></a>
<div class="details">
<h3><a href="ALCHEMIST-details.html">ALCHEMIST</a></h3>
<p>Check out the Events</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<a href="AUTONOMOUS-details.html"><img src="img/speakers/3.jpg" alt="AUTONOMOUS" class="img-fluid"></a>
<div class="details">
<h3><a href="AUTONOMOUS-details.html">AUTONOMOUS</a></h3>
<p>Check out the Events</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<a href="CULTURAL-details.html"><img src="img/speakers/4.jpg" alt="CULTURAL" class="img-fluid"></a>
<div class="details">
<h3><a href="CULTURAL-details.html">CULTURAL</a></h3>
<p>Check out the Events</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<a href="CYBERNET-details.html"><img src="img/speakers/5.jpg" alt="CYBERNET" class="img-fluid"></a>
<div class="details">
<h3><a href="CYBERNET-details.html">CYBERNET</a></h3>
<p>Check out the Events</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<a href="GAMING-details.html"><img src="img/speakers/6.jpg" alt="GAMING" class="img-fluid"></a>
<div class="details">
<h3><a href="GAMING-details.html">GAMING</a></h3>
<p>Check out the Events</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<a href="MANAGERIAL-details.html"><img src="img/speakers/7.jpg" alt="MANAGERIAL" class="img-fluid"></a>
<div class="details">
<h3><a href="MANAGERIAL-details.html">MANAGERIAL</a></h3>
<p>Check out the Events</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<a href="MECHATRONICS-details.html"><img src="img/speakers/8.jpg" alt="MECHATRONICS" class="img-fluid"></a>
<div class="details">
<h3><a href="MECHATRONICS-details.html">MECHATRONICS</a></h3>
<p>ChecK out the Events</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<a href="PHOTOGRAPHY-details.html"><img src="img/speakers/9.jpg" alt="MECHATRONICS" class="img-fluid"></a>
<div class="details">
<h3><a href="PHOTOGRAPHY-details.html">PHOTOGRAPHY</a></h3>
<p>Check out the Events</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Schedule Section
============================-->
<section id="schedule" class="section-with-bg">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>Event Schedule</h2>
<p>COMING SOON</p>
</div>
</div>
</section>
<!--==========================
Venue Section
============================-->
<section id="RoadMap">
<div class="container-fluid wow fadeInUp">
<div class="section-header">
<br><br><br>
<h2>ROAD MAP</h2>
<p>Basic Idea of Events Going</p>
</div>
<div class="row no-gutters">
<div class="col-lg-6 venue-map " >
<center><a href="./img/map.jpg" class="venobox"><img src="./img/map.jpg" class="img-fluid" height="400px" width="600px" ></a></center>
</div>
<div class="col-lg-6 venue-info">
<div class="row justify-content-center">
<div class="col-11 col-lg-8">
<h3><b>Guru Ghasidas Central University</b></h3>
<ul>
<li><h4>University Gate starts from <div style="color: red;">Red Arrow.</div></h4></li>
<li> <h4>Technical Events at New IT Building.<br></h4></li>
<li><h4> Cultural Events at Auditorium.<br></h4></li>
<li><h4> Help Desk at New Canteen.<br></h4></li>
<li> <h4>Fun-Zone at Funzone Area.</h4> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- WORKSHOP -->
<section id="workshop" class="section-with-bg ">
<div class="container wow fadeInUp">
<div class="section-header">
<br><br><br>
<h2>WORKSHOP</h2>
</div>
<div class="row">
<div class="col-lg-7">
<h2>About</h2>
<ul>EQUILIBRIO 2K20 presents -
2 days AUTONOMOUS WORKSHOP by ROBOSAPIENS.<br>
WORKSHOP COST - ₹600 per person,<br>
WORKSHOP BENEFITS -<br>
<li>Free Robotics Kit of line follower and Bluetooth/mobile controlled robot for EACH TEAM (4 Members)</li>
<li>Detailed information of basic of Robotics, autonomous components,its programming.</li>
<li>Assembling of Autonomous kit with some on hand practicals.</li>
<li>Development of LINE FOLLOWER ROBOT.</li>
<li>Development of Bluetooth/mobile controlled robot.</li>
<li>PARTICIPATION CERTIFICATE for EACH MEMBER.</li>
<li>ZONAL ROUND WILL BE CONDUCTED FOR THE PARTICIPANTS ( winner will get CERTIFICATE OF MERIT )</li>
</ul>
<center><a href="https://www.thecollegefever.com/college-technical-fests/equilibrio20" target="blank"><button type="button" class="btn" style="font-size: 15px;
border-radius: 50px;
padding: 10px 40px;
transition: all 0.2s;
background-color: #f82249;
border: 0;
color: #fff;" >Register For Workshop</button></center></a><br>
</div>
<div class="col-lg-5">
<center>
<a href="img/sample.png" class="venobox"><img src="img/sample.png" class="img-fluid" height="500" width="390"></a></center>
</div>
</div>
</div>
</section>
<!--==========================
Events Section
============================-->
<section id="events" class="section-with-bg ">
<div class="container wow fadeInUp">
<div class="section-header">
<br><br><br>
<br><br><br>
<h2>Our Team</h2>
<p>Here are our team members</p><br>
<div class="container">
<h1>Team Module</h1>
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="profile_card">
<img src="img/sample.png" alt="image"/>
<div class="profile_content">
<h2>Coordinator</h2>
<ul class="social-link">
<li><a href="" class="fa fa-facebook"></a></li>
<li><a href="" class="fa fa-instagram"></a></li>
<li><a href="" class="fa fa-envelope"></a></li>
</ul>
<h3>xsdsddd</h3>
<h3>+91 99xxxx</h3>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="profile_card">
<img src="img/sample.png" alt="image"/>
<div class="profile_content">
<h2>Co-coordinator</h2>
<ul class="social-link">
<li><a href="" class="fa fa-facebook"></a></li>
<li><a href="" class="fa fa-instagram"></a></li>
<li><a href="" class="fa fa-envelope"></a></li>
</ul>
<h3>xxxx</h3>
<h3>+91 8xxxxx</h3>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="profile_card">
<img src="img/sample.png" alt="image"/>
<div class="profile_content">
<h2>Co-coordinator</h2>
<ul class="social-link">
<li><a href="" class="fa fa-facebook"></a></li>
<li><a href="" class="fa fa-instagram"></a></li>
<li><a href="" class="fa fa-envelope"></a></li>
</ul>
<h3>xadcccc</h3>
<h3>+91 9xxxxx5</h3>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="profile_card">
<img src="img/sample.png" alt="image"/>
<div class="profile_content">
<h2>Co-coordinator</h2>
<ul class="social-link">
<li><a href="" class="fa fa-facebook"></a></li>
<li><a href="" class="fa fa-instagram"></a></li>
<li><a href="" class="fa fa-envelope"></a></li>
</ul>
<h3>zvxvxv</h3>
<h3>+91 81xxxx</h3>
</div>
</div>
</div>
</div>
<div class="text-center">
<a href="team.html" target="blank"><button type="button" class="btn" style="font-size: 15px;
border-radius: 50px;
padding: 10px 40px;
transition: all 0.2s;
background-color: #f82249;
border: 0;
color: #fff;" >VIEW TEAM</button></a>
</div>
</div>
</div>
</section>
<!--==========================
Gallery Section
============================-->
<section id="gallery">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>Gallery</h2>
<p>Check our gallery from the recent events</p>
</div>
</div>
<div class="owl-carousel gallery-carousel">
<a href="img/sample.png" class="venobox" data-gall="gallery-carousel"><img src="img/sample.png" alt=""></a>
<a href="img/sample.png" class="venobox" data-gall="gallery-carousel"><img src="img/sample.png" alt=""></a>
<a href="img/sample.png" class="venobox" data-gall="gallery-carousel"><img src="img/sample.png" alt=""></a>
<a href="img/sample.png" class="venobox" data-gall="gallery-carousel"><img src="img/sample.png" alt=""></a>
<a href="img/sample.png" class="venobox" data-gall="gallery-carousel"><img src="img/sample.png" alt=""></a>
<a href="img/sample.png" class="venobox" data-gall="gallery-carousel"><img src="img/sample.png" alt=""></a>
<a href="img/sample.png" class="venobox" data-gall="gallery-carousel"><img src="img/sample.png" alt=""></a>
<a href="img/sample.png" class="venobox" data-gall="gallery-carousel"><img src="img/sample.png" alt=""></a>
</div><br>
<div class="text-center">
<a href="https://www.flickr.com/photos/equilibriotechfest/" target="blank"><button type="button" class="btn" style="font-size: 15px;
border-radius: 50px;
padding: 10px 40px;
transition: all 0.2s;
background-color: #f82249;
border: 0;
color: #fff;" >View More</button></a>
</div>
</section>
<!--==========================
Sponsors Section
============================-->
<section id="supporters" class="section-with-bg">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>Sponsors</h2>
</div>
<div class="row no-gutters supporters-wrap clearfix">
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/sample.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/sample.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/sample.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="img/sample.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
</section>
<!--==========================
F.A.Q Section
============================-->
<section id="faq">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>F.A.Q </h2>
</div>
<div class="row justify-content-center">
<div class="col-lg-9">
<ul id="faq-list">
<li>
<a data-toggle="collapse" class="collapsed" href="#faq1">What is Equilibrio? <i class="fa fa-minus-circle"></i></a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<p>
Equilibrio,the annual Techno-Management fest of GGV BILASPUR is one of the Central India's biggest college festivals. It will span for 2 days: January 16-17,2020. The spirit of Equilibrio lies in encouraging sound practices,making precision engineering a way of life,effectively bringing about a paradigm shift from classroom to path-breaking innovation.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq2" class="collapsed">Is accomodation available? <i class="fa fa-minus-circle"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p>
Yes. Accommodation for girls and boys in girls' & boys' hostel respectively are available on the basis of vacancy for outside pariticipants.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq3" class="collapsed">How far college campus from Bilaspur Railway Station? <i class="fa fa-minus-circle"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p>
College is Around 9 km away from railway station with easily available transport facility.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq4" class="collapsed">How to register for Campus Ambassdor? And what are the benefits of being a campus Ambassdor?<i class="fa fa-minus-circle"></i></a>
<div id="faq4" class="collapse" data-parent="#faq-list">
<p>
campus ambassador
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq5" class="collapsed">Are there any online events? <i class="fa fa-minus-circle"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p>
Yes,there will be online events. For details of the online events stay updated to our facebook page.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq6" class="collapsed">Still have doubts? <i class="fa fa-minus-circle"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p>
Feel free to drop us a message at our Facebook page or contact 7xxil.com . We will get back to you soon.
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!--==========================
Buy Ticket Section
============================-->
<section id="buy-tickets" class="section-with-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Registration Now</h2>
<p>Be a part of Equilibrio and get a chance to win prizes</p>
</div>
<div class="row">
<div class="col-lg-4">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">For BTECH<br>( GGVians )</h5>
<!-- <h6 class="card-price text-center">$150</h6> -->
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Technical Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Cultural Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Managerial Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Gaming Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>EDM Nights</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Exhibition</li>
</ul>
<hr>
<div class="text-center">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdBZkhTjV5YZXTXPhjLe0JYSiXxOldisTrGtWSoJc_FAZzvdA/viewform?usp=sf_link" target="blank"> <button type="button" class="btn" data-ticket-type="premium-access">Register Now</button></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">For Non BTECH<br>( GGVians )</h5>
<!-- <h6 class="card-price text-center">$250</h6> -->
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Technical Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Cultural Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Managerial Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Gaming Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>EDM Nights</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Exhibition</li>
</ul>
<hr>
<div class="text-center">
<a href="https://www.thecollegefever.com/college-technical-fests/equilibrio20" target="blank"> <button type="button" class="btn" data-ticket-type="premium-access">Register Now</button></a>
</div>
</div>
</div>
</div>
<!-- Pro Tier -->
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">For Visitors<br> (Non GGV Students)</h5>
<!-- <h6 class="card-price text-center">$350</h6> -->
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fa fa-check"></i></span>Technical Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Cultural Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Managerial Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Gaming Events</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>EDM Nights</li>
<li><span class="fa-li"><i class="fa fa-check"></i></span>Exhibition</li>
</ul>
<hr>
<div class="text-center">
<a href="https://www.thecollegefever.com/college-technical-fests/equilibrio20" target="blank"> <button type="button" class="btn" data-ticket-type="premium-access">Register Now</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Contact Section
============================-->
<section id="contact" class="section-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Contact Us</h2>
<p>EQUILIBRIO'20</p>
</div>
<div class="row contact-info">
<div class="col-md-4">
<div class="contact-address">
<i class="ion-ios-location-outline"></i>
<h3>Address</h3>
<address>GxxxxxPUR(C.G)</address>
</div>
</div>
<div class="col-md-4">
<div class="contact-phone">
<i class="ion-ios-telephone-outline"></i>
<h3>Phone Number</h3>
<p>AxxxAL</p>
<p><a href="tel:+91 9931260165">99xxxxx</a></p>
</div>
</div>
<div class="col-md-4">
<div class="contact-email">
<i class="ion-ios-email-outline"></i>
<h3>Email</h3>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</div>
<div class="row contact-info">
<div class="col-md-4">
<br>
<h3>FACEBOOK</h3>
<div class="social-links">
<a href="https://www.facebook.com/equilibrio.fest/" class="facebook"><i class="fa fa-facebook"></i></a>
</div>
</div>
<div class="col-md-4">
<br>
<h3>INSTAGRAM</h3>
<div class="social-links">
<a href="https://www.instagram.com/equilibrio_ggv/" class="instagram"><i class="fa fa-instagram"></i></a>
</div>
</div>
<div class="col-md-4">
<br>
<h3>LINKEDIN</h3>
<div class="social-links">
<a href="https://www.linkedin.com/in/equilibrio-techfest-ggv-bilaspur-07a704110?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BjscpyoEPSUyPCjoR3AiX8A%3D%3D" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</section><!-- #contact -->
</main>
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="footer-top">
<div class="container-fluid">
<div class="row">
<div class="col-lg-3 col-md-6 footer-info">
<img src="img/logo.png" alt="event">
<p> Equilibrio,the annual Techno-Management fest of GGV BILASPUR is one of the Central India's biggest college festivals. It will span for 2 days: January 16-17,2020. The spirit of Equilibrio lies in encouraging sound practices,making precision engineering a way of life,effectively bringing about a paradigm shift from classroom to path-breaking innovation.</p>
</div>
<div class="col-lg-2 col-md-4 footer-links"></div>
<div class="col-lg-2 col-md-4 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="fa fa-angle-right"></i> <a href="#intro">Home</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#about">About us</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#speakers">Events</a></li>
<li><i class="fa fa-angle-right"></i> <a href="https://www.flickr.com/photos/equilibriotechfest/" target="blank">Gallery</a></li>
<li><i class="fa fa-angle-right"></i> <a href="#faq">F.A.Q</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-4 footer-links">
</div>
<div class="col-lg-3 col-md-6 footer-contact">
<h4>Contact Us</h4>
<p>
xxxx <br>
EQUILIBRIO TEAM <br><strong>Phone:</strong> 7xxxxxxgh)<br>
<strong>Email:</strong> [email protected]<br>
</p>
<div class="social-links">
<!-- <a href="#" class="twitter"><i class="fa fa-twitter"></i></a> -->
<a href="https://www.facebook.com/equilibrio.fest/" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/equilibrio_ggv/" class="instagram"><i class="fa fa-instagram"></i></a>
<!-- <a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a> -->
<a href="https://www.linkedin.com/in/equilibrio-techfest-ggv-bilaspur-07a704110?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BjscpyoEPSUyPCjoR3AiX8A%3D%3D" class="linkedin"><i class="fa fa-linkedin"></i></a>
<a href="https://www.flickr.com/photos/equilibriotechfest/" target="blank" class="flickr"><i class="fa fa-flickr"></i></a>
<a href="https://www.youtube.com/channel/UCBMS9qtWUw-m5k4U7lBth8A" class="youtube"><i class="fa fa-youtube"></i></a>
<a href="https://twitter.com/equilibrio_ggv?lang=en" target="blank" class="twitter"><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
</div><hr style="color: white;">
<p ><center><strong>Copyright © EQUILIBRIO'20</strong>|Website Team. All Rights Reserved. </p ></center>
</footer><!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-angle-up"></i></a>
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/venobox/venobox.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
</body>
</html>