-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtfp-projects.html
1164 lines (895 loc) · 47.2 KB
/
tfp-projects.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">
<title>TFP-Projects</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="https://cdn.kitesfoundation.org/img/favicon.png" rel="icon">
<link href="https://cdn.kitesfoundation.org/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&family=Inter:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet'>
<!-- Vendor CSS Files -->
<link href="tfp-projects_assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="tfp-projects_assets//vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="tfp-projects_assets//vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="tfp-projects_assets//vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="tfp-projects_assets//vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS Files -->
<link href="tfp-projects_assets/css/variables.css" rel="stylesheet">
<link href="tfp-projects_assets/css/main.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="header d-flex align-items-center fixed-top">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center">
<img src="https://cdn.kitesfoundation.org/img/logo-NEW.png" alt="">
</a>
<nav id="navbar" class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li class="dropdown"><a href=""><span>About Us</span><i class="bi bi-chevron-down dropdown-indicator"></i></a>
<ul>
<li><a href="">Our Story</a></li>
<li><a href="vision.html">Vision & Mission</a></li>
</ul>
</li>
<li class="dropdown"><a href=""><span>Impact</span><i class="bi bi-chevron-down dropdown-indicator"></i></a>
<ul>
<!-- <li><a href="#">Their Stories</a></li> -->
<li><a href="testimonials.html">Testimonials</a></li>
</ul>
</li>
<li class="dropdown"><a href="#"><span>Media</span> <i class="bi bi-chevron-down dropdown-indicator"></i></a>
<ul>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="news.html">News</a></li>
</ul>
<li><a href="#contact">Contact</a></li>
</ul>
</nav><!-- .navbar -->
<div class="position-relative">
<a href="#" class="mx-2 js-search-open"></a>
<i class="bi bi-list mobile-nav-toggle"></i>
<!-- ======= Search Form ======= -->
<div class="search-form-wrap js-search-form-wrap">
<form action="#" class="search-form">
<span class="icon bi-search"></span>
<input type="text" placeholder="Search" class="form-control">
<button class="btn js-search-close"><span class="bi-x"></span></button>
</form>
</div><!-- End Search Form -->
</div>
</div>
</header><!-- End Header -->
<main id="main">
<!-- ======= Hero Slider Section ======= -->
<section id="hero-slider" class="hero-slider">
<div class="container-md" data-aos="fade-in">
<div class="row">
<div class="col-12">
<div class="swiper sliderFeaturedPosts">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a href="#" class="img-bg d-flex align-items-end" style="background-image: url('https://cdn.kitesfoundation.org/img/slide/s13.jpg');">
<div class="img-bg-inner">
<section id="intro" class="intro">
<h1><b><span>The Future Project -</span> Projects</b></h1>
</section>
</div>
</a>
</div>
<div class="swiper-slide">
<a href="#" class="img-bg d-flex align-items-end" style="background-image: url('https://cdn.kitesfoundation.org/img/slide/s10.jpg');">
<div class="img-bg-inner">
<h2>2 Years of Kites</h2>
<p>The second anniversary celebration of Kites Foundation was inaugrated by Hon. Education Minister of Kerala, Sri V SivanKutty.
</p>
</div>
</a>
</div>
<div class="swiper-slide">
<a href="#" class="img-bg d-flex align-items-end" style="background-image: url('https://cdn.kitesfoundation.org/img/slide/slide-5.jpg');">
<div class="img-bg-inner">
<h2>Reviving the art of Agriculture</h2>
<p>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>
</div>
</div>
<div class="custom-swiper-button-next">
<span class="bi-chevron-right"></span>
</div>
<div class="custom-swiper-button-prev">
<span class="bi-chevron-left"></span>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</section><!-- End Hero Slider Section -->
<!-- introduction -->
<!-- <section id="intro" class="intro">
<h1><b><span>The Future Project -</span> Projects</b></h1>
<p><q>Lorem ipsum dolor sit amet consectetur adipisicing elit.
<br>Aspernatur eaque necessitatibusdebitis accusamus
laboriosam facere odio, numquam qui, <br>molestiae dolores cupiditate unde aliquam consequatur
modi nemo vero maiores doloribus quo?</q></p>
</section> -->
<!-- ======= Our Initiatives (Post Grid) Section ======= -->
<!-- ======= Kalam Centre (Business) Category Section ======= -->
<section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h1><b> Nove</b></h1>
</div>
<div class="container" data-aos="fade-up">
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail">
<img src="https://cdn.kitesfoundation.org/img/tfp-projects/nove.jpeg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>An effort by St. Michael's College Cherthala students to promote sustainable
development by maximising the power of recycling.
The college students pooled their collections of used books and
sold them for recycling. The money made was used to support charitable initiatives.
17 trees and 7,000 gallons of water can be saved for every tonne of recycled paper.
Air pollution and water pollution caused by paper production
can also be prevented by promotion of recycling.
</p>
<p>Ideators: <b> Antony Midhun, Daniel George</b></p>
<p>Location: <b> Alappuzha</b></p>
<p>Milestones: <b> Collected 2 tonnes of books and sold them for recycling.</b></p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<!-- <td width="91"><b>Project ID</b></td> -->
<td width="91">No of Volunteers Engaged</td>
<td width="91">Total Volunteering Hours</td>
</tr>
<tr>
<!-- <td width="91"><h6>104</h6></td> -->
<td width="91"><b><h4>350+</h4></b></td>
<td width="91"><b><h4>796</h4></b></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Kalam centre Category Section -->
<!-- ======= Education (culture) Section ======= -->
<section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h1><b>Zero Hunger</b></h1>
</div>
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail order-2">
<img src="https://cdn.kitesfoundation.org/img/tfp-projects/zero-hunger.jpeg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>According to the United Nations, out of 8 billion population almost 700 million people are poor in the world. Many people struggle to make enough money to simply pay for their own food. This initiative is a small step toward reducing poverty and hunger and ensuring SDG. The needy people in Ernakulam city premises will receive packaged food from Sacred Heart College Thevara students. The students of SH,Thevara have the courage and determination to make Ernakulam "hunger-free."
</p>
<p>Ideators: <b>Lakshmi K J, Anusha J</b></p>
<p>Location: <b>Ernakulam</b></p>
<p>Milestones: <b>Collected 2 tonnes of books and sold them for recycling.</b></p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<!-- <td width="91"><b>Project ID</b></td> -->
<td width="91">No of Volunteers Engaged</td>
<td width="91">Total Volunteering Hours</td>
</tr>
<tr>
<!-- <td width="91"><h6>135</h6></td> -->
<td width="91"><b><h4>315+</h4></b></td>
<td width="91"><b><h4>50+</h4></b></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Education Category Section -->
<!-- ======= Kalam Centre (Business) Category Section ======= -->
<section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h1><b>Cinemakotta</b></h1>
</div>
<div class="container" data-aos="fade-up">
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail">
<img src="https://cdn.kitesfoundation.org/img/tfp-projects/cinemakotta.jpeg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p> In shelter homes children are being fed and groomed properly.
But a few will think about how those children are being entertained during leisure time.
Students from Bharata Mata College of Commerce & Arts decided to do their
little bit to ensure everyone is amused. Children will see movies on large screens.
Movies' powerful protagonists can motivate them to follow in their footsteps, and
watching them can have a beneficial emotional influence. New cultures will be
presented to the kids, which will help them learn better.
</p>
<p>Ideators: <b> Helen john, Pranav kp</b></p>
<p>Location: <b> Ernakulam</b></p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<!-- <td width="91"><b>Project ID</b></td> -->
<td width="91">No of Volunteers Engaged</td>
<td width="91">Total Volunteering Hours</td>
</tr>
<tr>
<!-- <td width="91"><h4>104</h4></td> -->
<td width="91"><h4>5+</h4></td>
<td width="91"><h4>50+</h4></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Kalam centre Category Section -->
<!-- ======= Education (culture) Section ======= -->
<section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h1><b>The E-Sieve </b></h1>
</div>
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail order-2">
<img src="https://cdn.kitesfoundation.org/img/tfp-projects/e_sieve.jpeg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>A social media campaign is being run by PSMO College Thirurangadi students to eliminate harmful and unsafe content from social media platforms. Even though social media offers countless benefits, it also has a lot of negative aspects. Removal of posts which include illegal activities, bullying, identity theft, and hacking will be facilitated by such widespread reporting. Additionally, they intend to provide advice on how to utilise social media safely and effectively.
</p>
<p>Ideators: <b>Muhammed Naseem Sabah, Hani Abbas</b></p>
<p>Location: <b>Malappuram</b></p>
<!-- <p>Milestones: Collected 2 tonnes of books and sold them for recycling.</p> -->
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<!-- <td width="91"><b>Project ID</b></td> -->
<td width="91">No of Volunteers Engaged</td>
<td width="91">Total Volunteering Hours</td>
</tr>
<tr>
<!-- <td width="91"><h4>135</h4></td> -->
<td width="91"><h4>20+</h4></td>
<td width="91"><h4>100+</h4></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Education Category Section -->
<!-- ======= Kalam Centre (Business) Category Section ======= -->
<section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h1><b>Trek for a Cause</b></h1>
</div>
<div class="container" data-aos="fade-up">
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail">
<img src="https://cdn.kitesfoundation.org/img/tfp-projects/trek_for_a_cause.jpeg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>The initiative, Trek for a Cause, was inspired by young people's desire to travel and discover the world. Trek for a Cause seeks to utilise this desire and excitement for a charitable cause strategically. Depending on the location and circumstance, the sociological cause varies. In the end, a youth group uses its love of travel to make a difference and bring about change.
</p>
<p>Ideators: <b>Gayathri C Raj, Aswin Chandra</b></p>
<p>Location: <b>Kallipara, Athirapally</b> </p>
<p>Milestones: <b>cleared up more than 200 kg of plastic waste at Neelakurinji bloom;
To analyse the Livelihood status at Tribal colony, Vazhachal, survey was conducted by mobilising youth via trekking.
</b></p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<!-- <td width="91"><b>Project ID</b></td> -->
<td width="91">No of Volunteers Engaged:</td>
<td width="91">Total Volunteering Hours:</td>
</tr>
<tr>
<!-- <td width="91"><h4>104</h4></td> -->
<td width="91"><h4>150+</h4></td>
<td width="91"><h4>1900+</h4></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Kalam centre Category Section -->
<!-- ======= Education (culture) Section ======= -->
<!-- <section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h1><b>Tree of Life </b></h1>
</div>
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail order-2">
<img src="https://cdn.kitesfoundation.org/img/tfp-projects/tree_of_life.jpg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>KITES India joins hands with DQF and Aster DM Healthcare for an initiative for children from underprivileged sections of our society. The project will assure quality healthcare, accessible to children by providing life-saving surgeries and necessary interventional procedures through Aster Hospitals across Kerala. It is deemed to be launched on November 14th, on the eve of Children’s Day.
</p>
<p>Ideators: <b>Dr. Yasin Habeeb , Punya</b> </p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<td width="91">No of Volunteers Engaged:</td>
<td width="91">Total Volunteering Hours:</td>
</tr>
<tr>
<td width="91"><h4>35+</h4></td>
<td width="91"><h4>4000+</h4></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Education Category Section -->
<!-- ======= Kalam Centre (Business) Category Section ======= -->
<section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h1><b>First-Aid</b></h1>
</div>
<div class="container" data-aos="fade-up">
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail">
<img src="https://cdn.kitesfoundation.org/img/tfp-projects/befirst.jpeg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>The speed of someone's injury recovery might be greatly influenced by your immediate assistance. Even giving the injured individual emotional support can help them feel more at ease. As a part of Project First-Aid, expert doctors from Aster Hospitals will lead medical RRT sessions in colleges across Kerala. A new group of volunteers will receive training from these trained adolescents, and the cycle will continue. The project's ultimate goal is to prepare every college student to offer emergency medical care.
</p>
<p>Ideators: <b>Nihel, Basith</b></p>
<p>Location: <b>Kozhikode</b></p>
<p>Milestones: <b>First preliminary conducted in 2 colleges. </b> </p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<!-- <td width="91"><b>Project ID</b></td> -->
<td width="91">No of Volunteers Engaged:</td>
<td width="91">Total Volunteering Hours:</td>
</tr>
<tr>
<!-- <td width="91"><h4>104</h4></td> -->
<td width="91"><h4>300+</h4></td>
<td width="91"><h4>1500+</h4></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Kalam centre Category Section -->
<!-- ======= Education (culture) Section ======= -->
<section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h1><b>Kites Campus</b></h1>
</div>
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail order-2">
<img src="https://cdn.kitesfoundation.org/img/tfp-projects/kites_campus2.jpeg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>Kites Campus is a project involving major higher educational institutions in Kerala,
to provide a platform for promoting Community Service Learning. Campuses will have a direct pathway to core projects of Kites, promoting social interventions and social volunteerism. The project provides opportunities for fellowships, internships and career counselling in the developmental sector. Kites Campus is a project involving major higher educational institutions in Kerala, to provide a platform for promoting Community Service Learning. Campuses will have a direct pathway to core projects of Kites, promoting social interventions and social volunteerism. The project provides opportunities for fellowships, internships and career counselling in the developmental sector.
</p>
<p>Ideators: <b> Ramsi P S , Aiswarya N M </b> </p>
<p>Location: <b> Ernakulam</b></p>
<p>Milestones: <b> 35+ campuses onboarded</b></p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<!-- <td width="91"><b>Project ID</b></td> -->
<td width="91">No of Volunteers Engaged:</td>
<td width="91">Total Volunteering Hours:</td>
</tr>
<tr>
<!-- <td width="91"><h4>135</h4></td> -->
<td width="91"><h4>40+</h4></td>
<td width="91"><h4>3000+</h4></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Education Category Section -->
<!-- ======= Kalam Centre (Business) Category Section ======= -->
<section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h1><b>Social Survey</b></h1>
</div>
<div class="container" data-aos="fade-up">
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail">
<img src="https://cdn.kitesfoundation.org/img/tfp-projects/social_survey.jpeg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>The survey aims to analyse the needs of locals in Kerala's remote, economically underdeveloped areas. The information thus acquired will be used to target the locations for suitable CSR projects. As a result, this supports overall growth by raising people's standards of life.
</p>
<p>Ideators: <b> Chinchu Jayakumar , Vargheese K P </b></p>
<!-- <p>Location: Alappuzha</p> -->
<!-- <p><b>Milestones: </b> Collected 2 tonnes of books and sold them for recycling.</p> -->
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<!-- <td width="91"><b>Project ID</b></td> -->
<td width="91">No of Volunteers Engaged:</td>
<td width="91">Total Volunteering Hours:</td>
</tr>
<tr>
<!-- <td width="91"><h4>104</h4></td> -->
<td width="91"><h4>30+</h4></td>
<td width="91"><h4>1700+</h4></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Kalam centre Category Section -->
<!-- ======= Education (culture) Section ======= -->
<section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h1><b>Puthumugam</b></h1>
</div>
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail order-2">
<img src="https://cdn.kitesfoundation.org/img/tfp-projects/class_library.jpeg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>Public libraries are essential for promoting literacy and education to improve the learning outcomes. Infrastructure deficit and neglect to existing structures causes great loss to the cultural society. Puthumukkam is a project started by St. Berchmans College students which envisages to renovate outdated libraries in Kottayam to create welcoming reading spaces.
</p>
<p>Ideators: <b> Fathima majeed, Cyril lalu</b></p>
<p>Location: <b> Kottayam</b></p>
<!-- <p>Milestones:</b> Collected 2 tonnes of books and sold them for recycling.</p> -->
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<!-- <td width="91"><b>Project ID</b></td> -->
<td width="91">No of Volunteers Engaged:</td>
<td width="91">Total Volunteering Hours:</td>
</tr>
<tr>
<!-- <td width="91"><h4>135</h4></td> -->
<td width="91"><h4>10+</h4></td>
<td width="91"><h4>100+</h4></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Education Category Section -->
<!-- ======= Kalam Centre (Business) Category Section ======= -->
<!-- <section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h3><b>1. Nove-Reuse the past, Recycle the present, Save the future</b></h3>
</div>
<div class="container" data-aos="fade-up">
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail">
<img src="https://cdn.kitesfoundation.org/New/the%20future%20project.jpg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>An effort by St. Michael's College Cherthala students to promote sustainable
development by maximising the power of recycling.
The college students pooled their collections of used books and
sold them for recycling. The money made was used to support charitable initiatives.
17 trees and 7,000 gallons of water can be saved for every tonne of recycled paper.
Air pollution and water pollution caused by paper production
can also be prevented by promotion of recycling.
</p>
<p><b>Ideators: </b> Antony Midhun, Daniel George</p>
<p><b>Location: </b> Alappuzha</p>
<p><b>Milestones: </b> Collected 2 tonnes of books and sold them for recycling.</p>
<p><b>SDG Goals : </b>[12-Responsible consumption and production] [13-Climate action] [17-Partnerships for the goals]
</p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<td width="91"><b>Project ID</b></td>
<td width="91"><b>No of Volunteers Engaged</b></td>
<td width="91"><b>Total Volunteering Hours</b></td>
</tr>
<tr>
<td width="91"><h4>104</h4></td>
<td width="91"><h4>350+</h4></td>
<td width="91"><h4>796</h4></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Kalam centre Category Section -->
<!-- ======= Education (culture) Section ======= -->
<!-- <section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h3><b>2. Zero Hunger</b></h3>
</div>
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail order-2">
<img src="https://cdn.kitesfoundation.org/New/Sdgsummit.jpg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>According to the United Nations, out of 8 billion population almost 700 million people are poor in the world. Many people struggle to make enough money to simply pay for their own food. This initiative is a small step toward reducing poverty and hunger and ensuring SDG. The needy people in Ernakulam city premises will receive packaged food from Sacred Heart College Thevara students. The students of SH,Thevara have the courage and determination to make Ernakulam "hunger-free."
</p>
<p><b>Ideators: </b> Lakshmi K J, Anusha J</p>
<p><b>Location: </b> Ernakulam</p>
<p><b>Milestones: </b> Collected 2 tonnes of books and sold them for recycling.</p>
<p><b>SDG Goals : </b>[1-No poverty] [2-Zero Hunger] [3-Good health and well-being] [16-Peace, Justice and strong institutions] [17-Partnerships for the goals]
</p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<td width="91"><b>Project ID</b></td>
<td width="91"><b>No of Volunteers Engaged</b></td>
<td width="91"><b>Total Volunteering Hours</b></td>
</tr>
<tr>
<td width="91"><h4>135</h4></td>
<td width="91"><h4>315+</h4></td>
<td width="91"><h4>50+</h6></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Education Category Section -->
<!-- ======= Kalam Centre (Business) Category Section ======= -->
<!-- <section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h3><b>1. Nove-Reuse the past, Recycle the present, Save the future</b></h3>
</div>
<div class="container" data-aos="fade-up">
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail">
<img src="https://cdn.kitesfoundation.org/New/the%20future%20project.jpg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>An effort by St. Michael's College Cherthala students to promote sustainable
development by maximising the power of recycling.
The college students pooled their collections of used books and
sold them for recycling. The money made was used to support charitable initiatives.
17 trees and 7,000 gallons of water can be saved for every tonne of recycled paper.
Air pollution and water pollution caused by paper production
can also be prevented by promotion of recycling.
</p>
<p><b>Ideators: </b> Antony Midhun, Daniel George</p>
<p><b>Location: </b> Alappuzha</p>
<p><b>Milestones: </b> Collected 2 tonnes of books and sold them for recycling.</p>
<p><b>SDG Goals : </b>[12-Responsible consumption and production] [13-Climate action] [17-Partnerships for the goals]
</p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<td width="91"><b>Project ID</b></td>
<td width="91"><b>No of Volunteers Engaged</b></td>
<td width="91"><b>Total Volunteering Hours</b></td>
</tr>
<tr>
<td width="91"><h6>104</h6></td>
<td width="91"><h6>350+</h6></td>
<td width="91"><h6>796</h6></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Kalam centre Category Section -->
<!-- ======= Education (culture) Section ======= -->
<!-- <section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h3><b>2. Zero Hunger</b></h3>
</div>
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail order-2">
<img src="https://cdn.kitesfoundation.org/New/Sdgsummit.jpg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>According to the United Nations, out of 8 billion population almost 700 million people are poor in the world. Many people struggle to make enough money to simply pay for their own food. This initiative is a small step toward reducing poverty and hunger and ensuring SDG. The needy people in Ernakulam city premises will receive packaged food from Sacred Heart College Thevara students. The students of SH,Thevara have the courage and determination to make Ernakulam "hunger-free."
</p>
<p><b>Ideators: </b> Lakshmi K J, Anusha J</p>
<p><b>Location: </b> Ernakulam</p>
<p><b>Milestones: </b> Collected 2 tonnes of books and sold them for recycling.</p>
<p><b>SDG Goals : </b>[1-No poverty] [2-Zero Hunger] [3-Good health and well-being] [16-Peace, Justice and strong institutions] [17-Partnerships for the goals]
</p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<td width="91"><b>Project ID</b></td>
<td width="91"><b>No of Volunteers Engaged</b></td>
<td width="91"><b>Total Volunteering Hours</b></td>
</tr>
<tr>
<td width="91"><h6>135</h6></td>
<td width="91"><h6>315+</h6></td>
<td width="91"><h6>50+</h6></td>
</tr>
</tbody></table>
</div>
<div class="roundedcornr_bottom_silver"><div></div></div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Education Category Section -->
<!-- ======= Kalam Centre (Business) Category Section ======= -->
<!-- <section class="category-section">
<div class="container" data-aos="fade-up">
<div class="section-header d-flex justify-content-between align-items-center mb-5">
<h3><b>1. Nove-Reuse the past, Recycle the present, Save the future</b></h3>
</div>
<div class="container" data-aos="fade-up">
<div class="row mb-5">
<div class="d-md-flex post-entry-2 half">
<a href="#" class="me-4 thumbnail">
<img src="https://cdn.kitesfoundation.org/New/the%20future%20project.jpg" alt="" class="img-fluid">
</a>
<div class="ps-md-5 mt-4 mt-md-0">
<p>An effort by St. Michael's College Cherthala students to promote sustainable
development by maximising the power of recycling.
The college students pooled their collections of used books and
sold them for recycling. The money made was used to support charitable initiatives.
17 trees and 7,000 gallons of water can be saved for every tonne of recycled paper.
Air pollution and water pollution caused by paper production
can also be prevented by promotion of recycling.
</p>
<p><b>Ideators: </b> Antony Midhun, Daniel George</p>
<p><b>Location: </b> Alappuzha</p>
<p><b>Milestones: </b> Collected 2 tonnes of books and sold them for recycling.</p>
<p><b>SDG Goals : </b>[12-Responsible consumption and production] [13-Climate action] [17-Partnerships for the goals]
</p>
<div class="roundedcornr_box_silver" style="margin: 0 0 0 0;">
<div class="roundedcornr_content_silver" style="padding: 5 0 5 0;">
<table cellspacing="2" cellpadding="2" width="500">
<tbody>
<tr>
<td width="91"><b>Project ID</b></td>
<td width="91"><b>No of Volunteers Engaged</b></td>
<td width="91"><b>Total Volunteering Hours</b></td>
</tr>
<tr>
<td width="91"><h6>104</h6></td>
<td width="91"><h6>350+</h6></td>
<td width="91"><h6>796</h6></td>