-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1207 lines (1156 loc) · 66 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="zxx">
<head>
<meta charset="utf-8">
<title>Sehpaathi</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta name="keywords" content="html5 template">
<meta name="description" content="Humanity - Charity & Nonprofit Foundation Landing Page">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Vollkorn:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" type="image/png" href="assets/img/favicon.png">
<!-- Site Icons css -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- Site All plugins css -->
<link href="assets/css/animate.css" rel="stylesheet">
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/magnific-popup.css" rel="stylesheet">
<link href="assets/css/owl.carousel.min.css" rel="stylesheet">
<link href="assets/css/owl.theme.default.min.css" rel="stylesheet">
<!-- Site Main Style sheet css -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/responsive.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/demo.css" />
</head>
<body>
<!-- Start Preloader Area -->
<div class="preloader">
<div class="preloader-wapper">
<div>
<div class="spinner-loader"><div></div><div></div></div>
</div>
</div>
</div>
<!-- End Preloader Area -->
<!-- Start Navbar Area -->
<nav class="navbar navbar-b navbar-trans navbar-expand-lg fixed-top" id="mainNav">
<div class="container">
<img src="assets/img/sehpaathinavlogo1.jpg" class="white-logo" alt="logo" style="width: 20%;">
<a class="navbar-brand" href="#">
<!-- <img src="assets/img/sehpaathinavlogo1.jpg" class="black-logo" alt="logo" style="width: 35%;"> -->
<!-- <img src="assets/img/white-logo.png" class="white-logo" alt="logo"> -->
<!-- <img src="assets/img/black-logo.png" class="black-logo" alt="logo"> -->
</a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarDefault" aria-controls="navbarDefault" aria-expanded="false" aria-label="Toggle navigation"> <span></span>
<span></span>
<span></span>
</button>
<div class="navbar-collapse collapse justify-content-end" id="navbarDefault">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll active" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#causes">Causes</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#mission">Mission</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#testimonials">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#blog">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll" href="#contact">Contact</a>
</li>
</ul>
<ul class="header-button">
<li style="width: 150px;">
<a class="nav-btn" href="#0"><i class="fa fa-heart"></i> Donate Now</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar Area -->
<!-- Start Home Section -->
<header id="home" class="home-area hero-equal-height overflow-hidden section-padding">
<video autoplay muted loop id="myVideo">
<source src="assets/videos/Sehpaathi.mp4" type="video/mp4">
</video>
<div class="container">
<div class="row d-flex align-items-center">
<div class="col-lg-12 col-md-12">
<div class="text-left home-content z-index position-relative">
<h3>Help us to Save</h3>
<h1>A Helping Hand for the Homeless People</h1>
<div class="home-btn-box"> <a href="#0" class="button button-1">Donate Now</a>
<a href="#service" class="button js-scroll">Discover More</a>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- End Home Section -->
<!-- Start Service Section -->
<section id="service" class="service-area section-padding">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="section-title">
<h6>Our Core Sectors</h6>
<h2>We invest in four key areas</h2>
</div>
</div>
</div>
<div class="service-content">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12 services-item">
<div class="single-services">
<div class="services-icon">
<img src="assets/img/our_core/good_health.png" alt="img">
</div>
<div class="services-text">
<h3>Good Health</h3>
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed eiusmod tempor incididunt ut labore et dolore.</p>
<a href="#0" class="service-btn">+ Learn more</a> -->
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 services-item">
<div class="single-services">
<div class="services-icon">
<img src="assets/img/our_core/quality_education.png" alt="img">
</div>
<div class="services-text">
<h3>Quality Education</h3>
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed eiusmod tempor incididunt ut labore et dolore.</p>
<a href="#0" class="service-btn">+ Learn more</a> -->
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 services-item">
<div class="single-services">
<div class="services-icon">
<img src="assets/img/our_core/gender_equality.png" alt="img">
</div>
<div class="services-text">
<h3>Gender Equality</h3>
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed eiusmod tempor incididunt ut labore et dolore.</p>
<a href="#0" class="service-btn">+ Learn more</a> -->
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 services-item">
<div class="single-services">
<div class="services-icon">
<img src="assets/img/our_core/reduced_inequality.png" alt="img">
</div>
<div class="services-text">
<h3>Reduced Inequalities</h3>
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed eiusmod tempor incididunt ut labore et dolore.</p>
<a href="#0" class="service-btn">+ Learn more</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Service Section -->
<!-- Start About Section -->
<section id="about" class="about-area section-padding">
<div class="shape-wave-before"></div>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 col-md-12">
<div class="about-image">
<img src="assets/img/about.png" alt="img" style="height: 440px;width: 100%;">
<a href="https://www.youtube.com/watch?v=1yRlTbzRJVw" class="video-btn popup-youtube"> <i class="fa fa-play"></i></a>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="about-content">
<h3><span class="color-text">About</span> Us</h3>
<!-- <h2>We’re worldwide non-profit charity foundation.</h2> -->
<p>Sehpaathi began as a student-led initiative that strove to promote and achieve inclusive and gender-neutral education. Based in Delhi, India, we have worked extensively during the global pandemic, to educate underserved students about gender equality. We aim at creating an atmosphere of acceptance towards marginalised communities. Our project focuses on providing employment opportunities to Acid Attack Survivors and members of the LGBTQIA+ community.</p>
<br>
<p>At the moment, we are working closely with <span style="font-weight: 700;font-size: 1rem;">Pride Circle, Amazon, Lalit Hospitality Group, Sanshil Foundation, Samarpan School and Gift Abled </span>to further our mission of bringing inclusive education to the masses.</p>
<!-- <a href="#0" class="button js-scroll">+ Read More</a> -->
</div>
</div>
</div>
</div>
<div class="shape-wave-after"></div>
</section>
<!-- End About Section -->
<!-- Start Causes Section -->
<section id="causes" class="causes-area section-padding">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="section-title">
<!-- <h6>We Are Fighting For</h6> -->
<h2>Recent Causes</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/serve/teaching.png" alt="img" style="width:100%">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Teaching sessions for Samarpan and Sanchil Students(Past) </a></h6>
</div>
<!-- <h3><a href="#">Our programs foster enterprises</a></h3> -->
<p>Sehpaathi had organised sessions with students of Sunshil and Samarpan foundation throughout 2020, discussing topics of mental health, confidence building, adolescence, English (grammar-based), puberty, interview skills, emotional and physical well-being and menstruation. These interactions promoted SDGs 3,4 and 5. The sessions received a positive response from all teachers and students. Sehpaathi also donated a sum of ₹15,000 to the two organisations for the purchase of stationery items and sanitary products.</p>
<!-- <div class="causes-progress-item">
<div class="causes-item"> <span>70%</span>
<div class="causes-progress">
<div class="progres" data-value="70%"></div>
</div>
</div>
<div class="causes-progress-info">
<div class="causes-progress-raised">
<h6>Raised:</h6>
<span>$10,505</span>
</div>
<div class="causes-progress-goal">
<h6>Goal:</h6>
<span>$3000</span>
</div>
</div>
</div> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/serve/social.png" alt="img" style="width:100%">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Collaborating with Social Generale(Present)</a></h6>
</div>
<!-- <h3><a href="#">Our education programs create safe</a></h3> -->
<p>In collaboration with 1 inclusion- a Social entrepreneurship startup, Project Sehpaathi brings forward an amazing opportunity through its 1 Academy program. This is an internship-based upskilling program tailored especially for queer undergraduate students in their final year of study. The 1 Academy program will prepare the fellows for jobs in the Corporate sector and equip them with relevant skills. Candidates who complete the Upskilling training program successfully would be eligible for a paid internship of 3 months followed by performance-based job placements.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/serve/raising.png" alt="img" style="width:100%">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Raising funds for India’s Future Tycoons and being one of the finalists(Past) </a></h6>
</div>
<!-- <h3><a href="#">Our education programs create safe</a></h3> -->
<p>Team Sehpaathi presented its unique idea of Inclusive Education on the platform of India’s Future Tycoons. The Project received a seed funding of Rs 10,000/-. A glimpse of Sehpaathi’s journey and clips from our discussion with the esteemed panel of judges was telecast on Mirror Now, on 27th March 2021.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item mt-2">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/serve/rani-ki-vav.png" alt="img" style="width:100%">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Rani Ki Vav- Virtual Walk Fundraiser (Past)</a></h6>
</div>
<!-- <h3><a href="#">Our programs foster enterprises</a></h3> -->
<p>Sehpaathi and SOCH collaboratively organised a virtual fundraiser heritage walk to Rani Ki Vav, on 08 November 2020. All proceeds went toward funding the education of underprivileged students from Samarpan School Foundation, Vasant Kunj. ReTHINK INDIA FOUNDATION also came forward to support the cause by sharing this initiative amongst all their stakeholders, delegates, embassies and The Ministry of Education.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/serve/sessions.png" alt="img" style="width:100%">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Sessions on the SDGs by Samarth Pathak of UNODC with Samarpan Students (Past)</a></h6>
</div>
<!-- <h3><a href="#">Restore access to clean drinking water</a></h3> -->
<p>Sehpaathi and The Tagore Awareness Society collaboratively conducted a Virtual Talent Hunt (2020) with the students of Samarpan school. Witnessed by Mr. Samarth Pathak, the Public Advocacy & Communications Specialist at the United Nations, the initiative was also featured on UNODC South Asia’s Twitter account.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/our_services/microsoft.png" alt="img">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Minecraft</a></h6>
</div>
<!-- <h3><a href="#">Restore access to clean drinking water</a></h3> -->
<p>Sehpaathi participated in the Minecraft Challenge, where they presented their idea of a sustainable education institution. We emphasised on the idea of sustainability, the need for the youth to understand it, and the importance of its integration in educational institutions globally. Our model demonstrates the simple practicality, which is economical to shift toward sustainability. </p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Causes Section -->
<!-- Start Counter Section -->
<section class="counter-area section-padding">
<div class="shape-wave-before"></div>
<div class="container">
<h3 style="margin-bottom: 5%;font-size: 2rem;font-weight: 600;">These are our current progress statistics</h3>
<div class="row">
<div class="col-lg-3 col-md-6 counter-item">
<div class="single-counter">
<div class="counter-contents">
<h2>
<span class="counter-number">280</span>
<span>+</span>
</h2>
<h3 class="counter-heading">Students Worked With</h3>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 counter-item">
<div class="single-counter">
<div class="counter-contents">
<h2>
<span class="counter-number">30</span>
<span>+</span>
</h2>
<h3 class="counter-heading">Acid Attack Survivor Members</h3>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 counter-item">
<div class="single-counter">
<div class="counter-contents">
<h2>
<span class="counter-number">20</span>
<span>+</span>
</h2>
<h3 class="counter-heading">LGBTQIA+ members</h3>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 counter-item">
<div class="single-counter">
<div class="counter-contents">
<h2>
<span>₹</span>
<span class="counter-number">60,000</span>
<span></span>
</h2>
<h3 class="counter-heading">Money Raised</h3>
</div>
</div>
</div>
</div>
</div>
<div class="shape-wave-after"></div>
</section>
<!-- End Counter Section -->
<!-- Start Mission Section -->
<section id="mission" class="mission-area section-padding">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 col-md-12">
<div class="mission-image">
<img src="assets/img/our Mission.png" alt="img">
<!-- <a href="https://www.youtube.com/watch?v=QFy8iPBYDLU" class="video-btn popup-youtube"> <i class="fa fa-play"></i></a> -->
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="mission-content">
<h3>Our <span class="color-text">Mission</span></h3>
<h2>We're on a mission to pave a path for the future generation wherein quality education, gender equality and health services are goals but achievements.</h2>
<p>Our mission is to strongly impact the lives of underprivileged children by providing relevant, meaningful and diverse learning opportunities. We strive to support students in their aspirations, encourage them to fortify their innate strengths and spur them to productively engage with the community.</p>
<br>
<!-- <ul>
<li><i class="fa fa-check-circle"></i> We Build and Create</li>
<li><i class="fa fa-check-circle"></i> Medicine Help & Water Delivery</li>
</ul> -->
<a href="#0" class="button js-scroll">+ Learn More</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Mission Section -->
<!-- Start Our Aim Section -->
<section id="mission" class="mission-area section-padding">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 col-md-12">
<div class="mission-content">
<h3>Our <span class="color-text">Aim</span></h3>
<!-- <h2>We’re on a mission to solve the water crisis and reinvent charity.</h2> -->
<p>We at Sehpaathi have a firm philosophy: “One for all, All for one.” We aim to stand united against discrimination of any sort. Our objective is to create inclusive spaces in institutions, focusing especially on schools. We envision a future where all students - regardless of their economic situations, sexual orientations, gender identities, or social circumstances are provided adequate educational and developmental opportunities. To provide exposure to these eager scholars, we set up skill development programs. Through these initiatives, Sehpaathi has successfully ignited 230 students with a desire to learn, and provided them with the resources to do so.</p>
<p>Alongside our work with the youth, we have educated women (among other family members) about government programmes and empowered them to receive the benefits they are legally entitled to. </p>
<br>
<a href="#0" class="button js-scroll">+ Learn More</a>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="mission-image">
<img src="assets/img/aur aim.png" alt="img">
<!-- <a href="https://www.youtube.com/watch?v=QFy8iPBYDLU" class="video-btn popup-youtube"> <i class="fa fa-play"></i> -->
</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Our Aim Section -->
<!-- Start Founder Section -->
<section class="volunteers-area section-padding">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-title">
<!-- <h6>Founder for Guide</h6> -->
<h2>Meet Our Founder</h2>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-volunteers-box">
<!-- <div class="volunteers-image">
<img src="assets/img/founder/pasted image 0.png" alt="volunteers" />
<div class="volunteers-social-icon"> <a href="#" class="social-color-1"><i class="fa fa-facebook-f"></i></a>
<a href="https://instagram.com/divya_sijwali?r=nametag" target="_black" class="social-color-2"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/divya-sijwali-7aa49a1ab/" target="_black" class="social-color-3"><i class="fa fa-linkedin"></i></a>
</div>
</div> -->
<!-- <div class="volunteers-info">
<h3>Divya Sijwali</h3>
<p>Founder</p>
</div> -->
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-volunteers-box mt-70">
<div class="volunteers-image">
<img src="assets/img/founder/pasted image 0.png" alt="volunteers" />
<div class="volunteers-social-icon"> <a href="#" class="social-color-1"><i class="fa fa-facebook-f"></i></a>
<a href="https://instagram.com/divya_sijwali?r=nametag" target="_black" class="social-color-2"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/divya-sijwali-7aa49a1ab/" target="_black" class="social-color-3"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="volunteers-info">
<h3>Divya Sijwali</h3>
<p>Founder</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-volunteers-box mt-70">
<div class="volunteers-image">
<img src="assets/img/founder/Parth Puri.jpeg" alt="volunteers" />
<div class="volunteers-social-icon"> <a href="#" class="social-color-1"><i class="fa fa-facebook-f"></i></a>
<a href=" https://instagram.com/parth_puriii?utm_medium=copy_link" target="_black" class="social-color-2"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/parth-puri-373035210" target="_black" class="social-color-3"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="volunteers-info">
<h3>Parth Puri</h3>
<p>Founder</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-volunteers-box mt-70">
<!-- <div class="volunteers-image">
<img src="assets/img/volunteers-4.jpg" alt="volunteers" />
<div class="volunteers-social-icon"> <a href="#" class="social-color-1"><i class="fa fa-facebook-f"></i></a>
<a href="#" class="social-color-2"><i class="fa fa-twitter"></i></a>
<a href="#" class="social-color-3"><i class="fa fa-linkedin"></i></a>
</div>
</div> -->
<!-- <div class="volunteers-info">
<h3>Bill Macaitis</h3>
<p>Volunteer</p>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- End Founder Section -->
<!-- Start Volunteers Section -->
<section class="volunteers-area section-padding">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-title">
<!-- <h6>Volunteering for Guide</h6> -->
<h2>Meet Our Volunteers</h2>
</div>
</div>
<!-- <div id="volantiar" class="owl-carousel owl-theme owl-loaded owl-drag"> -->
<div class="col-lg-3 col-md-6">
<div class="single-volunteers-box">
<div class="volunteers-image">
<img src="assets/img/member/sakina.png" alt="volunteers" />
<div class="volunteers-social-icon"> <a href="#" class="social-color-1"><i class="fa fa-facebook-f"></i></a>
<a href="#" class="social-color-2"><i class="fa fa-twitter"></i></a>
<a href="#" class="social-color-3"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="volunteers-info">
<h3>Sakina Nadeem</h3>
<p>Volunteer</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-volunteers-box mt-70">
<div class="volunteers-image">
<img src="assets/img/member/Anuva.jpg" alt="volunteers" />
<div class="volunteers-social-icon"> <a href="#" class="social-color-1"><i class="fa fa-facebook-f"></i></a>
<a href="#" class="social-color-2"><i class="fa fa-twitter"></i></a>
<a href="#" class="social-color-3"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="volunteers-info">
<h3>Anuva Chawla</h3>
<p>Volunteer</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-volunteers-box">
<div class="volunteers-image">
<img src="assets/img/member/bavleen.JPG" alt="volunteers" />
<div class="volunteers-social-icon"> <a href="#" class="social-color-1"><i class="fa fa-facebook-f"></i></a>
<a href="#" class="social-color-2"><i class="fa fa-twitter"></i></a>
<a href="#" class="social-color-3"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="volunteers-info">
<h3>Bavleen Kaur</h3>
<p>Volunteer</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-volunteers-box mt-70">
<div class="volunteers-image">
<img src="assets/img/member/sanjana.JPG" alt="volunteers" />
<div class="volunteers-social-icon"> <a href="#" class="social-color-1"><i class="fa fa-facebook-f"></i></a>
<a href="#" class="social-color-2"><i class="fa fa-twitter"></i></a>
<a href="#" class="social-color-3"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="volunteers-info">
<h3>Sanjana</h3>
<p>Volunteer</p>
</div>
</div>
</div>
<!-- </div> -->
</div>
</div>
</section>
<!-- End Volunteers Section -->
<!-- Start Services Section -->
<section id="services" class="causes-area section-padding">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="section-title">
<!-- <h6>We Are Fighting For</h6> -->
<h2>Our Services</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/our_services/tutoring.png" alt="img">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Tutoring</a></h6>
</div>
<!-- <h3><a href="#">Our programs foster enterprises</a></h3> -->
<p>We connect students and mentors through both, live and recorded lectures, which are designed to make learning interactive, easy and fun. Topics vary across english speaking and grammar and other soft skills. We have received a positive response from the students of Samparan foundation and Sanshil foundation and plan to extend the initiative to organisations like Canshala in the future.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/our_services/Counselling.png" alt="img">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Counselling</a></h6>
</div>
<p>We organize counselling sessions for students to help them with issues surrounding mental health. The sessions have helped students navigate self-esteem, coping with negativity during a global pandemic and emotional well-being</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/our_services/Virtual walks.png" alt="img">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Virtual Heritage Walks</a></h6>
</div>
<p>We organize virtual walks to heritage sites across India to foster cultural pride and a better understanding of their national heritage amongst students. These heritage walks combine knowledge with fun. </p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/our_services/Social Service.png" alt="img">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Social Project For Schools</a></h6>
</div>
<!-- <h3><a href="#">Our programs foster enterprises</a></h3> -->
<p>We work with schools to create social welfare projects. These community engagement projects aim to increase contextual awareness among students, and encourage them to come up with potential solutions to resolve social problems. The projects are based on social issues like gender equality and inclusive and gender-neutral education.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/our_services/Drags.png" alt="img">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Drags</a></h6>
</div>
<!-- <h3><a href="#">Our education programs create safe</a></h3> -->
<p>We organise drag sessions in collaboration with Lalit Hospitality Ltd. where we share stories of inclusivity with school students through plays and book-reading sessions. Prior to the lockdown, our physical sessions received highly positive feedback. We have stayed consistent throughout the lockdown, and as our events shifted online, they too were received with great responses</p>
</div>
</div>
</div>
<!-- <div class="col-lg-4 col-md-6 col-sm-12 causes-box-item">
<div class="single-causes">
<div class="causes-images">
<img src="assets/img/our_services/microsoft.png" alt="img">
<div class="causes-btn-box"> <a href="#0" class="button causes-btn"><i class="fa fa-heart"></i> Donate Now</a>
</div>
</div>
<div class="causes-info">
<div class="causes-type">
<h6><a href="#">Minecraft</a></h6>
</div>
<h3><a href="#">Restore access to clean drinking water</a></h3>
<p>Sehpaathi participated in the Minecraft Challenge, where they presented their idea of a sustainable education institution. We emphasised on the idea of sustainability, the need for the youth to understand it, and the importance of its integration in educational institutions globally. Our model demonstrates the simple practicality, which is economical to shift toward sustainability. </p>
</div>
</div>
</div> -->
</div>
</div>
</section>
<!-- End Services Section -->
<!-- Start Join Section -->
<section class="join-area section-padding">
<div class="shape-wave-before"></div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="join-content position-relative z-index text-center">
<h2>Donate to Homeless People</h2>
<h5>We make every donation count</h5>
<a href="#0" class="button btn-1"><i class="fa fa-heart"></i> Donate Now</a>
<a href="#0" class="button">Become A Volunteer</a>
</div>
</div>
</div>
</div>
<div class="shape-wave-after"></div>
</section>
<!-- End Join Section -->
<!-- Start Testimonials Section -->
<section id="testimonials" class="testimonial-area section-padding pa-bottom-0">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="section-title">
<h6>Testimonials</h6>
<h2>What People Say</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12">
<div id="testimonial-slide" class="owl-carousel owl-theme owl-loaded owl-drag">
<!-- testimonials item -->
<div class="single-testimonial">
<div class="testi-content-inner">
<div class="avatar">
<img src="assets/img/testimonial/neha_jain.png" alt="testimonial">
</div>
<div class="testimonial-content">
<p>It’s heartening to see the students of Tagore International School, Vasant Vihar undertaking projects to support minority communities. The fact that young people are taking out time and resources to create a more inclusive, accepting and diverse society is inspiring indeed. The most wonderful thing about their project is that they are reaching out to other schools and young people like them to extend this movement. I hope this ripple turns into a wave, I hope more schools take up this initiative. Wishing you all the best!</p>
</div>
<div class="bio-info">
<h3>Neha Jain</h3>
<h6>Co-Founder, Trampoline Media, Artistic Director- IKFF</h6>
</div>
</div>
</div>
<!-- testimonials item -->
<div class="single-testimonial">
<div class="testi-content-inner">
<div class="avatar">
<img src="assets/img/testimonial/Parmesh_sahani.png" alt="testimonial">
</div>
<div class="testimonial-content">
<p>It is absolutely overwhelming to see young minds curate such beautiful initiatives for the welfare of a larger group. These students are paving the path towards an inclusive society thereby encouraging their peers from other schools and colleges as well which is creating a ripple effect. None could have thought of a better idea to bring together every section of society under one umbrella for learning. Projects like these will prove to improve quality education beyond boundaries. I wish the students and mentors of Tagore International School Vasant Vihar the very best and eagerly waiting to see this social project soar greater heights.</p>
</div>
<div class="bio-info">
<h3>Parmesh Sahani</h3>
<h6>Vice President at Godrej Ltd., Author</h6>
</div>
</div>
</div>
<!-- testimonials item -->
<div class="single-testimonial">
<div class="testi-content-inner">
<div class="avatar">
<img src="assets/img/testimonial/Vedica_Saxena.png" alt="testimonial">
</div>
<div class="testimonial-content">
<p>It is absolutely overwhelming to see young minds curate such beautiful initiatives for the welfare of a larger group. These students are paving the path towards an inclusive society thereby encouraging their peers from other schools and colleges as well which is creating a ripple effect. None could have thought of a better idea to bring together every section of society under one umbrella for learning. Projects like these will prove to improve quality education beyond boundaries. I wish the students and mentors of Tagore International School Vasant Vihar the very best and eagerly waiting to see this social project soar greater heights.</p>
</div>
<div class="bio-info">
<h3>Vedica Saxena</h3>
<!-- <h6>Ceo of Google</h6> -->
</div>
</div>
</div>
<!-- testimonials item -->
<div class="single-testimonial">
<div class="testi-content-inner">
<div class="avatar">
<img src="assets/img/testimonial/parmesh.jpg" alt="testimonial">
</div>
<div class="testimonial-content">
<p>It is absolutely overwhelming to see young minds curate such beautiful initiatives for the welfare of a larger group. These students are paving the path towards an inclusive society thereby encouraging their peers from other schools and colleges as well which is creating a ripple effect. None could have thought of a better idea to bring together every section of society under one umbrella for learning. Projects like these will prove to improve quality education beyond boundaries. I wish the students and mentors of Tagore International School Vasant Vihar the very best and eagerly waiting to see this social project soar greater heights.</p>
</div>
<div class="bio-info">
<h3>Monica Frazier</h3>
<h6>Founder of Apple</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Testimonials Section -->
<!-- Start Blog Section -->
<section id="blog" class="blog-area section-padding">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="section-title">
<h6>Read Story</h6>
<h2>Latest Blog</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 blog-item">
<div class="single-blog">
<div class="post-img">
<a href="#">
<img src="assets/img/blog/blog-1.jpg" alt="" />
</a>
</div>
<div class="blog-content">
<div class="blog-date">
<h6>15 January - 2020</h6>
</div>
<div class="blog-body-title">
<h5><a href="#">Challenge with the aim of raising funds for your favourite charity</a></h5>
</div>
<div class="blog-body-text">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore veniam dolore.</p>
</div>
<div class="blog-bottom-text-link"> <a href="#">+ Read Story</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 blog-item">
<div class="single-blog">
<div class="post-img">
<a href="#">
<img src="assets/img/blog/blog-2.jpg" alt="" />
</a>
</div>
<div class="blog-content">
<div class="blog-date">
<h6>15 January - 2020</h6>
</div>
<div class="blog-body-title">
<h5><a href="#">Ask a volunteer to write about their favorite volunteer event</a></h5>
</div>
<div class="blog-body-text">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore veniam dolore.</p>
</div>
<div class="blog-bottom-text-link"> <a href="#">+ Read Story</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 blog-item">
<div class="single-blog">
<div class="post-img">
<a href="#">
<img src="assets/img/blog/blog-3.jpg" alt="" />
</a>
</div>
<div class="blog-content">
<div class="blog-date">
<h6>15 January - 2020</h6>
</div>
<div class="blog-body-title">
<h5><a href="#">Popular Fundraising Pages Could Be Frauds, Experts Warn</a></h5>
</div>
<div class="blog-body-text">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore veniam dolore.</p>
</div>
<div class="blog-bottom-text-link"> <a href="#">+ Read Story</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Blog Section -->
<!-- Start Subscribe Box Section -->
<section class="subscribe-section">
<div class="container">
<div class="row subscribe-wrap d-flex align-items-center">
<div class="col-lg-6 xs-padding">
<div class="subscribe-info">
<h2>Subscribe to receive free email updates notifications</h2>
</div>
</div>
<div class="col-lg-6 xs-padding">
<div class="subscribe-box">
<div class="subscribe-form-wrap">
<form action="#" class="subscribe-form">
<input type="email" name="email" id="subs-email" class="form-input" placeholder="Enter Your Email Address..."> <i class="fa fa-envelope"></i>
<button type="submit" class="submit-btn">Subscribe</button>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Subscribe Box Section -->
<!-- Start Contact Section -->
<section id="contact" class="contact-area section-padding">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="section-title">
<h6>Get In Touch</h6>
<h2>Contact Us</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-10 offset-lg-1 col-md-12">
<p class="form-message"></p><br>
<form class="contact-form form" id="contact-form" action="mail.php" method="POST">
<div class="controls">
<div class="row">
<div class="col-lg-6 col-md-12">
<div class="form-group has-error has-danger">
<input id="form_name" type="text" name="name" placeholder="Type Your Name" required="required">
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="form-group has-error has-danger">
<input id="form_email" type="email" name="email" placeholder="Type Your Email" required="required">
</div>
</div>
<div class="col-lg-12 col-md-12">
<div class="form-group has-error has-danger">
<input id="form_subject" type="text" name="subject" placeholder="Type Your Subject" required="required">
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<textarea id="form_message" name="message" placeholder="Type Your Message" rows="4" required="required"></textarea>
</div>
</div>
<div class="col-md-12">
<button type="submit" class="button" data-text="Send Message"><span>Send Message</span>
</button>
</div>
</div>
</div>
</form>
</div>
<div class="col-lg-10 offset-lg-1 col-md-12">
<div class="contact-information">
<div class="row">
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="contact-details">
<div class="contact-icon">
<i class="fa fa-phone"></i>
</div>
<div class="contact-info">
<h6>Phone:</h6>
<p>+91 9958315046, +91 9818687859</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="contact-details">
<div class="contact-icon">
<i class="fa fa-home"></i>