-
Notifications
You must be signed in to change notification settings - Fork 0
/
wisdom-main.html
1616 lines (1560 loc) · 104 KB
/
wisdom-main.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 || Wisdom Main </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"/>
<!-- 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
<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 -->
<!-- Modal1 Start -->
<div class="modal fade" id="myModal1" role="dialog" tabindex="-1">
<div class="modal-dialog modal-dialog-centered guidance-modal-dialog">
<div class="modal-content">
<div class="guidance_img">
<img src="img/author.png" alt="">
</div>
<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">
<h4>Sri Guru’s Guidance</h4>
</div>
<div class="guidance_para">
<p>Lorem ipsum dolor sit amet consectetur. Pellentesque justo
erat lorem elit porta convallis. In nulla fames non et.
Diam tortor pretium sit convallis. In nulla fames non et. Diam tortor pretium sit convallis.</p>
</div>
<div class="guidance_link">
<p> Lorem ipsum dolor sit amet
<span>
<a href="" class="modal_opener guidance_link_inner">
Link 01
<svg xmlns="http://www.w3.org/2000/svg" width="6" height="11" viewBox="0 0 6 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.290099 10.3764C0.00225872 10.0886 0.00225872 9.62188 0.290099 9.33404L4.19128 5.43286L0.290099 1.53168C0.00225872 1.24384 0.00225872 0.777158 0.290099 0.489318C0.577939 0.201477 1.04462 0.201477 1.33246 0.489318L5.75482 4.91168C6.04266 5.19952 6.04266 5.6662 5.75482 5.95404L1.33246 10.3764C1.04462 10.6642 0.577939 10.6642 0.290099 10.3764Z" fill="#B7557F"/>
</svg>
</a>
</span>
</p>
<p> Lorem ipsum dolor sit amet
<span>
<a href="" class="modal_opener guidance_link_inner">
Link 02
<svg xmlns="http://www.w3.org/2000/svg" width="6" height="11" viewBox="0 0 6 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.290099 10.3764C0.00225872 10.0886 0.00225872 9.62188 0.290099 9.33404L4.19128 5.43286L0.290099 1.53168C0.00225872 1.24384 0.00225872 0.777158 0.290099 0.489318C0.577939 0.201477 1.04462 0.201477 1.33246 0.489318L5.75482 4.91168C6.04266 5.19952 6.04266 5.6662 5.75482 5.95404L1.33246 10.3764C1.04462 10.6642 0.577939 10.6642 0.290099 10.3764Z" fill="#B7557F"/>
</svg>
</a>
</span>
</p>
<p> Lorem ipsum dolor sit amet
<span>
<a href="" class="modal_opener guidance_link_inner">
Link 03
<svg xmlns="http://www.w3.org/2000/svg" width="6" height="11" viewBox="0 0 6 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.290099 10.3764C0.00225872 10.0886 0.00225872 9.62188 0.290099 9.33404L4.19128 5.43286L0.290099 1.53168C0.00225872 1.24384 0.00225872 0.777158 0.290099 0.489318C0.577939 0.201477 1.04462 0.201477 1.33246 0.489318L5.75482 4.91168C6.04266 5.19952 6.04266 5.6662 5.75482 5.95404L1.33246 10.3764C1.04462 10.6642 0.577939 10.6642 0.290099 10.3764Z" fill="#B7557F"/>
</svg>
</a>
</span>
</p>
<p> Lorem ipsum dolor sit amet
<span>
<a href="" class="modal_opener guidance_link_inner">
Link 04
<svg xmlns="http://www.w3.org/2000/svg" width="6" height="11" viewBox="0 0 6 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.290099 10.3764C0.00225872 10.0886 0.00225872 9.62188 0.290099 9.33404L4.19128 5.43286L0.290099 1.53168C0.00225872 1.24384 0.00225872 0.777158 0.290099 0.489318C0.577939 0.201477 1.04462 0.201477 1.33246 0.489318L5.75482 4.91168C6.04266 5.19952 6.04266 5.6662 5.75482 5.95404L1.33246 10.3764C1.04462 10.6642 0.577939 10.6642 0.290099 10.3764Z" fill="#B7557F"/>
</svg>
</a>
</span>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal1 Ends -->
<!-- Modal2 Start -->
<div class="modal fade" id="myModal" role="dialog" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<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">
<div class="connect_inner modal_inner">
<div class="connect_text">
<p>more ways to connect</p>
</div>
<div class="connect_icons modal_icons">
<div class="connect_item modal_item">
<a href="">
<div class="connect_item1 modal_item1">
<img src="img/connect-img1.svg" alt="">
</div>
<p>YouTube</p>
</a>
</div>
<div class="connect_item modal_item">
<a href="">
<div class="connect_item1 modal_item1">
<img src="img/connect-img2.svg" alt="">
</div>
<p>Spotify</p>
</a>
</div>
<div class="connect_item modal_item">
<a href="">
<div class="connect_item1 modal_item1">
<img src="img/connect-img3.svg" alt="">
</div>
<p>Apple Podcast</p>
</a>
</div>
<div class="connect_item modal_item">
<a href="">
<div class="connect_item1 modal_item1">
<img src="img/connect-img4.svg" alt="">
</div>
<p>Google Podcast</p>
</a>
</div>
<div class="connect_item modal_item">
<a href="">
<div class="connect_item1 modal_item1">
<img src="img/connect-img5.svg" alt="">
</div>
<p>Twitter</p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal2 Ends -->
<!-- Body Wrapper start -->
<div class="body-wrapper">
<!-- wisdom Header Section start -->
<div class="wisdom-header-wrapper">
<div class="wisdom-top-header-box">
<div class="container-fluid">
<div class="wisdom-top-header-flex">
<div class="wisdom-top-header-title">
<h3 class="font-32">Wisdom</h3>
</div>
<div class="wisdom-top-category-flex">
<div class="wisdom-category-box">
<a href="wisdom-talks-main.html" class="wisdom-category-link">
<div class="category-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="41" viewBox="0 0 41 41" fill="none">
<circle cx="20.5214" cy="20.7942" r="20.2063" fill="#F0E9E1"/>
<path d="M20.5222 11.8142L12.0865 22.6393L20.5222 33.4644L28.9578 22.6393L20.5222 11.8142Z" fill="#F3C280"/>
<path d="M20.5232 8.125L14.3619 16.0315L20.5232 23.938L26.6845 16.0315L20.5232 8.125Z" fill="#F8DBB5"/>
</svg>
</div>
<div class="category-title">
<p>Talks</p>
</div>
</a>
</div>
<div class="wisdom-category-box">
<a href="wisdom-blogs-main.html" class="wisdom-category-link">
<div class="category-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="41" viewBox="0 0 41 41" fill="none">
<circle cx="20.4257" cy="20.7942" r="20.2063" fill="#F0E9E1"/>
<path d="M20.4634 9.96875L12.0278 20.7939L20.4634 31.619L28.8991 20.7939L20.4634 9.96875Z" fill="#F3C280"/>
<path d="M11.9896 16.0039L8.25647 20.7944L11.9896 25.585L15.7227 20.7944L11.9896 16.0039Z" fill="#F8DBB5"/>
<path d="M28.9368 16.0039L25.2037 20.7944L28.9368 25.585L32.6699 20.7944L28.9368 16.0039Z" fill="#F8DBB5"/>
</svg>
</div>
<div class="category-title">
<p>Blogs</p>
</div>
</a>
</div>
<div class="wisdom-category-box">
<a href="Bhakti-Main.html" class="wisdom-category-link">
<div class="category-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="41" viewBox="0 0 41 41" fill="none">
<circle cx="20.7011" cy="20.7942" r="20.2063" fill="#F0E9E1"/>
<path d="M20.7019 9.96875L12.2662 20.7939L20.7019 31.619L29.1375 20.7939L20.7019 9.96875Z" fill="#F3C280"/>
<path d="M16.1197 20.793L12.2662 25.7379L16.1197 30.6829L19.9731 25.7379L16.1197 20.793Z" fill="#F8DBB5"/>
<path d="M25.2056 11.1562L21.3522 16.1012L25.2056 21.0462L29.059 16.1012L25.2056 11.1562Z" fill="#F8DBB5"/>
</svg>
</div>
<div class="category-title">
<p>Bhakti</p>
</div>
</a>
</div>
<div class="wisdom-category-box">
<a href="#" class="wisdom-category-link">
<div class="category-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="41" viewBox="0 0 41 41" fill="none">
<circle cx="20.3593" cy="20.7942" r="20.2063" fill="#F0E9E1"/>
<path d="M20.9718 9.73828L11.858 21.4336L20.9718 33.1289L30.0855 21.4336L20.9718 9.73828Z" fill="#F3C280"/>
<path d="M14.8915 12.252L8.23499 20.794L14.8915 29.3361L21.5481 20.794L14.8915 12.252Z" fill="#F8DBB5"/>
<path d="M26.934 9L24.399 12.2531L26.934 15.5061L29.4691 12.2531L26.934 9Z" fill="#F8DBB5"/>
</svg>
</div>
<div class="category-title">
<p>Courses</p>
</div>
</a>
</div>
</div>
</div>
<div class="featured-topic-flex">
<div class="featured-topic-title">
<p>featured topics</p>
</div>
<div class="featured-topic-box">
<ul class="featured-topic-list">
<li><a href="Bhakti-Topic.html">Meditation</a> </li>
<li><a href="Bhakti-Topic.html">Science x Spirituality</a> </li>
<li><a href="Bhakti-Topic.html">Bhagvad Gita</a> </li>
<li><a href="Bhakti-Topic.html">Shrimadji</a> </li>
<li><a href="#more-topic-section" class="all-topic-link2 " >All Topics <span class="topic-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="7" height="12" viewBox="0 0 7 12" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.1695 10.9671C0.876606 10.6742 0.876606 10.1993 1.1695 9.90644L5.13917 5.93677L1.1695 1.9671C0.876606 1.6742 0.876606 1.19933 1.1695 0.906438C1.46239 0.613544 1.93727 0.613544 2.23016 0.906438L6.73016 5.40644C7.02305 5.69933 7.02305 6.1742 6.73016 6.4671L2.23016 10.9671C1.93727 11.26 1.46239 11.26 1.1695 10.9671Z" fill="#CF9E69"/>
</svg>
</span>
</a> </li>
</ul>
</div>
</div>
</div>
</div>
<div class="wisdom-bottom-header-box">
<div class="wisdom-bottom-header-flex">
<div class="wisdom-bottom-img">
<img src="img/small-profile.svg" alt="Small profile Icon">
</div>
<div class="wisdom-bottom-content">
<p>New here? Read Sri Guru’s <a href="#" class="wisdom-bottom-link" data-bs-toggle="modal" data-bs-target="#myModal1">Guidance</a> on where to start</p>
</div>
</div>
</div>
</div>
<!-- wisdom Header Section End -->
<!-- Today's read Section Start -->
<section class="today-read-section">
<div class="container-fluid">
<div class="banner-content-title trans">
<h1 class="trans-first">
Today’s Read
</h1>
</div>
<div class="today-read-wrapper">
<div class="today-read-flex">
<div class="today-read-blog-box">
<div class="author-img-box trans">
<div class="blog-author-img trans-second">
<img src="img/author.png" alt=" Author Image">
</div>
</div>
<div class="blog-content-box">
<div class="blog-title trans">
<h3 class="font-26 trans-third">Concentration – <br>
That’s What is Missing Today.</h3>
</div>
<div class="blog-para trans">
<p class="trans-forth">Focused thinking (Concentration) is critical to the pursuit of any goal.
When the mind is focused, it can filter out distractions and selectively
concentrate on the task at hand, sustaining its attention for far longer than
otherwise possible. By tapping into this potential of focused thinking, one can
surpass the confines of mediocrity and unlock extraordinary feats.</p>
</div>
<div class="blog-cta trans" >
<div class="trans-five">
<a href="wisdom-blog-article-page.html" class="blog-main-cta">Read More
<span class="cta-arrow"><svg xmlns="http://www.w3.org/2000/svg" width="7" height="11" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.751647 10.7626C0.463807 10.4748 0.463807 10.0081 0.751647 9.72027L4.65283 5.81909L0.751647 1.91791C0.463807 1.63007 0.463807 1.16339 0.751647 0.875548C1.03949 0.587708 1.50617 0.587708 1.79401 0.875548L6.21637 5.29791C6.50421 5.58575 6.50421 6.05243 6.21637 6.34027L1.79401 10.7626C1.50617 11.0505 1.03949 11.0505 0.751647 10.7626Z" fill="#B7557F"/>
</svg></span>
</a>
</div>
</div>
</div>
</div>
<div class="similiar-blog-box">
<div class="similiar-blog-title">
<p>recently published</p>
</div>
<div class="similiar-blog-list">
<ul class="similiar-blog-ul">
<li>
<a href="#" class="similiar-blog-link">Concentration – That’s What is Missing Today.</a>
</li>
<li>
<a href="#" class="similiar-blog-link">Purity Comes Before Happiness – Becoming Purer through Meditation</a>
</li>
<li>
<a href="#" class="similiar-blog-link">Concentration – That’s What is Missing Today.</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Today's read Section End -->
<!-- Talks by Sri Guru Section Start -->
<section class="talks-section">
<div class="container-fluid">
<div class="heading-wrap flex-box element i-v">
<div class="heading-title trans">
<h2 class="trans-first">Talks by Sri Gurus</h2>
</div>
<div class="heading-cta ">
<div class="trans">
<a href="wisdom-talks-main.html" class="custom-btn purple trans-second">watch all talks
<span class="arrow">></span>
</a>
</div>
</div>
</div>
<div class="newest-talk-wrapper">
<div class="newest-title">
<h3 class="font-26">Newest Talks
<span class="section-arrow">
<svg xmlns="http://www.w3.org/2000/svg" width="7" height="11" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</h3>
</div>
<div class="newest-slider-wrapper">
<div class="swiper newest-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/newest-img-1.png" alt="Newest Image 1">
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/newest-img-1.png" alt="Newest Image 1">
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/newest-img-1.png" alt="Newest Image 1">
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/newest-img-1.png" alt="Newest Image 1">
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/newest-img-1.png" alt="Newest Image 1">
</div>
</a>
</div>
</div>
</div>
<div class="slider-arrow-nav">
<div class="swiper-btn swiper-button-next">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</div>
<div class="swiper-btn swiper-button-prev">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="newest-talk-wrapper">
<div class="newest-title">
<h3 class="font-26">Featured Series
<span class="section-arrow">
<svg xmlns="http://www.w3.org/2000/svg" width="7" height="11" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</h3>
</div>
<div class="newest-slider-wrapper">
<div class="swiper featured-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/featured-1.png" alt="Featured Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>Bhagvad Gita</h6>
</div>
<div class="featured-episode">
<h6>72 Episodes</h6>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/featured2.png" alt="Newest Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>Bhagvad Gita</h6>
</div>
<div class="featured-episode">
<h6>72 Episodes</h6>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/featured-1.png" alt="Newest Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>Bhagvad Gita</h6>
</div>
<div class="featured-episode">
<h6>72 Episodes</h6>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/featured2.png" alt="Newest Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>Bhagvad Gita</h6>
</div>
<div class="featured-episode">
<h6>72 Episodes</h6>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/featured-1.png" alt="Newest Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>Bhagvad Gita</h6>
</div>
<div class="featured-episode">
<h6>72 Episodes</h6>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/featured2.png" alt="Newest Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>Bhagvad Gita</h6>
</div>
<div class="featured-episode">
<h6>72 Episodes</h6>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="slider-arrow-nav">
<div class="swiper-btn swiper-button-next">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</div>
<div class="swiper-btn swiper-button-prev">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="newest-talk-wrapper">
<div class="newest-title">
<h3 class="font-26">Recommended Topics
<span class="section-arrow">
<svg xmlns="http://www.w3.org/2000/svg" width="7" height="11" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</h3>
</div>
<div class="newest-slider-wrapper">
<div class="swiper featured-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/recommed-1.png" alt="Featured Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>On meditation</h6>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/recommed-2.png" alt="Newest Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>Enlightenment</h6>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/recommed-3.png" alt="Newest Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>On meditation</h6>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/recommed-1.png" alt="Featured Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>On meditation</h6>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/recommed-2.png" alt="Newest Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>Enlightenment</h6>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="newest-talks-box">
<a href="#" class="newest-link">
<div class="newsest-img">
<img src="img/recommed-3.png" alt="Newest Image 1">
</div>
<div class="featured-content">
<div class="featured-title">
<h6>On meditation</h6>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="slider-arrow-nav">
<div class="swiper-btn swiper-button-next">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</div>
<div class="swiper-btn swiper-button-prev">
<span>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Talks by Sri Guru Section End -->
<!-- Spacer with Border Start -->
<div class="spacer-160">
<div class="container-fluid">
<div class="break-point"></div>
</div>
</div>
<!-- Spacer with Border Start -->
<!-- Album Section Start -->
<section class="album-section">
<div class="container-fluid">
<div class="heading-wrap flex-box element i-v">
<div class="heading-title trans">
<h2 class="trans-first">Tune Yourself Into Bhakti</h2>
</div>
<div class="heading-cta">
<div class="trans">
<a href="Bhakti-Main.html" class="custom-btn purple trans-second">listen more bhakti
<span class="arrow">></span>
</a>
</div>
</div>
</div>
<div class="newest-talk-wrapper">
<div class="newest-title">
<h3 class="font-26">Latest Tracks
<span class="section-arrow">
<svg xmlns="http://www.w3.org/2000/svg" width="7" height="11" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</h3>
</div>
<div class="album-music-wrap">
<div class="album-music-grid">
<div class="album-music-box">
<a href="" class="wisdom-bottom-link2" data-bs-toggle="modal" data-bs-target="#myModal">
<div class="alnum-music-label">
<p>Friday Family Bhakti</p>
</div>
<div class="alnum-music-title">
<h5>Ik Tere Sahare + Mere Satguruji Meher Karo</h5>
</div>
<div class="alnum-music-author">
<p>Siddharth Mohan</p>
</div>
<div class="play-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45" fill="none">
<circle cx="22.2665" cy="22.2712" r="22.2595" transform="rotate(90 22.2665 22.2712)" fill="white"/>
<path d="M18.4297 14.4729L30.4208 21.6692C30.5244 21.7318 30.6101 21.8201 30.6696 21.9255C30.7291 22.031 30.7604 22.15 30.7604 22.271C30.7604 22.3921 30.7291 22.5111 30.6696 22.6165C30.6101 22.722 30.5244 22.8103 30.4208 22.8728L18.4297 30.0692C18.3231 30.1334 18.2013 30.1682 18.0768 30.1699C17.9524 30.1717 17.8297 30.1404 17.7213 30.0792C17.6129 30.018 17.5227 29.9291 17.4599 29.8216C17.3971 29.7141 17.364 29.5919 17.3639 29.4674V15.0775C17.3635 14.9528 17.3962 14.8302 17.4588 14.7223C17.5214 14.6144 17.6116 14.5252 17.72 14.4636C17.8285 14.4021 17.9514 14.3705 18.0761 14.3721C18.2008 14.3738 18.3229 14.4085 18.4297 14.4729Z" fill="#49378D"/>
</svg>
</div>
</a>
</div>
<div class="album-music-box">
<a href="#" class="wisdom-bottom-link2" data-bs-toggle="modal" data-bs-target="#myModal">
<div class="alnum-music-label">
<p>Friday Family Bhakti</p>
</div>
<div class="alnum-music-title">
<h5>Ik Tere Sahare + Mere Satguruji Meher Karo</h5>
</div>
<div class="alnum-music-author">
<p>Siddharth Mohan</p>
</div>
<div class="play-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45" fill="none">
<circle cx="22.2665" cy="22.2712" r="22.2595" transform="rotate(90 22.2665 22.2712)" fill="white"/>
<path d="M18.4297 14.4729L30.4208 21.6692C30.5244 21.7318 30.6101 21.8201 30.6696 21.9255C30.7291 22.031 30.7604 22.15 30.7604 22.271C30.7604 22.3921 30.7291 22.5111 30.6696 22.6165C30.6101 22.722 30.5244 22.8103 30.4208 22.8728L18.4297 30.0692C18.3231 30.1334 18.2013 30.1682 18.0768 30.1699C17.9524 30.1717 17.8297 30.1404 17.7213 30.0792C17.6129 30.018 17.5227 29.9291 17.4599 29.8216C17.3971 29.7141 17.364 29.5919 17.3639 29.4674V15.0775C17.3635 14.9528 17.3962 14.8302 17.4588 14.7223C17.5214 14.6144 17.6116 14.5252 17.72 14.4636C17.8285 14.4021 17.9514 14.3705 18.0761 14.3721C18.2008 14.3738 18.3229 14.4085 18.4297 14.4729Z" fill="#49378D"/>
</svg>
</div>
</a>
</div>
<div class="album-music-box">
<a href="#" class="wisdom-bottom-link2" data-bs-toggle="modal" data-bs-target="#myModal">
<div class="alnum-music-label">
<p>Friday Family Bhakti</p>
</div>
<div class="alnum-music-title">
<h5>Ik Tere Sahare + Mere Satguruji Meher Karo</h5>
</div>
<div class="alnum-music-author">
<p>Siddharth Mohan</p>
</div>
<div class="play-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45" fill="none">
<circle cx="22.2665" cy="22.2712" r="22.2595" transform="rotate(90 22.2665 22.2712)" fill="white"/>
<path d="M18.4297 14.4729L30.4208 21.6692C30.5244 21.7318 30.6101 21.8201 30.6696 21.9255C30.7291 22.031 30.7604 22.15 30.7604 22.271C30.7604 22.3921 30.7291 22.5111 30.6696 22.6165C30.6101 22.722 30.5244 22.8103 30.4208 22.8728L18.4297 30.0692C18.3231 30.1334 18.2013 30.1682 18.0768 30.1699C17.9524 30.1717 17.8297 30.1404 17.7213 30.0792C17.6129 30.018 17.5227 29.9291 17.4599 29.8216C17.3971 29.7141 17.364 29.5919 17.3639 29.4674V15.0775C17.3635 14.9528 17.3962 14.8302 17.4588 14.7223C17.5214 14.6144 17.6116 14.5252 17.72 14.4636C17.8285 14.4021 17.9514 14.3705 18.0761 14.3721C18.2008 14.3738 18.3229 14.4085 18.4297 14.4729Z" fill="#49378D"/>
</svg>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="newest-talk-wrapper">
<div class="newest-title">
<h3 class="font-26">Featured Albums
<span class="section-arrow">
<svg xmlns="http://www.w3.org/2000/svg" width="7" height="11" viewBox="0 0 7 11" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.72028 10.4278C0.427387 10.1349 0.427387 9.66002 0.72028 9.36713L4.68995 5.39746L0.72028 1.42779C0.427387 1.1349 0.427387 0.660024 0.72028 0.367131C1.01317 0.0742378 1.48805 0.0742378 1.78094 0.367131L6.28094 4.86713C6.57383 5.16002 6.57383 5.6349 6.28094 5.92779L1.78094 10.4278C1.48805 10.7207 1.01317 10.7207 0.72028 10.4278Z" fill="#25232B"/>
</svg>
</span>
</h3>
</div>
<div class="album-music-wrap">
<div class="related_img_item">
<a href="">