-
Notifications
You must be signed in to change notification settings - Fork 0
/
about_SRSRC.html
1136 lines (1086 loc) · 64 KB
/
about_SRSRC.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 SRSRC </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/@splidejs/[email protected]/dist/css/splide.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/css/themes/splide-skyblue.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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="css/bootstrap.min.css">
<link href="css/comman.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="css/kartik.css">
<link href="css/responsive.css" rel="stylesheet">
<!-- CSS Ends-->
</head>
<body id="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
<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_srsrc_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 trans">
<p class="trans-first">About</p>
</div>
<div class="aboutsgbml_heading trans">
<h1 class="trans-second">Sri<span> Guru</span></h1>
</div>
<div class="aboutsgbml_para2 trans">
<p class="trans-third">To facilitate SRM’s purpose and vision, which is to help people on their journey of self-realization and inner experience, the foundations of a sanctuary of peace and harmony have been laid amidst the hills of Himalayas, with the hope that every seeker is transformed with the boundless experience that is available to them there.</p>
</div>
</div>
</div>
</div>
<div class="aboutsgbm_right banner-img-wrapper">
<div class="aboutsgbmr_inner banner-img">
<img src="img/asg-img.png" alt="">
</div>
</div>
</div>
</section>
<!-- banner section ends -->
<!-- spacer start -->
<div class="spacer"></div>
<!-- spacer ends -->
<!-- by sri guru section start -->
<section class="by_sriguru testimonaial-sriguru-section srimad_rajchandra_testimonial2 about_srssrc_testimonial">
<div class="container">
<div class="bsg_main">
<div class="feat-testimonial-box element i-v bsg_inner">
<div class="feat-testimonial-title trans bsgi_heading">
<h2 class=" trans-first">“One second of actual plunge into Meditation puts together the effect of years of knowledge-collection. For within that one experience belongs the reason for all your knowledge”</h2>
</div>
<div class="feat-testimonail-br"></div>
<div class="feat-testimonial-authorName trans ltw_para2">
<p class="trans-third">sri guru</p>
</div>
</div>
</div>
</div>
</section>
<!--by sri guru section ends -->
<!-- spacer start -->
<div class="spacer_40"></div>
<!-- spacer ends -->
<!-- 3d model div start -->
<section class="model_3d_section_start">
<div class="container-fluid">
<div class="model_3d_div">
<p>3D MODEL - Architectural plan</p>
</div>
</div>
</section>
<!-- 3d model div ends -->
<!-- spacer start -->
<div class="spacer"></div>
<!-- spacer ends -->
<!-- our new center section start -->
<section class=" meditation_artist_section">
<div class="container-fluid">
<div class="biographys_main meditation_artist_section_main element i-v">
<div class="boigraphysm_left ">
<div class="biographysml_inner meditation_artists_inner">
<img src="img/pe-2.png" alt="">
</div>
</div>
<div class="biographysm_right element i-v">
<div class="biographysmr_heading trans">
<h2 class="trans-first">Our New Centre</h2>
</div>
<div class="biographysmr_text">
<div class="biographysmr_para1 trans">
<p class="trans-second">The Shrimad Rajchandra Self-Realization Center (SRSRC), is being created for all seekers who want to step back from the hustle of the world, and slow down to the pace of nature. Located near Natadol village in the Almora district of Uttarakhand and spread across an area of 4 acres, SRSRC is being designed to accommodate 200 people. With centers dedicated to meditation, spiritual discourses and prayer along with recreational facilities, SRSRC will serve as an institution instrumental to progress on the spiritual journey by offering the opportunity for deeper meditations and introspection in the tranquil environment of the mountains. </p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- our new center section ends -->
<!-- spacer start -->
<div class="spacer"></div>
<!-- spacer ends -->
<!-- program and facilities section start -->
<!-- <section class="program_and_facilities">
<div class="container-fluid">
<div class="programaf_main">
<div class="programafm_heading">
<h2 class="font-48">Programs and Facilites</h2>
</div>
<div class="programafm_carousel">
<div id="main-slider">
<div class="splide__track">
<ul class="splide__list">
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider1.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider2.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider3.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider4.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider5.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider6.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/srm-exp-img.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider1.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider2.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider3.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider4.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider5.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider6.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/srm-exp-img.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider1.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider2.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider3.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider4.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider5.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/slider6.png" alt="" />
</div>
</li>
<li class="splide__slide">
<div class="splides_inner">
<img src="img/srm-exp-img.png" alt="" />
</div>
</li>
</ul>
</div>
</div>
<div id="thumbnail-slider"
class="splide"
aria-label="The carousel with thumbnails. Selecting a thumbnail will change the Beautiful Gallery carousel."
>
<div class="splide__track">
<ul class="splide__list">
<li class="splide__slide">
<img src="img/slider1.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider2.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider3.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider4.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider5.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider6.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/srm-exp-img.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider1.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider2.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider3.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider4.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider5.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider6.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/srm-exp-img.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider1.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider2.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider3.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider4.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider5.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/slider6.png" alt="" />
</li>
<li class="splide__slide">
<img src="img/srm-exp-img.png" alt="" />
</li>
</ul>
</div>
<div class="my-slider-progress">
<div class="my-slider-progress-bar"></div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- program and facilities section ends -->
<!-- History Section start -->
<section class="brief-history-section program_facility_section">
<div class="container-fluid">
<div class="heading-wrap element i-v">
<div class="heading-title trans">
<h2 class="trans-first font-48">Programs and Facilites</h2>
</div>
</div>
<div class="history-slider-wrapper">
<div class="history-slider-box">
<div class="swiper history-main-slide">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="history-box">
<div class="history-img">
<img src="img/slider1.png" alt="Slider 1">
</div>
<!-- <div class="history-content">
<div class="history-date trans">
<h6 class="font-16 trans-first">2010</h6>
</div>
<div class="history-title trans">
<h4 class="trans-second">The Foundation</h4>
</div>
<div class="history-para trans">
<p class="small trans-third">Lorem ipsum dolor sit amet consectetur. Pellentesque justo erat lorem elit
porta convallis. In nulla fames non et. Diam tortor pretium sit convallis.</p>
</div>
</div> -->
</div>
</div>
<div class="swiper-slide">
<div class="history-box">
<div class="history-img">
<img src="img/slider2.png" alt="Slider 3">
</div>
<!-- <div class="history-content">
<div class="history-date trans">
<h6 class="font-16 trans-first">2011</h6>
</div>
<div class="history-title trans">
<h4 class="trans-second">The Foundation</h4>
</div>
<div class="history-para trans">
<p class="small trans-third">Lorem ipsum dolor sit amet consectetur. Pellentesque justo erat lorem elit
porta convallis. In nulla fames non et. Diam tortor pretium sit convallis.</p>
</div>
</div> -->
</div>
</div>
<div class="swiper-slide">
<div class="history-box">
<div class="history-img">
<img src="img/slider3.png" alt="Slider 3">
</div>
<!-- <div class="history-content">
<div class="history-date trans">
<h6 class="font-16 trans-first">2012</h6>
</div>
<div class="history-title trans">
<h4 class="trans-second">The Foundation</h4>
</div>
<div class="history-para trans">
<p class="small trans-third">Lorem ipsum dolor sit amet consectetur. Pellentesque justo erat lorem elit
porta convallis. In nulla fames non et. Diam tortor pretium sit convallis.</p>
</div>
</div> -->
</div>
</div>
<div class="swiper-slide">
<div class="history-box">
<div class="history-img">
<img src="img/slider4.png" alt="Slider 4">
</div>
<!-- <div class="history-content">
<div class="history-date trans">
<h6 class="font-16 trans-first">2013</h6>
</div>
<div class="history-title trans">
<h4 class="trans-second">The Foundation</h4>
</div>
<div class="history-para trans">
<p class="small trans-third">Lorem ipsum dolor sit amet consectetur. Pellentesque justo erat lorem elit
porta convallis. In nulla fames non et. Diam tortor pretium sit convallis.</p>
</div>
</div> -->
</div>
</div>
<div class="swiper-slide">
<div class="history-box">
<div class="history-img">
<img src="img/slider5.png" alt="Slider 5">
</div>
<!-- <div class="history-content">
<div class="history-date trans">
<h6 class="font-16 trans-first">2010</h6>
</div>
<div class="history-title trans">
<h4 class="trans-second">The Foundation</h4>
</div>
<div class="history-para trans">
<p class="small trans-third">Lorem ipsum dolor sit amet consectetur. Pellentesque justo erat lorem elit
porta convallis. In nulla fames non et. Diam tortor pretium sit convallis.</p>
</div>
</div> -->
</div>
</div>
<div class="swiper-slide">
<div class="history-box">
<div class="history-img">
<img src="img/slider6.png" alt="Slider 6">
</div>
<!-- <div class="history-content">
<div class="history-date trans">
<h6 class="font-16 trans-first">2010</h6>
</div>
<div class="history-title trans">
<h4 class="trans-second">The Foundation</h4>
</div>
<div class="history-para trans">
<p class="small trans-third">Lorem ipsum dolor sit amet consectetur. Pellentesque justo erat lorem elit
porta convallis. In nulla fames non et. Diam tortor pretium sit convallis.</p>
</div>
</div> -->
</div>
</div>
<div class="swiper-slide">
<div class="history-box">
<div class="history-img">
<img src="img/slider1.png" alt="Slider 5">
</div>
<!-- <div class="history-content">
<div class="history-date trans">
<h6 class="font-16 trans-first">2013</h6>
</div>
<div class="history-title trans">
<h4 class="trans-second">The Foundation</h4>
</div>
<div class="history-para trans">
<p class="small trans-third">Lorem ipsum dolor sit amet consectetur. Pellentesque justo erat lorem elit
porta convallis. In nulla fames non et. Diam tortor pretium sit convallis.</p>
</div>
</div> -->
</div>
</div>
<div class="swiper-slide">
<div class="history-box">
<div class="history-img">
<img src="img/slider2.png" alt="Slider 6">
</div>
<!-- <div class="history-content">
<div class="history-date trans">
<h6 class="font-16 trans-first">2014</h6>
</div>
<div class="history-title trans">
<h4 class="trans-second">The Foundation</h4>
</div>
<div class="history-para trans">
<p class="small trans-third">Lorem ipsum dolor sit amet consectetur. Pellentesque justo erat lorem elit
porta convallis. In nulla fames non et. Diam tortor pretium sit convallis.</p>
</div>
</div> -->
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<div thumbsSlider="" class="swiper history-thumbnail">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="thumbnail-box">
<img src="img/slider1.png" alt="Thmbnail Slider 1" />
</div>
</div>
<div class="swiper-slide">
<div class="thumbnail-box">
<img src="img/slider2.png" alt="Thmbnail Slider 2" />
</div>
</div>
<div class="swiper-slide">
<div class="thumbnail-box">
<img src="img/slider3.png" alt="Thmbnail Slider 3" />
</div>
</div>
<div class="swiper-slide">
<div class="thumbnail-box">
<img src="img/slider4.png" alt="Thmbnail Slider 4" />
</div>
</div>
<div class="swiper-slide">
<div class="thumbnail-box">
<img src="img/slider5.png" alt="Thmbnail Slider 5" />
</div>
</div>
<div class="swiper-slide">
<div class="thumbnail-box">
<img src="img/slider6.png" alt="Thmbnail Slider 6" />
</div>
</div>
<div class="swiper-slide">
<div class="thumbnail-box">
<img src="img/slider1.png" alt="Thmbnail Slider 6" />
</div>
</div>
<div class="swiper-slide">
<div class="thumbnail-box">
<img src="img/slider2.png" alt="Thmbnail Slider 6" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- History Section End -->
<!-- spacer start -->
<!-- <div class="spacer"></div> -->
<!-- spacer ends -->
<!-- Explore past Event Section Start -->
<section class="past-event-section learn_from_sriguru_section">
<div class="container-fluid">
<div class="banner-content-title learn_from_sriguru_section_title">
<div class="learn_from_sriguru_section_heading">
<h1 class="font-48 ">
Learn From Sri Guru
</h1>
</div>
<div class="learn_from_sriguru_section_btn">
<a href="#" class="custom-btn purple trans-third">See All talks
<span class="arrow">></span>
</a>
</div>
</div>
<div class="past-event-wrapper learn_from_sriguru_section_wrapper">
<div class="past-event-grid">
<div class="past-event-box">
<a href="past-event-inner.html" class="pst-event-link">
<div class="past-event-img">
<img src="img/newest-img-1.png" alt="Newest Image 1">
</div>
<div class="past-event-content">
<div class="past-event-date">
<p>February 25, 2023</p>
</div>
<div class="past-event-title">
<h3 class="font-26">Shrimad Rajchandra
Atmasiddhi Shastra Ep#1</h3>
</div>
<div class="past-event-city">
<p>“It is my strong belief that a seeker is certain to overcome all obstacles on the path to liberation if he understands the Bhaav of...</p>
</div>
</div>
</a>
</div>
<div class="past-event-box">
<a href="past-event-inner.html" class="pst-event-link">
<div class="past-event-img">
<img src="img/newest-img-1.png" alt="Newest Image 1">
</div>
<div class="past-event-content">
<div class="past-event-date">
<p>February 25, 2023</p>
</div>
<div class="past-event-title">
<h3 class="font-26">Shrimad Rajchandra
Atmasiddhi Shastra Ep#1</h3>
</div>
<div class="past-event-city">
<p>“It is my strong belief that a seeker is certain to overcome all obstacles on the path to liberation if he understands the Bhaav of...</p>
</div>
</div>
</a>
</div>
<div class="past-event-box">
<a href="past-event-inner.html" class="pst-event-link">
<div class="past-event-img">
<img src="img/newest-img-1.png" alt="Newest Image 1">
</div>
<div class="past-event-content">
<div class="past-event-date">
<p>February 25, 2023</p>
</div>
<div class="past-event-title">
<h3 class="font-26">Shrimad Rajchandra
Atmasiddhi Shastra Ep#1</h3>
</div>
<div class="past-event-city">
<p>“It is my strong belief that a seeker is certain to overcome all obstacles on the path to liberation if he understands the Bhaav of...</p>
</div>
</div>
</a>
</div>
</div>
</div>
<!-- <div class="event-load-more-wrapper">
<a href="#" class="load-more-btn">
Load More
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="11" height="7" viewBox="0 0 11 7" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1025 0.665099C9.81464 0.377259 9.34796 0.377259 9.06012 0.665099L5.15894 4.56628L1.25775 0.665099C0.969913 0.377259 0.503232 0.377259 0.215392 0.665099C-0.0724487 0.952939 -0.0724487 1.41962 0.215392 1.70746L4.63776 6.12982C4.92559 6.41766 5.39228 6.41766 5.68012 6.12982L10.1025 1.70746C10.3903 1.41962 10.3903 0.952939 10.1025 0.665099Z" fill="#B7557F"/>
</svg>
</span>
</a>
</div> -->
</div>
</section>
<!-- Explore past Event Section End -->
</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>