-
Notifications
You must be signed in to change notification settings - Fork 0
/
about_SRM.html
1090 lines (1016 loc) · 66.6 KB
/
about_SRM.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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/favicon.ico" type="image/gif" sizes="16x16">
<title>SRM || About-SRM </title>
<!-- Source Serif 4 Font Start-->
<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=Source+Serif+4:opsz,[email protected],300;8..60,400;8..60,500;8..60,600;8..60,700;8..60,800;8..60,900&display=swap" rel="stylesheet">
<!-- Source Serif 4 Font End-->
<!-- Sources Sans pro Font Start-->
<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=Source+Sans+3:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Sources Sans pro Font End-->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css"/> -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/css/splide.min.css">
<!-- Owl Carousal Slider -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link href="css/comman.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!-- CSS Ends-->
</head>
<body class="stay">
<!-- Loader Start CSS -->
<div class="loader">
<div class="loader-img">
<img src="img/srmloader.svg" alt="Loader Image ">
</div>
<div class="loader-flex-box">
<div class="loader-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="34" viewBox="0 0 26 34" fill="none">
<path d="M13.0006 0.942139L0.185547 17.3872L13.0006 33.8322L25.8157 17.3872L13.0006 0.942139Z" fill="#E3B583"/>
<path d="M13.0003 3.83496L2.43945 17.3872L13.0003 30.9395L23.5611 17.3872L13.0003 3.83496Z" fill="#D6A570"/>
<path d="M13.0014 8.43726L6.02734 17.3868L13.0014 26.3362L19.9754 17.3868L13.0014 8.43726Z" fill="#CF9E69"/>
</svg>
</div>
<div class="loading">
<h6>loading
<span class="dot-one"> .</span>
<span class="dot-two"> .</span>
<span class="dot-three"> .</span>
</h6>
</div>
</div>
</div>
<!-- Loader Start End -->
<!-- Header start -->
<header class="main-header">
<div class="container-fluid">
<div class="header-in">
<div class="website_logo">
<div class="nav-menu">
<div class=" cd-nav-trigger js-cd-nav-trigger text-replace" onclick="openNav()">
<div class="navbar_toggler">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none">
<path d="M5 8.33301H24.1667" stroke="#7A7676" stroke-width="3" stroke-linecap="round"/>
<path d="M5 15.3944H24.1667" stroke="#7A7676" stroke-width="3" stroke-linecap="round"/>
<path d="M5 22.4551H24.1667" stroke="#7A7676" stroke-width="3" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<a href="index.html">
<img src="img/header-logo.svg" alt="SRM Logo">
</a>
</div>
<div class="navigation">
<div class="nav-left">
<div class="nav-cross">
<div class="nav-cross-btn" onclick="closeNav()">
<svg xmlns="http://www.w3.org/2000/svg" width="17" height="18" viewBox="0 0 17 18" fill="none">
<path d="M1 1.28809L15.7509 16.039" stroke="#6B6970" stroke-width="2" stroke-linecap="round"/>
<path d="M15.7521 1L1.00117 15.7509" stroke="#6B6970" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
<div class="login-icon">
<a href="#" class="login-btn">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45" fill="none">
<circle cx="22.5" cy="22.5" r="22.5" fill="white"/>
<mask id="mask0_1558_4847" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="3" y="3" width="39" height="39">
<circle cx="22.5" cy="22.5" r="18.75" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_1558_4847)">
<ellipse cx="22.5371" cy="17.4176" rx="9.29883" ry="8.94393" fill="#6B6970"/>
<rect x="9.85742" y="27.9873" width="25.3604" height="24.3925" rx="4" fill="#6B6970"/>
</g>
</svg>
</span>
Login
</a>
</div>
<!-- Desktop Navbar Start -->
<div class="nav_list desktop-nav">
<ul>
<li class="has_subs">
<a href="wisdom-main.html">Wisdom
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="19" height="19" viewBox="0 0 19 19" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71625 7.11811C5.00915 6.82521 5.48402 6.82521 5.77691 7.11811L9.74658 11.0878L13.7163 7.11811C14.0091 6.82521 14.484 6.82521 14.7769 7.11811C15.0698 7.411 15.0698 7.88587 14.7769 8.17877L10.2769 12.6788C9.98402 12.9717 9.50914 12.9717 9.21625 12.6788L4.71625 8.17877C4.42336 7.88587 4.42336 7.411 4.71625 7.11811Z" fill="#6B6970"/>
</svg>
</span>
</a>
<div class="nav-dropdown">
<ul class="nav-dropdown-list">
<li><a href="wisdom-talks-main.html">Talks</a></li>
<li><a href="wisdom-blogs-main.html">Blogs</a></li>
<li><a href="wisdom-bhakti.html">Bhakti</a></li>
<li><a href="">Courses</a></li>
</ul>
</div>
</li>
<li><a href="">Meditation</a></li>
<li class="has_subs">
<a href="#">Events
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="19" height="19" viewBox="0 0 19 19" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71625 7.11811C5.00915 6.82521 5.48402 6.82521 5.77691 7.11811L9.74658 11.0878L13.7163 7.11811C14.0091 6.82521 14.484 6.82521 14.7769 7.11811C15.0698 7.411 15.0698 7.88587 14.7769 8.17877L10.2769 12.6788C9.98402 12.9717 9.50914 12.9717 9.21625 12.6788L4.71625 8.17877C4.42336 7.88587 4.42336 7.411 4.71625 7.11811Z" fill="#6B6970"/>
</svg>
</span>
</a>
<div class="nav-dropdown">
<ul class="nav-dropdown-list">
<li><a href="">Event 1</a></li>
<li><a href="">Event 2</a></li>
<li><a href="">Event 3</a></li>
<li><a href="">Event 4</a></li>
</ul>
</div>
</li>
<li><a href="">About Us</a></li>
<li class="has_subs">
<a href="#">Sacred Store
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="19" height="19" viewBox="0 0 19 19" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.71625 7.11811C5.00915 6.82521 5.48402 6.82521 5.77691 7.11811L9.74658 11.0878L13.7163 7.11811C14.0091 6.82521 14.484 6.82521 14.7769 7.11811C15.0698 7.411 15.0698 7.88587 14.7769 8.17877L10.2769 12.6788C9.98402 12.9717 9.50914 12.9717 9.21625 12.6788L4.71625 8.17877C4.42336 7.88587 4.42336 7.411 4.71625 7.11811Z" fill="#6B6970"/>
</svg>
</span>
</a>
<div class="nav-dropdown">
<ul class="nav-dropdown-list">
<li><a href="">Sacred Store 1</a></li>
<li><a href="">Sacred Store 2</a></li>
<li><a href="">Sacred Store 3</a></li>
<li><a href="">Sacred Store 4</a></li>
</ul>
</div>
</li>
<li><a href="">Contact</a></li>
</ul>
<div class="mobile-link-list">
<div class="break-link"></div>
<ul class="mobile-new-link">
<li>
<a href="#" class="about-link">About Sri Guru</a>
</li>
<li>
<a href="#" class="about-link">About SRM Organisation</a>
</li>
</ul>
</div>
</div>
<!-- Desktop Navbar End -->
</div>
<div class="nav-right">
<div class="nav-cart">
<a href="#" class="nav-cart-link">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none">
<path d="M3.3999 6.89844H22.3999L19.3999 16.8984H6.3999L3.3999 6.89844ZM3.3999 6.89844L2.6499 4.39844M11.3999 20.3984C11.3999 20.7963 11.2419 21.1778 10.9606 21.4591C10.6793 21.7404 10.2977 21.8984 9.8999 21.8984C9.50208 21.8984 9.12055 21.7404 8.83924 21.4591C8.55794 21.1778 8.3999 20.7963 8.3999 20.3984M17.3999 20.3984C17.3999 20.7963 17.2419 21.1778 16.9606 21.4591C16.6793 21.7404 16.2977 21.8984 15.8999 21.8984C15.5021 21.8984 15.1205 21.7404 14.8392 21.4591C14.5579 21.1778 14.3999 20.7963 14.3999 20.3984" stroke="#6B6970" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
<div class="nav-sign-in-box">
<a href="#">Sign In</a>
</div>
<div class="nav-lang-box">
<a href="#" class=" nav-lang nav-lang-eng active">Eng</a>
|
<a href="#" class="nav-lang nav-lang-Hindi">Hin</a>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Header End -->
<!-- Body Wrapper start -->
<div class="body-wrapper">
<!-- Banner Section Start -->
<section class="about_sriguru_banner parallax-banner about_srimad_rajchandra_banner about_srm_banner">
<div class="aboutsgb_main">
<div class="aboutsgbm_left banner-content-wrapper">
<div class="container-fluid">
<div class="aboutsgbm_left_inner banner-content-box">
<!-- <div class="aboutsgbml_para1">
<p>About</p>
</div> -->
<div class="aboutsgbml_heading trans">
<h1 class="trans-first">Shrimad Rajchandra <span>Mission Delhi</span></h1>
</div>
<div class="aboutsgbml_para2 trans">
<p class="trans-second">Shrimad Rajchandra Mission Delhi, founded in 2010 by Sri Guru, is a global non-profit spiritual organization inspired by the teachings of Shrimad Rajchandraji, a revered Indian philosopher and spiritual scholar. Built, supported and nurtured with love by its ever-dedicated team of volunteers, SRM is on a mission to spread Sri Guru’s call of self-realization to sincere seekers all over the world who want to live a life infused with wisdom and continuous bliss.</p>
</div>
</div>
</div>
</div>
<div class="aboutsgbm_right banner-img-wrapper">
<div class="aboutsgbmr_inner banner-img">
<img src="img/banner.png" alt="">
</div>
</div>
</div>
<!-- Scroll Btn Start -->
<!-- <div class="scroll-btn-box">
<a href="#counter">
<span class="scroll-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="27" height="34" viewBox="0 0 27 34" fill="none">
<path d="M13.7374 0.413086L0.922363 16.8581L13.7374 33.3032L26.5525 16.8581L13.7374 0.413086Z" fill="#D98A35"/>
<path d="M13.7373 3.30591L3.17651 16.8582L13.7373 30.4104L24.2981 16.8582L13.7373 3.30591Z" fill="#DF9B52"/>
<path d="M13.7382 7.9082L6.76416 16.8577L13.7382 25.8072L20.7122 16.8577L13.7382 7.9082Z" fill="#EFB271"/>
</svg>
</span>
Scroll
</a>
</div> -->
<!-- Scroll Btn End -->
</section>
<!-- Banner Section End -->
<!-- Space 120px start -->
<div class="spacer_40"></div>
<!-- Space 120px End -->
<!-- featured Video Section start -->
<section class="featured-video-section srm_featured_video_section">
<div class="container-fluid">
<!-- <div class="heading-wrap element i-v">
<div class="heading-title center trans">
<h2 class="trans-first">Featured Watch Videos</h2>
</div>
</div> -->
<div class="featured-slider-wrap about_srm_featured_slider_wrap">
<div class="swiper featuredSlider">
<div class="swiper-wrapper ">
<div class="swiper-slide element i-v">
<div class="featured-box trans">
<a href="wisdom-talk-inner.html" class="trans-first">
<div class="featured-thumbnail">
<img src="img/featured1.png" alt="Featured image ">
</div>
<div class="featured-play-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="82" height="82" viewBox="0 0 82 82" fill="none">
<g opacity="0.9" clip-path="url(#clip0_1149_19957)">
<path d="M41.4238 0.530273C52.1572 0.530273 62.4509 4.79409 70.0406 12.3837C77.6302 19.9734 81.894 30.2671 81.894 41.0005C81.894 51.7338 77.6302 62.0276 70.0406 69.6172C62.4509 77.2069 52.1572 81.4707 41.4238 81.4707C30.6905 81.4707 20.3967 77.2069 12.8071 69.6172C5.21743 62.0276 0.953613 51.7338 0.953613 41.0005C0.953613 30.2671 5.21743 19.9734 12.8071 12.3837C20.3967 4.79409 30.6905 0.530273 41.4238 0.530273ZM8.54178 41.0005C8.54178 49.7213 12.0061 58.085 18.1727 64.2516C24.3393 70.4182 32.703 73.8825 41.4238 73.8825C50.1447 73.8825 58.5084 70.4182 64.6749 64.2516C70.8415 58.085 74.3059 49.7213 74.3059 41.0005C74.3059 32.2796 70.8415 23.9159 64.6749 17.7494C58.5084 11.5828 50.1447 8.11844 41.4238 8.11844C32.703 8.11844 24.3393 11.5828 18.1727 17.7494C12.0061 23.9159 8.54178 32.2796 8.54178 41.0005ZM33.2235 26.9725L54.7942 39.9179C54.9806 40.0305 55.1348 40.1893 55.2418 40.379C55.3488 40.5686 55.405 40.7827 55.405 41.0005C55.405 41.2183 55.3488 41.4323 55.2418 41.622C55.1348 41.8117 54.9806 41.9705 54.7942 42.0831L33.2235 55.0285C33.0317 55.144 32.8127 55.2066 32.5888 55.2097C32.3649 55.2129 32.1441 55.1565 31.9491 55.0464C31.7541 54.9363 31.5919 54.7764 31.4789 54.583C31.366 54.3897 31.3064 54.1698 31.3063 53.9459V28.0601C31.3055 27.8358 31.3644 27.6152 31.477 27.4212C31.5896 27.2271 31.7518 27.0665 31.9469 26.9558C32.1421 26.8451 32.3632 26.7883 32.5875 26.7912C32.8118 26.7942 33.0314 26.8567 33.2235 26.9725Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1149_19957">
<rect width="80.9404" height="80.9404" fill="white" transform="translate(0.953613 0.530273)"/>
</clipPath>
</defs>
</svg>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- featured Video Section End -->
<!-- Space start -->
<div class="spacer_40"></div>
<!-- Space End -->
<!-- guiding vision section start -->
<section class="guiding_vision_section">
<div class="container-fluid">
<div class="guidingvs_main element i-v">
<div class="guidingvsm_heading trans">
<h2 class="trans-first">Guiding Vision and Mission</h2>
</div>
<div class="guidingvsm_inner ">
<div class="guidingvsm_top trans">
<div class="guidingvsmt_item trans-second">
<div class="guidingvsml_heading ">
<div class="guidingvsmlh_svg ">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="42" viewBox="0 0 28 42" fill="none">
<path d="M13.7676 6.36328L0 24.0306L13.7676 41.698L27.5351 24.0306L13.7676 6.36328Z" fill="#D29F5A"/>
<path d="M13.7666 0.34375L3.71094 13.2477L13.7666 26.1517L23.8222 13.2477L13.7666 0.34375Z" fill="#E3C08F"/>
</svg>
</div>
<div class="guidingvsmlh_text">
<h3 class="font-32">Srm Vision</h3>
</div>
</div>
<div class="guidingvsml_text">
<p class="hideScroll ">SRM’s vision is to inspire a sense of exploration of one’s purpose, the pursuit of which opens up the possibility to experience true happiness and ultimately spread goodness all around. Seek, Experience, Return are the tenets SRM stands upon. It encourages everyone to look inwards and discover their higher purpose.</p>
</div>
</div>
<div class="guidingvsmt_item trans-second">
<div class="guidingvsml_heading">
<div class="guidingvsmlh_svg">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="42" viewBox="0 0 28 42" fill="none">
<path d="M13.7676 6.36328L0 24.0306L13.7676 41.698L27.5351 24.0306L13.7676 6.36328Z" fill="#D29F5A"/>
<path d="M13.7666 0.34375L3.71094 13.2477L13.7666 26.1517L23.8222 13.2477L13.7666 0.34375Z" fill="#E3C08F"/>
</svg>
</div>
<div class="guidingvsmlh_text">
<h3 class="font-32">Srm Vision</h3>
</div>
</div>
<div class="guidingvsml_text">
<p class="hideScroll">SRM’s vision is to inspire a sense of exploration of one’s purpose, the pursuit of which opens up the possibility to experience true happiness and ultimately spread goodness all around. Seek, Experience, Return are the tenets SRM stands upon. It encourages everyone to look inwards and discover their higher purpose.</p>
</div>
</div>
</div>
<div class="guidingvsm_btm ">
<div class="guidingvsmb_item">
<div class="guidingvsmbi_heading ">
<h4 class="">Discipline</h4>
</div>
<div class="guidingvsmbi_text">
<p class="hideScroll">SRM endeavors to provide a self-disciplined community for individuals to engage with, find inspiration from and evolve together.</p>
</div>
</div>
<div class="guidingvsmb_item">
<div class="guidingvsmbi_heading">
<h4>Inclusivity</h4>
</div>
<div class="guidingvsmbi_text">
<p class="hideScroll">SRM respects every human being, recognizing the common thread that binds humanity beneath surface-level differences of age, gender, religion, caste or nationality.</p>
</div>
</div>
<div class="guidingvsmb_item">
<div class="guidingvsmbi_heading">
<h4>Clarity</h4>
</div>
<div class="guidingvsmbi_text">
<p class="hideScroll">SRM encourages clarity and critical understanding over blind faith. The true understanding of the path is the first and most essential step needed to start on the spiritual journey.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- guiding vision seciton ends -->
<!-- spacer start -->
<div class="spacer_40"></div>
<!-- spacer ends -->
<!-- seek exeprience section start -->
<section class="biography_section meditation_artist_section seek_experience_section element i-v">
<div class="container-fluid">
<div class="seek_exp_s_main ">
<div class="seekes_heading trans">
<h2 class="trans-first">Initiatives — Seek. Experience. Return</h2>
</div>
<div class="biographys_main meditation_artist_section_main seekes_main">
<div class="boigraphysm_left">
<div class="biographysml_inner meditation_artists_inner seekesm_inner">
<img src="img/a-srm-img0.png" alt="">
</div>
</div>
<div class="biographysm_right">
<div class="biographysmr_heading trans">
<h3 class="font-26 trans-second">Seek</h3>
</div>
<div class="biographysmr_text">
<div class="biographysmr_para1 trans">
<p class="hideScroll trans-third">SRM provides its seekers with multiple avenues to learn and unlearn, understand, introspect and experience their own selves. Sri Guru’s talks on scriptures provide a perspective imbued with clarity of knowledge and actionables, which empower the seekers to progress on their spiritual journey with full momentum. In addition to Sunday communes, SRM organises Friday Family Satsangs which are small gatherings of sincere seekers who are open to deeper experiences. Spiritual tours across India and abroad along with Annual Meets and Retreats are part of SRM’s efforts to spread the goodness of spirituality to people all over the world. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- seek exeprience section ends -->
<!-- spacer start -->
<div class="spacer_40"></div>
<!-- spacer ends -->
<!-- experience section start -->
<section class="biography_section meditation_artist_section experience_section element i-v">
<div class="container-fluid">
<div class="biographys_main meditation_artist_section_main experience_sec_main">
<div class="boigraphysm_left">
<div class="biographysml_inner meditation_artists_inner experiencesm_inner">
<img src="img/a-srm-img2.png" alt="">
</div>
</div>
<div class="biographysm_right">
<div class="biographysmr_heading trans">
<h4 class="trans-first">Experience</h4>
</div>
<div class="biographysmr_text">
<div class="biographysmr_para1 trans">
<p class="trans-second">Sri Guru considers meditation to be her most important offering and places immense emphasis on Experience, with the understanding that the practice of meditation has the power to transform lives and cultivate unconditional happiness within. SRM organizes multiple Meditation events to make the opportunity of the inner experience available to all of its seekers. Swaraj Kriya, one of SRM’s main contributions, is a yogic practice created by Sri Guru to enable seekers to continuously evolve and connect with the higher consciousness. The Swaraj Kriya program is structured to encourage discipline, consistency and growth in multiple areas of life. </p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="biography_section meditation_artist_section experience_section exps_2 element i-v">
<div class="container-fluid">
<div class="biographys_main meditation_artist_section_main experience_sec_main">
<div class="boigraphysm_left">
<div class="biographysml_inner meditation_artists_inner experiencesm_inner">
<img src="img/a-srm-img.png" alt="">
</div>
</div>
<div class="biographysm_right">
<!-- <div class="biographysmr_heading">
<h3 class="font-26">Seek</h3>
</div> -->
<div class="biographysmr_text">
<div class="biographysmr_para1 trans">
<p class="trans-third">As of 2023, SRM has started with Dhyan Dhaara events, which are 2 hr meditation - only gatherings intended to provide seekers with a deeper and blissful meditation experience guided by Sri Guru herself. SRM annually organizes the ‘Kshamapana Mahaparv’, which is a one of its kind Forgiveness program to unburden the self of sins and vices that are carried within through life. In addition, SRM has launched the Dhyan Sangh Program, wherein monthly meditations are hosted by SRM’s devoted volunteer community across 80 centers in India and abroad. The objective behind these sessions remains simple: to take the conversation on the inner experience to more and more seekers out there who are waiting to get more out of life and start on their spiritual journey. </p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- experience section ends -->
<!-- spacer start -->
<div class="spacer_40"></div>
<!-- spacer ends -->
<!-- seek exeprience section start -->
<section class="biography_section meditation_artist_section seek_experience_section seek_experience_section2 element i-v">
<div class="container-fluid">
<div class="seek_exp_s_main">
<div class="biographys_main meditation_artist_section_main seekes_main">
<div class="boigraphysm_left">
<div class="biographysml_inner meditation_artists_inner seekesm_inner">
<img src="img/a-srm-img0.png" alt="">
</div>
</div>
<div class="biographysm_right">
<div class="biographysmr_heading trans">
<h3 class="font-26 trans-first">Return</h3>
</div>
<div class="biographysmr_text">
<div class="biographysmr_para1 trans">
<p class="hideScroll trans-second">SRM continuously seeks avenues to give back to its fellow seekers, the needy, the society and to a higher purpose. Under its Shikshadaanam Program, SRM has committed to upgrading the infrastructure of schools in rural India to provide a safe and nurturing environment conducive to learning and dignify the experience of students. So far, 500+ students across 3 schools have benefitted under the program, with more being added to the pipeline every year. The ‘Annadaanam and Vastradaanam’ Program, aims to serve people in need with food and clothes. Monthly donation camps are organized where SRM’s volunteers distribute food and clothes to families from government and semi-government hospitals and under-developed localities and as of May '23, 30,000+ people have been served under the program. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- seek exeprience section ends -->
<!-- spacer start -->
<div class="spacer"></div>
<!-- spacer ends -->
<!-- srm by the timeline section start -->
<section class="contect_with_sriguru_section srm_by_the_timeline_section aboutsrm_timeline element i-v">
<div class="container-fluid">
<div class="srmbtts_heading trans">
<h2 class="trans-first">SRM by the Timeline</h2>
</div>
<div class="cwsg_main srmbtts_main">
<div class="cwsg_main_left srmbttsm_left">
<div class="cwsg_main_left_btm">
<img src="img/about-srm-bg-img121.png" alt="">
</div>
<div class="cwsg_main_left_top">
<div class="cwsg_main_left_heading trans" >
<h3 class="font-32 trans-second">More than a decade of transforming lives</h3>
</div>
<div class="cwsg_main_left_para1 trans">
<p class="trans-third">SRM was not a planned start. It took shape as individuals seeking a cause gathered together and related with Sri Guru’s talks. It evolved as the seekers evolved in their journeys and the need arose for Sri Guru to bring the next scripture, or the next meditation technique, or at some point of time, a completely new system.</p>
</div>
</div>
</div>
<div class="cwsg_main_right srmbttsm_right">
<div class="cwsg_main_right_inner">
<img src="img/srm-exp-img.png" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- srm by the timeline section ends -->
<!-- spacer start -->
<!-- <div class="spacer"></div> -->
<!-- spacer ends -->
<!-- about srm carousel section start -->
<section class="about_srm_carousel_section">
<div class="container-fluid">
<div class="aboutsrmcs_main">
<div class="aboutsrmcsm_top">
<div class="aboutsrmcsmt_item at_item1">
<div class="aboutsrmcsmti_svg svg_item1">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none">
<circle cx="15.2578" cy="14.7656" r="14.5" fill="#CF9E69"/>
</svg>
</div>
<div class="aboutsrmcsmti_hr">
<hr class="hr1">
<hr class="hr2">
</div>
</div>
<div class="aboutsrmcsmt_item at_item2">
<div class="aboutsrmcsmti_svg svg_item2">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none">
<circle cx="15.2578" cy="14.7656" r="14" stroke="#CF9E69"/>
</svg>
</div>
<div class="aboutsrmcsmti_hr">
<hr class="hr1">
<hr class="hr2">
</div>
</div>
<div class="aboutsrmcsmt_item at_item3">
<div class="aboutsrmcsmti_svg svg_item3">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none">
<circle cx="15.2578" cy="14.7656" r="14" stroke="#CF9E69"/>
</svg>
</div>
<div class="aboutsrmcsmti_hr">
<hr class="hr1">
<hr class="hr2">
</div>
</div>
<div class="aboutsrmcsmt_item at_item4">
<div class="aboutsrmcsmti_svg svg_item4">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none">
<circle cx="15.2578" cy="14.7656" r="14" stroke="#CF9E69"/>
</svg>
</div>
<div class="aboutsrmcsmti_hr">
<hr class="hr1">
<hr class="hr2">
</div>
</div>
</div>
<div class="aboutsrmcsm_btm">
<div class="aboutsrmcsmb_item">
<div class="aboutsrmcsmb_heading">
<h5>1996, The Dream Takes Place:</h5>
</div>
<div class="aboutsrmcsmb_para">
<p>Inspired by her spiritual master Param Krupalu Dev Shrimad Rajchandra, Sri Guru began her self- realization journey and held informal sessions to inspire others in Calcutta.</p>
</div>
</div>
<div class="aboutsrmcsmb_item">
<div class="aboutsrmcsmb_heading">
<h5>2010, SRM Delhi is Formally Established</h5>
</div>
<div class="aboutsrmcsmb_para">
<p>The organisation is founded and is named after Shrimad Rajchandraji. Sri Guru delivers her first talk to the masses.</p>
</div>
</div>
<div class="aboutsrmcsmb_item">
<div class="aboutsrmcsmb_heading">
<h5>2014, Spiritual Revolutionary Movement</h5>
</div>
<div class="aboutsrmcsmb_para">
<p>Theist and atheist religions find new meanings through the scriptures of Hinduism and Jainism. The organisation upholds spirituality as the crux of the mission.</p>
</div>
</div>
<div class="aboutsrmcsmb_item">
<div class="aboutsrmcsmb_heading">
<h5>1996, The Dream Takes Place:</h5>
</div>
<div class="aboutsrmcsmb_para">
<p>Inspired by her spiritual master Param Krupalu Dev Shrimad Rajchandra, Sri Guru began her self- realization journey and held informal sessions to inspire others in Calcutta.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="about_srm_carousel_section2">
<div class="container-fluid">
<div class="aboutsrmcs_main_carousel">
<div class="splide">
<div class="splide__track">
<ul class="splide__list">
<li class="splide__slide">
<div class="aboutsrmcsmc_inner">
<div class="aboutsrmcsmci_top">
<div class="aboutsrmcsmt_item">
<div class="aboutsrmcsmti_svg svg_item1">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none">
<circle cx="15.2578" cy="14.7656" r="14.5" fill="#CF9E69"/>
</svg>
</div>
<div class="aboutsrmcsmti_hr">
<hr class="hr1">
<hr class="hr2">
</div>
</div>
</div>
<div class="aboutsrmcsmci_btm">
<div class="aboutsrmcsmb_item">
<div class="aboutsrmcsmb_heading">
<h5>1996, The Dream Takes Place:</h5>
</div>
<div class="aboutsrmcsmb_para">
<p>Inspired by her spiritual master Param Krupalu Dev Shrimad Rajchandra, Sri Guru began her self- realization journey and held informal sessions to inspire others in Calcutta.</p>
</div>
</div>
</div>
</div>
</li>
<li class="splide__slide">
<div class="aboutsrmcsmc_inner">
<div class="aboutsrmcsmci_top">
<div class="aboutsrmcsmt_item">
<div class="aboutsrmcsmti_svg svg_item1">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none">
<circle cx="15.2578" cy="14.7656" r="14.5" fill="#CF9E69"/>
</svg>
</div>
<div class="aboutsrmcsmti_hr">
<hr class="hr1">
<hr class="hr2">
</div>
</div>
</div>
<div class="aboutsrmcsmci_btm">
<div class="aboutsrmcsmb_item">
<div class="aboutsrmcsmb_heading">
<h5>1996, The Dream Takes Place:</h5>
</div>
<div class="aboutsrmcsmb_para">
<p>Inspired by her spiritual master Param Krupalu Dev Shrimad Rajchandra, Sri Guru began her self- realization journey and held informal sessions to inspire others in Calcutta.</p>
</div>
</div>
</div>
</div>
</li>
<li class="splide__slide">
<div class="aboutsrmcsmc_inner">
<div class="aboutsrmcsmci_top">
<div class="aboutsrmcsmt_item">
<div class="aboutsrmcsmti_svg svg_item1">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none">
<circle cx="15.2578" cy="14.7656" r="14.5" fill="#CF9E69"/>
</svg>
</div>
<div class="aboutsrmcsmti_hr">
<hr class="hr1">
<hr class="hr2">
</div>
</div>
</div>
<div class="aboutsrmcsmci_btm">
<div class="aboutsrmcsmb_item">
<div class="aboutsrmcsmb_heading">
<h5>1996, The Dream Takes Place:</h5>
</div>
<div class="aboutsrmcsmb_para">
<p>Inspired by her spiritual master Param Krupalu Dev Shrimad Rajchandra, Sri Guru began her self- realization journey and held informal sessions to inspire others in Calcutta.</p>
</div>
</div>
</div>
</div>
</li>
<li class="splide__slide">
<div class="aboutsrmcsmc_inner">
<div class="aboutsrmcsmci_top">
<div class="aboutsrmcsmt_item">
<div class="aboutsrmcsmti_svg svg_item1">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none">
<circle cx="15.2578" cy="14.7656" r="14.5" fill="#CF9E69"/>
</svg>
</div>
<div class="aboutsrmcsmti_hr">
<hr class="hr1">
<hr class="hr2">
</div>
</div>
</div>
<div class="aboutsrmcsmci_btm">
<div class="aboutsrmcsmb_item">
<div class="aboutsrmcsmb_heading">
<h5>1996, The Dream Takes Place:</h5>
</div>
<div class="aboutsrmcsmb_para">
<p>Inspired by her spiritual master Param Krupalu Dev Shrimad Rajchandra, Sri Guru began her self- realization journey and held informal sessions to inspire others in Calcutta.</p>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- about srm carousel section ends -->
<!-- spacer start -->
<div class="spacer"></div>
<!-- spacer ends -->
<!-- relive section start -->
<section class="relive_section">
<div class="container-fluid">
<div class="rs_main element i-v">
<div class="rsm_left">
<div class="rsml_img">
<img src="img/rs-img.png" alt="">
</div>
</div>
<div class="rsm_right">
<div class="rsmr_heading trans">
<h2 class="trans-first">relive the sRM experience</h2>
</div>
<div class="rsmr_para trans">
<p class="trans-second">SwaRaj Kriya is a powerful Yogic meditation designed by Sri Guru for spiritual, mental and physical upliftment of seekers.</p>
</div>
<div class="rsmr_btn trans">
<a href="#" class="custom-btn purple trans-third">know more
<span class="arrow">></span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- relive section ends -->
</div>
<!-- Body Wrapper End -->
<!-- Footer start -->
<footer class="main-footer" id="main-footer">
<div class="container-fluid">
<div class="footer-top">
<div class="footer-in">
<div class="footer-left">
<div class="footer-logo">
<a href="index.html">
<img src="img/footer-logo.svg" alt="SRM Logo">
</a>
</div>
<div class="footer-link-box">
<ul class="footer-link-list">
<li>
<a href="#" class="footer-about-link">Watch Sri Guru’s Talks</a>
</li>
<li>
<a href="#" class="footer-about-link">Guided Meditations</a>
</li>
</ul>
</div>
</div>
<div class="footer-right">
<div class="footer-navigation">
<div class="footer-nav-box">
<div class="footer-label">Wisdom</div>
<ul class="footer-list">
<li><a href="wisdom-talks-main.html">Talks</a></li>
<li><a href="wisdom-blogs.html">Blogs</a></li>
<li><a href="wisdom-bhakti.html">Bhakti</a></li>
<li><a href="">Courses</a></li>
</ul>
</div>
<div class="footer-nav-box">
<div class="footer-label">About Us</div>
<ul class="footer-list">
<li><a href="">SRM</a></li>
<li><a href="">Shrimad Rajchandra Ji</a></li>
<li><a href="">Sri Guru</a></li>
<li><a href="">Swaraj Kriya</a></li>
</ul>
</div>
<div class="footer-nav-box">
<div class="footer-label">Scared Store</div>
<ul class="footer-list">
<li><a href="">Learning</a></li>
<li><a href="">Sadhana</a></li>
<li><a href="">Satvik Decor</a></li>
<li><a href="">Gifts</a></li>
</ul>
</div>
<div class="footer-nav-box">
<div class="footer-label">Other Offerings</div>
<ul class="footer-list">
<li><a href="">Meditation</a></li>
<li><a href="">Upcoming Events</a></li>
<li><a href="">Past Events</a></li>
</ul>
</div>
</div>
<div class="footer-navigation mobile-navigation">
<div class="footer-nav-box">
<div class="footer-label">Wisdom
<span class="arrowicon"></span>
</div>
<ul class="footer-list">
<li><a href="wisdom-talks-main.html">Talks</a></li>
<li><a href="wisdom-blogs.html">Blogs</a></li>
<li><a href="wisdom-bhakti.html">Bhakti</a></li>
<li><a href="">Courses</a></li>
</ul>
</div>
<div class="footer-nav-box">
<div class="footer-label">About Us
<span class="arrowicon"></span>
</div>
<ul class="footer-list">
<li><a href="">SRM</a></li>
<li><a href="">Shrimad Rajchandra Ji</a></li>
<li><a href="">Sri Guru</a></li>
<li><a href="">Swaraj Kriya</a></li>
</ul>
</div>
<div class="footer-nav-box">
<div class="footer-label">Scared Store
<span class="arrowicon"></span>
</div>
<ul class="footer-list">
<li><a href="">Learning</a></li>
<li><a href="">Sadhana</a></li>
<li><a href="">Satvik Decor</a></li>
<li><a href="">Gifts</a></li>
</ul>
</div>
<div class="footer-nav-box">
<div class="footer-label">Other Offerings
<span class="arrowicon"></span>
</div>
<ul class="footer-list">
<li><a href="">Meditation</a></li>
<li><a href="">Upcoming Events</a></li>
<li><a href="">Past Events</a></li>
</ul>
</div>
</div>
<div class="social-icon-wrapper">
<div class="social-icon-label">
<div class="footer-label">Lets get social</div>
<ul class="social-icon-list">
<li>
<a href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none">
<path d="M18.186 2.125H15.186C13.86 2.125 12.5882 2.65178 11.6505 3.58947C10.7128 4.52715 10.186 5.79892 10.186 7.125V10.125H7.18604V14.125H10.186V22.125H14.186V14.125H17.186L18.186 10.125H14.186V7.125C14.186 6.85978 14.2914 6.60543 14.4789 6.41789C14.6665 6.23036 14.9208 6.125 15.186 6.125H18.186V2.125Z" stroke="#CF9E69" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</li>
<li>
<a href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none">
<g clip-path="url(#clip0_1321_2997)">
<path d="M23.186 3.1248C22.2284 3.80028 21.1681 4.31691 20.046 4.6548C19.4438 3.96231 18.6434 3.47149 17.7531 3.24873C16.8628 3.02596 15.9255 3.082 15.0681 3.40926C14.2107 3.73651 13.4745 4.3192 12.959 5.07852C12.4436 5.83783 12.1737 6.73714 12.186 7.6548V8.6548C10.4287 8.70037 8.68731 8.31061 7.11704 7.52025C5.54678 6.72988 4.19635 5.56344 3.18604 4.1248C3.18604 4.1248 -0.813965 13.1248 8.18604 17.1248C6.12656 18.5228 3.67319 19.2237 1.18604 19.1248C10.186 24.1248 21.186 19.1248 21.186 7.6248C21.1851 7.34626 21.1583 7.0684 21.106 6.7948C22.1266 5.7883 22.8469 4.51751 23.186 3.1248V3.1248Z" stroke="#CF9E69" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_1321_2997">
<rect width="24" height="24" fill="white" transform="translate(0.186035 0.125)"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none">
<path d="M17.186 2.125H7.18604C4.42461 2.125 2.18604 4.36358 2.18604 7.125V17.125C2.18604 19.8864 4.42461 22.125 7.18604 22.125H17.186C19.9475 22.125 22.186 19.8864 22.186 17.125V7.125C22.186 4.36358 19.9475 2.125 17.186 2.125Z" stroke="#CF9E69" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.186 11.4948C16.3094 12.3271 16.1672 13.177 15.7797 13.9238C15.3922 14.6706 14.7791 15.2762 14.0276 15.6545C13.2761 16.0327 12.4244 16.1644 11.5938 16.0307C10.7631 15.8971 9.99575 15.5049 9.40083 14.91C8.8059 14.3151 8.41372 13.5477 8.28005 12.717C8.14639 11.8864 8.27805 11.0347 8.65631 10.2832C9.03457 9.53167 9.64017 8.91855 10.387 8.53105C11.1338 8.14356 11.9837 8.0014 12.816 8.12481C13.6649 8.2507 14.4508 8.64628 15.0577 9.25312C15.6645 9.85996 16.0601 10.6459 16.186 11.4948Z" stroke="#CF9E69" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.686 6.625H17.696" stroke="#CF9E69" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</li>
<li>
<a href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none">
<g clip-path="url(#clip0_1321_3003)">
<path d="M22.7261 6.545C22.6073 6.07041 22.3654 5.63557 22.0248 5.28441C21.6841 4.93324 21.2569 4.67818 20.7861 4.545C19.0661 4.125 12.1861 4.125 12.1861 4.125C12.1861 4.125 5.30612 4.125 3.58612 4.585C3.11537 4.71818 2.6881 4.97324 2.34747 5.32441C2.00683 5.67557 1.76491 6.11041 1.64612 6.585C1.33133 8.33056 1.17735 10.1013 1.18612 11.875C1.1749 13.662 1.32889 15.4463 1.64612 17.205C1.77708 17.6648 2.02443 18.0831 2.36426 18.4195C2.7041 18.7558 3.12494 18.9988 3.58612 19.125C5.30612 19.585 12.1861 19.585 12.1861 19.585C12.1861 19.585 19.0661 19.585 20.7861 19.125C21.2569 18.9918 21.6841 18.7368 22.0248 18.3856C22.3654 18.0344 22.6073 17.5996 22.7261 17.125C23.0385 15.3926 23.1924 13.6353 23.1861 11.875C23.1973 10.088 23.0434 8.3037 22.7261 6.545V6.545Z" stroke="#CF9E69" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.93604 15.145L15.686 11.875L9.93604 8.60498V15.145Z" stroke="#CF9E69" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_1321_3003">
<rect width="24" height="24" fill="white" transform="translate(0.186035 0.125)"/>
</clipPath>
</defs>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="newsletter-wrapper">
<div class="newsletter-flex">
<div class="newsletter-box">
<div class="newsletter-title">
<h6>Email Exclusives</h6>
</div>
<div class="newsletter-para">
<p class="small">You’ll get an email once a month. We’ll never share it.</p>
</div>
<div class="newsletter-form-box">
<form class="newsletter-form">
<div class="newsletter-form-field">
<input type="text" class="form-control" placeholder="Enter your email address">
<input type="submit" class="newsletter-btn" value="subscribe">
</div>
</form>
</div>
</div>
<div class="static-link-box">
<ul class="static-link-ul">
<li>
<a href="#">Terms & conditions</a>
</li>
<li>
<a href="#">Privacy policy</a>
</li>
<li>
<a href="#">Return & Cancellation Policy</a>
</li>
<li>
<a href="#">Feedback</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-bottom" >
<div class="copyright-wrap">
<div class="copyright-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
<path d="M7.04932 13.5C10.5701 13.5 13.4243 10.6458 13.4243 7.125C13.4243 3.60418 10.5701 0.75 7.04932 0.75C3.5285 0.75 0.674316 3.60418 0.674316 7.125C0.674316 10.6458 3.5285 13.5 7.04932 13.5Z" stroke="#D9D3D3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.174 8.71917C8.83944 9.16507 8.37308 9.49441 7.84095 9.66054C7.30883 9.82668 6.73793 9.82119 6.2091 9.64486C5.68027 9.46853 5.22031 9.13029 4.89438 8.67804C4.56846 8.2258 4.39307 7.68247 4.39307 7.12502C4.39306 6.56756 4.56844 6.02423 4.89437 5.57199C5.22029 5.11974 5.68024 4.78149 6.20906 4.60515C6.73789 4.42881 7.3088 4.42332 7.84092 4.58945C8.37305 4.75558 8.83942 5.08491 9.17398 5.53081" stroke="#D9D3D3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<p class="small">2023, Shrimad Rajchandra Mission Delhi. All rights reserved.</p>
</div>
<div class="madeby-wrap">
<div class="madeby-flex">
<div class="madeby-label">Made with</div>
<div class="madeby-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="21" viewBox="0 0 22 21" fill="none">
<path d="M10.4251 17.2572L9.32559 16.2563C5.42044 12.7151 2.84229 10.372 2.84229 7.51332C2.84229 5.17023 4.67732 3.34277 7.01283 3.34277C8.33224 3.34277 9.59857 3.95698 10.4251 4.92C11.2516 3.95698 12.5179 3.34277 13.8374 3.34277C16.1729 3.34277 18.0079 5.17023 18.0079 7.51332C18.0079 10.372 15.4297 12.7151 11.5246 16.2563L10.4251 17.2572Z" fill="#CF9E69"/>
</svg>
</div>
<div class="madeby-label">by