-
Notifications
You must be signed in to change notification settings - Fork 0
/
dhyan_sangha.html
989 lines (929 loc) · 60.7 KB
/
dhyan_sangha.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
<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 || Dhyan-Sangha </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" />
<!-- 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/kartik.css" rel="stylesheet">
<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-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 -->
<!-- Modal Start -->
<div class="modal fade dhyan_sangha_modal" id="myModal" role="dialog" tabindex="-1">
<div class="modal-dialog modal-dialog-centered guidance-modal-dialog">
<div class="modal-content">
<div class="modal-header">
<div class="nav-cross modal_cross" id="modal_cross" >
<div class="nav-cross-btn modal_cross_btn" data-bs-dismiss="modal">
<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>
<div class="modal-body">
<div class="modal_main">
<div class="container-fluid">
<div class="connect_main guidance_main">
<div class="connect_inner modal_inner guidance_inner">
<div class="connect_text guidance_text ds_modal_text">
<h3>Contact Host</h3>
<p>SRM Team will connect with you once you fill this form.</p>
</div>
<div class="guidance_para ds_modal_input_field">
<div class="dsmif_item">
<input type="text" placeholder="Enter First Name">
</div>
<div class="dsmif_item">
<input type="text" placeholder="Enter Last Name">
</div>
<div class="dsmif_item">
<div class="dsmifi3_number">+91</div>
<input type="text" placeholder="Enter Phone Number">
</div>
</div>
<div class="guidance_link ds_modal_link">
<a href="#" class="custom-btn purple trans-forth">Submit
<span class="arrow">></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal Ends -->
<!-- Body Wrapper start -->
<div class="body-wrapper">
<!-- banner section start -->
<section class="about_sriguru_banner parallax-banner dhyan_sangha_banner">
<div class="aboutsgb_main dhyan_sangha_banner_main">
<div class="aboutsgbm_left banner-content-wrapper">
<div class="container-fluid">
<div class="aboutsgbm_left_inner banner-content-box">
<div class="aboutsgbml_heading trans">
<h1 class="trans-first">Dhyan <span> Sangha</span></h1>
</div>
<div class="aboutsgbml_para2 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="aboutsgbml_para2 trans">
<p class="trans-third">SwaRaj Kriya is a powerful Yogic meditation designed by Sri Guru for spiritual, mental and physical upliftment of seekers.SwaRaj Kriya is a powerful Yogic meditation designed by Sri Guru for spiritual, mental and physical upliftment of seekers.SwaRaj Kriya is a powerful Yogic meditation designed by Sri Guru for spiritual, mental and physical upliftment of seekers.</p>
</div>
<div class="dhayan_sangha_banner_btn trans">
<a href="#" class="custom-btn purple trans-forth" data-bs-toggle="modal" data-bs-target="#myModal">enroll now
<span class="arrow">></span>
</a>
</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>
</section>
<!-- banner section ends -->
<!-- spacer start -->
<div class="spacer_40"></div>
<!-- spacer ends -->
<!-- countries section start -->
<section class="all-event-section select_section countries_section">
<div class="container-fluid">
<div class="newest-title ss_heading">
<h2 class="font-26">Countries We Have Centres In
</h2>
</div>
<div class="ss_inner countriess_inner">
<div class="ssi_location countriessi_location">
<div class="sbbrn_left">
<div class="sbbrl_dropdown">
<div class="nasmd_right">
<div class="sort-by-box nav-left">
<div class="nasmdr_nav sbbrnd_nav">
<ul>
<li class="has_subs nasmdrn1">
<div class="has_subs_inner fsmtcc_subs_inner">
<span><img src="img/flag.svg" alt="" class="flag_img"> Location</span>
<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"></path>
</svg>
</span>
</div>
<div class="hs_nav_dropdown loaction_dropdown hnd1">
<ul class="nav-dropdown-list hnd_list">
<li><a href="">India</a></li>
<li><a href="">USA</a></li>
<li><a href="">Canada</a></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="ssi_filter countriessi_filter">
<div class="sbbrn_left">
<div class="sbbrl_dropdown">
<div class="nasmd_right">
<div class="sort-by-box nav-left">
<div class="nasmdr_nav sbbrnd_nav">
<ul>
<li class="has_subs nasmdrn2">
<div class="has_subs_inner sselecto_inner">
Filter
<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"></path>
</svg>
</span>
</div>
<div class="hs_nav_dropdown hnd1 filter_dropdown">
<ul class="nav-dropdown-list hnd_list">
<li><a href="">India</a></li>
<li><a href="">USA</a></li>
<li><a href="">Canada</a></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="ssi_search">
<div class="sbms_right ssis_right">
<input type="text" placeholder="Search for Countries, ">
<a href="">Search Now</a>
</div>
</div>
</div>
<div class="all-event-wrapper ss_wrapper">
<div class="all-event-flex">
<div class="all-event-filter-box">
<div class="all-event-form-box">
<div class="event-icon" onclick="openFilter()">
<div class="event-filter-title">choose category</div>
<img src="https://simpletesting.website/atrius/wp-content/uploads/2023/11/filter.png" alt="Filter Icon">
</div>
<form class="event-filter-form">
<div class="close-btn">
<a href="javascript:void(0)" class="closebtn" onclick="closeFilter()">×</a>
</div>
<div class="event-checkbx-wrapper ssw_event_checkbx_wrapper">
<div class="event-checkbox-container">
<div class="event-accordian-item">
<div class="event-accordian-header active">
<h5>Locations</h5>
<span class="event-accordian-span">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="9" viewBox="0 0 14 9" fill="none">
<path d="M1 1.5L7 7.5L13 1.5" stroke="#25232B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</div>
<div class="event-accordian-content">
<div class="event-country-accordian">
<div class="event-country-header">
<h5>India</h5>
<span class="event-accordian-span">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="9" viewBox="0 0 14 9" fill="none">
<path d="M1 1.5L7 7.5L13 1.5" stroke="#25232B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</div>
<div class="event-country-content">
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="checkbox1">
<label for="checkbox1">Delhi</label>
</div>
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="checkbox2">
<label for="checkbox2">Ghaziabad</label>
</div>
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="checkbox3">
<label for="checkbox3">Noida</label>
</div>
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="checkbox4">
<label for="checkbox4">Amritsar</label>
</div>
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="checkbox5">
<label for="checkbox5">Meerut</label>
</div>
</div>
</div>
</div>
</div>
<div class="event-accordian-item">
<div class="event-accordian-header">
<h5>USA</h5>
<span class="event-accordian-span">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="9" viewBox="0 0 14 9" fill="none">
<path d="M1 1.5L7 7.5L13 1.5" stroke="#25232B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</div>
<div class="event-accordian-content">
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="month1">
<label for="month1">Alabama</label>
</div>
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="month2">
<label for="month2">California</label>
</div>
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="month3">
<label for="month3">Illinois</label>
</div>
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="month4">
<label for="month4">Texas</label>
</div>
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="month5">
<label for="month5">Meerut</label>
</div>
</div>
</div>
<div class="event-accordian-item">
<div class="event-accordian-header">
<h5>Canada</h5>
<span class="event-accordian-span">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="9" viewBox="0 0 14 9" fill="none">
<path d="M1 1.5L7 7.5L13 1.5" stroke="#25232B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</div>
<div class="event-accordian-content">
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="category">
<label for="category">Manitoba</label>
</div>
<div class="event-radio ssecw_radio">
<input type="checkbox" name="radio" id="category">
<label for="category">Toronto</label>
</div>
</div>
</div>
</div>
<div class="event-filter-btn">
<a href="#" class="wisdom-bottom-link-filter">Apply Now</a>
<a href="#" class="wisdom-bottom-link-filter">Clear</a>
</div>
</div>
</form>
</div>
</div>
<div class="all-event-box-wrapper ssw_box_wrapper element i-v">
<a href="" class="srm-animate">
<div class="sswbwm_card">
<div class="sswbwmc_heading">
<h5>Shakti Nagar, Delhi</h5>
</div>
<div class="sswbwmc_text">
<div class="sswbwmct_host">
<p>host</p>
</div>
<div class="sswbwmct_name">
<p>Jayshree & Anil Khadkiwala</p>
</div>
</div>
<div class="sswbwmc_request">
<p>Request To Attend</p>
</div>
</div>
</a>
<a href="" class="srm-animate">
<div class="sswbwm_card">
<div class="sswbwmc_heading">
<h5>Shakti Nagar, Delhi</h5>
</div>
<div class="sswbwmc_text">
<div class="sswbwmct_host">
<p>host</p>
</div>
<div class="sswbwmct_name">
<p>Jayshree & Anil Khadkiwala</p>
</div>
</div>
<div class="sswbwmc_request">
<p>Request To Attend</p>
</div>
</div>
</a>
<a href="" class="srm-animate">
<div class="sswbwm_card">
<div class="sswbwmc_heading">
<h5>Shakti Nagar, Delhi</h5>
</div>
<div class="sswbwmc_text">
<div class="sswbwmct_host">
<p>host</p>
</div>
<div class="sswbwmct_name">
<p>Jayshree & Anil Khadkiwala</p>
</div>
</div>
<div class="sswbwmc_request">
<p>Request To Attend</p>
</div>
</div>
</a>
<a href="" class="srm-animate">
<div class="sswbwm_card">
<div class="sswbwmc_heading">
<h5>Shakti Nagar, Delhi</h5>
</div>
<div class="sswbwmc_text">
<div class="sswbwmct_host">
<p>host</p>
</div>
<div class="sswbwmct_name">
<p>Jayshree & Anil Khadkiwala</p>
</div>
</div>
<div class="sswbwmc_request">
<p>Request To Attend</p>
</div>
</div>
</a>
<a href="" class="srm-animate">
<div class="sswbwm_card">
<div class="sswbwmc_heading">
<h5>Shakti Nagar, Delhi</h5>
</div>
<div class="sswbwmc_text">
<div class="sswbwmct_host">
<p>host</p>
</div>
<div class="sswbwmct_name">
<p>Jayshree & Anil Khadkiwala</p>
</div>
</div>
<div class="sswbwmc_request">
<p>Request To Attend</p>
</div>
</div>
</a>
<a href="" class="srm-animate">
<div class="sswbwm_card">
<div class="sswbwmc_heading">
<h5>Shakti Nagar, Delhi</h5>
</div>
<div class="sswbwmc_text">
<div class="sswbwmct_host">
<p>host</p>
</div>
<div class="sswbwmct_name">
<p>Jayshree & Anil Khadkiwala</p>
</div>
</div>
<div class="sswbwmc_request">
<p>Request To Attend</p>
</div>
</div>
</a>
<div class="faqsm_loadmore">
<a href="" class="modal_opener">Load More Events
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.8295 0.786193C10.5417 0.498352 10.075 0.498352 9.78717 0.786193L5.88599 4.68738L1.9848 0.786193C1.69696 0.498352 1.23028 0.498352 0.942443 0.786193C0.654602 1.07403 0.654602 1.54071 0.942443 1.82855L5.36481 6.25092C5.65265 6.53876 6.11933 6.53876 6.40717 6.25092L10.8295 1.82855C11.1174 1.54071 11.1174 1.07403 10.8295 0.786193Z" fill="#B7557F"/>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- countries section ends -->
<!-- spacer start -->
<div class="spacer"></div>
<!-- spacer 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
<a href="https://www.simpleplanmedia.com/" target="_blank" class="simpleplan_cta">SimplePlan</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Footer End -->
<!-- JS Starts-->
<!-- <script src="js/jquery-3.3.1.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> -->
<script src="js/owl.carousel.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/bootstrap/3.3.5/js/bootstrap.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script> -->
<!-- <script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
<script src="js/jquery.in-viewport-class.js"></script>
<script src="https://unpkg.co/gsap@3/dist/gsap.min.js"></script>
<script src="https://unpkg.com/gsap@3/dist/ScrollTrigger.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/locomotive-scroll.min.js"></script>
<script src="js/custom.js"></script>
<!-- <script src="js/gsap-animation.js"></script> -->
<script>
document.querySelectorAll('.event-accordian-header').forEach(button => {
button.addEventListener('click', () => {
const accordionContent = button.nextElementSibling;
button.classList.toggle('active');
if (button.classList.contains('active')) {
accordionContent.style.height = accordionContent.scrollHeight + 'px';
} else {
accordionContent.style.height = 0;
}
// Close other open accordion items
document.querySelectorAll('.event-accordian-header').forEach(otherButton => {
if (otherButton !== button) {
otherButton.classList.remove('active');
otherButton.nextElementSibling.style.height = 0;
}
});
});
});
/* Set the width of the side navigation to 250px */
function openFilter() {
jQuery(".event-filter-form").addClass('active');
jQuery("body").addClass('hidden');
}
/* Set the width of the side navigation to 0 */
function closeFilter() {
jQuery(".event-filter-form").removeClass('active');
jQuery("body").removeClass('hidden');
}
document.addEventListener('DOMContentLoaded', function () {
// Get all tabs and dropdowns
var tabs = document.querySelectorAll('.nasmdr_nav .has_subs');
tabs.forEach(function (tab) {
tab.addEventListener('click', function (event) {
var dropdown = this.querySelector('.hs_nav_dropdown');
if (dropdown) {
var currentDisplay = window.getComputedStyle(dropdown).display;
dropdown.style.display = (currentDisplay === 'block') ? 'none' : 'block';
// Stop the click event propagation to prevent immediate hiding of the dropdown
event.stopPropagation();
}
});
});
// rotate the svg inside the span on click of nav-dropdown list item
// First Dropdown
var listItems1 = document.querySelectorAll('.nasmdrn1 .nav-dropdown-list li');
var span1 = document.querySelector(".nasmdrn1 .has_subs_inner span svg");
listItems1.forEach(function (item) {
item.addEventListener('click', function () {
var hsInner1 = document.querySelector('.fsmtcc_subs_inner');
span1.style.transform = (span1.style.transform === 'rotate(180deg)') ? 'rotate(0deg)' : 'rotate(180deg)';
hsInner1.classList.remove("clicked");
});
});
// Second Dropdown
var listItems2 = document.querySelectorAll('.nasmdrn2 .nav-dropdown-list li');
var span2 = document.querySelector(".nasmdrn2 .has_subs_inner span svg");
listItems2.forEach(function (item) {
item.addEventListener('click', function () {
var hsInner2 = document.querySelector('.sselecto_inner');
span2.style.transform = (span2.style.transform === 'rotate(180deg)') ? 'rotate(0deg)' : 'rotate(180deg)';
hsInner2.classList.remove("clicked");
});
});
// Close dropdowns when clicking outside
document.addEventListener('click', function (event) {
var hsInner2 = document.querySelector('.sselecto_inner');
var hsInner1 = document.querySelector('.fsmtcc_subs_inner');
var dropdowns = document.querySelectorAll('.hs_nav_dropdown');
dropdowns.forEach(function (dropdown) {
if (!dropdown.contains(event.target)) {
dropdown.style.display = 'none';
hsInner2.classList.remove("clicked");
hsInner1.classList.remove("clicked");
// Rotate the SVG when the dropdown is closed
span1.style.transform = 'rotate(0deg)';
span2.style.transform = 'rotate(0deg)';
}
});
});
});
</script>
</body>
<!-- Body Ends-->
</html>