-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1793 lines (1570 loc) · 111 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" class="no-js">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no;">
<title>VYVIDH 17</title>
<meta name="description" content="Vyvidh 2017 is a national level multi-fest, to be organized by Vidya Academy Of Science and Technology, Thrissur on March 31, April 1. Vyvidh provides a platform to students across the nation to showcase their talent by participating in technically challenging and mind-boggling events. . It would be a good opportunity to interact with your colleagues from colleges across the nation, and compete with them for the prizes. Vyvidh promises to be 2 days of unbelievable fun, with fresh competitions, fun games, exhibitions and pro shows. Be here at the VAST campus on March 31, April 1 to witness the ultimate cultural and technical">
<!-- Favicon-->
<link rel="shortcut icon" href="img/logo/favicon.png" >
<!-- CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="lib/magnific-popup/magnific-popup.css">
<link rel="stylesheet" href="lib/owl-carousel/owl.carousel.css">
<link rel="stylesheet" href="lib/owl-carousel/owl.theme.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<linl rel="stylesheet" href="css/animate.css">
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhaina" rel="stylesheet">
<linl rel="stylesheet" href="css/superslides.css">
<linl rel="stylesheet" href="css/my.css">
<!-- Modernizr -->
<script src="js/modernizr.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="loader"></div>
</div>
<!--preloader end-->
<div class="page-container" id="ad">
<div class="single-page">
<div class="page-title">
<span><img src="img/logo/logosmall.png"/></span>
<h2 class=>VYVIDH 17</h2>
<p class="menu-desc">A Brief About VYVIDH 17...</p>
</div>
<div class="page-info container-fluid">
<div class="row about-me">
<div class="col-sm-5 col-sm-offset-1 profile-image ">
<div class="pp-container ">
</div>
</br>
</br>
</br>
</br>
</br>
<h2><span>VYVIDH 17</span></h2><h3><span>March 31 & April 1</span></h3>
<h4>VIDYA ACADEMY OF SCIENCE AND TECHNOLOGY</h4>
</div>
<div class="col-sm-6 bio">
<div class="bio-inner">
<div class="col-md-10">
</br></br>
<p>Vyvidh 2017 is a national level multi-fest, to be organized by Vidya Academy Of Science and Technology, Thrissur on March 31, April 1. Vyvidh provides a platform to students across the nation to showcase their talent by participating in technically challenging and mind-boggling events. . It would be a good opportunity to interact with your colleagues from colleges across the nation, and compete with them for the prizes. Vyvidh promises to be 2 days of unbelievable fun, with fresh competitions, fun games, exhibitions and pro shows. Be here at the VAST campus on March 31, April 1 to witness the ultimate cultural and technical </p>
</div>
</div>
</div>
</div>
<div class="row fun-facts">
<ul>
<li>
<h3><i class="fa fa-bicycle"></i></h3>
<h5>Fun Zones</h5>
</li>
<li>
<h3><i class="fa fa-check"></i></h3>
<h5>TECH EXPOS</h5>
</li>
<li>
<h3>50+</h3>
<h5>Technical Events</h5>
</li>
<li>
<h3><i class="fa fa-angle-right"></i></h3>
<h5>PRO SHOW</h5>
</li>
<li>
<h3>100+</h3>
<h5>Projects</h5>
</li>
</ul>
</div>
<!-- Fun facts end-->
<div class="row footer">
<a href="">VYVIDH 17</a> <span>Copyright © 2017 All right reserved</span>
</div>
</div>
</div> <!-- Single Page end -->
<!-- cultural Page -->
<div class="single-page">
<div class="page-title">
</br></br>
<span><img src="img/arts.png"></span>
<h2>CULTURAL PROGRAMS</h2>
<p class="menu-desc"></p>
</div>
<!-- .page-title -->
<!-- dfad Page Contents-->
<div class="page-info container-fluid">
<div class="row band">
</div>
<div class="row fun-facts1">
5..6..7..8..
</div>
<div class="row footer">
<a href="">VYVIDH 17</a> <span>Copyright © 2017 All right reserved</span>
</div>
<!--footer end-->
</div>
</div><!-- Single Page end -->
<!-- EVENTS Page -->
<div class="single-page">
<div class="page-title">
<span><img src="img/eve.png"></span>
<h2>EVENTS</h2>
<p class="menu-desc">...</p>
</div>
<!-- .page-title -->
<!-- Event Page Contents-->
<div class="page-info container-fluid">
<div class="row portfolios">
<div class="portfolio-container">
<div class="controls">
<button class="filter" data-filter=".category-11" selected="selected">Main Events</button>
<button class="filter" data-filter=".category-1">Civil</button>
<button class="filter" data-filter=".category-2">Computer Science</button>
<button class="filter" data-filter=".category-3">Electronics & Communication</button>
<button class="filter" data-filter=".category-4">Electrical & Electronics</button>
<button class="filter" data-filter=".category-5">Mechanical</button>
<button class="filter" data-filter=".category-6">MCA</button>
<button class="filter" data-filter=".category-7">Production</button>
<button class="filter" data-filter=".category-8">IEDC</button>
<button class="filter" data-filter=".category-9">HOSTELERS</button>
<button class="filter" data-filter=".category-10">NSS</button>
</div>
<div id="portfolio" class="portfolio-items">
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-1" data-myorder="Civil">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/civilcad.jpg" alt="" />
<figcaption>
<h2>The Cadal Masuta</h2>
<p>AutoCAD Designing</p>
<a href="#portfolio1" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio1" class="white-popup mfp-hide">
<img src="img/portfolio/civilcad.jpg" alt="Portfolio Image">
<h2 class="project-title">The Cadal Masuta</h2>
<p class="project-desc">An event where the students uses his skills in AutoCAD software to create a drawing for a topic given on the spot</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-1" data-myorder="Civil">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/civiltreasurehunt.jpg" alt="" />
<figcaption>
<h2>Takarasagashi</h2>
<p>Survey Treasure Hunt</p>
<a href="#portfolio2" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio2" class="white-popup mfp-hide">
<img src="img/portfolio/civiltreasurehunt.jpg" alt="Portfolio Image">
<h2 class="project-title">Takarasagashi</h2>
<p class="project-desc">A survey based treasure hunt event. The team uses their knowledge in surveying and experience with surveying instruments to solve the clues, which will be mathematical survey based</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-1" data-myorder="Civil">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/hydraulicbridge.jpg" alt="" />
<figcaption>
<h2>Projeto Da Ponte</h2>
<p>Hydraulic Bridge Designing</p>
<a href="#portfolio3" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio3" class="white-popup mfp-hide">
<img src="img/portfolio/hydraulicbridge.jpg" alt="Portfolio Image">
<h2 class="project-title">Projeto Da Ponte</h2>
<p class="project-desc">A group event where the team uses popsicle sticks,syringes and fevicol to build a hydraulic bridge. The bridge that has maximum opening angle and that can take maximum load wins</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-1" data-myorder="Civil">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/structural.jpg" alt="" />
<figcaption>
<h2>Estructura</h2>
<p>Structural Design Using Paper</p>
<a href="#portfolio4" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio4" class="white-popup mfp-hide">
<img src="img/portfolio/structural.jpg" alt="Portfolio Image">
<h2 class="project-title">Estructura</h2>
<p class="project-desc">The team creates load bearing structure using paper to withstand maximum load</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-2" data-myorder="Computer">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/decibel.jpg" alt="" />
<figcaption>
<h2>Destroy the Decibel</h2>
<p>Exhaust Competition</p>
<a href="#portfolio13" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio13" class="white-popup mfp-hide">
<img src="img/portfolio/decibel.jpg" alt="Portfolio Image">
<h2 class="project-title">Destroy the Decibel</h2>
<p class="project-desc">An exciting competition event among loudest cars which is evaluvated with the help of computer and dB meter.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-2" data-myorder="Computer">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/nfs.png" alt="" />
<figcaption>
<h2>RESPAWN</h2>
<p>Gaming Competition</p>
<a href="#portfolio5" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio5" class="white-popup mfp-hide">
<img src="img/portfolio/nfs.png" alt="Portfolio Image">
<h2 class="project-title">RESPAWN</h2>
<p class="project-desc">Gaming Competition... NEED FOR SPEED-MOST WANTED,FIFA 11, COUNTER STRIKE,DOTA</p>
<a class="project-url btn" href="reg.php">NFS--FIFA--REGISTER</a>
<a class="project-url btn" href="reggroup.php">COUNTER STRIKE--DOTA--REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-2" data-myorder="Computer">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/coding.jpg" alt="" />
<figcaption>
<h2>CodeX</h2>
<p>Coding & Debugging Competition</p>
<a href="#portfolio6" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio6" class="white-popup mfp-hide">
<img src="img/portfolio/coding.jpg" alt="Portfolio Image">
<h2 class="project-title">CodeX</h2>
<p class="project-desc">Coding: Given a question or an pattern you have to code a program to display its output </p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-2" data-myorder="Computer">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/blind.jpg" alt="" />
<figcaption>
<h2>Blind Coding</h2>
<p>Coding Competition</p>
<a href="#portfolio7" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio7" class="white-popup mfp-hide">
<img src="img/portfolio/blind.jpg" alt="Portfolio Image">
<h2 class="project-title">Blind Coding</h2>
<p class="project-desc">Coding a program with no visual display</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-2" data-myorder="Computer">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/assembling.jpg" alt="" />
<figcaption>
<h2> Techass-Hardware Assembling</h2>
<p>Hardware Assembling Competition</p>
<a href="#portfolio8" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio8" class="white-popup mfp-hide">
<img src="img/portfolio/assembling.jpg" alt="Portfolio Image">
<h2 class="project-title">Techass-Hardware Assembling</h2>
<p class="project-desc">Chain of clues will lead them to hardware parts,which if they manage to find within time constraints.The competition is designed for students to display skills in pc assembling with great precision and speed .Students will demonstrate their ability to put together a PC using right tools until it starts booting successfully.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-2" data-myorder="Computer">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/quiz.jpg" alt="" />
<figcaption>
<h2>CryptiX</h2>
<p>Technical Quiz</p>
<a href="#portfolio9" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio9" class="white-popup mfp-hide">
<img src="img/portfolio/quiz.jpg" alt="Portfolio Image">
<h2 class="project-title">CryptiX</h2>
<p class="project-desc">Technical quiz on computer science field.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-2" data-myorder="Computer">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/maze1.jpg" alt="" />
<figcaption>
<h2>Maze Runner 2.0</h2>
<p>Finding the correct Path</p>
<a href="#portfolio10" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio10" class="white-popup mfp-hide">
<img src="img/portfolio/maze1.jpg" alt="Portfolio Image">
<h2 class="project-title">Maze Runner 2.0</h2>
<p class="project-desc">Finding the correct path through the haunted maze.</p>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-2" data-myorder="Computer">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/filmfestival.jpg" alt="" />
<figcaption>
<h2>Lumiere</h2>
<p>Short Film Competition</p>
<a href="#portfolio11" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio11" class="white-popup mfp-hide">
<img src="img/portfolio/filmfestival.jpg" alt="Portfolio Image">
<h2 class="project-title">Lumiere</h2>
<p class="project-desc">A theatre that screens short films and the best short film wins the prize.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-3" data-myorder="ec">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/robowar.jpg" alt="" />
<figcaption>
<h2>ROBO WAR</h2>
<p></p>
<a href="#portfolio14" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio14" class="white-popup mfp-hide">
<img src="img/portfolio/robowar.jpg" alt="Portfolio Image">
<h2 class="project-title">ROBO WAR</h2>
<p class="project-desc">Get ready to lauch your home made bots into the arena for a challenging and invigorating war.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-3" data-myorder="ec">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/udhbav.jpg" alt="" />
<figcaption>
<h2>UDHBAV</h2>
<p></p>
<a href="#portfolio15" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio15" class="white-popup mfp-hide">
<img src="img/portfolio/udhbav.jpg" alt="Portfolio Image">
<h2 class="project-title">UDHBAV</h2>
<p class="project-desc">Using any of the given components design a circuit which gives the provided waveform.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-3" data-myorder="ec">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/aavishkar.jpg" alt="" />
<figcaption>
<h2>AAVISHKAR</h2>
<p></p>
<a href="#portfolio16" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio16" class="white-popup mfp-hide">
<img src="img/portfolio/aavishkar.jpg" alt="Portfolio Image">
<h2 class="project-title">AAVISHKAR</h2>
<p class="project-desc">Design the PCB of the given circuit in the most minimized form and size and obtain output following the rules of designing.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-3" data-myorder="ec">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/chakravyuha.jpg" alt="" />
<figcaption>
<h2>CHAKRAVYUHA</h2>
<p></p>
<a href="#portfolio17" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio17" class="white-popup mfp-hide">
<img src="img/portfolio/chakravyuha.jpg" alt="Portfolio Image">
<h2 class="project-title">CHAKRAVYUHA</h2>
<p class="project-desc">Find out the false in the given circuit and obtain the output of the circuit.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-3" data-myorder="ec">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/enova.jpg" alt="" />
<figcaption>
<h2>ENOVA</h2>
<p></p>
<a href="#portfolio18" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio18" class="white-popup mfp-hide">
<img src="img/portfolio/enova.jpg" alt="Portfolio Image">
<h2 class="project-title">ENOVA</h2>
<p class="project-desc">A dotted PCB will be provided.The given circuit must be designed with it using minimum space and atmost neatness to obtain the output.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-3" data-myorder="ec">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/codeathon.jpg" alt="" />
<figcaption>
<h2>CODE-A-THON</h2>
<p></p>
<a href="#portfolio19" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio19" class="white-popup mfp-hide">
<img src="img/portfolio/codeathon.jpg" alt="Portfolio Image">
<h2 class="project-title">CODE-A-THON</h2>
<p class="project-desc">According to the purpose that is given to the team should design a programming code and simulate the same by obtaining the output.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-3" data-myorder="ec">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/ecworkshop.jpg" alt="" />
<figcaption>
<h2>WORKSHOP</h2>
<p></p>
<a href="#portfolio20" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio20" class="white-popup mfp-hide">
<img src="img/portfolio/ecworkshop.jpg" alt="Portfolio Image">
<h2 class="project-title">WORKSHOP</h2>
<p class="project-desc">Hands on training program on WeMos D1 R2 Wi-Fi ESP8266 Development board ESP126 compactable with arduino UNO board &Programmable using arduino IDE.</p>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-3" data-myorder="ec">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/treasureec.jpg" alt="" />
<figcaption>
<h2>AURYON</h2>
<p></p>
<a href="#portfolio21" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio21" class="white-popup mfp-hide">
<img src="img/portfolio/treasureec.jpg" alt="Portfolio Image">
<h2 class="project-title">AURYON</h2>
<p class="project-desc">Treasure Hunt.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-3" data-myorder="ec">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/linefollower.jpg" alt="" />
<figcaption>
<h2>ANUYAYIN</h2>
<p></p>
<a href="#portfolio22" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio22" class="white-popup mfp-hide">
<img src="img/portfolio/linefollower.jpg" alt="Portfolio Image">
<h2 class="project-title">ANUYAYIN</h2>
<p class="project-desc">Contestants are to create a line follower bot.The bot should cover maximum number of obstacles in the track.The bot that does this in the quickest time wins.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-4" data-myorder="EEE">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/cave.jpg" alt="" />
<figcaption>
<h2>ELECTRO CAVE</h2>
<p></p>
<a href="#portfolio23" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio23" class="white-popup mfp-hide">
<img src="img/portfolio/cave.jpg" alt="Portfolio Image">
<h2 class="project-title">ELECTRO CAVE</h2>
<p class="project-desc">Immerse yourself in the world of light and music.</p>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-4" data-myorder="EEE">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/walle.jpg" alt="" />
<figcaption>
<h2>WALL-E</h2>
<p></p>
<a href="#portfolio24" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio24" class="white-popup mfp-hide">
<img src="img/portfolio/walle.jpg" alt="Portfolio Image">
<h2 class="project-title">WALL-E</h2>
<p class="project-desc">Theme of the junkyard will be given on the spot and required materials can be collected through auction.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-4" data-myorder="EEE">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/equiz.jpg" alt="" />
<figcaption>
<h2>e-QUEST</h2>
<p></p>
<a href="#portfolio25" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio25" class="white-popup mfp-hide">
<img src="img/portfolio/equiz.jpg" alt="Portfolio Image">
<h2 class="project-title">e-QUEST</h2>
<p class="project-desc">Quiz covers the basic technical knowledge in electrical engineering.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-4" data-myorder="EEE">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/matlab.png" alt="" />
<figcaption>
<h2>MAT CRACKER</h2>
<p></p>
<a href="#portfolio26" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio26" class="white-popup mfp-hide">
<img src="img/portfolio/matlab.png" alt="Portfolio Image">
<h2 class="project-title">MAT CRACKER</h2>
<p class="project-desc">Think simulate and crack your MAT lab knowledge.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-4" data-myorder="EEE">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/vibgyor.png" alt="" />
<figcaption>
<h2>VIBGYOR</h2>
<p></p>
<a href="#portfolio27" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio27" class="white-popup mfp-hide">
<img src="img/portfolio/vibgyor.png" alt="Portfolio Image">
<h2 class="project-title">VIBGYOR</h2>
<p class="project-desc">Seven different games are arranged in seven different counters and winners of each event will be awarded.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-4" data-myorder="EEE">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/treasure.jpg" alt="" />
<figcaption>
<h2>TECHNICAL TREASURE HUNT</h2>
<p></p>
<a href="#portfolio28" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio28" class="white-popup mfp-hide">
<img src="img/portfolio/treasure.jpg" alt="Portfolio Image">
<h2 class="project-title">TECHNICAL TREASURE HUNT</h2>
<p class="project-desc">Different types of technical games to find hidden object or places by following a series of clues.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-4" data-myorder="EEE">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/drone.png" alt="" />
<figcaption>
<h2>DRONE RACE</h2>
<p></p>
<a href="#portfolio29" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio29" class="white-popup mfp-hide">
<img src="img/portfolio/drone.png" alt="Portfolio Image">
<h2 class="project-title">DRONE RACE</h2>
<p class="project-desc">This is an open event any pilot with a drone can join.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-4" data-myorder="EEE">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/eecircuitrix.jpg" alt="" />
<figcaption>
<h2>CIRCUITRIX</h2>
<p></p>
<a href="#portfolio30" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio30" class="white-popup mfp-hide">
<img src="img/portfolio/eecircuitrix.jpg" alt="Portfolio Image">
<h2 class="project-title">CIRCUITRIX</h2>
<p class="project-desc">Amp up your electrical knowledge and debug the given circuit.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-5" data-myorder="ME">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/fogo.jpg" alt="" />
<figcaption>
<h2>FOGO 2K17</h2>
<p></p>
<a href="#portfolio32" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio32" class="white-popup mfp-hide">
<img src="img/portfolio/fogo.jpg" alt="Portfolio Image">
<h2 class="project-title">FOGO 2K17</h2>
<p class="project-desc">A bike expo featuring most exotic two-wheelers currently ruling the roads.</p>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-5" data-myorder="ME">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/engineassembly.jpg" alt="" />
<figcaption>
<h2>ENGINE ASSEMBLY</h2>
<p></p>
<a href="#portfolio33" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio33" class="white-popup mfp-hide">
<img src="img/portfolio/engineassembly.jpg" alt="Portfolio Image">
<h2 class="project-title">ENGINE ASSEMBLY</h2>
<p class="project-desc">The time based challenge of assembling an automotive engine properly.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-5" data-myorder="ME">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/vehicledia.jpg" alt="" />
<figcaption>
<h2>VEHICLE DIAGNOSIS</h2>
<p></p>
<a href="#portfolio37" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio37" class="white-popup mfp-hide">
<img src="img/portfolio/vehicledia.jpg" alt="Portfolio Image">
<h2 class="project-title">VEHICLE DIAGNOSIS</h2>
<p class="project-desc">Testing of vehicles,batteries,smoke and refilling refridgerent etc.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-5" data-myorder="ME">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/pitstop.jpg" alt="" />
<figcaption>
<h2>PIT STOP</h2>
<p></p>
<a href="#portfolio38" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio38" class="white-popup mfp-hide">
<img src="img/portfolio/pitstop.jpg" alt="Portfolio Image">
<h2 class="project-title">PIT STOP</h2>
<p class="project-desc">Time limited competition of wheel assembly of a car.</p>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-5" data-myorder="ME">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/roborace.jpg" alt="" />
<figcaption>
<h2>ROBO RACE</h2>
<p></p>
<a href="#portfolio39" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio39" class="white-popup mfp-hide">
<img src="img/portfolio/roborace.jpg" alt="Portfolio Image">
<h2 class="project-title">ROBO RACE</h2>
<p class="project-desc">Race of remote controlled robotic car through a course of challenging route with obstacles of many varities.Shortest time wins.</p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-5" data-myorder="ME">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/parkcar.jpg" alt="" />
<figcaption>
<h2>PARK THE CAR</h2>
<p></p>
<a href="#portfolio40" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio40" class="white-popup mfp-hide">
<img src="img/portfolio/parkcar.jpg" alt="Portfolio Image">
<h2 class="project-title">PARK THE CAR</h2>
<p class="project-desc">Prove your driving skills on the challenging track only using reverse drive.Step on it ! you are on the clock.</p>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-5" data-myorder="ME">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/cadmaster.jpg" alt="" />
<figcaption>
<h2>CAD MASTER</h2>
<p></p>
<a href="#portfolio41" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio41" class="white-popup mfp-hide">
<img src="img/portfolio/cadmaster.jpg" alt="Portfolio Image">
<h2 class="project-title">CAD MASTER</h2>
<p class="project-desc">Competition in CAD software in which the winner is awarded by the means of quality of the drawing or objective given to them.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-5" data-myorder="ME">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/autoquiz.jpg" alt="" />
<figcaption>
<h2>AUTO QUIZ</h2>
<p></p>
<a href="#portfolio42" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio42" class="white-popup mfp-hide">
<img src="img/portfolio/autoquiz.jpg" alt="Portfolio Image">
<h2 class="project-title">AUTO QUIZ</h2>
<p class="project-desc">An exciting quiz competition from the world of automobiles with increasing levels of difficulty and fun.</p>
<a class="project-url btn" href="reg.php">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-5" data-myorder="ME">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/p-1.jpg" alt="" />
<figcaption>
<h2>WORKSHOP</h2>
<p></p>
<a href="#portfolio36" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio36" class="white-popup mfp-hide">
<img src="img/portfolio/p-1.jpg" alt="Portfolio Image">
<h2 class="project-title">WORKSHOP</h2>
<p class="project-desc"></p>
<a class="project-url btn" href="#">REGISTER</a>
</div>
<!--.Single item end-->
<!--Single portfolio item -->
<div class="col-sm-6 col-md-4 mix category-6" data-myorder="MCA">
<figure class="effect-roxy">
<img src="img/portfolio/thumb/p-1.jpg" alt="" />
<figcaption>
<h2>INDRIYA</h2>
<p>Expo</p>
<a href="#portfolio200" class="open-portfolio" >Explore</a>
</figcaption>
</figure>
</div>
<!-- Popup content -->
<div id="portfolio200" class="white-popup mfp-hide">
<img src="img/portfolio/p-1.jpg" alt="Portfolio Image">
<h2 class="project-title">INDRIYA</h2>
<p class="project-desc"></p>
<a class="project-url btn" href="reggroup.php">REGISTER</a>
</div>
<!--.Single item end-->