forked from goelnaman66/lightWebsite2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom.html
977 lines (788 loc) · 40.6 KB
/
random.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Light</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700" rel="stylesheet">
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!--css files used-->
<link href="css/networkStyle.css" rel="stylesheet" type="text/css" />
<!--js scripts used-->
<script src="networkJS/modernizr.custom.js"></script>
<!--link scripts used-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha384-vk5WoKIaW/vJyUAd9n/wmopsmNhiy+L2Z+SBxGYnUkunIxVxAv/UtMOhba/xskxh" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/highlight.js/9.9.0/highlight.min.js"></script>
<!--for how we can help ram section-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
</head>
<body>
<header id="header">
<div class="container-fluid">
<div id="logo" class="pull-left">
<h1><a href="#intro" class="scrollto">LIGHT</a></h1>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="center.html">Centers</a></li>
<li><a href="networkpage.html">Our Network</a></li>
<li><a href="members.html">Members</a></li>
<li><a href="#contact">Support Us</a></li>
<li><a href="https://www.gyws.org/">GYWS</a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================--
<section id="intro">
<div class="intro-container">
<div id="introCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="carousel-background"><img src="1.jpg" alt=""></div>
</div>
<div class="carousel-item">
<div class="carousel-background"><img src="2.jpg" alt=""></div>
</div>
<div class="carousel-item">
<div class="carousel-background"><img src="3.jpg" alt=""></div>
</div>
<div class="carousel-item">
<div class="carousel-background"><img src="img/intro-carousel/4.jpg" alt=""></div>
</div>
<div class="carousel-item">
<div class="carousel-background"><img src="img/intro-carousel/5.jpg" alt=""></div>
</div>
</div>
<a class="carousel-control-prev" href="#introCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon ion-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#introCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon ion-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section><!-- #intro -->
<!---network page code starts from here--->
<br>
<br>
<!--==========================bookblock section starts from here-->
<section id="flipbook" class="bg-dark">
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="right-text">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut at sem id nisl commodo luctus nec eu est.</p>
<br>
</div>
</div>
<div class="col-md-7">
<nav>
<button id="bb-nav-prev"><i class="fa fa-caret-left"></i></button>
<button id="bb-nav-next"><i class="fa fa-caret-right"></i></button>
</nav>
<div class="bb-custom-wrapper">
<div id="bb-bookblock" class="bb-bookblock">
<div class="bb-item cover">
<div class="container-fluid" style=" height: 100%; overflow: hidden;">
<div class="row" style="height: 100%;">
<div class="col-6" style="padding: 0;"><img src="img/network/bookblock/cover.jpg" style="height: 100%;"></div>
<div class="col-6">
<img src="img/network/bookblock/ram1.png" style="margin-top: 10px;">
<p style="margin-top: 10px;">Hello, he is Ram, a college student. He sees some social problems around locality. Instead of blaming governments he wants to take control and do something for society.</p>
</div>
</div>
</div>
</div>
<div class="bb-item">
<div class="container-fluid" style=" height: 100%; overflow: hidden;">
<div class="row">
<div class="col-6">
<img src="img/network/bookblock/ram2.png" style="margin-top: 10px;">
<p style="margin-top: 15px;">Ram feels helpless because neither he has a team nor guidance to solve these problems. He wants to discuss his ideas but he doesn’t know where to go.</p>
</div>
<div class="col-6">
<img src="img/network/bookblock/ram3.png" style="margin-top: 10px;">
<p style="margin-top: 30px;">He knows how to solve a theoretical problem but he never got a chance to work on the real-life problem.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="networkJS/jquerypp.custom.js"></script>
<script src="networkJS/jquery.bookblock.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script>
var Page = (function() {
var config = {
$bookBlock : $( '#bb-bookblock' ),
$navNext : $( '#bb-nav-next' ),
$navPrev : $( '#bb-nav-prev' ),
$navFirst : $( '#bb-nav-first' ),
$navLast : $( '#bb-nav-last' )
},
init = function() {
config.$bookBlock.bookblock( {
speed : 800,
shadowSides : 0.8,
shadowFlip : 0.7
} );
initEvents();
},
initEvents = function() {
var $slides = config.$bookBlock.children();
// add navigation events
config.$navNext.on( 'click touchstart', function() {
config.$bookBlock.bookblock( 'next' );
return false;
} );
config.$navPrev.on( 'click touchstart', function() {
config.$bookBlock.bookblock( 'prev' );
return false;
} );
config.$navFirst.on( 'click touchstart', function() {
config.$bookBlock.bookblock( 'first' );
return false;
} );
config.$navLast.on( 'click touchstart', function() {
config.$bookBlock.bookblock( 'last' );
return false;
} );
// add swipe events
$slides.on( {
'swipeleft' : function( event ) {
config.$bookBlock.bookblock( 'next' );
return false;
},
'swiperight' : function( event ) {
config.$bookBlock.bookblock( 'prev' );
return false;
}
} );
// add keyboard events
$( document ).keydown( function(e) {
var keyCode = e.keyCode || e.which,
arrow = {
left : 37,
up : 38,
right : 39,
down : 40
};
switch (keyCode) {
case arrow.left:
config.$bookBlock.bookblock( 'prev' );
break;
case arrow.right:
config.$bookBlock.bookblock( 'next' );
break;
}
} );
};
return { init : init };
})();
</script>
<script>
Page.init();
</script>
<!--================================bookblock section code ends here --->
<br>
<!--How we can help Ram section -->
<div class="container text-center my-3">
<h1>How we can help Ram?</h1>
<br>
<div class="row mx-auto my-auto">
<div id="recipeCarousel" class="carousel slide w-100" data-ride="carousel">
<div class="carousel-inner w-100" role="listbox">
<div class="carousel-item active">
<div class="col-md-4">
<div class="namancard namancard-body">
<div class="namancard-text">
<p>
1. By joining LiGHT, he will become a part of a network which is spread nationwide across 12 states. He could share and discuss his ideas on a platform consisting of more than 150 members having diverse opinions.
</p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="namancard namancard-body">
<div class="namancard-text">
<p>
2. He will find this platform unique from other organizations because it was completely student-run, which will enable him to communicate and understand better with other student members.
</p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="namancard namancard-body">
<div class="namancard-text">
<p>
3. He would receive a lot of incentives such as certification, proper guidance, improving skills and personality, and most importantly an established platform for team format.
</p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="namancard namancard-body">
<div class="namancard-text">
<p>
4. Apart from this, he will also receive other benefits from the team such as career guidance, various resources, mentorship and various others.
</p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="namancard namancard-body">
<div class="namancard-text">
<p>
5. He will find this platform unique from other organizations because it was completely student-run, which will enable him to communicate and understand better with other student members.
</p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="namancard namancard-body">
<div class="namancard-text">
<p>
6. He will find this platform unique from other organizations because it was completely student-run, which will enable him to communicate and understand better with other student members.
</p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="col-md-4">
<div class="namancard namancard-body">
<div class="namancard-text">
<p>
7. He will find this platform unique from other organizations because it was completely student-run, which will enable him to communicate and understand better with other student members.
</p>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev w-auto" href="#recipeCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark border border-dark rounded-circle" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next w-auto" href="#recipeCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark border border-dark rounded-circle" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- <h5 class="mt-2">Advances one slide at a time</h5> -->
</div>
<script src="networkJS/howToHelpRam.js"></script>
<!--how we can help ram secion ends here--->
<br>
<br>
<!--from here chinmay's code starts ----------->
<h1>What do we deliver?</h1>
<h6>Hover over the image below</h6>
<br>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="img/network/img_avatar2.png" alt="Avatar" class="center" align="left" id="img" style="width:320px;height:320px;">
<h1>Social Worker</h1>
<p style="padding-left:20px;margin-right: 20px;margin-top: 40px;">We always believe that building a forest is much better than building a tree, and so the social workers, along with building their respective social initiatives (their own trees) can support and share their experiences with our members
to help us shape the mindset of youth who can build the forest of social initiatives in the future.
</p>
</div>
<div class="flip-card-back">
<h1>John Doe</h1>
<div class="container fluid">
<div class="row">
<div class="col-1"></div>
<div class="col-md-4 col-sm-12 col-12">
<p class="boxed" style="text-align:left;font-size: x-small; height:220px ;">If you are a social worker:<br> a) Who wants to share their experience at the ground level with the youth of the country.<br> b) Who want to spare sometime to build leaders like himself who can help the society.<br> c)
Who is an expert and join our network to guide us how to run this network. You are most welcome to join us.
</p>
</div>
<div class="col-2"></div>
<div class="col-md-4 col-sm-12 col-12">
<p class="boxed" style="text-align:left;font-size: x-small; height:220px ;">1. Provide your experience and guidance to our network of students.<br> 2. To mentor one of our centers and help them in difficulties. <br> 3. Help them structurise their ideas into a proper plan to give fruitful results.<br> 4. Ready to commit 4-6 hours per week<br>
</p>
</div>
</div>
</div>
<!-- <button onclick="myFunction()" id="myBtn">Read more</button> -->
</div>
</div>
</div>
<div class="flip-card2">
<div class="flip-card-inner2">
<div class="flip-card-front2">
<img src="img/network/img_avatar2.png" alt="Avatar" class="center" align="right" id="img2" style="width:320px;height:320px;">
<h1>College Students</h1>
<p style="text-align:left ; padding-left:20px;margin-right: 20px;margin-top: 40px;">College Students like Ram,<br> a) Who instead of blaming governments wants to take control and do something for society, <br> b) Who wants to learn how to solve practical real-world problems.<br> c) Who want a platform to showcase
their management skills.<br> d) Who want any early exposure to the grass-root reality of India. <br> e) Who aspire to serve the nation are most welcome to join us. </p>
</div>
<div class="flip-card-back2">
<h2>
You can join us by considering one of the following roles:
</h2>
<div class="container fluid">
<div class="row">
<div class="col-1"></div>
<div class="col-md-3 col-sm-12 col-12">
<p class="boxed" style="text-align:left;font-size: x-small; height:260px ;">
<span style="font-weight: bold;">
Center Coordinator (CC):</span><br> 1. Help us bring LiGHT to your campus.<br> 2. Form a team of members, and coordinate between them to use the platform.<br> 3. Develop action plans
for your team and execute it at the ground level. Commitment Required: Should be able to committ 9-10 hours per week.<br>
</p>
</div>
<div class="col-1"></div>
<div class="col-md-3 col-sm-12 col-12">
<p class="boxed" style="text-align:left;font-size: x-small; height:260px ;"><span style="font-weight: bold;">Core Team Member (CTM):</span><br> 1. Get induldge in execution of events in coordination with Center Cordinator<br> 2. Get involved in workshops and tasks conducted by the us. <br> 3. To
get involved in the strategy development along with Center Coordinator Commitment Required: Should be able to committ 5-6 hours per week<br>
</p>
</div>
<div class="col-1"></div>
<div class="col-md-3 col-sm-12 col-12">
<p class="boxed" style="text-align:left;font-size: x-small; height:260px ;"><span style="font-weight: bold;">Volunteer:</span><br> 1. Participate in the events and ensuring events to be properly conducted<br> 2. Publicze LiGHT in their campus Commitment Required: Should be able to committ 2-3 hours
per week<br></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="flip-card3">
<div class="flip-card-inner3">
<div class="flip-card-front3">
<img src="img/network/img_avatar2.png" alt="Avatar" class="center" id="img3" align="left" style="width:320px;height:320px;">
<h1>College Professors</h1>
<p style="text-align:left ; margin-left:20px;margin-right: 20px;margin-top: 40px;">If you are a College Professor, <br> a) who thinks that your students should get an exposure to the ground reality of the country, <br> b) who understands that students should spend sometime for their social & emotional development
too, along with the day-to-day academic development.<br> c) who wants our help to provide his/her college students a platform to get in indulge in social work,<br> you should join us as a Advisory Committe member.</p>
</div>
<div class="flip-card-back3">
<h1>Teachers</h1>
<p style="text-align:left ; margin-left:20px;margin-right: 20px;margin-top: 40px;">
1. Help us find motivated pool of students from your college.<br> 2. Help us in spreading our word at your college, so that we can reach as many motivates students as we can. <br> 3. Provide help in getting administrative permissions,
and in discussion with Authorities. <br> 4. Guide your students and help us in coordinating with them.
</p>
<!-- <button onclick="myFunction3()" id="myBtn3">Read more</button> -->
</div>
</div>
</div>
<!--chinmay's code ends here-->
<br>
<br>
<br>
<!--why to join us? starts -->
<style>
.rajcolumn {
float: left;
width: 25%;
padding: 0 10px;
box-sizing: border-box;
}
.rajrow {margin: 0 -5px;}
.rajrow:after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width: 700px) {
.rajcolumn {
width: 100%;
display: block;
margin-bottom: 10px;
}
}
.rajcard{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
height :200px;
padding: 16px;
text-align: center;
background-color: #f1f1f1;
}
@media (min-width: 800px) and (max-width: 1170px){
.rajcard{
height: 300px;
}
}
@media (min-width: 700px) and (max-width: 850px){
.rajcard{
height: 430px;
}
}
@media (min-width: 700px){
.rajcard{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
padding: 16px;
text-align: center;
background-color: #f1f1f1;
}
}
</style>
<h1>Why join us?</h1>
<br>
<div class="rajrow">
<div class="rajcolumn">
<div class="rajcard" >
<p>1. By joining LiGHT, he will become a part of a network which is spread nationwide across 12 states. He could share and discuss his ideas on a platform consisting of more than 150 members having diverse opinions.</p>
</div>
</div>
<div class="rajcolumn">
<div class="rajcard" >
<p>2. He will find this platform unique from other organizations because it was completely student-run, which will enable him to communicate and understand better with other student members.</p>
</div>
</div>
<div class="rajcolumn">
<div class="rajcard" >
<p>3. He would receive a lot of incentives such as certification, proper guidance, improving skills and personality, and most importantly an established platform for team format.</p>
</div>
</div>
<div class="rajcolumn">
<div class="rajcard" >
<p>4. Apart from this, he will also receive other benefits from the team such as career guidance, various resources, mentorship and various others.</p>
</div>
</div>
</div>
<!--why to join us section ends here-->
<!--from here, the naman's task starts -->
<div class="container-fluid" style="margin-top: 150px;">
<div class="row">
<div class="col col-md-6 col-sm-12 col-12" style="background-color: #808080; color: aliceblue;">
<h2 class="head">Difference from other platforms</h2>
<div class="row">
<div class="image col-md-6 col-sm-12 col-12">
<img src="img/network/col1.png" class="naman-im1" alt="#">
</div>
<div class="content col-md-6 col-sm-12 col-12">
<p style="margin-right: 10%;margin-left: 10%; margin-top: 30px; margin-bottom: 30px;text-align: left;line-height: 150%;font-size: small;">
Student-run: The complete <span style="font-weight: bold;">LIGHT</span> network is run by students studying in different colleges of the country. Being a student run body enables better understanding and communication between
members.
</p>
</div>
</div>
</div>
<div class="col bg-warning col-md-6 col-sm-12 col-12">
<h2 class="head">Our Reach
</h2>
<div class="row">
<div class="image col-md-4 col-sm-12 col-12">
<img src="img/network/col2.png" alt="#" class="naman-im2">
</div>
<div class="content col-md-8 col-sm-12 col-12">
<p>
<ul style="margin-right: 15%;margin-left:15%;margin-top: 30px; margin-bottom: 30px;text-align: left;line-height: 150%;font-size: small;">
<li>We have a nationwide reach with total 14 centres present across the country spread across 12 states.</li>
<li>More than 161 active members are associated with LiGHT through various centes.</li>
</ul>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="my-row3">
<h1 class="heading3" style="">Incentives</h1>
<div class="row ">
<div class="col-md-4 col-sm-12 col-12">
<ul class="list1">
<li>
<div class="boxed">Certificates</div>
</li>
<li>
<div class="boxed">NGO Work experience</div>
</li>
<li>
<div class="boxed">Guidance and Mentorship</div>
</li>
<li>
<div class="boxed">Already established platform for team formation</div>
</li>
</ul>
</div>
<div class="col-md-8 col-sm-12 col-12">
<div class="row">
<div class="col-md-6" style="margin-top: 20px;">
<img src="img/network/col3.png" alt="#" class="naman-im3">
</div>
<div class="col-md-6" style="margin-top: 20px;">
<ul class="list2">
<li>
<div class="boxed">Skill Development</div>
</li>
<li>
<div class="boxed">Can get a chance to visit IIT Kharagpur</div>
</li>
<li>
<div class="boxed">Other help</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!--here naman's task ends-->
<!----rakesh's code for the semicircular card's part-->
<div id="wrap" >
<div class="rakeshcontainer-fixed rakeshstacked-rakeshcards rakeshstacked-rakeshcards-fanOut">
<h1>What extra help we can give?</h1>
<ul>
<li>
<div class="rakesh">
<img src="img/network/extraGive/img1.jpg" id="rakesh1" class="rakeshimage">
<div class="overlay_rakesh">
<div class="rakeshtext">In GYWS and LiGHT, members have completed or are doing various projects/internships in various companies in different fields. We will be able to guide you through the steps required to accomplish your plans.</div>
</div>
</div>
</li>
<li>
<div class="rakesh">
<img src="img/network/extraGive/img2.jpg" id="rakesh2" class="rakeshimage">
<div class="overlay_rakesh">
<div class="rakeshtext">Not only for career, members in LiGHT are always ready to help you in various fields. Be it sports, art, learning new things etc.</div>
</div>
</div>
</li>
<li>
<div class="rakesh">
<img src="img/network/extraGive/sushant.jpg" id="rakesh3" class="rakeshimage">
<div class="overlay_rakesh">
<div class="rakeshtext">what extra help we can give?</div>
</div>
</div>
</li>
<li>
<div class="rakesh">
<img src="img/network/extraGive/img3.jpg" id="rakesh4" class="rakeshimage">
<div class="overlay_rakesh">
<div class="rakeshtext">We are a network of under-graduate, Post Graduates and Research Scholars studying In different streams of engineering. We work together to create a pool of ideas, which can/will try to provide a solution to every problem faced by you.
With us, you can benefit yourself in the ways which sometimes you cannot get on your own.</div>
</div>
</div>
</li>
<li>
<div class="rakesh">
<img src="img/network/extraGive/img4.jpg" id="rakesh5" class="rakeshimage">
<div class="overlay_rakesh">
<div class="rakeshtext">If you are interested in Research or want to have a discussion on a certain topic, our intellectually stimulated members can guide you might fulfil your thirst for knowledge.</div>
</div>
</div>
</li>
<li>
<div class="rakesh">
<img src="img/network/extraGive/img5.jpg" id="rakesh6" class="rakeshimage">
<div class="overlay_rakesh">
<div class="rakeshtext">Our esteemed alumni are working in different companies and have excelled in their fields, and their experience is a treasure to us. Through them we can help you to know the mantra to get various type of internships and jobs easily.</div>
</div>
</div>
</li>
<li>
<div class="rakesh">
<img src="img/network/extraGive/img6.jpg" id="rakesh7" class="rakeshimage">
<div class="overlay_rakesh">
<div class="rakeshtext">A variety of resources for learning almost every domain or field is present are present in IIT Kharagpur Community, which can be shared with all the centre members.</div>
</div>
</div>
</li>
</ul>
</div>
<script src="networkJS/stackedCards.min.js"></script>
</div>
<script>
var stackedCardSlide = new stackedRakeshCards({
selector: '.rakeshstacked-rakeshcards-slide',
layout: "slide",
transformOrigin: "center",
});
stackedCardSlide.init();
var stackedCardFanOut = new stackedRakeshCards({
selector: '.rakeshstacked-rakeshcards-fanOut',
layout: "fanOut",
transformOrigin: "bottom",
});
stackedCardFanOut.init();
</script>
<!--here rakesh's code ends ------>
<br>
<br>
<br>
<!--========================from here the aaditya's card code starts ===========-->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<link href="http://www.jqueryscript.net/css/jquerysctipttop.css" rel="stylesheet" type="text/css">
<script src="networkJS/paperstack.js"></script>
<link href='https://fonts.googleapis.com/css?family=Abel' rel='stylesheet'>
<script>
$(document).ready(function() {
var stack = $('.stack').paperstack({});
$('#aadityanext').click(stack.next);
$('#aadityaprev').click(stack.previous);
});
</script>
<div class="temp" >
<h1>What Extra help can we give?</h1>
<div class="row">
<div class="col-md-12">
<h2 >
<a id="aadityaprev" style="text-decoration: underline;cursor: pointer;"><i class="fa fa-angle-left"></i></a>
<a id="aadityanext" style="text-decoration: underline; cursor: pointer; padding-left: 70px; "><i class="fa fa-angle-right"></i></a>
</h2>
</div>
</div>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
<div class="stack" >
<div class="sheet" id="s1">
<p style="text-align: center;color:black; font-size: 1.5vw;position: relative;top: 15%; padding-top: 2em; padding-bottom: 2em; padding-left: 0.7em;padding-right: 0.7em;">Ram always wanted to know how the students of other colleges work, and the path peope follow to reach their goals! When he got to know about us, he realised that we are a vast network of pan india colleges and hence we will have a diverse
pool of ideas, which can help him fulfill his dreams and needs.
</p>
</div>
<div class="sheet" id="s2">
<p style=" margin-top: 3em;color:black;text-align: center;font-size: 1.5vw;position: relative;top: 15%; padding-top: 2em; padding-bottom: 2em; padding-left: 0.7em;padding-right: 0.7em;">By joining us, he can get mentorship from us regarding the working of his in academic or non-academic activities.</p>
</div>
<div class="sheet" id="s3">
<p style=" margin-top: 3em;color:black;text-align: center;font-size: 1.5vw;position: relative;top: 15%; padding-top: 2em; padding-bottom: 2em; padding-left: 0.7em;padding-right: 0.7em;">Career guidance can help Ram clear his pathway of obstacles and help him ease out his process of becoming a successful person.
</p>
</div>
<div class="sheet" id="s4">
<p style=" margin-top: 3em;color:black;text-align: center;font-size: 1.5vw;position: relative;top: 15%; padding-top: 2em; padding-bottom: 2em; padding-left: 0.7em;padding-right: 0.7em;">Topic discussions with people of various mindset and different thoughts can enhance the output of it and will be even more fruitful.</p>
</div>
</div>
</div>
<div class="col-md-2"></div>
</div>
<br>
<!---here aaditya's card code ends-->
<!--network page code ends here-->
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-info">
<h3>BizPage</h3>
<p>Cras fermentum odio eu feugiat lide par naso tierra. Justo eget nada terra videa magna derita valies darta donna mare fermentum iaculis eu non diam phasellus. Scelerisque felis imperdiet proin fermentum leo. Amet volutpat consequat mauris nunc congue.</p>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="ion-ios-arrow-right"></i> <a href="#">Home</a></li>
<li><i class="ion-ios-arrow-right"></i> <a href="#">About us</a></li>
<li><i class="ion-ios-arrow-right"></i> <a href="#">Services</a></li>
<li><i class="ion-ios-arrow-right"></i> <a href="#">Terms of service</a></li>
<li><i class="ion-ios-arrow-right"></i> <a href="#">Privacy policy</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-contact">
<h4>Contact Us</h4>
<p>
A108 Adam Street <br>
New York, NY 535022<br>
United States <br>
<strong>Phone:</strong> +1 5589 55488 55<br>
<strong>Email:</strong> [email protected]<br>
</p>
<div class="social-links">
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a>
<a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6 footer-newsletter">
<h4>Our Newsletter</h4>
<p>Tamen quem nulla quae legam multos aute sint culpa legam noster magna veniam enim veniam illum dolore legam minim quorum culpa amet magna export quem marada parida nodela caramase seza.</p>
<form action="" method="post">
<input type="email" name="email"><input type="submit" value="Subscribe">
</form>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong>BizPage</strong>. All Rights Reserved
</div>
<div class="credits">
<!--
All the links in the footer should remain intact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=BizPage
-->
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer><!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- Uncomment below i you want to use a preloader -->
<!-- <div id="preloader"></div> -->
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<script src="lib/touchSwipe/jquery.touchSwipe.min.js"></script>
<!-- Contact Form JavaScript File -->
<script src="contactform/contactform.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
</body>
</html>