forked from josephv7/Saavishkar_RSET
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1156 lines (917 loc) · 45.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="author" content="RoundMelon Studio" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>SAAVISHKAR 2018</title>
<meta content="An Inter School Exhibition for Students to showcase and explore their creativity in Science & Mathematics."
name="description">
<meta content="SAAVISHKAR 2018" name="author">
<meta name="robots" content="index, follow">
<link rel="icon" type="image/ico" href="https://www.rajagiritech.ac.in/Home/images/favicon.ico">
<meta property="og:title" content="SAAVISHKAR 2018">
<meta property="og:site_name" content="SAAVISHKAR 2018 | NOVEMBER 17, 2018 | RSET">
<meta property="og:url" content="https://www.rajagiritech.ac.in/Home/saavishkar2018/">
<meta property="og:title" content="">
<meta property="og:image" content="https://www.rajagiritech.ac.in/Home/saavishkar2018/images/logos/Saav_logo.png">
<meta property="og:description" content="An Inter School Exhibition for Students to showcase and explore their creativity in Science & Mathematics.">
<meta name="title" content="SAAVISHKAR 2018 | November 17 2018 | RSET | Kochi">
<meta name="description" content="An Inter School Exhibition for Students to showcase and explore their creativity in Science & Mathematics.">
<meta name="copyright" content="RSET">
<meta name="rating" content="General">
<meta name="coverage" content="Worldwide">
<meta name="creator" content="RSET">
<meta itemprop="name" content="RSET">
<meta itemprop="image" content="https://www.rajagiritech.ac.in/Home/saavishkar2018/images/logos/Saav_logo.png">
<meta name="robots" content="index,follow">
<meta itemprop="keywords" content="RSET, Rajagiri, Engineering, RSET NAAC, Kochi, Kakkanad, Ernakulam, KTU, CBSE, ICSE, school, TEDxRSET, college">
<meta name="twitter:domain" content="https://www.rajagiritech.ac.in/Home/saavishkar2018/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@RajagiriSET">
<meta name="twitter:creator" content="@RajagiriSET">
<meta name="twitter:title" content="SAAVISHKAR 2018 | RSET">
<meta name="twitter:description" content="SAAVISHKAR 2018 | NOVEMBER 17 2018">
<meta name="twitter:image" content="https://www.rajagiritech.ac.in/Home/saavishkar2018/images/logos/Saav_logo.png">
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Event",
"name": "SAAVISHKAR 2018 | RSET",
"organizer": "Rajagiri School Of Engineering & Technology",
"location": {
"@type": "Place",
"name": "RSET, Kochi",
"address": {
"@type": "PostalAddress",
"addressCountry": "India",
"addressLocality": "Kochi, Kerala",
"postalCode": "682039",
"streetAddress": "Rajagiri Valley, Kakkanad"
},
"url": "https://www.rajagiritech.ac.in/Home/saavishkar2018/"
}
}
</script>
<link href="css/royal_preloader.css" rel="stylesheet">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="js/parallax.min.js"></script>
<script type="text/javascript" src="js/royal_preloader.min.js"></script>
<script type="text/javascript">
Royal_Preloader.config({
mode: 'number',
showProgress: false,
background: '#1d1d1d'
});
</script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/ionicons.min.css" rel="stylesheet">
<link href="css/pe-icon-7-stroke.css" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/logoiconfont.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" title="main-css">
<link rel="alternate stylesheet" type="text/css" href="css/colors/blue.css" title="blue">
<link rel="alternate stylesheet" type="text/css" href="css/colors/green.css" title="green">
<link rel="alternate stylesheet" type="text/css" href="css/colors/orange.css" title="orange">
<link rel="alternate stylesheet" type="text/css" href="css/colors/red.css" title="red">
<link rel="alternate stylesheet" type="text/css" href="css/colors/orangelight.css" title="orangelight">
<link rel="alternate stylesheet" type="text/css" href="css/colors/pinkish.css" title="pinkish">
<link rel="alternate stylesheet" type="text/css" href="css/colors/seagul.css" title="seagul">
<link rel="alternate stylesheet" type="text/css" href="css/base-light.css" title="base-light">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-128355447-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-128355447-1');
</script>
</head>
<body class="royal_preloader" data-spy="scroll" data-target=".navbar" data-offset="70">
<div id="royal_preloader"></div>
<header>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="row">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"
aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand scroll-link" href="#home" data-id="home"><img src="images/logos/Saav_logo.png" width="170px"
height="45px"></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#home" data-id="home" class="scroll-link">Home</a></li>
<li><a href="#services" data-id="services" class="scroll-link">Events</a></li>
<li><a href="images/instructions_to_students.pdf" download="Instructions.pdf">Instructions</a></li>
<li><a href="#guidelines" data-id="guidelines" class="scroll-link">Rules & Guidelines</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSexJggkvypWLyJ_ppEkwdcWxNTQApC8KdU3nFbw587x23gAuA/viewform"
target="blank">Register</a></li>
<li><a href="#work" data-id="work" class="scroll-link">Gallery</a></li>
<li><a href="images/brochure.jpg" target="blank">Brochure</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<div class="jumbotron jumbotron-main" id="home">
<div id="particles-js"></div>
<div id="mybutton">
<button type="button" class="feedback" onclick="javascript:location.href='https://docs.google.com/forms/d/e/1FAIpQLSexJggkvypWLyJ_ppEkwdcWxNTQApC8KdU3nFbw587x23gAuA/viewform'" target="_blank">Register</a></button>
</div>
<div id="mybutton1">
<button type="button" class="feedback" onclick="javascript:location.href='images/instructions_to_students.pdf'" target="_blank">Instructions</a></button>
</div>
<div id="mybutton2">
<button type="button" class="feedback" onclick="javascript:location.href='images/football_fixture.pdf'" target="_blank">Football Fixtures</a></button>
</div>
<div id="mybutton3">
<button type="button" class="feedback" onclick="javascript:location.href='images/basketball_fixture.pdf'" target="_blank">Basketball Fixtures</a></button>
</div>
<div id="mybutton4">
<button type="button" class="feedback" onclick="javascript:location.href='images/accomodation.pdf'" target="_blank">Accomodation</a></button>
</div>
<div id="mybutton5">
<button type="button" class="feedback" onclick="javascript:location.href='images/bus_routes.pdf'" target="_blank">Bus Routes</a></button>
</div>
<div class="container center-vertically-holder">
<div class="center-vertically">
<div class="col-sm-8 col-sm-offset-2 col-lg-6 col-lg-offset-3 text-center">
<h1 class="scaleReveal">
<strong>SAAVISHKAR 2018</strong>
</h1>
<hr class="bottomReveal">
<p class="bottomReveal">Learn . Share . Explore</p>
<p class="bottomReveal"><strong>17th November 2018</strong></p>
<p class="bottomReveal">Exciting Prizes worth ₹ 2.5 lakhs</p>
<p class="bottomReveal">For 11th & 12th Students (Any Board)</p>
<br><br>
<a href="#ideology" data-id="ideology" class="scroll-link">
<div class="scroll-indicator rotateBottomReveal">
<span class="ion-mouse"></span><br>
<span class="ion-android-arrow-down arrow-scroll-indicator"></span>
</div>
</a>
</div>
</div>
</div>
</div>
<section id="ideology">
<div id="hello-intro" class="pt60 pb60">
<div class="container">
<div class="row">
<div class="col-lg-2 col-sm-3">
<h2 class="no-margin rotateLeftReveal">What?</h2>
</div>
<div class="col-lg-10 col-sm-9 mt30-xs">
<h3 class="no-margin rightReveal">An Inter School Exhibition for Students to showcase and explore their
creativity in Science & Mathematics.</h3>
</div>
</div>
</div>
</div>
</section>
<section id="services" class="background2 section-padding">
<div class="container">
<div class="row">
<div class="col-xs-12 section-title text-center">
<h2>Events</h2>
<span class="section-divider"></span>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<div class="services-box leftReveal">
<span class="pe-7s-rocket services-icon"></span>
<h3 class="service-name">Science Working Model</h3>
<p class="text-small">First - ₹15,000<br>Second - ₹10,000<br>Third - ₹5,000</p>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#item1-services">Info</button>
<button type="button" class="btn btn-default mt10" data-toggle="modal"><a href="https://docs.google.com/forms/d/e/1FAIpQLSexJggkvypWLyJ_ppEkwdcWxNTQApC8KdU3nFbw587x23gAuA/viewform"
target="blank">Register</a></button>
</div>
</div>
<div class="modal fade" id="item1-services" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-rocket services-icon-2"></span>
<h4 class="service-title">Science Working Model</h4>
</div>
<div class="modal-body">
<p>
<h5 class="heading-1 modal-heading mb20">Event Details</h5>
<P>Saavishkar is sure to be at the forefront of innovation and inspire the budding scientists to
explore their passions and showcase their dream working models. The best way to showcase an
idea is by creating a working model of the same which will make it easier to convey the idea
and its implementation.</P><BR>
<ul>
<li><p>Maximum members per group – 4</p></li>
<li><p>Prize Money</p></li>
<ul>
<li><p>First Prize – Rs. 15,000</p></li>
<li><p>Second Prize – Rs. 10,000</p></li>
<li><p>Third Prize – Rs. 5,000</p></li>
</ul>
</ul>
<h5 class="heading-1 modal-heading mb20">General Rules</h5>
<ul><li><p>Commercially prepared kits or models cannot constitute a major portion of the project.</p></li>
<li><p>No hazardous or toxic materials are to be used</p></li>
<li><p>Standard laboratory safety rules must be observed</p></li></ul>
<h5 class="heading-1 modal-heading mb20">Event Rules</h5>
<ul>
<li><p>To convert a Science idea into a practical reality, and make it possible to explain or prove the
idea.</p></li>
<li><p>The model should be made in such a way that the candidate can explain and clear any doubt
regarding its construction.</p></li></ul>
<h5 class="heading-1 modal-heading mb20">Judging Criteria</h5>
<ul>
<li><p>Quality and Impressiveness</p></li>
<li><p>Social Relevance</p></li>
<li><p>Complexity of Scientific Principle</p></li>
<li><p>Presentation skill</p></li>
<li><p>Q & A about the model, principle</p></li></ul>
</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30-xs">
<div class="services-box topReveal">
<span class="pe-7s-science services-icon"></span>
<h3 class="service-name">Science Still Model</h3>
<p class="text-small">First - ₹15,000<br>Second - ₹10,000<br>Third - ₹5,000</p>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#item2-services">Info</button>
<button type="button" class="btn btn-default mt10" data-toggle="modal"><a href="https://docs.google.com/forms/d/e/1FAIpQLSexJggkvypWLyJ_ppEkwdcWxNTQApC8KdU3nFbw587x23gAuA/viewform"
target="blank">Register</a></button>
</div>
</div>
<div class="modal fade" id="item2-services" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-science services-icon-2"></span>
<h4 class="service-title">Science Still Model</h4>
</div>
<div class="modal-body">
<p>
<h5 class="heading-1 modal-heading mb20">Event Details</h5>
<P>‘The science of today is technology of tomorrow.’- Edward Teller
It is very important for the students to explore and engage in enquiry based learning. Science
exhibitions provide a platform whereby students indulge in hands on activities and project
making. This surely nurtures their inquisitive minds and unleashes creativity.
In the still model making competition, the young scientists get a chance to showcase their ideas
by creating a three dimensional model of the mathematical or scientific concept they have in
mind. This will provide hands-on experience for them which will help them to research, create,
collaborate and communicate.</P><br>
<ul>
<li><p>Maximum members per group – 4</p></li>
<li><p>Prize Money</p></li>
<ul>
<li><p>First Prize – Rs. 15,000</p></li>
<li><p>Second Prize – Rs. 10,000</p></li>
<li><p>Third Prize – Rs. 5,000</p></li>
</ul>
</ul>
<h5 class="heading-1 modal-heading mb20">General Rules</h5>
<ul><li><p>Commercially prepared kits or models cannot constitute a major portion of the project.</p></li>
<li><p>No hazardous or toxic materials are to be used</p></li>
<li><p>Standard laboratory safety rules must be observed</p></li></ul>
<h5 class="heading-1 modal-heading mb20">Event Rules</h5>
<ul>
<li><p>Present any Science concept by making a suitable three dimensional model using
geometrical shapes/objects.</p></li>
<li><p>The participants should be able to answer every aspect relating to the model and its theory.</p></li></ul>
<h5 class="heading-1 modal-heading mb20">Judging Criteria</h5>
<ul>
<li><p>Quality and Impressiveness</p></li>
<li><p>Social Relevance</p></li>
<li><p>Complexity of Scientific Principle</p></li>
<li><p>Presentation skill</p></li>
<li><p>Q & A about the model, principle</p></li></ul>
</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30-sm mt30-xs">
<div class="services-box rightReveal">
<span class="pe-7s-news-paper services-icon"></span>
<h3 class="service-name">General Quiz</h3>
<p class="text-small">First - ₹15,000<br>Second - ₹10,000<br>Third - ₹5,000</p>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#item3-services">Info</button>
<button type="button" class="btn btn-default mt10" data-toggle="modal"><a href="https://docs.google.com/forms/d/e/1FAIpQLSexJggkvypWLyJ_ppEkwdcWxNTQApC8KdU3nFbw587x23gAuA/viewform"
target="blank">Register</a></button>
</div>
</div>
<div class="modal fade" id="item3-services" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-news-paper services-icon-2"></span>
<h4 class="service-title">General Quiz</h4>
</div>
<div class="modal-body">
<p>
<h5 class="heading-1 modal-heading mb20">Event Details</h5>
<p>The objective of this quizzing competition is to encourage students to look beyond their textual
knowledge and establish a relationship between theory and application of the learnt concepts.
It is easier said than done nonetheless.</p><br>
<ul>
<li><p>Maximum members per group – 2</p></li>
<li><p>Prize Money</p></li>
<ul>
<li><p>First Prize – Rs. 15,000</p></li>
<li><p>Second Prize – Rs. 10,000</p></li>
<li><p>Third Prize – Rs. 5,000</p></li>
</ul>
</ul>
<h5 class="heading-1 modal-heading mb20">Event Rules</h5>
<ul><li><p>Registartion should be completed on or before 12/11/2018.</p></li>
<li><p>Preliminary round will be conducted to select the finalists</p></li>
<li><p>This event will be considered for Saavishkar Trophy</p></li>
<li><p>Participation points are awarded for the number of categories in which the institution is participating
and not for the number of teams participating in each category.</p></li>
</ul>
<h5 class="heading-1 modal-heading mb20">Point Criteria</h5>
<ul>
<li><p>First - 50</p></li>
<li><p>Second - 30</p></li>
<li><p>Third - 20</p></ul>
</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30">
<div class="services-box leftReveal">
<span class="pe-7s-graph1 services-icon"></span>
<h3 class="service-name">Mathematics Still Model</h3>
<p class="text-small">First - ₹15,000<br>Second - ₹10,000<br>Third - ₹5,000</p>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#item4-services">Info</button>
<button type="button" class="btn btn-default mt10" data-toggle="modal"><a href="https://docs.google.com/forms/d/e/1FAIpQLSexJggkvypWLyJ_ppEkwdcWxNTQApC8KdU3nFbw587x23gAuA/viewform"
target="blank">Register</a></button>
</div>
</div>
<div class="modal fade" id="item4-services" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-graph1 services-icon-2"></span>
<h4 class="service-title">Mathematics Still Model</h4>
</div>
<div class="modal-body">
<p>
<h5 class="heading-1 modal-heading mb20">Event Details</h5>
<p>‘The science of today is technology of tomorrow.’- Edward Teller
It is very important for the students to explore and engage in enquiry based learning. Science
exhibitions provide a platform whereby students indulge in hands on activities and project
making. This surely nurtures their inquisitive minds and unleashes creativity.
In the still model making competition, the young scientists get a chance to showcase their ideas
by creating a three dimensional model of the mathematical or scientific concept they have in
mind. This will provide hands-on experience for them which will help them to research, create,
collaborate and communicate.</p><br>
<ul>
<li><p>Maximum members per group – 4</p></li>
<li><p>Prize Money</p></li>
<ul>
<li><p>First Prize – Rs. 15,000</p></li>
<li><p>Second Prize – Rs. 10,000</p></li>
<li><p>Third Prize – Rs. 5,000</p></li>
</ul>
</ul>
<h5 class="heading-1 modal-heading mb20">General Rules</h5>
<ul><li><p>Commercially prepared kits or models cannot constitute a major portion of the project.</p></li>
<li><p>No hazardous or toxic materials are to be used</p></li>
<li><p>Standard laboratory safety rules must be observed</p></li></ul>
<h5 class="heading-1 modal-heading mb20">Event Rules</h5>
<ul>
<li><p>Present any mathematical concept by making a suitable three dimensional model using
geometrical shapes/objects.</p></li>
<li><p>The participants should be able to answer every aspect relating to the model and its theory.</p></li></ul>
<h5 class="heading-1 modal-heading mb20">Judging Criteria</h5>
<ul>
<li><p>Quality and Impressiveness</p></li>
<li><p>Social Relevance</p></li>
<li><p>Complexity of Scientific Principle</p></li>
<li><p>Presentation skill</p></li>
<li><p>Q & A about the model, principle</p></li></ul>
</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30">
<div class="services-box bottomReveal">
<span class="pe-7s-plugin services-icon"></span>
<h3 class="service-name">Mathematics Working Model</h3>
<p class="text-small">First - ₹15,000<br>Second - ₹10,000<br>Third - ₹5,000</p>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#item5-services">Info</button>
<button type="button" class="btn btn-default mt10" data-toggle="modal"><a href="https://docs.google.com/forms/d/e/1FAIpQLSexJggkvypWLyJ_ppEkwdcWxNTQApC8KdU3nFbw587x23gAuA/viewform"
target="blank">Register</a></button>
</div>
</div>
<div class="modal fade" id="item5-services" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-plugin services-icon-2"></span>
<h4 class="service-title">Mathematics Working Model</h4>
</div>
<div class="modal-body">
<p>
<h5 class="heading-1 modal-heading mb20">Event Details</h5>
<p>Saavishkar is sure to be at the forefront of innovation and inspire the budding scientists to
explore their passions and showcase their dream working models. The best way to showcase an
idea is by creating a working model of the same which will make it easier to convey the idea
and its implementation.</p><br>
<ul>
<li><p>Maximum members per group – 4</p></li>
<li><p>Prize Money</p></li>
<ul>
<li><p>First Prize – Rs. 15,000</p></li>
<li><p>Second Prize – Rs. 10,000</p></li>
<li><p>Third Prize – Rs. 5,000</p></li>
</ul>
</ul>
<h5 class="heading-1 modal-heading mb20">General Rules</h5>
<ul><li><p>Commercially prepared kits or models cannot constitute a major portion of the project.</p></li>
<li><p>No hazardous or toxic materials are to be used</p></li>
<li><p>Standard laboratory safety rules must be observed</p></li></ul>
<h5 class="heading-1 modal-heading mb20">Event Rules</h5>
<ul>
<li><p>To convert a mathematical idea into a practical reality, and make it possible to explain or
prove the idea.</p></li>
<li><p>The model should be made in such a way that the candidate can explain and clear any doubt
regarding its construction.</p></li></ul>
<h5 class="heading-1 modal-heading mb20">Judging Criteria</h5>
<ul>
<li><p>Quality and Impressiveness</p></li>
<li><p>Social Relevance</p></li>
<li><p>Complexity of Scientific Principle</p></li>
<li><p>Presentation skill</p></li>
<li><p>Q & A about the model, principle</p></li></ul>
</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30">
<div class="services-box rightReveal">
<span class="pe-7s-cup services-icon"></span>
<h3 class="service-name">Sports</h3>
<p class="text-small">Football & Basketball<br><strong>Rajagiri Champions Trophy</strong> with Cash Prize</p>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#item6-services">Info</button>
<button type="button" class="btn btn-default mt10" data-toggle="modal"><a href="https://docs.google.com/forms/d/e/1FAIpQLSexJggkvypWLyJ_ppEkwdcWxNTQApC8KdU3nFbw587x23gAuA/viewform"
target="blank">Register</a></button>
</div>
</div>
<div class="modal fade" id="item6-services" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-cup services-icon-2"></span>
<h4 class="service-title">Sports</h4>
</div>
<div class="modal-body">
<h5 class="heading-1 modal-heading mb20">Event Details</h5>
<p>Team sports are good for learning accountability, dedication, and leadership, among many
other traits. Putting it all together by playing a sport is a winning combination. Playing and
excelling in sports also teaches kids the importance of hard work, perseverance, learning from
failure, and importance of grasping opportunities.
A basketball and football tournament is also being conducted as a part of Saavishkar keeping
these benefits in mind.</p>
<h5 class="heading-1 modal-heading mb20">Prize</h5>
<p><strong>Rajagiri Champions Trophy</strong> with Cash Prize.</p>
<h5 class="heading-1 modal-heading mb20">Football</h5>
<p>1. First Playing 11
<br>2. Maximum 7 Substitutions</p>
<h5 class="heading-1 modal-heading mb20">Basketball</h5>
<p>1. First Playing 5
<br>2. Maximum 5 Substitutions</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30">
<div class="services-box rightReveal">
<span class="pe-7s-box1 services-icon"></span>
<h3 class="service-name">Workshops</h3>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#item7-services">Info</button>
</div>
</div>
<div class="modal fade" id="item7-services" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-box1 services-icon-2"></span>
<h4 class="service-title">Workshop</h4>
</div>
<div class="modal-body">
<p>1. Computer Aided Design
<br>2. Cyber Security
<br>3. Arduino Programming
<br>4. Robotics</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30">
<div class="services-box rightReveal">
<span class="pe-7s-light services-icon"></span>
<h3 class="service-name">Training Programs</h3>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#item8-services">Info</button>
</div>
</div>
<div class="modal fade" id="item8-services" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-light services-icon-2"></span>
<h4 class="service-title">Training Programs</h4>
</div>
<div class="modal-body">
<p>1. Entrprenurship Development
<br>2. Personality Development
<br>3. Leadership Development
<br>4. FablabTraining
</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30">
<div class="services-box rightReveal">
<span class="pe-7s-like2 services-icon"></span>
<h3 class="service-name">Hands On Sessions</h3>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#item9-services">Info</button>
</div>
</div>
<div class="modal fade" id="item9-services" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-like2 services-icon-2"></span>
<h4 class="service-title">Hands On Sessions</h4>
</div>
<div class="modal-body">
<p>1. LED Lamp Assembly
<br>2. Python Programming
<br>3. Web Designing
<br>4. Computer Aided Manufacturing</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="ourcount" class="section-padding parallax-window our-count overlay" data-parallax="scroll" data-image-src="images/count_bg.jpg">
<div class="container">
<div class="row mb30">
<div class="section-title col-sm-8 col-sm-offset-2 col-lg-6 col-lg-offset-3 text-center">
<h2>Past Statistics</h2>
<span class="section-divider mb15"></span>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-3 item leftReveal">
<span class="pe-7s-users services-icon"></span>
<h2 class="timer mb5" data-from="1" data-to="2635" data-refresh-interval="20">1</h2>
<p class="no-margin" style="color:white">Students</p>
</div>
<div class="col-sm-6 col-md-3 item mt30-xs rightReveal">
<span class="pe-7s-study services-icon"></span>
<h2 class="timer mb5" data-from="1" data-to="98" data-refresh-interval="20">1</h2>
<p class="no-margin" style="color:white">Schools</p>
</div>
<div class="col-sm-6 col-md-3 item mt30-xs mt30-sm leftReveal">
<span class="pe-7s-star services-icon"></span>
<h2 class="timer mb5" data-from="1" data-to="7" data-refresh-interval="20">1</h2>
<p class="no-margin" style="color:white">Major Events</p>
</div>
<div class="col-sm-6 col-md-3 item mt30-xs mt30-sm rightReveal">
<span class="pe-7s-medal services-icon"></span>
<h2 class="timer mb5" data-from="1" data-to="100" data-refresh-interval="20">1</h2>
<p class="no-margin" style="color:white">Plus Prizes</p>
</div>
</div>
</div>
</section>
<section id="guidelines" class="background2 section-padding">
<div class="container">
<div class="row">
<div class="col-xs-12 section-title text-center">
<h2>Rules & Guidelines</h2>
<span class="section-divider"></span>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<div class="services-box leftReveal">
<span class="pe-7s-note2 services-icon"></span>
<h3 class="service-name">General Rules</h3>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#guideline-1">Know More</button>
</div>
</div>
<div class="modal fade" id="guideline-1" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-note2 services-icon-2"></span>
<h4 class="service-title">General Rules</h4>
</div>
<div class="modal-body">
<p>
<ul>
<li><p>Online registration is required. Registration is free.</p></li>
<li><p>Students may submit project as individual /group. (No of participants is restricted to
4).</p></li>
<li><p>In case of groups, all members must register together on one form.</p></li>
<li><p>A student can participate either in the mathematics stream or the science stream, not
in both.</p></li>
<li><p>All group members must be from the same institution.</p></li>
<li><p>All group members should produce ID cards/Authorization letter from the institution.</p></li>
<li><p>Each event will be considered as competition, only if the minimum number of teams is
seven.</p></li>
<li><p>Teacher/Parents /Guardian should accompany the participants.</p></li>
<li><p>Participants and their parents and/or guardians must abide by all rules and other
judgments set by the Committee. Failure to do so may result in the participant’s disqualification.</p></li>
<li><p>Students are responsible for all aspects of the development of their entries.</p></li>
<li><p>Students must set up their project, remain with it throughout their judging period,
and remove
it at the end of the day.</p></li>
<li><p>Students must bring all necessary equipment, including extension cords. Outlets will
be provided
ONLY if requested on the registration form.</p></li>
<li><p>Commercially prepared kits or models cannot constitute a major portion of the
project.</p></li>
<li><p>Students are solely responsible for the security and safety of their equipment.</p></li>
<li><p>Table exhibits only. Overall project size must be no more than 27 inches wide, 27
inches deep
and 4 feet high. The entire project, including charts, labels, equipment, etc. must fit in this
space. Use the ‘Contact Us’ link to submit requests.</p></li>
<li><p>No hazardous & toxic materials are to be used.</p></li>
<li><p>Standard laboratory safety rules must be observed.</p></li>
<li><p>Prize money will be in the form of cheque in favour of the Head of the participating
institution.</p></li>
<li><p>Decision of the organising committee will be final.</p></li>
</ul>
</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<div class="services-box leftReveal">
<span class="pe-7s-ribbon services-icon"></span>
<h3 class="service-name">Objectives</h3>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#guidelines-2">Know More</button>
</div>
</div>
<div class="modal fade" id="guidelines-2" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-ribbon services-icon-2"></span>
<h4 class="service-title">Objectives</h4>
</div>
<div class="modal-body">
<p>
<ul>
<li><p>Stimulating interest in science, mathematics and environment and inculcating
scientific spirit in young generation.</p>
</li>
<li><p>Exploring and encouraging scientific and technological talent among children.
</p></li>
<li><p>Inculcating in them a sense of pride in their talent
</p></li>
<li><p>Making children realise the relationship between science, technology and
society.</p>
</li>
<li><p>Understanding the need for proper management for the optimum utilisation of
resources and prevailing technologies.
</p></li>
<li><p>Providing exploratory experiences, encouraging creative and innovative
thinking and promoting psychomotor or simple apparatus.</p>
</li>
<li><p>Encouraging problem solving approach and developing the appropriate
technologies, especially for rural areas and integrating scientific ideas with
daily life situations.</p>
</li>
<li><p>Inculcating intellectual honesty, team spirit and aesthetic sense among the
participants.</p>
</li>
<li><p>Popularising science and mathematics among masses and creating an
awareness regarding the role of science and technology in socio-economic and
sustainable growth of the country.</p>
</li>
<li><p>Developing appropriate techniques for communication of science, mathematics
and environment.</p>
</li>
<li><p>Creating awareness about environmental issues and concerns and inspiring
children to devise innovative ideas towards their sustenance and mitigation.
</p></li>
</ul>
</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<div class="services-box leftReveal">
<span class="pe-7s-filter services-icon"></span>
<h3 class="service-name">Criteria For Evaluation</h3>
<button type="button" class="btn btn-default mt10" data-toggle="modal" data-target="#guidelines-3">Know More</button>
</div>
</div>
<div class="modal fade" id="guidelines-3" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span class="ion-ios-close-empty"></span>
</button>
<span class="pe-7s-filter services-icon-2"></span>
<h4 class="service-title">Criteria For Evaluation</h4>
</div>
<div class="modal-body">
<p>
<ul>
<li><p>Involvement of children’s own creativity and imagination (20 per cent).</p></li>
<li><p>Originality and scientific innovations in the exhibit/model (15 per cent).</p></li>
<li><p>Scientific thought/ principle/ approach (15 per cent).</p></li>
<li><p>Technical skill, workmanship and craftsmanship (15 per cent).</p></li>
<li><p>Utility for society(15 per cent).</p></li>
<li><p>Economic (low cost), portability, durability,etc. (10 per cent).</p></li>
<li><p>Presentation - aspects like demonstration, explanation and display (10 percent).</p></li>
</ul></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<div class="row mb50">
<div class="row">
<div class="col-xs-12 section-title text-center">
<h2>Our Partners</h2>
<span class="section-divider mb15"></span>
</div>
</div>
<div class="col-lg-8 col-lg-offset-2 text-center">
<a href="https://www.cognizant.com" target="blank"><img src="images/logos/cognizant2.jpg" alt="Cognizant" class="img-responsive pricing-clients mr15 topReveal"></a>
</div>
</div>
</div>
<section id="work" class="background1 section-padding-top">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 section-title text-center">
<h2>Gallery</h2>
<span class="section-divider mb15"></span>
</div>
</div>
<div id="thework">
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 portfolio-box no-padding mix graphics" data-my-order="3">
<div class="portfolio-image-holder"><img src="images/gallery1.jpg" alt="1" class="img-responsive portfolio-image"></div>
<span class="portfolio-hover">
<span>
<a href="images/gallery1.jpg" class="zoom">
<span class="portfolio-links"><span class="ion-arrow-expand portfolio-links-icons"></span></span>
</a>