-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1077 lines (948 loc) · 52 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="no-js">
<!-- Begin Head -->
<head>
<!-- Basic -->
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Action Plan IIT-G</title>
<link rel="shortcut icon" type="image/png" href="/favicon.png"/>
<link rel="shortcut icon" type="image/png" href="http://example.com/favicon.png"/>
<link rel="shortcut icon" type="image/x-icon" href="img/logo.jpg" />
<!-- <meta name="keywords" content="HTML5 Theme" />
<meta name="description" content="ActionPlan">
<meta name="author" content=""> -->
<!-- <link href="css/style2.css" rel="stylesheet" type="text/css"/> -->
<!-- Web Fonts -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,400i|Montserrat:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--new links-->
<link rel="stylesheet" href="css/style2.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css" >
<!-- Icon -->
<link rel="stylesheet" type="text/css" href="assets/fonts/line-icons.css">
<!-- Slicknav -->
<link rel="stylesheet" type="text/css" href="assets/css/slicknav.css">
<!-- Nivo Lightbox -->
<link rel="stylesheet" type="text/css" href="assets/css/nivo-lightbox.css" >
<!-- Animate -->
<link rel="stylesheet" type="text/css" href="assets/css/animate.css">
<!-- Main Style -->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<!-- Responsive Style -->
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
<!-- Timeline style-->
<link rel="stylesheet" type="text/css" href="css/timeline.css">
<!-- End new links-->
<!-- Vendor Styles -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="css/animate.css" rel="stylesheet" type="text/css"/>
<link href="vendor/themify/themify.css" rel="stylesheet" type="text/css"/>
<link href="vendor/scrollbar/scrollbar.min.css" rel="stylesheet" type="text/css"/>
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet" type="text/css"/>
<link href="vendor/swiper/swiper.min.css" rel="stylesheet" type="text/css"/>
<link href="vendor/cubeportfolio/css/cubeportfolio.min.css" rel="stylesheet" type="text/css"/>
<!--Copied-->
<link rel="shortcut icon" type="image/x-icon" href="images/logo.png" />
<link rel="stylesheet" href="css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<!-- Theme Styles -->
<link href="css/style.css" rel="stylesheet" type="text/css"/>
<link href="css/styling.css" rel="stylesheet" type="text/css"/>
<link href="css/global/global.css" rel="stylesheet" type="text/css"/>
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<script type="text/javascript">
$('.s-header__nav-menu-link').on('click', function(){
javascript:void(0);
});
</script>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Jan 21, 2019 00:00:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get todays date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var hours = Math.floor(distance / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Display the result in the element with id="demo"
document.getElementById("timer").innerHTML = hours + " hrs "
+ minutes + " min " + seconds + " sec " + '<span style="color: #FF69B4;font-size:20px;font-weight:400"> Left</span>';
// If the count down is finished, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("timer").innerHTML = "EXPIRED";
}
}, 1000);
</script>
<script>
// When the user clicks on div, open the popup
function myFunction()
{
var popup = document.getElementById("myPopup");
popup.classList.toggle("show");
}
</script>
<script>
// When the user clicks on div, open the popup
function myFunction()
{
var popup = document.getElementById("mypopup");
popup.classList.toggle("show");
}
</script>
<style>
@keyframes example
{
0% {background-color: #ADD8E6;}
25% {background-color: yellow;}
50% {background-color: yellow;}
100% {background-color: #ADD8E6;}
}
.blinking
{
animation-name:example;
animation-duration:1.3s;
animation-iteration-count:infinite;
}
.popup {
position: relative;
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* The actual popup */
.popup .popuptext
{
visibility: hidden;
width: 160px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 8px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -80px;
}
/* Popup arrow */
.popup .popuptext::after
{
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
/* Toggle this class - hide and show the popup */
.popup .show
{
visibility: visible;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
}
.Popup {
position: relative;
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* The actual popup */
.Popup .Popuptext
{
visibility: hidden;
width: 160px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 8px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -80px;
}
/* Popup arrow */
.Popup .Popuptext::after
{
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
/* Toggle this class - hide and show the popup */
.Popup .show
{
visibility: visible;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
}
/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn
{
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fadeIn
{
from {opacity: 0;}
to {opacity:1 ;}
}
#buttons
{
margin: 5px!important;
}
.header_modification
{
line-height: 1 !important;
}
.sector_modification
{
padding-bottom: 60px!important;
}
@media only screen and (max-width:464px)
{
#iframe
{
width: 310px;
height : 180px;
}
}
@media only screen and (min-width : 464px) and (max-width:480px)
{
#iframe
{
width: 480px;
height : 270px;
}
}
#AboutAPlan
{
margin-left: 100px;
margin-right: 0px!important;
width: 65%!important;
}
#video
{
width: 38%!important;
max-width: 38%!important;
margin-right: 50px;
margin-bottom: 50px;
margin-top: -50px;
}
#para
{
margin-left: 50px;
}
#font1
{
font-size:50px!important;
}
#sponsorlogo
{
margin-right: auto;
padding: 40px;
width: 250px;
height: 250px;
}
#font2
{
font-size: 40px!important;
color: #3391ff!important;
}
#Contacts
{
margin-top: 50px;
}
@media only screen and (max-width:600px){
.mobi{
margin-left:3%;
}
}
</style>
</head>
<!-- End Head -->
<!-- Body -->
<body>
<!--========== HEADER ==========-->
<header class="navbar-fixed-top s-header js__header-sticky js__header-overlay header_modification">
<!-- Navbar -->
<div class="s-header__navbar collapse navbar-collapse">
<div class="s-header__container">
<div class="s-header__navbar-row">
<div class="s-header__navbar-row-col">
<!-- Logo -->
<div class="s-header__logo">
<a href="https://www.facebook.com/sociowelfarefestiitg/" class="s-header__logo-link" style="font-size: 32px; font-weight: 600">
ACTION PLAN
</a>
</div>
<!-- End Logo -->
</div>
<div class="s-header__navbar-row-col" style="padding-left:400px">
<h5 style="color: #FF69B4">Hurry up guys Only</h5>
<p style="color: #003366; font-size:18px;font-weight:700" id="timer"></p>
</div>
<div class="s-header__navbar-row-col">
<!-- Trigger -->
<a href="javascript:void(0);" class="s-header__trigger js__trigger">
<span class="s-header__trigger-icon"></span>
<svg x="0rem" y="0rem" width="3.125rem" height="3.125rem" viewbox="0 0 54 54">
<circle fill="transparent" stroke="#fff" stroke-width="1" cx="27" cy="27" r="25" stroke-dasharray="157 157" stroke-dashoffset="157"></circle>
</svg>
</a>
<!-- End Trigger -->
</div>
</div>
</div>
</div>
<!-- End Navbar -->
<!-- Overlay -->
<div class="s-header-bg-overlay js__bg-overlay">
<!-- Nav -->
<nav class="s-header__nav js__scrollbar">
<div class="container-fluid">
<!-- Menu List -->
<ul class="list-unstyled s-header__nav-menu">
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider js__trigger -is-active" href="#About">About</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider js__trigger -is-active" href="#Incentive">Incentive</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider js__trigger -is-active" href="#Stages">Stages</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider js__trigger -is-active" href="#Timeline">Timeline</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider js__trigger -is-active" href="#Faq">FAQ</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider js__trigger -is-active" href="#Rules and Regulations">Rules and Regulations</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider js__trigger -is-active" href="#Mentorship">Mentorship</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider js__trigger -is-active" href="manual.pdf">Competition Manual</a></li>
<li class="s-header__nav-menu-item"><a class="s-header__nav-menu-link s-header__nav-menu-link-divider js__trigger -is-active" href="#getintouch">Get In Touch</a></li>
</ul>
<!-- End Menu List -->
</div>
</nav>
<!-- End Nav -->
<!-- Action -->
<ul class="list-inline s-header__action s-header__action--lb">
<li class="s-header__action-item"><a class="s-header__action-link -is-active" href="#">En</a></li>
<!-- End Action -->
<!-- Action -->
<ul class="list-inline s-header__action s-header__action--rb">
<li class="s-header__action-item">
<a class="s-header__action-link" href="#">
<i class="g-padding-r-5--xs ti-facebook"></i>
<span class="g-display-none--xs g-display-inline-block--sm">Facebook</span>
</a>
</li>
<li class="s-header__action-item">
<a class="s-header__action-link" href="#">
<i class="g-padding-r-5--xs ti-twitter"></i>
<span class="g-display-none--xs g-display-inline-block--sm">Twitter</span>
</a>
</li>
<li class="s-header__action-item">
<a class="s-header__action-link" href="#">
<i class="g-padding-r-5--xs ti-instagram"></i>
<span class="g-display-none--xs g-display-inline-block--sm">Instagram</span>
</a>
</li>
</ul>
<!-- End Action -->
</div>
<!-- End Overlay -->
</header>
<!--========== END HEADER ==========-->
<!--========== SWIPER SLIDER ==========-->
<div class="s-swiper js__swiper-one-item">
<!-- Swiper Wrapper -->
<div class="swiper-wrapper">
<div class="g-fullheight--xs g-bg-position--center swiper-slide" style="background: url('img/1920x1080/02.jpg');">
<div class="container g-text-center--xs g-ver-center--xs">
<div class="g-margin-b-30--xs">
<div class="g-margin-b-30--xs">
<h1 class="g-font-size-35--xs g-font-size-45--sm g-font-size-55--md g-color--white">Action Plan<br>Social Enterpreneur Competition</h1>
</div>
<!-- <a class="js__popup__youtube" href="https://youtu.be/Y11Jro1uBho" title="Intro Video">
<i class="s-icon s-icon--lg s-icon--white-bg g-radius--circle ti-control-play"></i>
</a> -->
<!-- <button onclick="location.href='http://www.googledoc.com'" type="button" style="border-radius: 4px;color:teal;background-color:powderblue;font-size: 20px;">Register</button> -->
<a class="js__popup__youtube" href="https://youtube.com/watch?v=o-gVOCra_OM" title="Intro Video">
<i class="s-icon s-icon--lg s-icon--white-bg g-radius--circle ti-control-play"></i>
</a><br><br><br><br><br>
<a href="https://goo.gl/forms/M5pQ4JWGH2tDeTM53" id="buttons" class="btn btn-lg btn-danger smoothScroll wow fadeInUp" data-wow-delay="0.9s" >REGISTER NOW</a>
<a href="manual.pdf" class="btn btn-lg btn-danger smoothScroll wow fadeInUp" id="buttons" data-wow-delay="0.9s">LEARN MORE</a>
<!-- <span>Register</span> -->
</div>
</div>
</div>
<div class="g-fullheight--xs g-bg-position--center swiper-slide" style="background: url('img/1920x1080/01.jpg');">
<div class="container g-text-center--xs g-ver-center--xs">
<div class="g-margin-b-30--xs">
<img src="img/logo.jpg" alt="Action Plan Logo"/>
<h1 class="g-font-size-35--xs g-font-size-45--sm g-font-size-55--md g-color--black" style="font-color:black">WELFARE BOARD,IIT GUWAHATI<br>ACTION PLAN</h1>
</div>
<a href="https://goo.gl/forms/M5pQ4JWGH2tDeTM53" id="buttons" class="btn btn-lg btn-danger smoothScroll wow fadeInUp" data-wow-delay="0.9s">REGISTER NOW</a>
<a href="manual.pdf" class="btn btn-lg btn-danger smoothScroll wow fadeInUp" id="buttons" data-wow-delay="0.9s">LEARN MORE</a>
</div>
</div>
</div>
<!-- End Swiper Wrapper -->
<!-- Arrows -->
<a href="javascript:void(0);" class="s-swiper__arrow-v1--right s-icon s-icon--md s-icon--white-brd g-radius--circle ti-angle-right js__swiper-btn--next"></a>
<a href="javascript:void(0);" class="s-swiper__arrow-v1--left s-icon s-icon--md s-icon--white-brd g-radius--circle ti-angle-left js__swiper-btn--prev"></a>
<!-- End Arrows -->
</div>
<!--========== END SWIPER SLIDER ==========-->
<!--========== PAGE CONTENT ==========-->
<!-- Culture -->
<div class="g-promo-section" id="About">
<div id="AboutAPlan" class="container g-padding-y-80--xs g-padding-y-125--sm">
<div class="row">
<div class="col-md-4 g-margin-t-15--xs g-margin-b-60--xs g-margin-b-0--lg">
<div class="wow fadeInLeft" data-wow-duration=".3" data-wow-delay=".1s">
<h2 id="font1" class="g-font-size-40--xs g-font-size-50--sm g-font-size-60--md">About</h2>
</div>
<div class="wow fadeInLeft" data-wow-duration=".3" data-wow-delay=".3s">
<h2 id="font1" class="g-font-size-40--xs g-font-size-50--sm g-font-size-60--md">Action Plan</h2>
</div>
</div>
<div id="para" class="col-md-4 col-md-offset-1">
<p class="g-font-size-18--xs" style="font-weight:400;color:rgba(2, 44, 20, 0.74)">A-Plan challenges students to build a 'Plan of Action’ for solving a social problem by engaging with the community and stakeholders. It encourages them to develop a bottom up approach from grassroots level to building a sustainable implementable solution. In order for the solutions to sustain and create a lasting impact, we propose the solutions to tackle the challenges could be of Activism/Not-forProfit/Social Entrepreneurship led models.</p>
<!-- <p class="g-font-size-18--xs">Now that your brand is all dressed up and ready to party, it's time to release it to the world. By the way, let's celebrate already.</p> -->
</div>
</div>
</div>
<div id="video" class="col-sm-3 g-promo-section__img-right--lg g-bg-position--center g-height-100-percent--md js__fullwidth-img mobi" style="margin-right:100px; "> <br>
<!-- <video width="520" height="340" controls>
<source src="img/action_plan_video.mp4" type="video/mp4" >
Your browser does not support the video tag.
</video> -->
<iframe id="iframe" width="560" height="315" src="https://www.youtube.com/embed/o-gVOCra_OM" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<!-- <iframe width="60" height="50" src="https://www.youtube.com/embed/o-gVOCra_OM" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> -->
</div>
</div>
<!-- End Culture -->
<!--Start Stages section-->
<div class="js__parallax-window" style="background: url(img/1920x1080/06.jpg) 50% 0 no-repeat fixed;" id="Stages">
<div class="g-container--md g-text-center--xs g-padding-y-150--xs">
<div class="g-margin-b-60--xs">
<h1 class="g-font-size-40--xs g-font-size-50--sm g-font-size-70--md g-color--white g-letter-spacing--1 g-margin-b-30--xs">Stages</h1>
</div>
<a href="#js__scroll-to-section2">
<span class="s-icon s-icon--md s-icon--white-brd g-radius--circle ti-angle-double-down"></span>
</a>
</div>
</div>
<div id="js__scroll-to-section2" class="g-container--md g-padding-y-80--xs g-padding-y-125--sm" >
<section>
<div >
<div >
<div class="wow fadeInLeft col-md-4 col-sm-4" data-wow-delay="0.3s">
<i class="material-icons" style="font-size:45px">supervisor_account</i>
<h3>Stage One</h3>
<p style="font-size:18px;color: rgba(2, 44, 20, 0.74);font-weight: 400">The participating teams through this stages starts from identifying a specific problem through stakeholder interaction. The problem statement has to be presented in the form of PDF ( One page write-up) .
</p>
</div>
<div class="wow fadeInUp col-md-4 col-sm-4" data-wow-delay="0.6s">
<i class="material-icons" style="font-size:45px">trending_up</i>
<h3>Stage Two</h3>
<p style="font-size:18px;color:rgba(2, 44, 20, 0.74);font-weight: 400">This stage will be a mentorship program where the qualified participants from the first round will be allotted a mentor to solve a given task.</p>
</div>
<div class="wow fadeInRight col-md-4 col-sm-4" data-wow-delay="0.9s">
<i class="material-icons" style="font-size:45px">star_border</i>
<h3>Finale</h3>
<p style="font-size:18px;color: rgba(2, 44, 20, 0.74);font-weight: 400">This stage will be the Final Round of competition where participants will be competing for the best.</p>
</div>
</div>
</div>
</section>
</div>
<!--End stage section-->
<!-- Parallax -->
<div class="js__parallax-window" style="background: url(img/1920x1080/03.jpg) 50% 0 no-repeat fixed;" id="Incentive">
<div class="container g-text-center--xs g-padding-y-80--xs g-padding-y-125--sm">
<div class="g-margin-b-80--xs">
<h2 class="g-font-size-40--xs g-font-size-50--sm g-font-size-60--md g-color--white">Incentive</h2>
</div>
<!-- <a href="http://keenthemes.com/" class="text-uppercase s-btn s-btn--md s-btn--white-brd g-radius--50">Learn More</a> -->
<h1 class="g-font-size-40--xs g-font-size-50--sm g-font-size-60--md g-color--white">Win prizes worth 80,000 Rupees</h1>
</div>
</div>
<!--End Info -->
<!-- <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><br><br><br><br><br><br><br><br><br><br><br><br> -->
<!-- Timeline-->
<div style="margin-top: 0px;">
<div class="" style="background-color: black;" id="Timeline">
<div class="container">
<h2 class="pb-3 pt-2 border-bottom mb-5 g-color--white">Timeline</h2>
<!--first section-->
<div class="row align-items-center how-it-works d-flex">
<div class="col-2 text-center d-inline-flex justify-content-center align-items-center">
<div class="circle font-weight-bold">1</div>
</div>
<div class="col-6" >
<h5 style="color: #FF69B4">1st Jan, 2019 - 20th Jan, 2019</h5>
<p style="color: white; font-size:18px;">Registration and problem statement submission phase</p>
</div>
</div>
<!--path between 1-2-->
<div class="row timeline">
<div class="col-2">
<div class="corner top-right"></div>
</div>
<div class="col-8">
<hr/>
</div>
<div class="col-2">
<div class="corner left-bottom"></div>
</div>
</div>
<!--second section-->
<div class="row align-items-center justify-content-end how-it-works d-flex">
<div class="col-6 text-right">
<div class="popup" onclick="myFunction()">
<h5 style="color: #FF69B4"><span class="blinking">27th Jan,2019 - 8th Feb,2019</span> </h5>
<span class="popuptext" id="mypopup">Revised dates</span>
</div>
<p style="color: white; font-size:18px;">Execution and Mentorship Phase</p>
</div>
<div class="col-2 text-center d-inline-flex justify-content-center align-items-center">
<div class="circle font-weight-bold">2</div>
</div>
</div>
<!--path between 2-3-->
<div class="row timeline">
<div class="col-2">
<div class="corner right-bottom"></div>
</div>
<div class="col-8">
<hr/>
</div>
<div class="col-2">
<div class="corner top-left"></div>
</div>
</div>
<!--third section-->
<div class="row align-items-center how-it-works d-flex">
<div class="col-2 text-center d-inline-flex justify-content-center align-items-center">
<div class="circle font-weight-bold">3</div>
</div>
<div class="col-6">
<div class="popup" onclick="myFunction()">
<h5 style="color: #FF69B4"><span class="blinking">9th Feb, 2019</span></h5>
<p style="color: white; font-size:18px;">Final Presentation</p>
<span class="Popuptext" id="mypopup">Revised dates</span>
</div>
</div>
</div>
<!-- -->
<div class="row timeline">
<div class="col-2">
<div class="corner top-right"></div>
</div>
<div class="col-8">
<hr/>
</div>
<div class="col-2">
<div class="corner left-bottom"></div>
</div>
</div>
</div>
</div>
</div>
<div class="js__parallax-window" style="background: url(img/1920x1080/06.jpg) 50% 0 no-repeat fixed;" id="Rules and Regulations">
<div class="g-container--md g-text-center--xs g-padding-y-150--xs">
<div class="g-margin-b-60--xs">
<h1 class="g-font-size-40--xs g-font-size-50--sm g-font-size-70--md g-color--white g-letter-spacing--1 g-margin-b-30--xs">Rules & Eligibility</h1>
</div>
<a href="#js__scroll-to-section1">
<span class="s-icon s-icon--md s-icon--white-brd g-radius--circle ti-angle-double-down"></span>
</a>
</div>
</div>
<!-- Rules-->
<div id="js__scroll-to-section1" class="g-container--md g-padding-y-80--xs g-padding-y-125--sm">
<h2 class="g-font-size-32--xs g-font-size-36--md g-text-center--xs g-margin-b-80--xs">Rules and Regulations </h2>
<div style="color: rgb(61, 25, 25);font-size:18px;">
<!-- <p class="g-margin-b-5--xs"> -->
-Action Plan is open to anyone willing for participation, whether it be students, working professionals or any individual across the nation.<br><br>
-A team can comprise of minimum two and maximum five including the Team Leader.<br><br>
-The Team will be notified of any details on the email address of the Team Leader and for future correspondence with us, the team should use their team leader's email.<br><br>
-All timely instructions, guidelines and ethics laid down by us should be abided by the teams without failure.<br><br>
-The plan should be able to tackle a social issue in a smart and innovative way that has a transformational impact and a measurable social return.
</div>
</div>
<!-- End Rules Text -->
<!--Start Mentorship-->
<div class="js__parallax-window" style="background: url(img/1920x1080/06.jpg) 50% 0 no-repeat fixed;" id="Mentorship">
<div class="g-container--md g-text-center--xs g-padding-y-150--xs">
<div class="g-margin-b-60--xs">
<h1 class="g-font-size-40--xs g-font-size-50--sm g-font-size-70--md g-color--white g-letter-spacing--1 g-margin-b-30--xs">Mentorship</h1>
</div>
<a href="#js__scroll-to-section3">
<span class="s-icon s-icon--md s-icon--white-brd g-radius--circle ti-angle-double-down"></span>
</a>
</div>
</div>
<div id="js__scroll-to-section3" class="g-container--md g-padding-y-80--xs g-padding-y-125--sm sector_modification">
<div >
<p style="text-align:justify;color:rgb(61, 25, 25);font-weight: 400;font-size: 18px">
Action plan teams selected from first round through the problem statement are allotted mentors with whom teams can get in touch with for the problems prevailing during the project. Mentor will not only guide students in developing an action plan of a particular social problem but also you will get an exposure problems tackled during implication of a working model project and solutions to it. You will be mentored around 2-3 hours per week through online conversation or telephonic conversation whichever preferable by mentor working in a field that aligns with your project sector .</p>
<div id="sectors" style="text-align:center;font-size: 51px" class="wow fadeInUp col-md-12 col-sm-12" data-wow-delay="0.6s" >
<br>
Sectors
<!-- <h1>Sectors</h1> -->
<p><img src="img/sect.png" width="70%" height="70%"></p>
</div>
</div>
</div>
<!-- End Mentorship -->
<!-- Timeline-->
<!--========== PROMO BLOCK ==========-->
<div class="js__parallax-window" style="background: url(img/1920x1080/06.jpg) 50% 0 no-repeat fixed;" id="Faq">
<div class="g-container--md g-text-center--xs g-padding-y-150--xs">
<div class="g-margin-b-60--xs">
<h1 class="g-font-size-40--xs g-font-size-50--sm g-font-size-70--md g-color--white g-letter-spacing--1 g-margin-b-30--xs">FAQ</h1>
<p class="text-uppercase g-font-size-14--xs g-font-weight--700 g-color--white-opacity g-letter-spacing--2">Your Questions. Answered.</p>
</div>
<a href="#js__scroll-to-section">
<span class="s-icon s-icon--md s-icon--white-brd g-radius--circle ti-angle-double-down"></span>
</a>
</div>
</div>
<!-- End FA Questions Text -->
<!-- Ask Question Section Start -->
<section id="faq" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Ask Question?</h1>
<!-- <p class="wow fadeInDown" data-wow-delay="0.2s">Global Grand Event on Digital Design</p> -->
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-xs-12 col-sm-12">
<div class="accordion">
<div class="card">
<div class="card-header" id="headingOne">
<div class="header-title" data-toggle="collapse" data-target="#questionOne" aria-expanded="false" aria-controls="questionOne">
<i class="lni-pencil"></i> I want to participate in APlan. What should I do?
</div>
</div>
<div id="questionOne" class="collapse" aria-labelledby="headingOne" data-parent="#question">
<div class="card-body" >
Step 1:- Register on this <a href = "https://goo.gl/forms/M5pQ4JWGH2tDeTM53">link </a><br>
Step 2:- You will have to provide Team leader's details, Team Members' details, postal and other details as required. You will receive a confirmation mail.<br>
Step 3:- After getting confirmation mail, you can proceed for submission
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<div class="header-title" data-toggle="collapse" data-target="#questionTwo" aria-expanded="false" aria-controls="questionTwo">
<i class="lni-pencil"></i> What is the registration / participation fee for competition?
</div>
</div>
<div id="questionTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#question">
<div class="card-body">
There is NO registration / participation fee.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<div class="header-title" data-toggle="collapse" data-target="#questionThree" aria-expanded="false" aria-controls="questionThree">
<i class="lni-pencil"></i> Can I change my team later?
</div>
</div>
<div id="questionThree" class="collapse" aria-labelledby="headingThree" data-parent="#question">
<div class="card-body">
Yes, only in case of unavoidable circumstance you may contact at +91-8986714142.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<div class="header-title" data-toggle="collapse" data-target="#questionFour" aria-expanded="false" aria-controls="questionFour">
<i class="lni-pencil"></i> Do I compulsorily need to have a team?
</div>
</div>
<div id="questionFour" class="collapse" aria-labelledby="headingThree" data-parent="#question">
<div class="card-body">
Yes, it's compulsory to have team. It's very difficult for individuals to compete.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-xs-12 col-sm-12">
<div class="accordion">
<div class="card">
<div class="card-header" id="headingOne2">
<div class="header-title" data-toggle="collapse" data-target="#questionOne2" aria-expanded="true" aria-controls="collapseOne">
<i class="lni-pencil"></i> Does my plan have to be technology related?
</div>
</div>
<div id="questionOne2" class="collapse" aria-labelledby="headingOne" data-parent="#question">
<div class="card-body">
Not necessarily, we encourage all entries that can be developed into a plan. It must fit into model of Activism, Not for profit (NGO) or Social entrepreneurship.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo2">
<div class="header-title" data-toggle="collapse" data-target="#questionTwo2" aria-expanded="false" aria-controls="questionTwo">
<i class="lni-pencil"></i> One of my queries has been left unanswered, whom do I contact?
</div>
</div>
<div id="questionTwo2" class="collapse" aria-labelledby="headingTwo" data-parent="#question">
<div class="card-body">
You can drop a mail at aplanwelfareiitg@gmail.com
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<div class="header-title" data-toggle="collapse" data-target="#questionFive" aria-expanded="false" aria-controls="questionFive">
<i class="lni-pencil"></i>What is the eligibility to participate in the competition?
</div>
</div>
<div id="questionFive" class="collapse" aria-labelledby="headingThree" data-parent="#question">
<div class="card-body">
Anyone from student to professors can participate in competition.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Ask Question Section End -->
<!-- Sponsors Filter -->
<div class="container g-padding-y-80--xs" id="Sponsor">
<div class="g-text-center--xs g-margin-b-40--xs">
<h2 class="g-font-size-36--xs g-font-size-36--md" style="font-weight:600">Our Partners</h2>
</div>
<div class="s-portfolio">
<div id="js__filters-portfolio-gallery" class="s-portfolio__filter-v1 cbp-l-filters-text cbp-l-filters-center">
<!-- <div data-filter="*" class="s-portfolio__filter-v1-item cbp-filter-item cbp-filter-item-active">Show All</div> -->
<!-- <div data-filter=".graphic" class="s-portfolio__filter-v1-item cbp-filter-item">Sponsered By</div> -->
<!-- <div data-filter=".logos" class="s-portfolio__filter-v1-item cbp-filter-item">Title</div> -->
<!-- <div data-filter=".motion" class="s-portfolio__filter-v1-item cbp-filter-item">Incubator</div> -->
</div>
</div>
</div>
<!-- End Sponsors Filter -->
<!-- Sponsors Gallery -->
<div class="container g-margin-b-100--xs">
<div id="js__grid-portfolio-gallery" class="cbp">
<!--graphic : Sponserd By -->
<!-- logos : title-->
<!--motion : Incubator -->
<!-- Item -->
<div class="s-portfolio__item cbp-item motion graphic logos">
<!-- <div class="s-portfolio__img-effect"> -->
<img id="sponsorlogo" src="img/incubation10.png" alt="Portfolio Image" align="middle">
<!-- </div>s -->
</div>
<!-- Item -->
<div class="s-portfolio__item cbp-item motion graphic logos">
<!--<div class="s-portfolio__img-effect">-->
<img id="sponsorlogo" src="img/coming_soon.png" alt="Portfolio Image" align="middle">
<!--</div>-->
</div>
<!-- Item -->
<div class="s-portfolio__item cbp-item motion graphic">
<!---<div class="s-portfolio__img-effect">-->
<img id="sponsorlogo" src="img/coming_soon.png" alt="Portfolio Image" align="middle">
<!--</div>-->
</div>
<!--Item-->
<div class="s-portfolio__item cbp-item motion graphic">
<!--<div class="s-portfolio__img-effect"> -->
<img id="sponsorlogo" src="img/coming_soon.png" alt="Portfolio Image" align="middle">
<!--</div>-->
</div>
<!--Item -->
<div class="s-portfolio__item cbp-item motion graphic">
<!--<div class="s-portfolio__img-effect"> -->
<img id="sponsorlogo"src="img/coming_soon.png" alt="Portfolio Image" align="middle">
<!--</div>-->
</div>
<!-- End Item -->
</div>
<!-- End Sponsors Gallery -->
</div>
<!-- End Sponsors -->
<!-- Get In Touch Form -->
<div class="g-position--relative g-bg-color--dark-light" id="getintouch">
<div class="g-container--md g-padding-y-80--xs g-padding-y-125--sm">
<div class="g-text-center--xs g-margin-b-80--xs">
<h2 class="g-font-size-32--xs g-font-size-36--md g-color--white">Get in Touch</h2>
</div>
<div class="row g-row-col--5 g-margin-b-80--xs">
<div class="col-xs-4 g-full-width--xs g-margin-b-50--xs g-margin-b-0--sm">
<div class="g-text-center--xs">
<i class="g-display-block--xs g-font-size-40--xs g-color--white-opacity g-margin-b-30--xs ti-email"></i>
<h4 class="g-font-size-18--xs g-color--white g-margin-b-5--xs">Email</h4>
<p class="g-color--white-opacity">aplanwelfareiitg@gmail.com</p>
</div>
</div>
<div class="col-xs-4 g-full-width--xs g-margin-b-50--xs g-margin-b-0--sm">
<div class="g-text-center--xs">
<i class="g-display-block--xs g-font-size-40--xs g-color--white-opacity g-margin-b-30--xs ti-map-alt"></i>
<h4 class="g-font-size-18--xs g-color--white g-margin-b-5--xs">Address</h4>
<p class="g-color--white-opacity">Student Activity Centre (SAC)<br>IIT Guwahati<br>Guwahati, Assam<br>PIN Code - 781039</p>
</div>
</div>
<div class="col-xs-4 g-full-width--xs">
<div class="g-text-center--xs">
<!-- <i class="g-display-block--xs g-font-size-40--xs g-color--white-opacity g-margin-b-30xs ti-facebook-alt"></i> -->
<h4 class="g-font-size-18--xs g-color--white g-margin-b-5--xs">Follow Us</h4>
<a href="https://www.facebook.com/iitg.ssc/" target="_blank" class="fa fa-facebook"></a>
<!-- <i class="fas fa-igloo"></i> this icon's 1) style prefix == fas and 2) icon name == igloo -->
<!-- <i class="fas fa-igloo"></i> using an <i> element to reference the icon -->
<!-- <span class="fas fa-igloo"></span> using a <span> element to reference the icon -->
<!-- <p class="g-color--white-opacity"><a href="https://www.facebook.com/sociowelfarefestiitg/"></a></p> -->
<a href="https://twitter.com/iitg_ssc" target="_blank" class="fa fa-twitter"></a>
<a href="https://www.linkedin.com/in/social-service-club-79a72815a/" target="_blank" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</div>
<img class="s-mockup-v2" src="img/mockups/pencil-01.png" alt="Mockup Image">
</div>
<!-- End Contact Us form-->
<section id="detail1" class="parallax-section">
<div class="container">
<div>
<h2 id="font2" class="g-font-size-40--xs g-font-size-50--sm g-font-size-60--md">Contact Us</h2>
</div>
<div id="Contacts" class="row">
<div class="wow fadeInLeft col-md-3 col-sm-3" data-wow-delay="0.3s">
<h4 class="g-color--white">Shantanu Shekhar</h4> <br>
<p style="font-size:14px">CONVENER , ACTION PLAN</p>
<p style="font-size:14px">imshantanu98@iitg.ac.in</p>
<p style="font-size:14px">+91- 8986714142</p>
<p style="font-size:18px">
<ul class="social-icon">
<li><a href="https://www.facebook.com/ShaNtaNu7920" target="_blank" class="fa fa-facebook "></a></li>
<li><a href="https://twitter.com/Shantan82834977?s=08" target="_blank" class="fa fa-twitter wow fadeInUp" data-wow-delay="0.3s"></a></li>
<li><a href="https://www.linkedin.com/in/shantanu71/ " target="_blank" class="fa fa-linkedin wow fadeInUp" data-wow-delay="0.3s"></a></li>
</ul>
</p>
</div>
<div class="wow fadeInUp col-md-3 col-sm-3" data-wow-delay="0.6s">
<h4 class="g-color--white"> Ravinder Bedi</h4> <br>
<p style="font-size:14px">CO ORDINATOR</p>
<p style="font-size:14px">ghy_ep4756@iitg.ac.in</p>
<p style="font-size:14px">+91-9914379745</p>
<p style="font-size:18px">
<ul class="social-icon">
<li><a href="https://www.facebook.com/ravinder.bedi2" target="_blank" class="fa fa-facebook wow fadeInUp" data-wow-delay="0.6s"></a></li>
<li><a href="" target="_blank" class="fa fa-twitter wow fadeInUp" data-wow-delay="0.6s"></a></li>
<li><a href="https://www.linkedin.com/in/ravinder-bedi/" target="_blank" class="fa fa-linkedin wow fadeInUp" data-wow-delay="0.6s"></a></li>
</ul>
</p>
</div>
<div class="wow fadeInUp col-md-3 col-sm-3" data-wow-delay="0.6s">
<h4 class="g-color--white">Mayuri Chhajed</h4> <br>
<p style="font-size:14px">EVENT MANAGER</p>
<p style="font-size:14px">chhaj170122027@iitg.ac.in</p>
<p style="font-size:14px">+91-8390562711</p>
<p style="font-size:12px">
<ul class="social-icon">