-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1134 lines (1066 loc) · 58.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/favicon.png" sizes="32x32" type="image/png">
<title>Homepage</title>
<!-- Bootstrap CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Swiper CSS -->
<link rel="stylesheet" href="css/swiper-bundle.min.css"/>
<!-- Custom CSS -->
<link href="css/custom.css?ver=1.3" rel="stylesheet">
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar navbar-header navbar-expand-xl fixed-top" id="navbarHeader">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="img/ARIA-logo_new.png" class="img-fluid" alt="">
</a>
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasLeft">
<div class="offcanvas-header">
<h5 class="offcanvas-title">Navigation</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav justify-content-center flex-grow-1">
<li class="nav-item">
<a href="index.html" class="nav-link active">
<i class="bi bi-house-door-fill"></i>
<span>Home</span>
</a>
</li>
<li class="nav-item">
<a href="members-directory.html" class="nav-link">
<i class="bi bi-person-vcard"></i>
<span>Advisors</span>
</a>
</li>
<li class="nav-item dropdown">
<a href="#!" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
<i class="bi bi-file-earmark-person-fill"></i>
<span>About us</span>
</a>
<ul class="dropdown-menu dropdown">
<li><a class="dropdown-item" href="aboutus.html">Who we are</a></li>
<li><a class="dropdown-item" href="#!">Intent</a></li>
<li><a class="dropdown-item" href="ariaboard.html">ARIA Board</a></li>
<li><a class="dropdown-item" href="committees.html">Committee/Sub-Committees</a></li>
<li><a class="dropdown-item" href="#!">Chapters</a></li>
<li><a class="dropdown-item" href="#!">Our Partners</a></li>
<li><a class="dropdown-item" href="#!">Testimonials</a></li>
<li><a class="dropdown-item" href="careers.html">Careers</a></li>
<li><a class="dropdown-item" href="stakeholders-relations.html">Stakeholders Relations</a></li>
</ul>
</li>
<li class="nav-item">
<a href="investors.html" class="nav-link">
<i class="bi bi-cash-stack"></i>
<span>Investors</span>
</a>
</li>
<li class="nav-item dropdown">
<a href="#!" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
<i class="bi bi-people-fill"></i>
<span>Members</span>
</a>
<ul class="dropdown-menu ">
<li><a class="dropdown-item" href="#!">Advocacy Initiatives</a></li>
<li><a class="dropdown-item" href="become-aria-member.html">Become a Member</a></li>
<li><a class="dropdown-item" href="#!">Community</a></li>
<li class="dropdown dropend">
<a class="dropdown-item dropdown-toggle" href="javascript:void(0)" role="button" data-bs-toggle="dropdown" aria-expanded="false">Complaince Resources</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Downloads</a></li>
<li><a class="dropdown-item" href="#">Question</a></li>
<li><a class="dropdown-item" href="#">Webinars</a></li>
</ul>
</li>
<li><a class="dropdown-item" href="#!">FAQ</a></li>
<li><a class="dropdown-item" href="#!">Job Openings</a></li>
<li class="dropdown dropend">
<a class="dropdown-item dropdown-toggle" href="javascript:void(0)" role="button" data-bs-toggle="dropdown" aria-expanded="false">Learning Resources</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Downloads</a></li>
<li><a class="dropdown-item" href="#">Interviews</a></li>
<li><a class="dropdown-item" href="#">Webinars</a></li>
</ul>
</li>
<li><a class="dropdown-item" href="members-in-media.html">Members in Media</a></li>
<li><a class="dropdown-item" href="#!">Members Privileges</a></li>
<li><a class="dropdown-item" href="#!">Setting up on RIA Practices</a></li>
<li><a class="dropdown-item" href="#!">Stakeholders Contact Details</a></li>
<li><a class="dropdown-item" href="#!">Survey</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a href="#!" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
<i class="bi bi-lightbulb-fill"></i>
<span>Initiatives</span>
</a>
<ul class="dropdown-menu ">
<li class="dropdown dropend">
<a class="dropdown-item dropdown-toggle" href="javascript:void(0)" role="button" data-bs-toggle="dropdown" aria-expanded="false">#ARIA Truly Cares</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="whitepaper.html">Whitepaper</a></li>
<li><a class="dropdown-item" href="press-releases.html">Press Releases</a></li>
</ul>
</li>
<li><a class="dropdown-item" href="#!">Complaint Analysis</a></li>
<li><a class="dropdown-item" href="#!">Research Papers</a></li>
<li><a class="dropdown-item" href="waria.html">WARIA</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a href="#!" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
<i class="bi bi-megaphone-fill"></i>
<span>News/Events</span>
</a>
<ul class="dropdown-menu ">
<li class="dropdown dropend">
<a class="dropdown-item dropdown-toggle" href="javascript:void(0)" role="button" data-bs-toggle="dropdown" aria-expanded="false">ARIA Summits</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="javascript:void(0)" role="button">Aspire - 2024</a>
</li>
<li>
<a class="dropdown-item" href="javascript:void(0)" role="button">Aspire - 2023</a>
</li>
<li>
<a class="dropdown-item" href="javascript:void(0)" role="button">Aspire - January 2022</a>
</li>
<li>
<a class="dropdown-item" href="javascript:void(0)" role="button">ReInvent - November 2021</a>
</li>
<li>
<a class="dropdown-item" href="javascript:void(0)" role="button">ReSurge - January 2021</a>
</li>
</ul>
</li>
<li class="dropdown dropend">
<a class="dropdown-item dropdown-toggle" href="javascript:void(0)" role="button" data-bs-toggle="dropdown" aria-expanded="false">ARIA Summits Recording</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Aspire - 2023</a></li>
<li><a class="dropdown-item" href="#">Aspire - 2022</a></li>
<li><a class="dropdown-item" href="#">ReInvent - 2021</a></li>
<li><a class="dropdown-item" href="#">ReSurge - 2021</a></li>
</ul>
</li>
<li><a class="dropdown-item" href="#!">ARIA News</a></li>
<li><a class="dropdown-item" href="events.html">Events - Upcoming & Past</a></li>
<li><a class="dropdown-item" href="#!">News of Interest</a></li>
<li class="dropdown dropend">
<a class="dropdown-item dropdown-toggle" href="javascript:void(0)" role="button" data-bs-toggle="dropdown" aria-expanded="false">Newsletters</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Newsletter - 2024</a></li>
<li><a class="dropdown-item" href="#">Newsletter - 2023</a></li>
<li><a class="dropdown-item" href="#">Newsletter - 2022</a></li>
</ul>
</li>
<li><a class="dropdown-item" href="#!">Communication from SEBI</a></li>
<li class="dropdown dropend">
<a class="dropdown-item dropdown-toggle" href="javascript:void(0)" role="button" data-bs-toggle="dropdown" aria-expanded="false">Workshop</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">October 4 - 2023</a></li>
<li><a class="dropdown-item" href="#">August 25</a></li>
<li><a class="dropdown-item" href="#">August 11</a></li>
<li><a class="dropdown-item" href="#">June 16</a></li>
<li><a class="dropdown-item" href="#">May 23</a></li>
<li><a class="dropdown-item" href="#">January 23</a></li>
<li><a class="dropdown-item" href="#">November 22</a></li>
</ul>
</li>
</ul>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link">
<i class="bi bi-telephone-fill"></i>
<span>Contact</span>
</a>
</li>
</ul>
</div>
</div>
<div class="navbar-right">
<div class="nav-link-account">
<div class="dropdown">
<button class="btn btn-primary btn-search rounded-circle" data-bs-toggle="dropdown" aria-expanded="false" data-bs-offset="10,20">
<i class="bi bi-search fs-5"></i>
</button>
<div class="dropdown-menu dropdown-menu-end dropdown-searchbar">
<div class="form-group mb-0">
<div class="input-group">
<input type="text" class="form-control form-control-lg" placeholder="search here">
<button class="btn btn-primary"><i class="bi bi-search fs-5"></i></button>
</div>
</div>
</div>
</div>
<a href="login.html" class="btn btn-outline-primary rounded-pill px-4">Sign In</a>
<!-- <a href="javascript:void(0)" class="account-user-avatar rounded-circle" data-bs-toggle="offcanvas" data-bs-target="#offcanvasRight">
<img src="img/amit.jpg" class="img-fluid" alt="">
</a> -->
</div>
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasLeft">
<i class="bi bi-text-left"></i>
</button>
</div>
</div>
</nav>
<main class="mainwrapper">
<section class="hero-section">
<div id="carouselHero" class="carousel hero-carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="5000">
<div class="carousel-caption">
<div class="container-fluid">
<div class="row align-items-end g-3">
<div class="col-12 col-lg-7 order-1 order-lg-0">
<h1 class="caption-title">Empowering Investment Advisers, Elevating Standards</h1>
<button class="btn btn-fadedprimary">Become a Member</button>
</div>
</div>
</div>
</div>
<img src="img/banners/banner1.jpg" class="carousel-image img-fluid" loading="lazy" alt="...">
</div>
<div class="carousel-item" data-bs-interval="5000">
<div class="carousel-caption">
<div class="container-fluid">
<div class="row align-items-end g-3">
<div class="col-12 col-lg-7 order-1 order-lg-0">
<h1 class="caption-title">Watch Genesis: </br> The Formation and Journey of ARIA</h1>
<button class="btn btn-fadedprimary" data-bs-toggle="modal" data-bs-target="#videoModal">Watch Video</button>
</div>
<div class="col-12 col-lg-5 order-0 order-lg-1 d-none d-lg-block">
<div class="card videocard" data-bs-toggle="modal" data-bs-target="#videoModal">
<img src="img/video-thumb.jpg" class="img-fluid" alt="">
<div class="card-img-overlay">
<div class="btn btn-play">
<i class="bi bi-play-fill"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<img src="img/banners/banner2.jpg" class="carousel-image img-fluid" loading="lazy" alt="...">
</div>
<div class="carousel-item" data-bs-interval="5000">
<div class="carousel-caption">
<div class="container-fluid">
<div class="row align-items-end g-3">
<div class="col-12 col-lg-7 order-1 order-lg-0">
<h1 class="caption-title">#ARIATrulyCares</br> Launched on Sep 30, 2023</h1>
<button class="btn btn-fadedprimary">Any Queries</button>
</div>
</div>
</div>
</div>
<img src="img/banners/banner3.jpg" class="carousel-image img-fluid" loading="lazy" alt="...">
</div>
<div class="carousel-item" data-bs-interval="5000">
<img src="img/banners/banner4.jpg" class="carousel-image img-fluid" loading="lazy" alt="...">
</div>
</div>
<div class="container position-relative">
<button class="carousel-control-prev" type="button" data-bs-target="#carouselHero" data-bs-slide="prev">
<i class="bi bi-chevron-left colo-primary icon"></i>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselHero" data-bs-slide="next">
<i class="bi bi-chevron-right icon"></i>
</button>
</div>
</div>
</section>
<section class="section-about">
<div class="container">
<div class="row">
<div class="col-12">
<div class="card about-card">
<div class="row">
<div class="col-12 col-lg-7">
<h3 class="section-title">Who We Are</h3>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-7">
<p class="about-text right-green-border pe-lg-5 pb-4">The Association of Registered Investment Advisers ( ARIA ) was born out of the need to support the development of the investment adviser community post the introduction of the investment advisor regulations by SEBI in 2013. ARIA was set up as a part of the inaugural RIA summit in 2017 from where a RIA Task force emerged, to enable the development of the RIA profession, and bring it to the standards of other established professions that have been in existence since multiple decades. The RIA Taskforce, over a period of meeting for two years, interacted with various stakeholders has
<a href="aboutus.html" class="btn text-primary fw-bold p-0">Read more</a>
</p>
</div>
<div class="col-12 col-lg-5 d-flex flex-column justify-content-center">
<h6 class="about-ltext lighttext">Join us for</br> our upcoming event,</h6>
<h6 class="about-ltext">where industry leaders and</br> experts gather to shape the future</br> of investment advising.</h6>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="row">
<!-- Slides -->
<div class="col-lg-4">
<div class="card about-card">
<div class="about-card-image">
<img src="img/member-criterion.png" class="card-img-top" alt="">
</div>
<div class="card-body px-0">
<a href="#!" class="itemtitle stretched-link">Member Criterion</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card about-card">
<div class="about-card-image">
<img src="img/membership-categories.png" class="card-img-top" alt="">
</div>
<div class="card-body px-0">
<a href="#!" class="itemtitle stretched-link">Membership Categories</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card about-card">
<div class="about-card-image">
<img src="img/the-future-of-wealth.png" class="card-img-top" alt="">
</div>
<div class="card-body px-0">
<a href="#!" class="itemtitle stretched-link">The Future Of Wealth</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section section-count">
<div class="container">
<div class="row g-4">
<div class="col-6 col-sm">
<div class="count-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="73.017" height="79.655" viewBox="0 0 73.017 79.655">
<g id="Group_8668" data-name="Group 8668" transform="translate(-10174.75 -11094.146)">
<path id="Path_1039" data-name="Path 1039" d="M384.682,800.034h-7.966a2.655,2.655,0,1,1,0-5.31h7.966a2.655,2.655,0,1,1,0,5.31Z" transform="translate(9827.24 10367.129)" fill="none" stroke="#5c6a69" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.655"/>
<rect id="Rectangle_3775" data-name="Rectangle 3775" width="47.793" height="6.638" transform="translate(10184.042 11148.575)" fill="none" stroke="#5c6a69" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.655"/>
<rect id="Rectangle_3776" data-name="Rectangle 3776" width="47.793" height="6.638" transform="translate(10184.042 11136.627)" fill="none" stroke="#5c6a69" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.655"/>
<path id="Path_1040" data-name="Path 1040" d="M373.257,762.861v-2.917a5.049,5.049,0,0,1,5.049-5.049h3.178a5.049,5.049,0,0,1,5.049,5.049v2.917" transform="translate(9827.24 10367.129)" fill="none" stroke="#5c6a69" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.655"/>
<circle id="Ellipse_7" data-name="Ellipse 7" cx="3.983" cy="3.983" r="3.983" transform="translate(10203.151 11108.748)" fill="none" stroke="#5c6a69" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.655"/>
<line id="Line_141" data-name="Line 141" x2="21.241" transform="translate(10196.514 11129.989)" fill="none" stroke="#5c6a69" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.655"/>
<path id="Path_1041" data-name="Path 1041" d="M412.561,746.93v53.1a5.311,5.311,0,0,1-5.31,5.311h-53.1a5.31,5.31,0,0,1-5.31-5.311V740.292a5.31,5.31,0,0,1,5.31-5.31h46.466" transform="translate(9827.24 10367.129)" fill="none" stroke="#5c6a69" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.655"/>
<line id="Line_142" data-name="Line 142" x2="13.276" transform="translate(10233.163 11102.11)" fill="none" stroke="#2e9f6c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.655"/>
<line id="Line_143" data-name="Line 143" y2="13.276" transform="translate(10239.801 11095.473)" fill="none" stroke="#2e9f6c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.655"/>
</g>
</svg>
</div>
<h2 class="count-num" data-count="300">0</h2>
<h6 class="count-title">Members</h6>
</div>
<div class="col-6 col-sm">
<div class="count-icon">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 73.02 79.65">
<path fill="#5c6a69" stroke-width="0" d="M55.26,64.83c-2.51-1.23-5.92-2.19-9.86-2.78,3.09-4.98,6.6-10.85,9.43-16.85,3.77-7.99,5.55-15.38,5.28-21.97-.24-5.82-2.12-11.01-5.45-15.01C50.3,3.01,43.69.02,36.51,0h-.06C29.37,0,22.82,2.95,18.48,8.09c-3.37,4-5.3,9.22-5.57,15.09-.3,6.62,1.42,13.97,5.12,21.86,2.87,6.1,6.41,12.02,9.52,17.03-3.89.58-7.28,1.54-9.81,2.78-3.21,1.57-4.91,3.53-4.91,5.69,0,2.64,2.59,5.01,7.31,6.69,4.4,1.57,10.21,2.43,16.37,2.43s11.99-.86,16.37-2.43c4.71-1.68,7.31-4.05,7.31-6.69,0-2.15-1.69-4.12-4.92-5.7ZM40.99,65.39l-1.54,2.46c-.67,1.07-1.76,1.69-2.97,1.69s-2.3-.62-2.97-1.69c-.47-.75-.95-1.51-1.44-2.29l-.07-.11c-4.08-6.48-8.7-13.82-12.21-21.31-9.05-19.3-3.79-30.02.16-34.7h0c3.96-4.7,9.98-7.4,16.5-7.4h.06c6.61.02,12.69,2.77,16.69,7.55,3.89,4.65,9.05,15.35-.11,34.73-3.5,7.4-8.06,14.66-12.09,21.08ZM30.4,66.61c.5.8.99,1.58,1.47,2.35,1.02,1.63,2.74,2.61,4.6,2.61s3.58-.97,4.6-2.61c.27-.43.54-.86.81-1.3l2.33-3.72c8.13,1.07,14.01,3.83,14.01,6.59,0,1.62-2.29,3.45-5.99,4.77-4.17,1.49-9.76,2.31-15.74,2.31s-11.54-.82-15.74-2.31c-3.75-1.34-5.99-3.12-5.99-4.76,0-2.74,5.86-5.5,13.95-6.58.33.54.67,1.07,1,1.59l.67,1.06Z"/>
<path fill="#2e9f6c" stroke-width="0" d="M36.51,13.6c-5.53,0-10.03,4.7-10.03,10.48s4.5,10.48,10.03,10.48,10.03-4.7,10.03-10.48-4.5-10.48-10.03-10.48ZM44.58,24.08c0,2.25-.84,4.37-2.37,5.97-1.53,1.59-3.56,2.47-5.71,2.47-4.46,0-8.08-3.78-8.08-8.44s3.63-8.44,8.08-8.44,8.08,3.79,8.08,8.44Z"/>
</svg>
</div>
<h2 class="count-num" data-count="50">0</h2>
<h6 class="count-title">Locations</h6>
</div>
<div class="col-12 col-sm">
<div class="count-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="62.833" height="65" viewBox="0 0 62.833 65">
<g id="Group_8671" data-name="Group 8671" transform="translate(-11430.969 -11112.219)">
<path id="Path_1057" data-name="Path 1057" d="M1424.3,793.84a3.25,3.25,0,1,1,3.25,3.25,3.25,3.25,0,0,1-3.25-3.25m3.25-1.083a1.083,1.083,0,1,0,1.083,1.083,1.083,1.083,0,0,0-1.083-1.083" transform="translate(10037 10367.129)" fill="#5c6a69" fill-rule="evenodd"/>
<path id="Path_1058" data-name="Path 1058" d="M1427.552,799.257a3.25,3.25,0,1,0,3.25,3.25,3.25,3.25,0,0,0-3.25-3.25m-1.083,3.25a1.083,1.083,0,1,1,1.083,1.083,1.083,1.083,0,0,1-1.083-1.083" transform="translate(10037 10367.129)" fill="#5c6a69" fill-rule="evenodd"/>
<path id="Path_1059" data-name="Path 1059" d="M1435.135,793.84a3.25,3.25,0,1,1,3.25,3.25,3.25,3.25,0,0,1-3.25-3.25m3.25-1.083a1.083,1.083,0,1,0,1.083,1.083,1.083,1.083,0,0,0-1.083-1.083" transform="translate(10037 10367.129)" fill="#5c6a69" fill-rule="evenodd"/>
<path id="Path_1060" data-name="Path 1060" d="M1438.385,799.257a3.25,3.25,0,1,0,3.25,3.25,3.25,3.25,0,0,0-3.25-3.25m-1.083,3.25a1.083,1.083,0,1,1,1.083,1.083,1.083,1.083,0,0,1-1.083-1.083" transform="translate(10037 10367.129)" fill="#5c6a69" fill-rule="evenodd"/>
<path id="Path_1061" data-name="Path 1061" d="M1445.969,793.84a3.25,3.25,0,1,1,3.25,3.25,3.25,3.25,0,0,1-3.25-3.25m3.25-1.083a1.083,1.083,0,1,0,1.083,1.083,1.083,1.083,0,0,0-1.083-1.083" transform="translate(10037 10367.129)" fill="#5c6a69" fill-rule="evenodd"/>
<path id="Path_1062" data-name="Path 1062" d="M1449.218,799.257a3.25,3.25,0,1,0,3.25,3.25,3.25,3.25,0,0,0-3.25-3.25m-1.083,3.25a1.083,1.083,0,1,1,1.083,1.083,1.083,1.083,0,0,1-1.083-1.083" transform="translate(10037 10367.129)" fill="#5c6a69" fill-rule="evenodd"/>
<path id="Path_1063" data-name="Path 1063" d="M1398.3,748.34a3.25,3.25,0,0,1,3.25-3.25h45.5a3.25,3.25,0,0,1,3.25,3.25v29.792a1.083,1.083,0,0,1-2.166,0V748.34a1.083,1.083,0,0,0-1.084-1.083h-45.5a1.083,1.083,0,0,0-1.083,1.083v9.75h3.25a1.083,1.083,0,0,1,0,2.167h-3.25v16.25h3.25a1.083,1.083,0,1,1,0,2.166h-3.25v16.25h3.25a1.084,1.084,0,0,1,0,2.167h-3.25v9.75a1.083,1.083,0,0,0,1.083,1.083h18.6a3.237,3.237,0,0,1-.185-1.083v-19.5a3.25,3.25,0,0,1,3.25-3.25h3.25v-1.083a1.083,1.083,0,1,1,2.167,0v1.083h8.666v-1.083a1.083,1.083,0,1,1,2.167,0v1.083h8.667v-1.083a1.083,1.083,0,1,1,2.166,0v1.083h3.25a3.25,3.25,0,0,1,3.25,3.25v19.5a3.25,3.25,0,0,1-3.25,3.25h-52a3.25,3.25,0,0,1-3.25-3.25v-9.75h-3.25a1.084,1.084,0,0,1,0-2.167h3.25v-16.25h-3.25a1.083,1.083,0,1,1,0-2.166h3.25v-16.25h-3.25a1.083,1.083,0,0,1,0-2.167h3.25Zm41.167,39v-1.083h8.667v1.083a1.083,1.083,0,0,0,2.166,0v-1.083h3.25a1.083,1.083,0,0,1,1.084,1.083v19.5a1.083,1.083,0,0,1-1.084,1.083h-30.333a1.083,1.083,0,0,1-1.083-1.083v-19.5a1.083,1.083,0,0,1,1.083-1.083h3.25v1.083a1.083,1.083,0,0,0,2.167,0v-1.083h8.666v1.083a1.083,1.083,0,0,0,2.167,0" transform="translate(10037 10367.129)" fill="#5c6a69" fill-rule="evenodd"/>
<path id="Path_1064" data-name="Path 1064" d="M1408.052,776.506a3.25,3.25,0,0,1,3.25-3.25h2.167a3.25,3.25,0,0,1,3.25,3.25v2.167a3.25,3.25,0,0,1-3.25,3.25H1411.3a3.25,3.25,0,0,1-3.25-3.25Zm3.25-1.083a1.083,1.083,0,0,0-1.083,1.083v2.167a1.083,1.083,0,0,0,1.083,1.083h2.167a1.083,1.083,0,0,0,1.083-1.083v-2.167a1.083,1.083,0,0,0-1.083-1.083Z" transform="translate(10037 10367.129)" fill="#5c6a69" fill-rule="evenodd"/>
<path id="Path_1065" data-name="Path 1065" d="M1411.3,791.673a3.25,3.25,0,0,0-3.25,3.25v2.167a3.25,3.25,0,0,0,3.25,3.25h2.167a3.25,3.25,0,0,0,3.25-3.25v-2.167a3.25,3.25,0,0,0-3.25-3.25Zm-1.083,3.25a1.083,1.083,0,0,1,1.083-1.083h2.167a1.083,1.083,0,0,1,1.083,1.083v2.167a1.083,1.083,0,0,1-1.083,1.083H1411.3a1.083,1.083,0,0,1-1.083-1.083Z" transform="translate(10037 10367.129)" fill="#5c6a69" fill-rule="evenodd"/>
<path id="Path_1066" data-name="Path 1066" d="M1419.969,759.173a1.083,1.083,0,0,1,1.083-1.083h21.667a1.083,1.083,0,1,1,0,2.166h-21.667a1.083,1.083,0,0,1-1.083-1.083" transform="translate(10037 10367.129)" fill="#2e9f6c"/>
<path id="Path_1067" data-name="Path 1067" d="M1421.052,776.507a1.083,1.083,0,0,0,0,2.167h21.667a1.083,1.083,0,0,0,0-2.167Z" transform="translate(10037 10367.129)" fill="#5c6a69"/>
<path id="Path_1068" data-name="Path 1068" d="M1411.3,754.84a3.25,3.25,0,0,0-3.25,3.25v2.167a3.25,3.25,0,0,0,3.25,3.25h2.167a3.25,3.25,0,0,0,3.25-3.25V758.09a3.25,3.25,0,0,0-3.25-3.25Zm-1.083,3.25a1.083,1.083,0,0,1,1.083-1.083h2.167a1.083,1.083,0,0,1,1.083,1.083v2.167a1.083,1.083,0,0,1-1.083,1.083H1411.3a1.083,1.083,0,0,1-1.083-1.083Z" transform="translate(10037 10367.129)" fill="#2e9f6c" fill-rule="evenodd"/>
</g>
</svg>
</div>
<h2 class="count-num" data-count="50">0</h2>
<h6 class="count-title">Events Organized</h6>
</div>
</div>
</div>
</section>
<section class="section section-news" style="--sectionimage: url(../img/image1.jpg)">
<div class="container">
<div class="row justify-content-end">
<div class="col-12 col-lg-12">
<div class="card news-card border-radius-lg">
<div class="card-header">
<h3 class="section-title mb-0">ARIA in the News</h3>
</div>
<div class="card-body">
<div class="swiper" id="NewsSwiper" >
<div class="swiper-wrapper">
<!-- Slides -->
<div class="swiper-slide">
<div class="card newsitem">
<div class="card-body">
<div class="newsitem-meta">
<p class="newsitem-timestamp">May 9, 2024</p>
<p class="newsitem-author">Harsh Roongta</p>
</div>
<h6 class="newsitem-title">1Inheritance tax: An idea doomed to failure</h6>
<p class="newsitem-subtitle">The discussion on inheritance tax in the media reminded me of the story titled The Great Sermon Handicap by my favourite author P G Wodehouse. In the story, the owner of a priceless family heirloom — a silver cow creamer — steals it himself intending to sell it to a rich American collector. It’s a complicated plot with many misunderstandings typical of Wodehouse’s work...</p>
<button class="btn link-primary newsitem-link">
Read More
<span class="material-symbols-outlined icon">east</span>
</button>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card newsitem">
<div class="card-body">
<div class="card newsitem">
<div class="card-body">
<div class="newsitem-meta">
<p class="newsitem-timestamp">May 9, 2024</p>
<p class="newsitem-author">Harsh Roongta</p>
</div>
<h6 class="newsitem-title">2Retirement: Embrace holistic planning</h6>
<p class="newsitem-subtitle">I recently spoke with Anand, a prospective client in his late fifties from Delhi, who manages a division at a Fortune 500 company. He approached me to discuss his upcoming retirement next year and to ascertain if his finances would allow him to purchase a luxury home in a hillside retirement community...</p>
<button class="btn link-primary newsitem-link">
Read More
<span class="material-symbols-outlined icon">east</span>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card newsitem">
<div class="card-body">
<div class="card newsitem">
<div class="card-body">
<div class="newsitem-meta">
<p class="newsitem-timestamp">May 9, 2024</p>
<p class="newsitem-author">Suresh Sadagopan</p>
</div>
<h6 class="newsitem-title">3Pressure in equity markets: what should be investors’ strategy?</h6>
<p class="newsitem-subtitle">Given that there has been pressure in the equity markets of late, what strategy should investors adopt?
Baroda BNP Paribas AMC's Suresh Soni, MoneyWorks' Nisreen Mamaji, and Ladder7 Wealth Planners' Suresh Sadagopan share views.</p>
<button class="btn link-primary newsitem-link">
Read More
<span class="material-symbols-outlined icon">east</span>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card newsitem">
<div class="card-body">
<div class="card newsitem">
<div class="card-body">
<div class="newsitem-meta">
<p class="newsitem-timestamp">May 9, 2024</p>
<p class="newsitem-author">Harsh Roongta</p>
</div>
<h6 class="newsitem-title">4Retirement: Embrace holistic planning</h6>
<p class="newsitem-subtitle">I recently spoke with Anand, a prospective client in his late fifties from Delhi, who manages a division at a Fortune 500 company. He approached me to discuss his upcoming retirement next year and to ascertain if his finances would allow him to purchase a luxury home in a hillside retirement community...</p>
<button class="btn link-primary newsitem-link">
Read More
<span class="material-symbols-outlined icon">east</span>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card newsitem">
<div class="card-body">
<div class="card newsitem">
<div class="card-body">
<div class="newsitem-meta">
<p class="newsitem-timestamp">May 9, 2024</p>
<p class="newsitem-author">Suresh Sadagopan</p>
</div>
<h6 class="newsitem-title">5Pressure in equity markets: what should be investors’ strategy?</h6>
<p class="newsitem-subtitle">Given that there has been pressure in the equity markets of late, what strategy should investors adopt?
Baroda BNP Paribas AMC's Suresh Soni, MoneyWorks' Nisreen Mamaji, and Ladder7 Wealth Planners' Suresh Sadagopan share views.</p>
<button class="btn link-primary newsitem-link">
Read More
<span class="material-symbols-outlined icon">east</span>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card newsitem">
<div class="card-body">
<div class="card newsitem">
<div class="card-body">
<div class="newsitem-meta">
<p class="newsitem-timestamp">May 9, 2024</p>
<p class="newsitem-author">Suresh Sadagopan</p>
</div>
<h6 class="newsitem-title">6Pressure in equity markets: what should be investors’ strategy?</h6>
<p class="newsitem-subtitle">Given that there has been pressure in the equity markets of late, what strategy should investors adopt?
Baroda BNP Paribas AMC's Suresh Soni, MoneyWorks' Nisreen Mamaji, and Ladder7 Wealth Planners' Suresh Sadagopan share views.</p>
<button class="btn link-primary newsitem-link">
Read More
<span class="material-symbols-outlined icon">east</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- If we need navigation buttons -->
<div class="swiper-button-prev text-secondary"></div>
<div class="swiper-button-next"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section section-partners">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-heading">
<h3 class="section-title">Our Partners</h3>
</div>
</div>
</div>
<div class="row mb-4 g-4">
<div class="col-12">
<h6 class="partnerplan-title">Platinum Partners</h6>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="partnerlogo">
<img class="partnerlogo-image" src="img/partners/Image 2.png" alt="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="partnerlogo">
<img class="partnerlogo-image" src="img/partners/Image 3.png" alt="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="partnerlogo">
<img class="partnerlogo-image" src="img/partners/Image 4.png" alt="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="partnerlogo">
<img class="partnerlogo-image" src="img/partners/Image 5.png" alt="">
</div>
</div>
</div>
<div class="row mb-4 g-4">
<div class="col-12">
<h6 class="partnerplan-title">Gold Partners</h6>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="partnerlogo">
<img class="partnerlogo-image" src="img/partners/Mask Group 2.png" alt="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="partnerlogo">
<img class="partnerlogo-image" src="img/partners/Image 7.png" alt="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="partnerlogo">
<img class="partnerlogo-image" src="img/partners/Image 8.png" alt="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="partnerlogo">
<img class="partnerlogo-image" src="img/partners/Image 9.png" alt="">
</div>
</div>
</div>
<div class="row g-4">
<div class="col-12">
<h6 class="partnerplan-title">Silver Partners</h6>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="partnerlogo">
<img class="partnerlogo-image" src="img/partners/Image 10.png" alt="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="partnerlogo">
<img class="partnerlogo-image" src="img/partners/Image 11.png" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section section-testimonials">
<div class="container">
<div class="row g-4">
<div class="col-12">
<div class="section-heading">
<h3 class="section-title">Testimonials</h3>
</div>
</div>
<div class="col-12 col-lg-5">
<div class="about-image">
<img src="img/testimonials.jpg" class="img-fluid" alt="">
</div>
</div>
<div class="col-12 col-lg-7">
<div class="swiper" id="TestimonialSwiper">
<div class="swiper-wrapper">
<!-- Slides -->
<div class="swiper-slide">
<div class="card testimonial-card">
<div class="card-body">
<div class="testi-item">
<div class="testi-quote">
<i class="bi bi-quote"></i>
</div>
<div class="testi-content">
<h6 class="testi-text">
The best of practitioners are behind ARIA events, which is why ARIA events are insightful, thought-provoking, and filled with practical ideas. ARIA provides the right ecosystem to foster mutual growth for all RIAs and further the cause for the end clients!
</h6>
<div class="testi-profile">
<div class="testi-pic">
<img src="img/UdayDoot-120x120.jpg" class="rounded-circle" alt="">
</div>
<div class="test-profile-content">
<h6 class="testi-user">Uday Ghoot</h6>
<h6 class="testi-designation">Partners in Google </h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card testimonial-card">
<div class="card-body">
<div class="testi-item">
<div class="testi-quote">
<i class="bi bi-quote"></i>
</div>
<div class="testi-content">
<h6 class="testi-text">What I like about ARIA is the effort taking by the managing committee in hosting regular interactions among RIAs on various topics related to our practice and the high-quality interactions that it facilitates. I would recommend every RIA to be part of this wonderful family to help grow our fraternity and create visibility of RIAs among the masses.</h6>
<div class="testi-profile">
<div class="testi-pic">
<img src="img/Steven_Fernandes-120x120.jpg" class="rounded-circle" alt="">
</div>
<div class="test-profile-content">
<h6 class="testi-user">Steven Fernandes</h6>
<h6 class="testi-designation">Founder & Chief Planner, Proficient Financial Planners</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="card testimonial-card">
<div class="card-body">
<div class="testi-item">
<div class="testi-quote">
<i class="bi bi-quote"></i>
</div>
<div class="testi-content">
<h6 class="testi-text">Mid-November 2021, I attended a wonderful virtual event organized by ARIA. While one has been part of many events, the ARIA event had something special. The content was well-curated and the event organizers could bring novel and interesting perspectives from the esteemed speakers. I personally enjoyed the sessions and there were quite a few takeaways, too.</h6>
<div class="testi-profile">
<div class="testi-pic">
<img src="img/Amite-Trivedi-120x120.jpg" class="rounded-circle" alt="">
</div>
<div class="test-profile-content">
<h6 class="testi-user">Amit Trivedi</h6>
<h6 class="testi-designation">Author, Speaker and Trainer</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- If we need navigation buttons -->
<div class="swiper-button-prev text-secondary"></div>
<div class="swiper-button-next"></div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="row g-3">
<div class="col-12">
<div class="footer-top-inner">
<div class="row">
<div class="col-lg-4 col-12">
<div class="footer-about-widget">
<div class="footer-logo">
<a class="logo" href="index.html"><img src="img/ARIA-logo_new.png" class="img-fluid"></a>
</div>
<p class="footer-about-widget_desc">The Association of Registered Investment Advisers (ARIA) was born out of the need to support the development of the investment adviser community post the introduction of the investment advisor regulations of SEBI in 2013.</p>
<ul class="social-list">
<li><a href="#"><i class="bi bi-facebook"></i></a></li>
<li><a href="#"><i class="bi bi-linkedin"></i></a></li>
<li><a href="#"><i class="bi bi-twitter-x"></i></i></a></li>
<li><a href="#"><i class="bi bi-youtube"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-6">
<div class="widget-nav_menu">
<h3 class="widget-title">About</h3>
<ul class="widget-nav_menu-links">
<li class="menu-item">
<a href="#" class="menu-link">Intent</a>
</li>
<li class="menu-item">
<a href="#" class="menu-link">ARIA Board</a>
</li>
<li class="menu-item">
<a href="#" class="menu-link">Committees</a>
</li>
<li class="menu-item">
<a href="#" class="menu-link">Chapters</a>
</li>
<li class="menu-item">
<a href="#" class="menu-link">Our Partners</a>
</li>
<li class="menu-item">
<a href="#" class="menu-link">Testimonials</a>
</li>
<li class="menu-item">
<a href="#" class="menu-link">Careers</a>
</li>
<li class="menu-item">
<a href="#" class="menu-link">Stakeholders</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-2 col-6">
<div class="widget-nav_menu">
<h3 class="widget-title">News/Events</h3>
<ul class="widget-nav_menu-links">
<li class="menu-item">
<a href="" class="menu-link">ARIA Summit</a>
</li>
<li class="menu-item">
<a href="" class="menu-link">Summit Recordings</a>
</li>
<li class="menu-item">
<a href="" class="menu-link">ARIA News</a>
</li>
<li class="menu-item">
<a href="" class="menu-link">Events Upcoming & Posts</a>
</li>
<li class="menu-item">
<a href="" class="menu-link">News & Interest</a>
</li>
<li class="menu-item">
<a href="" class="menu-link">Newsletter</a>
</li>
<li class="menu-item">
<a href="" class="menu-link">SEBI Communications</a>
</li>
<li class="menu-item">
<a href="" class="menu-link">Workshops</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-4 col-12">
<div class="widget-nav_menu">
<h3 class="widget-title">Contact us</h3>
<ul class="widget-nav_menu-links">
<li class="menu-item align-items-start">
<i class="bi bi-house text-secondary"></i>
<span class="lh-sm">7th Floor, 701 / 702, Madhava Bldg,</br>
Bandra Kurla Complex Bandra East, </br>
Mumbai 400051</span>
</li>
<li class="menu-item">
<i class="bi bi-telephone text-secondary"></i>
<a href="tel:918976768683" class="menu-link">+91-89767 68683</a> /
<a href="tel:918976768684" class="menu-link">+91-89767 68684</a>
</li>
<li class="menu-item">
<i class="bi bi-envelope text-secondary"></i>
<a href="mailto:[email protected]" class="menu-link">[email protected]</a>
</li>
</ul>
</div>
<!-- <div class="footer-about-widget">
<p class="footer-about-widget_desc mt-0 mb-3 text-secondary">Subscribe to our Newsletter to Receive news, updates, free stuff and new releases by email</p>
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control form-control-lg" placeholder="enter email address">
<button class="btn btn-primary">Subscribe</button>
</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-12">
<div class="copyright__inner">
<p class="copyright-text">Copyright @2023 All rights reserved</p>
<ul class="foot-links">
<li><a href="#">Legal Disclaimer</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Cancellation Policy</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
</main>
<!-- Logged in Menu -->
<div class="aside offcanvas offcanvas-end" tabindex="-1" id="offcanvasRight">
<div class="offcanvas-header">
<div class="user-profilearea">
<div class="user-profilepic">
<img src="img/amit.jpg" class="img-fluid" alt="">
</div>
<h5 class="user-fullname">Amit Kukreja</h5>
<h6 class="user-designation">Past & Current Treasurer</h6>
<span class="badge text-bg-primary rounded-pill">Individual</span>
<ul class="social-list">
<li><a href="#"><i class="bi bi-facebook"></i></a></li>
<li><a href="#"><i class="bi bi-linkedin"></i></a></li>
<li><a href="#"><i class="bi bi-twitter-x"></i></a></li>
<li><a href="#"><i class="bi bi-youtube"></i></a></li>
</ul>
</div>
</div>
<div class="offcanvas-body px-0 scroll-list">
<div class="list-group list-group-flush navlink-listgroup">
<a href="#" class="list-group-item list-group-item-action active">
<i class="bi bi-grid-1x2 icon"></i>
Dashboard
</a>
<a href="#" class="list-group-item list-group-item-action">
<i class="bi bi-person-circle icon"></i>
My Profile
</a>
<a href="#" class="list-group-item list-group-item-action">
<i class="bi bi-person-gear icon"></i>
My Account
</a>
<a href="#" class="list-group-item list-group-item-action">
<i class="bi bi-file-earmark-text icon"></i>
My Articles
</a>
<a href="#" class="list-group-item list-group-item-action">
<i class="bi bi-calendar4-week icon"></i>
Events Attended
</a>
<a href="#" class="list-group-item list-group-item-action">
<i class="bi bi-suitcase-lg icon"></i>
My Job Lists
</a>
<a href="#" class="list-group-item list-group-item-action">
<i class="bi bi-box-arrow-right icon"></i>
Logout
</a>
</div>
<div class="membership-item">
<div class="membership-item-icon">
<i class="bi bi-hourglass icon"></i>
</div>
<div class="membership-item-content">
<p class="membership-item-title">3 years of Membership</p>
</div>
</div>
<div class="membership-item">
<div class="membership-item-icon orange">
<i class="bi bi-hourglass icon"></i>
</div>
<div class="membership-item-content">
<p class="membership-item-title">Membership Subscription</p>
<p class="membership-item-subtitle">20days left</p>
</div>
</div>
</div>
</div>
<!-- Video Modal -->
<div class="modal fade" id="videoModal" tabindex="-1" aria-labelledby="videoModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-xl">
<div class="modal-content">
<div class="modal-body">
<iframe width="100%" height="550" src="https://www.youtube.com/embed/uIQ4qukWdrk" title="Genesis:The Formation and Journey of ARIA" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<!-- Jquery -->
<script src="js/jquery-3.7.1.min.js"></script>
<!-- Bootstrap JS -->
<script src="js/bootstrap.bundle.min.js"></script>
<!-- Swiper JS -->
<script src="js/swiper-bundle.min.js"></script>
<!-- Custom JS -->
<script src="js/script.js"></script>
<script>
const aboutswiper = new Swiper('#AboutSwiper', {
direction: 'horizontal',
loop: true,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
breakpoints: {
640: {
slidesPerView: 1,
spaceBetween: 20,
},
768: {
slidesPerView: 2,
spaceBetween: 20,
},
1024: {
slidesPerView: 3,