-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
1687 lines (1441 loc) · 74.7 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 content="width=device-width, initial-scale=1.0" name="viewport">
<meta name="description" content="Kites Foundation" />
<title>Kites Foundation</title>
<meta name="viewport" content="minimum-scale=1,initial-scale=1,width=device-width,shrink-to-fit=no" />
<meta property="og:title" content="Kites Foundation" />
<meta property="og:description"
content="Kites Foundation is a team of young zealots who aim at transforming our country, soul by soul through youth led development and collective effort. Here, we are to break the shackles of socio-cultural, linguistic,political and geographical barriers, to fly boundless." />
<meta property="og:image" content="https://cdn.kites.foundation/img/logo.png" />
<meta property="og:url" content="https://kitesfoundation.org" />
<meta property="og:site_name" content="Kites Foundation." />
<meta name="twitter:title" content="Kites Foundation" />
<meta name="twitter:description"
content="Kites Foundation is a team of young zealots who aim at transforming our country, soul by soul through youth led development and collective effort. Here, we are to break the shackles of socio-cultural, linguistic,political and geographical barriers, to fly boundless." />
<meta name="twitter:image" content="https://cdn.kites.foundation/img/logo.png" />
<meta name="twitter:card" content="summary" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="Kites">
<!-- Favicons -->
<link href="https://cdn.kites.foundation/img/favicon.png" rel="icon">
<link href="https://cdn.kites.foundation/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,600,600i,700,700i|Satisfy|Comic+Neue:300,300i,400,400i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<style>
.ion-chevron-right {
color: grey;
background-color: #ffb03b;
border-radius: 10px;
font-size: 40px;
line-height: 1;
position: absolute;
right: 50px;
/*background-color: black;
border-radius: 50px; */
}
.ion-chevron-left {
color: grey;
background-color: #ffb03b;
border-radius: 10px;
font-size: 40px;
line-height: 1;
position: absolute;
left: 50px;
}
/*#team .carousel-control-next-icon, #team .carousel-control-prev-icon {
background: none;
font-size: 32px;
line-height: 1;
position: absolute;
}*/
.carousel-indicators li {
background-color: grey;
}
.impact .count-box{
font-size: 35px;
line-height: 48px;
font-weight: 600;
color: rgb(214, 122, 16);
margin-left: 80px;
margin: auto;
opacity: 1;
display: block;
}
</style>
</head>
<body>
<!-- ======= Top Bar ======= -->
<section id="topbar" class="d-none d-lg-flex align-items-center fixed-top topbar-transparent">
<div class="container text-right">
<i class="icofont-phone"></i> +91 8138 0009 33
<i class="social-links">
<a href="https://twitter.com/FoundationKites" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="http://facebook.com/kitesfoundationfb" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="https://instagram.com/kitesfoundation" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="https://www.youtube.com/channel/UCoyxzgTZee1t068TJ0o44fg" class="youtube"><i
class="bx bxl-youtube"></i></a>
<a href="https://www.linkedin.com/company/kites-foundation" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</i>
<!--
<i class="icofont-clock-time icofont-rotate-180"></i> Mon-Sat: 11:00 AM - 23:00 PM -->
</div>
</section>
<!-- ======= Header ======= -->
<!--<div class="container d-flex align-items-center">-->
<header id="header" class="fixed-top d-flex align-items-center header-transparent" style="min-height: 100px;">
<div class="container d-flex align-items-center">
<div class="logo mr-auto">
<a href="index.html"><img src="https://cdn.kites.foundation/img/templogo.png" alt="" class="img-fluid"
style="max-width: 100%; min-height: 55px;"></a>
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li class="drop-down"><a>About Us</a>
<ul>
<li><a href="">Our Story</a></li>
<li><a href="vision.html">Vision & Mission</a></li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Team</a>
<ul>
<li><a href="boardofdirectors.html">Board of Directors</a></li>
<li><a href="executive.html">Executive Committee</a></li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Department</a>
<ul>
<li><a href="education.html">Education</a></li>
<li><a href="">Livelihood</a></li>
<li><a href="">Rang</a></li>
<li><a href="">Environment</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="partners.html">Our Partners</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</li>
<li class="drop-down"><a>Our Initiatives</a>
<ul>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Education</a>
<ul>
<li><a href="umeed.html">Umeed</a></li>
<li><a href="http://sumedha.org.in/">Sumedha</a></li>
<!-- <li><a href="mysanta.html">My Santa</a></li> -->
</ul>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Health</a>
<ul>
<li><a href="flattenthecurve.html">Flatten the curve</a></li>
<!-- <li><a href="#">Blood Bank</a></li> -->
</ul>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Environment</a>
<ul>
<li><a href="summerpots.html">Summerpots</a></li>
<li><a href="punarjjani.html">Punarjjani</a></li>
<!--<li><a href="#">Million Trees</a></li> -->
</ul>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Livelihood</a>
<ul>
<li><a href="mysanta.html">My Santa</a></li>
<li><a href="bookfarm.html">Book Farm</a></li>
</ul>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Technology</a>
<ul>
<li><a href="vibgyormunnar.html">Munnar Vibgyor Tourism</a></li>
<li><a href="c4munnar.html">Code4Munnar</a></li>
</ul>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Art & Culture</a>
<ul>
<li><a href="voiceofindia.html">Voice of India</a></li>
<li><a href="rang.html">Rang Fest</a></li>
</ul>
</li>
<li><a href="kalamawards/index.html">Kalam Awards</a></li>
</ul>
</li>
<li class="drop-down"><a>Impact</a>
<ul>
<!-- <li><a href="#">Their Stories</a></li> -->
<li><a href="testimonials.html">Testimonials</a></li>
</ul>
</li>
<li class="drop-down"><a>Media</a>
<ul>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="news.html">News</a></li>
</ul>
</li>
<li><a href="#contact">Contact</a></li>
<li class="book-a-table text-center"><a href="join.html">Join Us</a></li>
<li class="book-a-table text-center"><a href="https://rzp.io/l/Bookfarm">Donate</a>
</li>
<!--<li class="book-a-table1 text-center"><a href="https://kitesfoundation.org/c4munnar">Code4Munnar</a></li>-->
</ul>
</nav><!-- .nav-menu -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container">
<div id="heroCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators" id="hero-carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<!-- <div class="carousel-item active"
style="background: url(https://cdn.kites.foundation/img/kalamawards/Wide.jpg);background-size: cover;">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Kalam<span> Awards</span> 2021</h2>
<p class="animate__animated animate__fadeInUp">Kites Foundation announces Kalam Awards 2021 to acknowledge and appreciate the journey of young individuals and communities who have volunteered and contributed positively to bring about a constructive change in our society and led a step forward to ensure a better state of living from the developmental aspect.
</p>
<div>
<a href="kalamawards/index.html" class="btn-book animate__animated animate__fadeInUp scrollto">Kalam Awards</a>
</div>
</div>
</div>
</div> -->
<!-- Slide 1 -->
<div class="carousel-item active"
style="background: url(https://cdn.kites.foundation/img/slide/s13.jpg);background-size: cover;">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">To the <span>SKY</span> and <span>BEYOND</span></h2>
<p class="animate__animated animate__fadeInUp">A team of young zealots working towards transforming this country through 'Youth-Led' development and collective effort.
</p>
<div>
<a href="join.html" class="btn-book animate__animated animate__fadeInUp scrollto">Join Us</a>
</div>
</div>
</div>
</div>
<!-- Slide 1 -->
<div class="carousel-item"
style="background: url(https://cdn.kites.foundation/img/slide/s14.jpg);background-size: cover;">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Caring <span>for Climate</span> </h2>
<p class="animate__animated animate__fadeInUp">"From Cop 26, We need action and not promises", Socially and environmentally committed volunteers of Kites Foundation, a youth NGO assembled at Thekkinkaad maidan, Thrissur demanding climate justice.
</p>
<div>
<a href="join.html" class="btn-book animate__animated animate__fadeInUp scrollto">Join Us</a>
</div>
</div>
</div>
</div>
<!-- Slide 2 -->
<div class="carousel-item"
style="background: url(https://cdn.kites.foundation/img/slide/s10.jpg); background-size: cover;">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">2 Years<span> of Kites</span></h2>
<p class="animate__animated animate__fadeInUp">The second anniversary celebration of Kites Foundation was inaugrated by Hon. Education Minister of Kerala, Sri V SivanKutty.</p>
<div>
<a href="join.html" class="btn-book animate__animated animate__fadeInUp scrollto">Join Us</a>
</div>
</div>
</div>
</div>
<!-- Slide 3-->
<div class="carousel-item"
style="background: url(https://cdn.kites.foundation/img/slide/PIC3.jpg); background-size: cover;">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">thinking<span> Independently Together</span></h2>
<p class="animate__animated animate__fadeInUp">A team of young zealots working towards transforming this country through 'Youth-Led' development and collective effort.</p>
<div>
<a href="join.html" class="btn-book animate__animated animate__fadeInUp scrollto">Join Us</a>
</div>
</div>
</div>
</div>
<!-- Slide 3 -->
<div class="carousel-item"
style="background: url(https://cdn.kites.foundation/img/slide/vibgyor.jpg); background-size: cover;">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Hello<span> Munnar</span></h2>
<p class="animate__animated animate__fadeInUp">Munnar is all set to embrace a novel face of tourism with the advent of VIBGYOR Tourism Project initiated by KITES Foundation in association with District Administration ,Idukki.</p>
<div>
<a href="https://hellomunnar.in/" class="btn-book animate__animated animate__fadeInUp scrollto">Hello
Munnar</a>
</div>
</div>
</div>
</div>
<!-- Slide 4 -->
<div class="carousel-item"
style="background: url(https://cdn.kites.foundation/img/slide/c4m.jpeg); background-size: cover;">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Code!<span> Camp!</span> Change!</h2>
<p class="animate__animated animate__fadeInUp"> A three - day Hackathon event organised by KITES Foundation in association with District Administration, Idukki at College of Engineering, Munnar.</p>
<div>
<a href="c4munnar.html" class="btn-book animate__animated animate__fadeInUp scrollto">Code4Munnar</a>
</div>
</div>
</div>
</div>
<!-- Slide 6 -->
<!-- <div class="carousel-item"
style="background: url(https://cdn.kites.foundation/img/slide/slide-4.jpg); background-size: cover;">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Planting <span>million lives!</span></h2>
<p class="animate__animated animate__fadeInUp">If you are ready to plant our planet’s future- Dig up, plant a sapling and challenge your mates to ensure a better, brighter and greener future!</p>
<div>
<a href="https://duaboola.github.io/onemillion/"
class="btn-book animate__animated animate__fadeInUp scrollto">million trees</a>
</div>
</div>
</div>
</div> -->
<!-- Slide 7 -->
<div class="carousel-item"
style="background: url(https://cdn.kites.foundation/img/slide/slide-5.jpg); background-size: cover;">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Reviving the <span>art of Agriculture</span></h2>
<p class="animate__animated animate__fadeInUp">A campaign to educate people on the significance of attaining food self sufficiency in the short run to achieve food security in the long run.</p>
<div>
<a href="#" class="btn-book animate__animated animate__fadeInUp scrollto">Punarjjani</a>
</div>
</div>
</div>
</div>
<!-- Slide 8-->
<div class="carousel-item"
style="background: url(https://cdn.kites.foundation/img/slide/slide-6.jpg); background-size: cover;">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Educate and <span>Illuminate</span></h2>
<p class="animate__animated animate__fadeInUp">Sumedha, our higher education programme aims to discover the hidden skills and talents of students through various programmes and mould them into worthy citizens with a vision for transforming our nation.</p>
<div>
<a href="https://www.sumedha.org.in"
class="btn-book animate__animated animate__fadeInUp scrollto">Sumedha</a>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#heroCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon icofont-simple-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#heroCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon icofont-simple-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container-fluid">
<div class="row">
<div class="col-lg-5 align-items-stretch video-box"
style='background-image: url("https://cdn.kites.foundation/img/about.jpg");'>
<a href="https://www.youtube.com/watch?v=_RwnMjX2wPg" class="venobox play-btn mb-4" data-vbtype="video"
data-autoplay="true"></a>
</div>
<div class="col-lg-7 d-flex flex-column justify-content-center align-items-stretch">
<div class="content">
<h3><span style="color: orange;">our Vision</span></h3>
<ul>
<li><i class="bx bx-show"></i> Fashioning India into an abode of peace, prosperity and
sustainability through <strong>youth led development</strong>.</li>
</ul>
<h3><span style="color: orange;">our Mission</span></h3>
<ul>
<li><i class="bx bx-target-lock"></i> To incubate and celebrate transformative individual ideas through collective effort to
build leaders of tomorrow, capable of responding to the new challenges.
</li>
<li><i class="bx bx-target-lock"></i>To identify and resolve community-based problems with desirable solutions by joining hands with various stake holders including industry,academia,civil society and the Government.</li>
<li><i class="bx bx-target-lock"></i>
To engage in quality knowledge generation through research to facilitate informed actions.
</li>
<li><i class="bx bx-target-lock"></i> To explore the potential of youth networking within and outside the nation.</li>
</ul>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Specials Section ======= -->
<section id="wings" class="specials">
<div class="container">
<div class="section-title">
<h2><span>Wings</span> of Kites</h2>
<p>to fly boundless, to gift wings to the needy, to brighten the sky with the lights of change, to be the
luminary for generations to come.</p>
</div>
<div class="row">
<div class="col-lg-3">
<ul class="nav nav-tabs flex-column">
<li class="nav-item">
<a class="nav-link active show" data-toggle="tab" href="#tab-1">Health</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-2">Environment</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-3">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-4">Art & Culture</a>
</li>
</ul>
</div>
<div class="col-lg-9 mt-4 mt-lg-0">
<div class="tab-content">
<div class="tab-pane active show" id="tab-1">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Swasth raho! Masth raho!</h3>
<p class="font-italic"><strong>‘Ayush’</strong> signifies life and emphasise on the idea of both
physical and mental wellness. It aims at addressing the pitfalls within the health sector and
works towards addressing the rural urban-divide. As mental wellness is considered equally
important for a healthy and happy living, Ayush seeks to nurture a healthy generation capable of
destigmatising mental health issues.</p>
<p>Initiatives to raise awareness against stigmas related to health, campaigns to facilitate better
disposal of healthcare, projects to bring in health facilities to economically weaker and less
reachable sections of the society, programmes to enable people to improve their own health and
well-being are some of the means to achieve the end of creating a healthy population through
Ayush.</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="https://cdn.kites.foundation/img/specials-1.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-2">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Think green, Live green, Save Green.</h3>
<p class="font-italic">In the recent past, our planet has witnessed a parade of disasters which is a
warning that we are the last generation who can do something about it.Kites foundation is
committed to the conservation of our planet and envisages a sustainable development model.</p>
<p><strong>‘Bhumi’</strong> translates to Earth and has an objective to establish a positive
relationship between human beings and nature .This is to be achieved through a series of awareness
campaigns and projects to improve our flora and fauna. Kites highlight ideas like co-inhabitation
of living beings and emphasises on the building up of a disaster resilient model etc. Disasters
have made life miserable for many communities in our country hence, we at Kites identifies,
achieving Self Sufficieny in food sector as necessary adaptation for survival.</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="https://cdn.kites.foundation/img/specials-2.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-3">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Turning the mirrors to windows</h3>
<p class="font-italic">Dynamic youth is key to the foundation of a strong nation and it can be
realized through education.Kites foundation seeks to strengthen our educational system through
<strong>‘Vidya’</strong> which aims to provide a space for our children to avail hassle free
education.</p>
<p>Opening new schools even in the remotest areas, providing necessary infrastructure facilities to
schools which lack them, promoting innovation and skill development, bridging the digital divide
existing between the children of rural and urban India, providing meritorious scholarships to
children from economically weak backgrounds etc. are the various plans under Vidya. Fashioning a
generation of citizens who are educated and illuminated is our objective and Vidya is the path
towards this noble end.</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="https://cdn.kites.foundation/img/specials-3.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-4">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Celebrating India! Celebrating Diversity!</h3>
<p class="font-italic">While science and philosophy explores the reason behind life, Art and culture
is something that makes life worth living. India is home to myriad forms of cultural heritages
which are the key to our national integration.</p>
<p>Kites foundation realises this and strives to revive, promote and preserve them in their truest
form. Rang will be a celebration of our culture, arts and artists from over a hundred different
indigenous art forms within the scope of literature, performing arts and visual arts. Rang will
provide a platform for over a lakh of artists to exhibit and explore the avenues of Indian art and
culture. It will be a spectacular manifestation of the idea of unity in diversity. We are also
dedicated to conduct events that involve youth participation in this regard.</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="https://cdn.kites.foundation/img/specials-4.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Specials Section -->
<!-- ======= Events Section ======= -->
<section id="initiatives" class="events">
<div class="container">
<div class="section-title">
<h2>our<span> Initiatives</span></h2>
</div>
<div class="owl-carousel events-carousel">
<div class="row event-item">
<div class="col-lg-6">
<img src="https://cdn.kites.foundation/img/munnar.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Munnar VIBGYOR Tourism</h3>
<p class="font-italic">
Kites Foundation in association with District Administration, Idukki has initiated a Tourism development
project in Munnar.
</p>
<ul>
<li><i class="icofont-check-circled"></i>The tourism project was launched by Shri.M.M Mani and Shri.C
Ravindranath Honorable Ministers of Power and Education respectively.
</li>
<li><i class="icofont-check-circled"></i> Hello Munnar, a progressive web app designed for the ease of
information access was also launched in the ceremony.</li>
</ul>
<p>
The project seeks to improve the discoverability of Munnar by providing necessary route based
informations to the tourists. For an enhanced tourism experience, Seven routes have been identified in
Munnar which are aptly described by the seven rainbow colours, The VIBGYOR.
</p>
</div>
</div>
<div class="row event-item">
<div class="col-lg-6">
<img src="https://cdn.kites.foundation/img/c4munnar.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Code4Munnar - Code! Camp! Change!</h3>
<p class="font-italic">
A three - day Hackathon event organised by KITES Foundation in association with District Administration,
Idukki at College of Engineering, Munnar on 29 ,30 & 31st of January,2021.
</p>
<ul>
<li><i class="icofont-check-circled"></i> The prime intention of the event was to build an application
to implement the concept of VIBGYOR TOURISM in Munnar initiated by KITES Foundation.</li>
<li><i class="icofont-check-circled"></i> The event was open to public and around 50 delegates who took
part in the Hackathon were monitored by a team of experienced IT Mentors.</li>
</ul>
<p>
The official Logo of the project, designed by a group of proficient designers was launched by MP. Adv.
Dean Kuriakose of Idukki Constituency.
</p>
</div>
</div>
<div class="row event-item">
<div class="col-lg-6">
<img src="https://cdn.kites.foundation/img/mysanta.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>My Santa - Gift Smiles, Touch Hearts</h3>
<p class="font-italic">
Kites Foundation initiated project My Santa to brighten the tiny lives darkened by the shadow of
pandemic.
</p>
<ul>
<li><i class="icofont-check-circled"></i> The project aims at sharing happiness with children and senior
citizens, most in need of us.</li>
<li><i class="icofont-check-circled"></i> Donation of wheelchairs to the needy, a package worth Rs1000
including a cake and a gift as their Christmas- Newyear hamper.</li>
</ul>
<p>
Project is currently running successfully accross kerala to recall the importance of cultivating the
value of acceptance and appreciation of everyone in our society.
</p>
</div>
</div>
<div class="row event-item">
<div class="col-lg-6">
<img src="https://cdn.kites.foundation/img/umeed.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Umeed - Hands of hope</h3>
<p class="font-italic">
Amidst covid 19 pandemic kites Foundation initiated project meet encouraging people to donate towards
the educational support of children.
</p>
<ul>
<li><i class="icofont-check-circled"></i> Umeed lends a helping hand for the underprivileged children to
fulfill the need for a better education.</li>
<li><i class="icofont-check-circled"></i> Around a thousand children from 10 states were benefited from
project Umeed.</li>
</ul>
<p>
Kites Foundation has undertaken the initiative to fulfill the dreams and hopes of underprivileged
children
</p>
</div>
</div>
<div class="row event-item">
<div class="col-lg-6">
<img src="https://cdn.kites.foundation/img/smile.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Project Smile</h3>
<p class="font-italic">
Kites Foundation initiated project smile to support the public health workers, providing them with covid
-19 precaution kit.
</p>
<ul>
<li><i class="icofont-check-circled"></i> The precaution kit contains a PPE kit, N95 mask, and
sanitizers.</li>
<li><i class="icofont-check-circled"></i> The project was launched in association with the ministry of
health with the complete participation of each district.</li>
</ul>
<p>
kites Foundation was able to distribute around thousand covid-19 precaution kit as a part of project
smile.
</p>
</div>
</div>
<div class="row event-item">
<div class="col-lg-6">
<img src="https://cdn.kites.foundation/img/summerpots.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Summer Pots - Feed the voiceless !</h3>
<p class="font-italic">
The searing heat due to harsh summers is making the lives of these innocent creatures more vulnerable.
</p>
<ul>
<li><i class="icofont-check-circled"></i> The Summer Pots campaign is a Kites Initiative to protect
animals from summer strokes.</li>
<li><i class="icofont-check-circled"></i> It involves placing a pot of water in our surroundings. The
campaign witnessed a participation of more than a thousand people across India and abroad.</li>
</ul>
<p>
Kites Foundation has undertaken this initiative so as to make sure that these voiceless animals stay
hydrated.
</p>
</div>
</div>
<div class="row event-item">
<div class="col-lg-6">
<img src="https://cdn.kites.foundation/img/sumedha.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Sumedha - Library and Reading Room</h3>
<p class="font-italic">
The objective of Sumedha, our higher education Project is to expose participating individuals to better
higher education possibilities.
</p>
<ul>
<li><i class="icofont-check-circled"></i> An open, full-fledged and integrated reading room facility was
opened in Kerala for students who are preparing for Competitive Exams.</li>
<li><i class="icofont-check-circled"></i> It was inaugurated by Honourable Minister for Education,
Kerala Shri. C. Raveendranath.</li>
</ul>
<p>
Kites foundation believe that socio-economic background of a student must not be a barrier for their
career.
</p>
</div>
</div>
<div class="row event-item">
<div class="col-lg-6">
<img src="https://cdn.kites.foundation/img/webinar.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Punarjjani - Reviving the art of agriculture!</h3>
<p class="font-italic">
“Agriculture is the mother of all arts. When it is well conducted, all other arts prosper. When it is
neglected, all other arts decline”
-Xenophon-
</p>
<ul>
<li><i class="icofont-check-circled"></i> A webinar on the topic-‘food self-sufficiency in Kerala’ was
conducted as part of the project.</li>
<li><i class="icofont-check-circled"></i> It was inaugurated by honourable State Minister for
Agriculture Adv. V. S Sunil Kumar.</li>
</ul>
<p>
Kites Foundation aims to draw attention to the existence and contributions of the indirect roles of
agriculture and integrate these social values into the process of policy making.
</p>
</div>
</div>
</div>
</div>
</section><!-- End Events Section -->
<!-- ======= Why Us Section ======= -->
<section id="campaigns" class="why-us">
<div class="container">
<div class="section-title">
<h2>our<span> Campaigns</span></h2>
<p>Campaigns of Kites serve to reinforce our ideas and aspirations for the community. Here are some of our
live campaigns with the participation of masses through volunteerism.
</p>
</div>
<div class="row">
<div class="col-lg-4">
<div class="box">
<span>01</span>
<h4>Out of the BOX</h4>
<p>A creativity enhancement programme to bring happiness and perspective building in children through film
making workshops and similar engaging tools. The campaign helps in exploring the limitless potential
within each child and brings out the best versions of themselves in their own areas of interest.Towards
the end of this outcome oriented campaign, the final product of the creativity workshop will be
presented by children which will be a manifestation of their team spirit and togetherness.</p>
</div>
</div>
<div class="col-lg-4 mt-4 mt-lg-0">
<div class="box">
<span>02</span>
<h4>Smile</h4>
<p>To protect ourselves and others from COVID-19, face coverings serve as an essential commodity. SMILE is
a nation-wide campaign running successfully to procure and distribute masks. Our team has pledged to
distribute 1 million reusable cloth masks and disposable masks for the needy across India. Along the
way, we plan to provide employment to many in need of it too. The programme also aims at helping less
privileged communities that have no access to sanitary face masks in this crisis times.</p>
</div>
</div>
<div class="col-lg-4 mt-4 mt-lg-0">
<div class="box">
<span>03</span>
<h4>Path Finder</h4>
<p>A comprehensive, developmental program designed to assist individuals in making and implementing
informed educational and occupational choices. A career guidance and counseling program develops an
individual's competencies in self-knowledge, educational and occupational exploration, and career
planning. Path Finder will provide students with exceptional support of our career counsellors and will
help in a step-by-step plan for their career progression.</p>
</div>
</div>
</div>
</div>
</section><!-- End Why Us Section -->
<!-- Impact Section -->
<section id="our-impact" class="impact chefs" style="background-image: url(https://cdn.kites.foundation/img/vibgyormunnar/gallery/gallery-2.jpg);">
<div class="container" >
<div class="section-title">
<h2>Its<span> Working!</span></h2>
<p>"Youth Transforming The World Starting In Their Own Backyards."
</p>
</div>
<div class="row justify-content-center">
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-toggle="counter-up">2</span>
<p>year</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-toggle="counter-up">10+</span>
<p>Awards</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-toggle="counter-up">10+</span>
<p>Projects</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-toggle="counter-down">1500+</span>
<p>Beneficiaries</p>
</div>
</div>
</div>
</div>
</section>
<!-- End of Impact Section -->
<!--====== Impact Section ====== -->
<section id="Impact" class="impact">
<div class="container">
<div class="section-title">
<h2>The <span>Impact</span> </h2>
<p>“Small gestures can have a big impact. Create where it matters.”</p>
</div>
<div class="row text-center">
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="items">
<h2><span class="counter text-center">2</span></h2>
<p>YEARS</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="items">
<h2><span class="counter text-center">10</span>+</h2>
<p>STATES</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="items">
<h2><span class="counter text-center">5000</span>+</h2>
<p>BENEFICIERIES</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="items">
<h2><span class="counter text-center">3000</span>+</h2>
<p>VOLUNTEERS</p>
</div>
</div>
</div>
</div>
</section>
<!-- End of Impact Section -->
<!--Upcoming events Section-->
<!-- <section id="upcoming-events" class="event">
<div class="container">
<div class="section-title">
<h2>Upcoming<span> Events</span></h2>
</div>
<div class="card-container">
<div class="card card-1">
<div class="card-img"></div>
<a href="" class="card-link">
<div class="card-img-hovered"></div>
</a>
<div class="card-info">
<div class="card-about">
<div class="card-time">2021 March 28</div>
</div>
<h1 class="card-title">Rang Award Ceremony-Palakkad</h1>
</div>
</div>
<div class="card card-2">
<div class="card-img"></div>
<a href="" class="card-link">
<div class="card-img-hovered"></div>
</a>
<div class="card-info">
<div class="card-about">
<div class="card-time">2021 April 11</div>
</div>
<h1 class="card-title">Rang Award Ceremony-Alappuzha</h1>
</div>
</div>
<div class="card card-3">
<div class="card-img"></div>
<a href="" class="card-link">
<div class="card-img-hovered"></div>
</a>
<div class="card-info">
<div class="card-about">
<div class="card-time">2021 April 11</div>
</div>
<h1 class="card-title">Rang Award Ceremony-Malappuram</h1> -->
<!-- <div class="card-creator">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</div> -->
<!-- </div>
</div>
</div>
</div>
</section> -->
<!--End of Upcoming events-->
<!-- ======= Gallery Section ======= -->
<section id="gallery" class="gallery">
<div class="container-fluid">
<div class="section-title">
<h2>Glimpses of <span>Towering Together</span></h2>
<p>"So powerful is the light of unity that it can illuminate the whole earth."</p>
</div>
<div class="row no-gutters">
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="https://cdn.kites.foundation/img/gallery/gallery-1.jpg" class="venobox" data-gall="gallery-item">
<img src="https://cdn.kites.foundation/img/gallery/gallery-1.jpg" alt="" class="img-fluid">
</a>
</div>
</div>