-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestimonials.html
1116 lines (1086 loc) · 62.6 KB
/
testimonials.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">
<!-- Mirrored from demo.themewinter.com/html/exhibz/speakers-1.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 21 Dec 2019 16:54:49 GMT -->
<head>
<!-- Basic Page Needs ================================================== -->
<meta charset="utf-8">
<!-- Mobile Specific Metas ================================================== -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<!-- Site Title -->
<title>Agneepankah Foundation</title>
<!-- CSS
================================================== -->
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- FontAwesome -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Animation -->
<link rel="stylesheet" href="css/animate.css">
<!-- magnific -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<!-- isotop -->
<link rel="stylesheet" href="css/isotop.css">
<!-- ico fonts -->
<link rel="stylesheet" href="css/xsIcon.css">
<!-- Template styles-->
<link rel="stylesheet" href="css/style.css">
<!-- Responsive styles-->
<link rel="stylesheet" href="css/responsive.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="body-inner">
<!-- Header start -->
<header id="header" class="header header-transparent">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<!-- logo-->
<a class="navbar-brand" href="index.html">
<img src="images/logos/logo-x.png" alt="">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"><i class="icon icon-menu"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="index.html">Home</a>
</li>
<li class="dropdown nav-item">
<a href="#" class="" data-toggle="dropdown">About </a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="about-us.html">About us</a>
</li>
<li>
<a href="faq.html">FAQ</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="projects.html">projects</a>
</li>
<li class="nav-item">
<a href="testimonials.html">testimonials</a>
</li>
<li class="nav-item">
<a href="gallery.html">Gallery</a>
</li>
<li class="nav-item">
<a href="join-us.html">join us</a>
</li>
<li class="nav-item">
<a href="contact.html">contact </a>
</li>
<li class="header-ticket nav-item">
<a class="ticket-btn btn" href="#"> DONATE </a>
</li>
</ul>
</div>
</nav>
</div><!-- container end-->
</header>
<!--/ Header end -->
<div id="page-banner-area" class="page-banner-area"
style="background-image:url(images/sponsors/Orange-gradient-1.jpg)">
<!-- Subpage title start -->
<div class="page-banner-title">
<div class="text-center">
<h2>volunteers </h2>
<ol class="breadcrumb">
<li>
<a>“You make a living by what you get. You make a life by what you give.”</a>
<br>
<a> - Winston Churchill</a>
</li>
</ol>
</div>
</div><!-- Subpage title end -->
</div><!-- Page Banner end -->
<!-- ts speaker start-->
<section id="ts-speakers" class="ts-speakers speaker-classic"
style="background-image:url(images/speakers/speaker_bg.png)">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2 class="section-title text-center">
<span>Listen to Our</span>
Volunteers
</h2>
</div><!-- col end-->
</div><!-- row end-->
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/krishna-patel.jpg" alt="">
<a href="#popup_1" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Krishna Patel</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_1" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/krishna-patel.jpg" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Krishna Patel</h3>
<span class="speakder-designation">Volunteer Agneepankah</span>
<!-- <img class="company-logo" src="images/sponsors/sponsor-6.png" alt=""> -->
<p>
My name is Krishna Patel and I am working as a volunteer in Agneepankh foundation from last 1.5yrs, which makes my journey memorable! Every weekend I visit the Lalbahadur Shastri school to teach the children aspiring bigger dreams, bigger heart, having a bigger vision in their eyes. I mentor these children who are not rich by their appearance but rich by their hearts and dreams. Grooming these little stars, teaching them, guiding them is a great experience in itself. Because inside every child there is a rainbow waiting to shine. I learned to give not because I have much, But because I know exactly how it feels to have nothing. In Agneepankh foundation, I learned to derive maximum joy from small things. I consider myself very lucky to be a part of this family.
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div> -->
<!-- <div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/shivaji-jadhav.jpg" alt="">
<a href="#popup_2" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Shivani Jadhav</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_2" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/shivaji-jadhav.jpg" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Shivani Jadhav</h3>
<span class="speakder-designation">Volunteer Agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
I sill remember the day I joined Agneepankh .I was excited .As soon as I stepped the school, a group of children came running to our team. I was so amazed, all the children were thrilled and were shouting out loud di! di! da! da! bringing a smile on a Childs faces accords a deep satisfaction which cannot be expressed in words but only experienced.That day I discerned the meaning of true selfless unconditional love . Inspired by this,my purpose of life is to be the reason behind someone else’s smile . I would like to highlight that,my volunteer experience is not something that I could ever express in words but it is something beyond such that whenever I recall, it brings smile on my face.
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/vikrant-sheware.png" alt="">
<a href="#popup_3" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Vikrant Sheware</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_3" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/vikrant-sheware.png" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Vikrant Sheware</h3>
<span class="speakder-designation">Volunteer Agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
Just as small kid is mentored right from his first step upto his first talk, I've same relation with my friends here.I consider it as the strongest bond ever.I feel there's a very special bond with these small school kids.I value the role of Agneepankh foundation specially to their vision to make education accessible & Flood relief camps. I appreciate my bond with kids & their teachers during scholarship projects which are long lasting memories of mine.I learned to find a new way to solve any situation, when overpowered by difficulties.I consider this organisation as the biggest example of, 'rising from hardships'. I will serve my best for well-being of Agneepankh Foundation.
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/annu-shirsat.png" alt="">
<a href="#popup_4" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Annu Shirsat</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_4" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/annu-shirsat.png" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Annu Shirsat</h3>
<span class="speakder-designation">Volunteer Agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
In order to express my feelings for Agneepankh, I would require a page even wider than sky and an ink more abundant than an ocean. There are infinite good things to write about this foundation.
For me, Agneepankh Foundation is a forum for which I was early waiting. I would like to define Agneepankh as, "a complete satisfaction of work we did in our journey". During my working session, some ups and downs came, but my teammates helped me to manage it, thereby expressing camaraderie. By this i could learn lessons of life.In my view, "Agneepankh" is that pearl of ocean, which is rare to find. My journey was coupled with hardwork, struggle but the ultimate destiny was "satisfaction".
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/ruchika-gotmare.png" alt="">
<a href="#popup_6" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Ruchika Gotmare</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_6" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/ruchika-gotmare.png" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Ruchika Gotmare</h3>
<span class="speakder-designation">Volunteer agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
My journey with Agneepankh is not just an adventure but an emotional memory for life. I remember, how both the students and I taught each other and grew together. My last project was 'Drishti', where I had to mentor visually challenged girls. The way these girls have become a family to me in this short span amuses me even today. Their interest in learning & curiosity to learn made me realize that yes, "knowledge can exist even without vision." I learnt how a teacher and a student are both learners on two different pages of life.
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/nikita-lad.jpg" alt="">
<a href="#popup_8" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Nikita Lad</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_8" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/nikita-lad.jpg" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Nikita Lad</h3>
<span class="speakder-designation">Volunteer agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
Since the last two years, I am volunteering in the Teaching Team as well as the Outdoor Activities Team of this foundation & had a very beautiful experience being a part of this family. I would like to share that, Agneepankh enhanced my personality and refined my skills alot. It enabled me to discern the existing situation among people & how NGO helps to manage it. I could build up self-confidence. I edified my passion for 'social work' through Agneepankh foundation and I am grateful towards the NGO for all this.
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/mamta-jamgade.png" alt="">
<a href="#popup_5" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Mamta Jamgade</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_5" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/mamta-jamgade.png" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Mamta Jamgade</h3>
<span class="speakder-designation">Volunteer Agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
Joining the Agneepankh Foundation was one of the ways to find me as a person and finds it an enriching experience. Working here made me dwell into kid's world, understand their perspective, thinking and wishes. I learned the importance of little things in life. I encountered lots of enthusiastic and young minds. It was my intense desire to become an inspiration for many out there. I won't forget to cherish the lifelong memories I made here. Looking back, I feel on the top of the world to be a part of Agneepankh family. Thank you Agneepankh.
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/yuvraj-patil.png" alt="">
<a href="#popup_7" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Yuvraj Patil</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_7" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/yuvraj-patil.png" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Yuvraj Patil</h3>
<span class="speakder-designation">Volunteer Agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
I am working as a volunteer of Agneepankh Foundation, which makes a memorable 2 years of my life. Agneepankh foundation offered me a forum, to enhance my interpersonal & managerial skills alot. I could imbibe positive things in me like public speaking, leadership culture, project management skills. But despite all this, the best part I've experienced here is "satisfaction". Working from past 2 years, I realized that satisfaction is a thing which cannot be bought with money. We can best define satisfaction as, "An intense feeling for being a reason of someone's happiness." It's my pleasure to be a part of this family & I am grateful towards Agneepankh for lending me this wonderful opportunity.
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/paridhi-jhaveri.png" alt="">
<a href="#popup_9" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Paridhi Jhaveri</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_9" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/paridhi-jhaveri.png" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Paridhi Jhaveri</h3>
<span class="speakder-designation">Volunteer Agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
Hello,
My name is Paridhi Jhaveri and I have been a part of Agneepankh foundation for the past 10 months. I loved spreading smiles on the faces who are deprived of the happiness and put the zest of living life to the fullest in them.My first day in Agneepankh foundation was a majestic one. Pandemic couldn't stop us we contributed through blood donation drives. We kept on aspiring for bigger and more productive outcomes for society.
Sectors in which I got to work for society are Cleanliness and Sanitation awareness, Women Empowerment and Safety, Social welfare activities for underprivileged (Project Zest).
My overall experience in Agneepankh foundation is well above expectations and I am really proud to be a part of Agneepankh family ❤❤
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/Untitled design.png" alt="">
<a href="#popup_10" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Sahil Wadhwani</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_10" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/Sahil WADHWANI.png" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Sahil Wadhwani</h3>
<span class="speakder-designation">Volunteer Agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
We have always been taught, sharing is caring, do the needful. Here's to a foundation I've been connected with recently. When you buy something, it gives you happiness indeed. But when you share it with the people in need, gives you immense joy.
Agneepankh foundation is more about spreading humanity. Was out to share a part of me which I have been gifted in life and they taught me it's value. It never felt like a duty but a gesture of joy.
Spreading smiles, knowledge to underprivileged.
Also, the people in the committee are so welcoming.
They are open to challenges and tackle it with ease.
All in all, I would like to say my experience with Agneepankh has been tremendously wonderful. I realised social causes are not only helpful to others but to self too
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/mandar-kachore.png" alt="">
<a href="#popup_11" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Mandar Kachore</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_11" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/mandar-kachore.png" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Mandar Kachore</h3>
<span class="speakder-designation">Volunteer Agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
It feels great to be the part of organization which enables you to showcase and flourish your own skills and contribute for the betterment of society at the same time simultaneously. I remember the orientation program I attentend before I got into Agneepankh, the only thing I want to see in the society was a revolution of which I got to be a part. We work in quite versatile manner and that's what I love about Agneepankh. Not only Education but also we have contributed in environment conservation, awareness campaigns, disaster management, Food Donations etc. The most important thing about doing social work with Agneepankh is that it teaches and gives a chance to take initiatives and taking these small initiatives taught me a lot.
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
<div class="col-lg-3 col-md-6">
<div class="ts-speaker">
<div class="speaker-img">
<img class="img-fluid" src="images/speakers/tanushree-pande.png" alt="">
<a href="#popup_12" class="view-speaker ts-image-popup" data-effect="mfp-zoom-in">
<i class="icon icon-plus"></i>
</a>
</div>
<div class="ts-speaker-info">
<h3 class="ts-title"><a href="#">Tanushree Pande</a></h3>
<p>
Volunteer, Agneepankh
</p>
</div>
</div>
<!-- popup start-->
<div id="popup_12" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/speakers/tanushree-pande.png" alt="">
</div>
</div><!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Tanushree Pande</h3>
<span class="speakder-designation">Volunteer Agneepankh</span>
<img class="company-logo" src="images/sponsors/sponsor-6.png" alt="">
<p>
I have read the word "Eternal happiness" in books,but have experienced it in Agneepankh! It offered me a forum where I could explore my talent,and reform myself in a good human being.From past 2 years journey of mine, every day has been adding best memories.While teaching, even i have learned a lot.In my definition,Agneepankh is " less an NGO,more a family".I was a grain of sand,Agneepankh was an oyster,it trapped me inside and converted me into a pearl! Honestly speaking,Agneepankh foundation had a remarkable contribution in my transformation for betterment of society.I earned the satisfaction of my work while working with all.
My Agneepankh,my reason to smile.
</p>
<!-- <h4 class="session-name">
Sessions by David
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span>
10.30 - 11.30 am
</span>
<p>
Marketing Matters
</p>
</div>
</div>
</div>
<div class="ts-speakers-social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div> -->
</div><!-- ts-speaker-popup-content end-->
</div><!-- col end-->
</div><!-- row end-->
</div><!-- popup end-->
</div> <!-- col end-->
</div><!-- row end-->
</div><!-- container end-->
<!-- shap img-->
<!-- <div class="speaker-shap">
<img class="shap1" src="images/shap/home_speaker_memphis1.png" alt="">
<img class="shap2" src="images/shap/home_speaker_memphis2.png" alt="">
<img class="shap3" src="images/shap/home_speaker_memphis3.png" alt="">
</div> -->
<!-- shap img end-->
</section>
<!-- ts speaker end-->