-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1016 lines (970 loc) · 38.3 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>
<!--[if IE 8]><html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8" />
<title>Crescendo 2019</title>
<meta
name="description"
content="Crescendo is the annual inter-collegiate technical festival orgnaised by Fr. Conceicao Rodrigues College of Engineering, Mumbai. Every year students from all over Mumbai channel their technical skills into interesting events and compete for the coveted trophies."
/>
<meta name="author" content="Ryan Dsilva" />
<!-- mobile specific metas
================================================== -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/vendor.css" />
<link rel="stylesheet" href="css/main.css" />
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body id="top">
<!-- header
================================================== -->
<header>
<div class="header-logo">
<a href="index.html">Crescendo</a>
</div>
<a id="header-menu-trigger" href="#0">
<span class="header-menu-text">Menu</span>
<span class="header-menu-icon"></span>
</a>
<nav id="menu-nav-wrap">
<a href="#0" class="close-button" title="close"><span>Close</span></a>
<h3>Crescendo.</h3>
<ul class="nav-list">
<li class="current">
<a class="smoothscroll" href="#home" title="">Home</a>
</li>
<li>
<a class="smoothscroll" href="#services" title="">Highlights</a>
</li>
<li><a class="smoothscroll" href="#portfolio" title="">Events</a></li>
<li><a class="smoothscroll" href="#contact" title="">Contact</a></li>
</ul>
<ul class="header-social-list">
<li>
<a href="https://instagram.com/frcrce_official/" target="_blank"
><i class="fa fa-instagram"></i
></a>
</li>
</ul>
</nav>
<!-- end #menu-nav-wrap -->
</header>
<!-- end header -->
<!-- home
================================================== -->
<section id="home">
<div class="overlay"></div>
<div class="home-content-table">
<div class="home-content-tablecell">
<div class="row">
<div class="col-twelve">
<h3 class="animate-intro">15th and 16th March</h3>
<h1 class="animate-intro">
Crescendo 2019
</h1>
<div class="more animate-intro">
<a class="smoothscroll button stroke" href="#about">
Explore
</a>
</div>
</div>
<!-- end col-twelve -->
</div>
<!-- end row -->
</div>
<!-- end home-content-tablecell -->
</div>
<!-- end home-content-table -->
<ul class="home-social-list">
<li class="animate-intro">
<a href="https://instagram.com/frcrce_official/" target="_blank"
><i class="fa fa-instagram"></i
></a>
</li>
</ul>
<!-- end home-social-list -->
<div class="scrolldown">
<a href="#about" class="scroll-icon smoothscroll">
Scroll Down
<i class="fa fa-long-arrow-right" aria-hidden="true"></i>
</a>
</div>
</section>
<!-- end home -->
<!-- about
================================================== -->
<section id="about">
<div class="row about-wrap">
<div class="col-full">
<div class="about-profile-bg"></div>
<div class="intro">
<h3 class="animate-this">About</h3>
<p class="lead animate-this">
<span>CResCEndo</span> is the annual inter-collegiate Technical
Festival of Fr. Conceicao Rodrigues College of Engineering, Bandra
which is platform that helps to showcase skills and originality
through innovative events throughout the two days.
</p>
</div>
</div>
<!-- end col-full -->
</div>
<!-- end about-wrap -->
</section>
<!-- end about -->
<!-- about
================================================== -->
<section id="services">
<div class="overlay"></div>
<div class="gradient-overlay"></div>
<div class="row narrow section-intro with-bottom-sep animate-this">
<div class="col-full">
<br />
<h3>What's Happening This Year</h3>
<h1>Highlights</h1>
</div>
<!-- end col-full -->
</div>
<!-- end row -->
<div class="row services-content">
<div class="block-1-2 services-list block-tab-full group">
<div class="bgrid service-item animate-this">
<span class="icon"><i class="icon-dollar"></i></span>
<div class="service-content">
<h3 class="h05">Amazing Cash Prizes</h3>
<p>
Total cash prizes worth more than Rs. 1,00,000/-
</p>
</div>
</div>
<!-- end bgrid -->
<div class="bgrid service-item animate-this">
<span class="icon"><i class="icon-move"></i></span>
<div class="service-content">
<h3 class="h05">Exciting Events</h3>
<p>
Wide variety of technical and fun events to choose from.
</p>
</div>
</div>
<!-- end bgrid -->
<div class="bgrid service-item animate-this">
<span class="icon"><i class="icon-trophy"></i></span>
<div class="service-content">
<h3 class="h05">Prestigious Trophies</h3>
<p>
Three trophies to be won: Crescendo Trophy, Best College
(External), Best Participant
</p>
</div>
</div>
<!-- end bgrid -->
<div class="bgrid service-item animate-this">
<span class="icon"><i class="icon-star"></i></span>
<div class="service-content">
<h3 class="h05">Great Opportunities</h3>
<p>
Excellent platform provided for Technical Projects and Ideas
</p>
</div>
</div>
<!-- end bgrid -->
</div>
<!-- end services-list -->
</div>
<!-- end services-content -->
</section>
<!-- end services -->
<!-- portfolio
================================================== -->
<section id="portfolio">
<div class="intro-wrap">
<div class="row narrow section-intro with-bottom-sep animate-this">
<div class="col-twelve">
<br />
<h3>Mix of Technical and Non-Technical Events</h3>
<h1>Events.</h1>
<a
class="button stroke"
href="./files/Crescendo-Brochure.pdf"
target="_blank"
>
Download Brochure
</a>
<a
class="button stroke"
href="./files/rules.pdf"
target="_blank"
>
Download Rule Book
</a>
</div>
</div>
<!-- end row section-intro -->
</div>
<!-- end intro-wrap -->
<div class="cards">
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Technical Project Competition</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
State-level project presentation competition. This is categorized
into two categories: Hardware and Software. The competition is
further categorized into two sections, separate for Diploma
candidates and Undergraduate candidates.
<br />
<a href="https://goo.gl/forms/a3ayG6JKNyKO6Nbq1">Link to Submit Projects</a>
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Ricky Stanley: 9987148766</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Hackathon</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
One day Hackathon where teams from all over the city will channel
their coding skills to solve problem statements and come up with a
working prototype of the solution.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Ryan Dsilva: 7045475597</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Idea Competition</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Participants have to use their creativity to develop innovative,
cost-effective and practical solutions in term of poster
presentations.
<br />
<a href="https://ecellcrce.github.io/Proposal_final.doc">Link to Proposal Format</a>
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Christina Michael: 8369956064</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Line Follower Bot Competition</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Teams will compete in two rounds where the aim is to complete the
course laid out for the bot in the shortest possible time. Ten
teams will proceed to Round 2 and compete for the top spot.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Feba Rachel: 9022060638</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Code Swapping</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
A group of two participants write solutions for 2 problems
simultaneously. Each participant writes the program for 30 seconds
after which they switch positions with each other.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Anuj Singh: 8169711391</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Capture The Flag</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Participants will be provided with a program output and the code
for it which will be missing code in certain places or have
incorrect syntax. Participants have to find the solution with the
given restrictions.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Rathil Patel: 9833004406</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>TechnoTalks</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Each team has to find a solution to the given industrial problem
using magazines and books that will be provided in the event or
access our college library. The team has to make a PowerPoint
presentation on their solution which will be judged on their
content, presentation skills, creativity, etc.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Chirayu Jha: 9833576395</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Re-search the research</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Participants(individual / group of 3 max) will be allowed to
choose research papers on a topic to read and summarize in the
form of a PowerPoint presentation (maximum 5 slides).
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Harshal: 9967967820</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>WebMaster</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Showcase your talent by making creative and unique websites in
accordance with the provided problem statement in 1 hour. Only
front-end design has to be developed.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Yogendra Yatnalkar: 9167483290</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Linux Master</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Participants will be asked to perform a series of tasks on a
Linux-based Operating System and will be graded on speed.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Yogendra Yatnalkar: 9167483290</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Circusign</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Participants have to recreate a circuit from memory with the
required output from a displayed schematic diagram which will be
shown to five teams at a time and then hidden.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Peter Dsouza: 9757265637</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Blind Coading</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Participants have to write a solution for the given problem
statement with the monitor screen turned off. Participant
finishing at the lowest time will be the winner.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Christina: 8879056883</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Suspension Bridge</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
The participants have to make a suspended bridge with the given
materials provided across a certain distance. Materials will be
ice cream sticks, fevicol and thread.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Neeraj Karande: 9766300033</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>CAD Wars</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Participants have to design 2D, 3D drawing on CAD software (Solid
Works, NX, AutoCAD) within 45 minutes based on the problem
statement.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Akshay: 9619226018</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Paper Planes</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Each participant will be given 3 sheets of paper. And a hand book
on different ways of making a paper plane. The participant has to
make the most creative and effective paper plane and must clear
all the 4 tasks with a single plane.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Khushi Mehta: 9004624421</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Fasten the Fastners</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Participants have to fasten the maximum number of nuts, bolts and
washers in 1 min.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Gaurav: 9082580816</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Counter Strike</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Team LAN gaming competition on Counter-Strike 1.6.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Amandeep Singh Saini: 7977101658</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Image Capture</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
An Image from Google will be saved as the final image and the
contestants will be provided with small hints in the form of image
descriptions. The contestants have to use the browser and the
hints provided to find the image.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Gouri Kanitkar: 9820922450</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Quiz Up</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
With a wide horizon of topics from Physics, Chemistry, Circuits,
Strength of Materials, Fluid Mechanics, Data Structures, Game of
Thrones, Friends, etc. the participants will select the desired
topic and try to answer the maximum number of questions rightly in
the least time.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Glen Dsilva: 9867510253</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Tech Pong</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
It’s a fun version of Beer Pong and Dumb charades with a technical
twist.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Alden: 8689868744</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>PUBG Gaming</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Have the chance to strike down your opponents and announce
yourself as the sole leaders of this game and grab the Chicken
Dinner.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Kenneth: 7738285556</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Escape Room</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
A physical adventure game in which players solve a series of
puzzles, riddles, circuitry and codes using clues, hints, and
strategy to complete the objectives at hand.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Davina Pinto: 7208608192</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Footpool</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Footpool is a combination of football and pool. The game has to be
played individually wherein every player will be given a time
limit of 1.5 minutes ie. 90 seconds. Each participant has to pot 6
balls into different pockets (using their feet only) using 1
striker ball.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Cassia Vaz: 9004424698</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Photography Contest</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
The classic photography contest with the theme, “Life of Mumbai”.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Lenis Rodrigues: 7040157757</p>
</div>
</div>
</div>
<!-- CARD -->
<div class=" card [ is-collapsed ] ">
<div class="card__inner [ js-expander ]">
<span>Drone Flight Simulator</span>
<i class="fa fa-plus-circle"></i>
</div>
<div class="card__expander">
<i class="fa fa-close [ js-collapser ]"></i>
<div class="card__expander__content">
Participants can fly drones in a simulated environment and compete
to get the least lap time. All necessary equipment will be
provided.
<br />
<h4 class="h04" style="color: white; margin-bottom: 0;">
Contact:
</h4>
<p style="padding-bottom: 0;">Sumedh Deshpande: 9029527283</p>
</div>
</div>
</div>
<!-- CARD -->
</div>
</section>
<!-- stats ================================================== -->
<section id="clients">
<div class="row animate-this">
<div class="col-twelve">
<p class="lead text-center">Participating Chapters</p>
<div class="client-lists owl-carousel">
<div><img src="images/councils/acm.png" alt="ACM" /></div>
<div><img src="images/councils/asme.png" alt="ASME" /></div>
<div><img src="images/councils/csi.png" alt="CSI" /></div>
<div><img src="images/councils/mav.png" alt="Mavericks" /></div>
<div><img src="images/councils/moz.png" alt="Mozilla" /></div>
<div><img src="images/councils/rc.png" alt="Rotaract" /></div>
<div><img src="images/councils/sae.png" alt="SAE" /></div>
<div><img src="images/councils/sme.png" alt="SME" /></div>
<div><img src="images/councils/tedx.png" alt="TEDx" /></div>
<div><img src="images/councils/ecell.png" alt="ECell" /></div>
<div><img src="images/councils/ieee.jpeg" alt="IEEE" /></div>
<div><img src="images/councils/cl.png" alt="CodeLabs" /></div>
</div>
</div>
<!-- end col-twelve -->
</div>
<!-- end row -->
</section>
<!-- end clients -->
<!-- contact
================================================== -->
<section id="contact">
<div class="overlay"></div>
<div class="row narrow section-intro with-bottom-sep animate-this">
<div class="col-twelve">
<h3>Contact</h3>
<h1>Get In Touch.</h1>
</div>
</div>
<!-- end section-intro -->
<div class="row contact-content">
<div class="col-seven tab-full animate-this">
<h5>Send Us A Message</h5>
<!-- form -->
<form name="contactForm" id="contactForm" method="post" netlify>
<div class="form-field">
<input
name="contactName"
type="text"
id="contactName"
placeholder="Name"
minlength="2"
required
/>
</div>
<div class="row">
<div class="col-six tab-full">
<div class="form-field">
<input
name="contactEmail"
type="email"
id="contactEmail"
placeholder="Email"
required
/>
</div>
</div>
<div class="col-six tab-full">
<div class="form-field">
<input
name="contactSubject"
type="text"
id="contactSubject"
placeholder="Subject"
required
/>
</div>
</div>
</div>
<div class="form-field">
<textarea
name="contactMessage"
id="contactMessage"
placeholder="message"
rows="10"
cols="50"
required
></textarea>
</div>
<div class="form-field">
<button class="submitform" type="submit">Submit</button>
<div id="submit-loader">
<div class="text-loader">Sending...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</form>
<!-- end form -->
<!-- contact-warning -->
<div id="message-warning"></div>
<!-- contact-success -->
<div id="message-success">
<i class="fa fa-check"></i>Your message was sent, Thank you!<br />
</div>
</div>
<!-- end col-seven -->
<div class="col-four tab-full contact-info end animate-this">
<h5>Contact Information</h5>
<div class="cinfo">
<h6>Where to Find Us</h6>
<p>
Fr. Conceicao Rodrigues College of Engineering<br />
Bandstand, Bandra West<br />
Mumbai 400050
</p>
</div>
<!-- end cinfo -->
<div class="cinfo">
<h6>Email Us At</h6>
<p>
crce.council@gmail.com
</p>
</div>
<!-- end cinfo -->
<div class="cinfo">
<h6>Call Us At</h6>
<p>
Ryan Dsilva: (+91) 7045475597<br />
Aradhya D. : (+91) 9920783448 <br />
Sanjana Mahadik: (+91) 9819751299
</p>
</div>
</div>
<!-- end cinfo -->
</div>
<!-- end row contact-content -->
</section>
<!-- end contact -->
<!-- footer
================================================== -->
<footer>
<div class="footer-main">
<div class="row">
<div class="col-five tab-full footer-about">
<h4 class="h05">Crescendo.</h4>
<p class="text-left">
CResCEndo 2019 a platform for all the students to showcase their
skills and originality by puzzling over the innovative tasks and
events we have throughout the two days. This iteration consists
some of our most loved events from last year, and adding some new
challenges as well.
</p>
</div>
<!-- end footer-about -->
<div class="col-three tab-full footer-social">
<h4 class="h05">Follow Us.</h4>
<ul class="list-links">
<li>
<a href="https://instagram.com/frcrce_official/">Instagram</a>
</li>
</ul>
</div>
<!-- end footer-social -->
<div class="col-four tab-full footer-map">
<h4 class="h05">Map View</h4>
<div style="overflow:hidden;width: 270px;position: relative;">
<iframe
width="270"
height="200"
src="https://maps.google.com/maps?width=300&height=200&hl=en&q=Fr.%20Conceicao%20Rodrigues%20College%20of%20Engineering+(Fr.%20Conceicao%20Rodrigues%20College%20of%20Engineering)&ie=UTF8&t=&z=16&iwloc=B&output=embed"
frameborder="0"
scrolling="no"
marginheight="0"
marginwidth="0"
></iframe
><br />
</div>
</div>
<!-- end row -->
</div>
<!-- end footer-main -->
</div>
<div class="footer-bottom">
<div class="row">
<div class="col-twelve">
<div class="copyright">
<span>© Students' Council CRCE 2019.</span>
</div>
</div>
</div>
</div>
<!-- end footer-bottom -->
<div id="go-top">
<a class="smoothscroll" title="Back to Top" href="#top">
<i class="fa fa-long-arrow-up" aria-hidden="true"></i>
</a>
</div>
</footer>
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script>
var $cell = $(".card");
//open and close card when clicked on card
$cell.find(".js-expander").click(function() {
var $thisCell = $(this).closest(".card");
if ($thisCell.hasClass("is-collapsed")) {
$cell
.not($thisCell)
.removeClass("is-expanded")
.addClass("is-collapsed")
.addClass("is-inactive");
$thisCell.removeClass("is-collapsed").addClass("is-expanded");
if ($cell.not($thisCell).hasClass("is-inactive")) {
//do nothing
} else {
$cell.not($thisCell).addClass("is-inactive");
}