-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1807 lines (1739 loc) · 119 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rocksh investment co.</title>
<link rel="icon" href="favicons/.-1897-favicon.ico"><link href="css/style.css" rel="stylesheet"></head>
<body x-data="
{
scrolledFromTop: false
}
" 0) ? true : false"
class="re sj"
>>
<!--MADE SOME CHANGES ABOVE-->
<!-- ===== Header start ===== -->
<header x-data="
{
navbarOpen: false,
dropdownOpen: false
}
" :class="scrolledFromTop ? 're sj we vj wh gi' : 're sj' " class="fc lb qd f g da">
<div class="a">
<div class="lb ia qd td e">
<div class="nf gc tc">
<a href="index.html" :class="scrolledFromTop ? 'of om' : 'pf pm' " class="fc jb">
<img src="images/rockshsh-logo.png" alt="logo" class="fc oj">
<!-- <img src="images/logo-logo-white.svg" alt="logo" class="fc nb nj"> -->
</a>
</div>
<div class="lb nf rd qd fc">
<div>
<button :class="navbarOpen && 'navbarTogglerActive' " id="navbarToggler" class="jb d h i/2 gd/2 _l ej di qf rf zd">
<span :class="navbarOpen && 'id j' " class="e hc ob ja jb se tj"></span>
<span :class="navbarOpen && 'uh' " class="e hc ob ja jb se tj"></span>
<span :class="navbarOpen && 'k jd' " class="e hc ob ja jb se tj"></span>
</button>
<nav :class="!navbarOpen && 'nb' " id="navbarCollapse" class="d sf qm tf re uj xh zd uc fc km ln im am h l xl nl gn">
<ul class="do yl">
<li>
<a href="#features" :class="scrolledFromTop ? 'uf rm' : 'uf sm' " class="scroll-menu _g ih ph yi zl lb sl on">
Features
</a>
</li>
<li>
<a href="#about" :class="scrolledFromTop ? 'uf rm' : 'uf sm' " class="scroll-menu _g ih ph yi zl lb sl on">
About
</a>
</li>
<li>
<a href="#pricing" :class="scrolledFromTop ? 'uf rm' : 'uf sm' " class="scroll-menu _g ih ph yi zl lb sl on">
Pricing
</a>
</li>
<li>
<a href="#testimonial" :class="scrolledFromTop ? 'uf rm' : 'uf sm' " class="scroll-menu _g ih ph yi zl lb sl on">
Reviews
</a>
</li>
<li>
<a href="#contact" :class="scrolledFromTop ? 'uf rm' : 'uf sm' " class="scroll-menu _g ih ph yi zl lb sl on">
Contact
</a>
</li>
<li class="e gj submenu-item">
<a href="javascript:void(0)" :class="scrolledFromTop ? 'uf rm' : 'uf sm' " class="_g ph ij zl zm _m lb tl on e li qi pi ti ui vi si in mi ni/2 ri oi">
Pages
</a>
<div :class="dropdownOpen ? 'jb' : 'nb xl ' " class="submenu e ol bm l pl m zd hn lm fn ml lj jn kn re uj hi ki">
<a href="blog-details.html" class="jb ah qh _j ck _d yi vf tm">
Blog Grid Page
</a>
<a href="blog-details.html" class="jb ah qh _j ck _d yi vf tm">
Blog Details Page
</a>
</div>
</li>
</ul>
</nav>
</div>
<div class="bo gk rd nb kg an">
<a href="#cta" class="lb qd sd _g ih rh te zd wf xf ii aj">
Download
</a>
<div>
<label for="darkToggler" class="kd ic pb xk sk ae lb qd sd eo fo qh _j">
<input type="checkbox" name="darkToggler" id="darkToggler" class="b" aria-label="darkToggler">
<svg viewbox="0 0 23 23" class="gf oj jc qb yk tk" fill="none">
<path d="M9.55078 1.5C5.80078 1.5 1.30078 5.25 1.30078 11.25C1.30078 17.25 5.80078 21.75 11.8008 21.75C17.8008 21.75 21.5508 17.25 21.5508 13.5C13.3008 18.75 4.30078 9.75 9.55078 1.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<svg viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="nb nj jc qb yk tk">
<mask id="path-1-inside-1_977:1934" fill="white">
<path d="M12.0508 16.5C10.8573 16.5 9.71271 16.0259 8.8688 15.182C8.02489 14.3381 7.55078 13.1935 7.55078 12C7.55078 10.8065 8.02489 9.66193 8.8688 8.81802C9.71271 7.97411 10.8573 7.5 12.0508 7.5C13.2443 7.5 14.3888 7.97411 15.2328 8.81802C16.0767 9.66193 16.5508 10.8065 16.5508 12C16.5508 13.1935 16.0767 14.3381 15.2328 15.182C14.3888 16.0259 13.2443 16.5 12.0508 16.5ZM12.0508 18C13.6421 18 15.1682 17.3679 16.2934 16.2426C17.4186 15.1174 18.0508 13.5913 18.0508 12C18.0508 10.4087 17.4186 8.88258 16.2934 7.75736C15.1682 6.63214 13.6421 6 12.0508 6C10.4595 6 8.93336 6.63214 7.80814 7.75736C6.68292 8.88258 6.05078 10.4087 6.05078 12C6.05078 13.5913 6.68292 15.1174 7.80814 16.2426C8.93336 17.3679 10.4595 18 12.0508 18ZM12.0508 0C12.2497 0 12.4405 0.0790176 12.5811 0.21967C12.7218 0.360322 12.8008 0.551088 12.8008 0.75V3.75C12.8008 3.94891 12.7218 4.13968 12.5811 4.28033C12.4405 4.42098 12.2497 4.5 12.0508 4.5C11.8519 4.5 11.6611 4.42098 11.5205 4.28033C11.3798 4.13968 11.3008 3.94891 11.3008 3.75V0.75C11.3008 0.551088 11.3798 0.360322 11.5205 0.21967C11.6611 0.0790176 11.8519 0 12.0508 0V0ZM12.0508 19.5C12.2497 19.5 12.4405 19.579 12.5811 19.7197C12.7218 19.8603 12.8008 20.0511 12.8008 20.25V23.25C12.8008 23.4489 12.7218 23.6397 12.5811 23.7803C12.4405 23.921 12.2497 24 12.0508 24C11.8519 24 11.6611 23.921 11.5205 23.7803C11.3798 23.6397 11.3008 23.4489 11.3008 23.25V20.25C11.3008 20.0511 11.3798 19.8603 11.5205 19.7197C11.6611 19.579 11.8519 19.5 12.0508 19.5ZM24.0508 12C24.0508 12.1989 23.9718 12.3897 23.8311 12.5303C23.6905 12.671 23.4997 12.75 23.3008 12.75H20.3008C20.1019 12.75 19.9111 12.671 19.7705 12.5303C19.6298 12.3897 19.5508 12.1989 19.5508 12C19.5508 11.8011 19.6298 11.6103 19.7705 11.4697C19.9111 11.329 20.1019 11.25 20.3008 11.25H23.3008C23.4997 11.25 23.6905 11.329 23.8311 11.4697C23.9718 11.6103 24.0508 11.8011 24.0508 12ZM4.55078 12C4.55078 12.1989 4.47176 12.3897 4.33111 12.5303C4.19046 12.671 3.99969 12.75 3.80078 12.75H0.800781C0.601869 12.75 0.411103 12.671 0.270451 12.5303C0.129799 12.3897 0.0507813 12.1989 0.0507812 12C0.0507813 11.8011 0.129799 11.6103 0.270451 11.4697C0.411103 11.329 0.601869 11.25 0.800781 11.25H3.80078C3.99969 11.25 4.19046 11.329 4.33111 11.4697C4.47176 11.6103 4.55078 11.8011 4.55078 12ZM20.5363 3.5145C20.6769 3.65515 20.7559 3.84588 20.7559 4.04475C20.7559 4.24362 20.6769 4.43435 20.5363 4.575L18.4153 6.6975C18.3455 6.76713 18.2628 6.82235 18.1717 6.86C18.0806 6.89765 17.983 6.91699 17.8845 6.91692C17.6855 6.91678 17.4947 6.83758 17.354 6.69675C17.2844 6.62702 17.2292 6.54425 17.1915 6.45318C17.1539 6.36211 17.1345 6.26452 17.1346 6.16597C17.1348 5.96695 17.214 5.77613 17.3548 5.6355L19.4758 3.5145C19.6164 3.3739 19.8072 3.29491 20.006 3.29491C20.2049 3.29491 20.3956 3.3739 20.5363 3.5145ZM6.74678 17.304C6.88738 17.4446 6.96637 17.6354 6.96637 17.8342C6.96637 18.0331 6.88738 18.2239 6.74678 18.3645L4.62578 20.4855C4.48433 20.6221 4.29488 20.6977 4.09823 20.696C3.90158 20.6943 3.71347 20.6154 3.57442 20.4764C3.43536 20.3373 3.35648 20.1492 3.35478 19.9526C3.35307 19.7559 3.42866 19.5665 3.56528 19.425L5.68628 17.304C5.82693 17.1634 6.01766 17.0844 6.21653 17.0844C6.4154 17.0844 6.60614 17.1634 6.74678 17.304ZM20.5363 20.4855C20.3956 20.6261 20.2049 20.7051 20.006 20.7051C19.8072 20.7051 19.6164 20.6261 19.4758 20.4855L17.3548 18.3645C17.2182 18.223 17.1426 18.0336 17.1443 17.8369C17.146 17.6403 17.2249 17.4522 17.3639 17.3131C17.503 17.1741 17.6911 17.0952 17.8877 17.0935C18.0844 17.0918 18.2738 17.1674 18.4153 17.304L20.5363 19.425C20.6769 19.5656 20.7559 19.7564 20.7559 19.9552C20.7559 20.1541 20.6769 20.3449 20.5363 20.4855ZM6.74678 6.6975C6.60614 6.8381 6.4154 6.91709 6.21653 6.91709C6.01766 6.91709 5.82693 6.8381 5.68628 6.6975L3.56528 4.575C3.49365 4.50582 3.43651 4.42306 3.39721 4.33155C3.3579 4.24005 3.33721 4.14164 3.33634 4.04205C3.33548 3.94247 3.35445 3.84371 3.39216 3.75153C3.42988 3.65936 3.48557 3.57562 3.55598 3.5052C3.6264 3.43478 3.71014 3.37909 3.80232 3.34138C3.89449 3.30367 3.99325 3.2847 4.09283 3.28556C4.19242 3.28643 4.29083 3.30712 4.38233 3.34642C4.47384 3.38573 4.5566 3.44287 4.62578 3.5145L6.74678 5.6355C6.81663 5.70517 6.87204 5.78793 6.90985 5.87905C6.94766 5.97017 6.96712 6.06785 6.96712 6.1665C6.96712 6.26515 6.94766 6.36283 6.90985 6.45395C6.87204 6.54507 6.81663 6.62783 6.74678 6.6975Z"></path>
</mask>
<path d="M12.0508 16.5C10.8573 16.5 9.71271 16.0259 8.8688 15.182C8.02489 14.3381 7.55078 13.1935 7.55078 12C7.55078 10.8065 8.02489 9.66193 8.8688 8.81802C9.71271 7.97411 10.8573 7.5 12.0508 7.5C13.2443 7.5 14.3888 7.97411 15.2328 8.81802C16.0767 9.66193 16.5508 10.8065 16.5508 12C16.5508 13.1935 16.0767 14.3381 15.2328 15.182C14.3888 16.0259 13.2443 16.5 12.0508 16.5ZM12.0508 18C13.6421 18 15.1682 17.3679 16.2934 16.2426C17.4186 15.1174 18.0508 13.5913 18.0508 12C18.0508 10.4087 17.4186 8.88258 16.2934 7.75736C15.1682 6.63214 13.6421 6 12.0508 6C10.4595 6 8.93336 6.63214 7.80814 7.75736C6.68292 8.88258 6.05078 10.4087 6.05078 12C6.05078 13.5913 6.68292 15.1174 7.80814 16.2426C8.93336 17.3679 10.4595 18 12.0508 18ZM12.0508 0C12.2497 0 12.4405 0.0790176 12.5811 0.21967C12.7218 0.360322 12.8008 0.551088 12.8008 0.75V3.75C12.8008 3.94891 12.7218 4.13968 12.5811 4.28033C12.4405 4.42098 12.2497 4.5 12.0508 4.5C11.8519 4.5 11.6611 4.42098 11.5205 4.28033C11.3798 4.13968 11.3008 3.94891 11.3008 3.75V0.75C11.3008 0.551088 11.3798 0.360322 11.5205 0.21967C11.6611 0.0790176 11.8519 0 12.0508 0V0ZM12.0508 19.5C12.2497 19.5 12.4405 19.579 12.5811 19.7197C12.7218 19.8603 12.8008 20.0511 12.8008 20.25V23.25C12.8008 23.4489 12.7218 23.6397 12.5811 23.7803C12.4405 23.921 12.2497 24 12.0508 24C11.8519 24 11.6611 23.921 11.5205 23.7803C11.3798 23.6397 11.3008 23.4489 11.3008 23.25V20.25C11.3008 20.0511 11.3798 19.8603 11.5205 19.7197C11.6611 19.579 11.8519 19.5 12.0508 19.5ZM24.0508 12C24.0508 12.1989 23.9718 12.3897 23.8311 12.5303C23.6905 12.671 23.4997 12.75 23.3008 12.75H20.3008C20.1019 12.75 19.9111 12.671 19.7705 12.5303C19.6298 12.3897 19.5508 12.1989 19.5508 12C19.5508 11.8011 19.6298 11.6103 19.7705 11.4697C19.9111 11.329 20.1019 11.25 20.3008 11.25H23.3008C23.4997 11.25 23.6905 11.329 23.8311 11.4697C23.9718 11.6103 24.0508 11.8011 24.0508 12ZM4.55078 12C4.55078 12.1989 4.47176 12.3897 4.33111 12.5303C4.19046 12.671 3.99969 12.75 3.80078 12.75H0.800781C0.601869 12.75 0.411103 12.671 0.270451 12.5303C0.129799 12.3897 0.0507813 12.1989 0.0507812 12C0.0507813 11.8011 0.129799 11.6103 0.270451 11.4697C0.411103 11.329 0.601869 11.25 0.800781 11.25H3.80078C3.99969 11.25 4.19046 11.329 4.33111 11.4697C4.47176 11.6103 4.55078 11.8011 4.55078 12ZM20.5363 3.5145C20.6769 3.65515 20.7559 3.84588 20.7559 4.04475C20.7559 4.24362 20.6769 4.43435 20.5363 4.575L18.4153 6.6975C18.3455 6.76713 18.2628 6.82235 18.1717 6.86C18.0806 6.89765 17.983 6.91699 17.8845 6.91692C17.6855 6.91678 17.4947 6.83758 17.354 6.69675C17.2844 6.62702 17.2292 6.54425 17.1915 6.45318C17.1539 6.36211 17.1345 6.26452 17.1346 6.16597C17.1348 5.96695 17.214 5.77613 17.3548 5.6355L19.4758 3.5145C19.6164 3.3739 19.8072 3.29491 20.006 3.29491C20.2049 3.29491 20.3956 3.3739 20.5363 3.5145ZM6.74678 17.304C6.88738 17.4446 6.96637 17.6354 6.96637 17.8342C6.96637 18.0331 6.88738 18.2239 6.74678 18.3645L4.62578 20.4855C4.48433 20.6221 4.29488 20.6977 4.09823 20.696C3.90158 20.6943 3.71347 20.6154 3.57442 20.4764C3.43536 20.3373 3.35648 20.1492 3.35478 19.9526C3.35307 19.7559 3.42866 19.5665 3.56528 19.425L5.68628 17.304C5.82693 17.1634 6.01766 17.0844 6.21653 17.0844C6.4154 17.0844 6.60614 17.1634 6.74678 17.304ZM20.5363 20.4855C20.3956 20.6261 20.2049 20.7051 20.006 20.7051C19.8072 20.7051 19.6164 20.6261 19.4758 20.4855L17.3548 18.3645C17.2182 18.223 17.1426 18.0336 17.1443 17.8369C17.146 17.6403 17.2249 17.4522 17.3639 17.3131C17.503 17.1741 17.6911 17.0952 17.8877 17.0935C18.0844 17.0918 18.2738 17.1674 18.4153 17.304L20.5363 19.425C20.6769 19.5656 20.7559 19.7564 20.7559 19.9552C20.7559 20.1541 20.6769 20.3449 20.5363 20.4855ZM6.74678 6.6975C6.60614 6.8381 6.4154 6.91709 6.21653 6.91709C6.01766 6.91709 5.82693 6.8381 5.68628 6.6975L3.56528 4.575C3.49365 4.50582 3.43651 4.42306 3.39721 4.33155C3.3579 4.24005 3.33721 4.14164 3.33634 4.04205C3.33548 3.94247 3.35445 3.84371 3.39216 3.75153C3.42988 3.65936 3.48557 3.57562 3.55598 3.5052C3.6264 3.43478 3.71014 3.37909 3.80232 3.34138C3.89449 3.30367 3.99325 3.2847 4.09283 3.28556C4.19242 3.28643 4.29083 3.30712 4.38233 3.34642C4.47384 3.38573 4.5566 3.44287 4.62578 3.5145L6.74678 5.6355C6.81663 5.70517 6.87204 5.78793 6.90985 5.87905C6.94766 5.97017 6.96712 6.06785 6.96712 6.1665C6.96712 6.26515 6.94766 6.36283 6.90985 6.45395C6.87204 6.54507 6.81663 6.62783 6.74678 6.6975Z" fill="black" stroke="white" stroke-width="2" mask="url(#path-1-inside-1_977:1934)"></path>
</svg>
</label>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- ===== Header end ===== -->
<!-- ===== Hero Start ===== -->
<section id="home">
<div class="af cf ef xj zj de ag la 2xl:ud-mx-[60px] og cn">
<div class="a">
<div class="lb od qd ia">
<div class="fc hm/2 nf">
<div class="_a ul zc wow fadeInUp" data-wow-delay=".2s">
<h1 class="kh qh _j dh il oh ll na">
Rocksh investment For
<span class="lh">Every Nigerians</span>
</h1>
<p class="kh _g ph ab">
Rocksh is a leading Nigerian fintech platform that enables
users to save and invest securely. Established in 2016, it
provides a user-friendly app designed to promote financial
discipline and wealth building.
</p>
<div class="lb qd">
<a href="#about" class="_g lh rh te be sf dg ii aj bb">
Explore
</a>
<a href="javascript:void(0)" class="lb qd lh _g qh _j yi ck gj ii glightbox">
<span class="pc zb ae mb qd sd te xe sh pa ii hj jj">
<svg width="15" height="18" viewbox="0 0 15 18" class="ff">
<path d="M15 9L-8.15666e-07 17.6603L-5.85622e-08 0.339746L15 9Z"></path>
</svg>
</span>
Watch Intro
</a>
</div>
</div>
</div>
<div class="fc hm/2 nf">
<div class="zg e ea _b wow fadeInUp" data-wow-delay=".25s">
<img src="images/hero-hero-image-2.svg" alt="hero-image" class="tc ka">
<span class="d fa i/2 t/2 hd/2 gd/2 _c fc rb re sj ye wj zh ae">
</span>
<span class="d fa i/2 t/2 hd/2 gd/2 ad fc ac re sj ye wj zh ae">
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===== Hero end ===== -->
<!-- ===== Awards start ===== -->
<section id="features" class="pg">
<div class="a">
<div class="lb sd ia">
<div class="fc nf">
<div class="bd ka zg cb wow fadeInUp" data-wow-delay=".2s">
<h2 class="jh eh pk qh _j ta">
What We Do
<!-- Our Recent Awards -->
</h2>
<p class="kh _g ph">
The platform offers diverse investment options, including
fixed-income instruments, agriculture, real estate, and
other opportunities vetted for security and reliability.
</p>
</div>
</div>
</div>
<div class="lb od ia">
<div class="fc zk/2 sn/3 nf">
<div class="re uj lf kk cl nm vn 2xl:ud-p-12 de _h na wow fadeInUp" data-wow-delay=".2s">
<div class="lb qd db">
<span class="qg">
<svg width="32" height="32" viewbox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="16" cy="16" r="16" fill="#8B5CF6"></circle>
<path d="M24 14.0968L18.248 13.5747L16 8L13.752 13.5747L8 14.0968L12.36 18.08L11.056 24L16 20.8589L20.944 24L19.632 18.08L24 14.0968Z" fill="white"></path>
</svg>
</span>
<span class="lh fh qh _j">
4.9 Rating
</span>
</div>
<div class="lb qd na">
<div class="lb qd">
<img src="images/award-person-1.png" alt="image" class="qc bc ie me ae">
<img src="images/award-person-2.png" alt="image" class="qc bc ie me ae eb">
<img src="images/award-person-3.png" alt="image" class="qc bc ie me ae eb">
</div>
<span class="kb rg kh _g qh _j">
+195K raters
</span>
</div>
<p class="_g ph ya">
Users can save money daily, weekly, or monthly with automatic
deductions, making it easier to achieve financial goals.
<!-- Lorem ipsum dolor sit amet, consec adipiscing elit In vulputate
vitae massa eu dapibus ligula. -->
</p>
<a href="javascript:void(0)" class="mb qd lh _g sh _i">
Rate Out Application
<span class="sg">
<svg width="28" height="28" viewbox="0 0 28 28" class="ff">
<path d="M16.3333 19.7633V15.0967H5.92666L5.89166 12.7517H16.3333V8.09668L22.1667 13.93L16.3333 19.7633Z"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="fc zk/2 sn/3 nf">
<div class="re uj lf kk cl nm vn 2xl:ud-p-12 de _h na wow fadeInUp" data-wow-delay=".25s">
<div class="lb qd db">
<span class="qg">
<svg width="32" height="32" viewbox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="16" cy="16" r="16" fill="#8B5CF6"></circle>
<path d="M19.3333 10.6666V9.33325H12.6667V10.6666H9.33334V15.3333C9.33334 16.0666 9.93334 16.6666 10.6667 16.6666H12.7333C13 17.9733 14.0267 18.9999 15.3333 19.2666V20.7199C13.3333 21.0266 13.3333 22.6666 13.3333 22.6666H18.6667C18.6667 22.6666 18.6667 21.0266 16.6667 20.7199V19.2666C17.9733 18.9999 19 17.9733 19.2667 16.6666H21.3333C22.0667 16.6666 22.6667 16.0666 22.6667 15.3333V10.6666H19.3333ZM10.6667 15.3333V11.9999H12.6667V15.3333H10.6667ZM21.3333 15.3333H19.3333V11.9999H21.3333V15.3333Z" fill="white"></path>
</svg>
</span>
<span class="lh fh qh _j">
Investify
</span>
</div>
<div class="lb qd ta">
<h3 class="lh bh qh _j">
Most profitable investment in
<span class="lh sh"> 2024 </span>
on the app
</h3>
</div>
<p class="_g ph ya">
This feature allows users to invest in pre-vetted, high-yield
opportunities while earning competitive returns.
<!-- Lorem ipsum dolor sit amet, consec adipiscing elit In vulputate
vitae massa eu dapibus ligula. -->
</p>
<a href="javascript:void(0)" class="mb qd lh _g sh _i">
Go to Reward
<span class="sg">
<svg width="28" height="28" viewbox="0 0 28 28" class="ff">
<path d="M16.3333 19.7633V15.0967H5.92666L5.89166 12.7517H16.3333V8.09668L22.1667 13.93L16.3333 19.7633Z"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="fc zk/2 sn/3 nf">
<div class="re uj lf kk cl nm vn 2xl:ud-p-12 de _h na wow fadeInUp" data-wow-delay=".3s">
<div class="lb qd db">
<img src="images/rockshsh-logo.png" alt="logo" style="height: 40px;">
</div>
<div class="lb qd ta">
<h3 class="lh bh qh _j">
Savings Targets
</h3>
</div>
<p class="_g ph ya">
Users can create personal or group targets to
fund projects or achieve milestones collaboratively.
<!-- Lorem ipsum dolor sit amet, consec adipiscing elit In vulputate
vitae massa eu dapibus ligula. -->
</p>
<a href="javascript:void(0)" class="mb qd lh _g sh _i">
Know More
<span class="sg">
<svg width="28" height="28" viewbox="0 0 28 28" class="ff">
<path d="M16.3333 19.7633V15.0967H5.92666L5.89166 12.7517H16.3333V8.09668L22.1667 13.93L16.3333 19.7633Z"></path>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- ===== Awards end ===== -->
<!-- ===== About start ===== -->
<section id="about" class="lg">
<div class="a">
<div class="lb od qd ia">
<div class="fc hm/2 nf">
<div class="zg _a ul wow fadeInUp" data-wow-delay=".2s">
<img src="images/about-about-image-1.svg" alt="image" class="ho">
</div>
</div>
<div class="fc hm/2 nf">
<div class="cd vl wow fadeInUp" data-wow-delay=".3s">
<span class="lh _g sh jb oa">
About Application
</span>
<h2 class="jh eh pk oh qh _j db">
Instant Payment Transfer SavesYou Time
</h2>
<p class="fh nh ph xa wl">
Schedule your posts for times when your audience is most active.
Choose from our best-time predictions, or create your own
publishing schedule.
</p>
<a href="javascript:void(0)" class="mb qd lh _g sh _i">
Know More About App
<span class="sg">
<svg width="28" height="28" viewbox="0 0 28 28" class="ff">
<path d="M16.3333 19.7633V15.0967H5.92666L5.89166 12.7517H16.3333V8.09668L22.1667 13.93L16.3333 19.7633Z"></path>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- ===== About end ===== -->
<!-- ===== About start ===== -->
<section class="tg">
<div class="a">
<div class="lb od qd ia">
<div class="fc hm/2 nf">
<div class="zg _a ul wow fadeInUp" data-wow-delay=".2s">
<img src="images/about-about-image-2.svg" alt="image" class="ho">
</div>
</div>
<div class="fc hm/2 ql nf">
<div class="cd wow fadeInUp" data-wow-delay=".3s">
<span class="lh _g sh jb oa">
Easy to Manage
</span>
<h2 class="jh eh pk oh qh _j db">
Manage your online account
</h2>
<p class="fh nh ph xa wl">
With Rocksh, you enjoy the peace of mind that comes with transparency,
no hidden fees, and insured investments. It is a trusted option for anyone
looking to grow their wealth sustainably.
<!-- Schedule your posts for times when your audience is most active.
Choose from our best-time predictions, or create your own
publishing schedule. -->
</p>
<a href="javascript:void(0)" class="mb qd lh _g sh _i">
Get the App Now!
<span class="sg">
<svg width="28" height="28" viewbox="0 0 28 28" class="ff">
<path d="M16.3333 19.7633V15.0967H5.92666L5.89166 12.7517H16.3333V8.09668L22.1667 13.93L16.3333 19.7633Z"></path>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- ===== About end ===== -->
<!-- ===== How Works start ===== -->
<section id="how-works" class="lg">
<div class="a">
<div class="lb sd ia">
<div class="fc nf">
<div class="bd ka zg cb wow fadeInUp" data-wow-delay=".2s">
<h2 class="jh eh pk qh _j ta">
How it Works?
</h2>
<p class="kh _g ph">
With Rocksh, you enjoy the peace of mind that comes with transparency,
no hidden fees, and insured investments. It is a trusted option for anyone
looking to grow their wealth sustainably </p>
</div>
</div>
</div>
<div class="lb od sd ia">
<div class="fc zk/2 hm/3 nf">
<div class="xa ka dd zg gj wow fadeInUp" data-wow-delay=".2s">
<div class="rc cc ka ee te ze lb qd sd sh hj jj ii ta">
<svg width="42" height="43" viewbox="0 0 42 43" class="ff">
<path d="M3.5 21.3843H7V30.1343H35V21.3843H38.5V30.1343C38.5 32.0768 36.9425 33.6343 35 33.6343H7C5.075 33.6343 3.5 32.0768 3.5 30.1343V21.3843ZM21 26.6343L30.7125 17.0793L28.2275 14.6118L22.75 20.0718V3.88428H19.25V20.0718L13.79 14.6118L11.305 17.0968L21 26.6343Z"></path>
</svg>
</div>
<h3 class="lh bh qk kl dn qh _j fb">
Download for Free
</h3>
<p class="kh _g ph">
With Rocksh, you enjoy the peace of mind that comes with transparency,
no hidden fees, and insured investments. It is a trusted option for anyone
looking to grow their wealth sustainably </p>
</div>
</div>
<div class="fc zk/2 hm/3 nf">
<div class="xa ka dd zg gj wow fadeInUp" data-wow-delay=".25s">
<div class="rc cc ka ee te ze lb qd sd sh hj jj ii ta">
<svg width="42" height="43" viewbox="0 0 42 43" class="ff">
<path d="M21 7.38428C22.8565 7.38428 24.637 8.12177 25.9497 9.43453C27.2625 10.7473 28 12.5278 28 14.3843C28 16.2408 27.2625 18.0213 25.9497 19.334C24.637 20.6468 22.8565 21.3843 21 21.3843C19.1435 21.3843 17.363 20.6468 16.0503 19.334C14.7375 18.0213 14 16.2408 14 14.3843C14 12.5278 14.7375 10.7473 16.0503 9.43453C17.363 8.12177 19.1435 7.38428 21 7.38428ZM21 24.8843C28.735 24.8843 35 28.0168 35 31.8843V35.3843H7V31.8843C7 28.0168 13.265 24.8843 21 24.8843Z"></path>
</svg>
</div>
<h3 class="lh bh qk kl dn qh _j fb">
Open an Account
</h3>
<p class="kh _g ph">
With Rocksh, you enjoy the peace of mind that comes with transparency,
no hidden fees, and insured investments. </p>
</div>
</div>
<div class="fc zk/2 hm/3 nf">
<div class="xa ka dd zg gj wow fadeInUp" data-wow-delay=".3s">
<div class="rc cc ka ee te ze lb qd sd sh hj jj ii ta">
<svg width="42" height="43" viewbox="0 0 42 43" class="ff">
<path d="M13.825 37.9568C10.5 35.0518 9.3625 30.4318 10.815 26.3543L14.5425 15.9768C14.9275 14.9093 16.38 14.7693 16.9575 15.7493L17.5 16.7118C17.92 17.3943 18.0075 18.2343 17.745 18.9868L16.03 23.7818L16.7825 24.4468L27.2125 12.6343C27.825 11.9343 28.875 11.8643 29.5925 12.4768C30.275 13.0893 30.345 14.1568 29.75 14.8393L21.9625 23.6418L22.9775 24.5343L32.515 13.7193C33.1275 13.0193 34.195 12.9493 34.8775 13.5618C35.5775 14.1743 35.6475 15.2593 35 15.9418L25.48 26.7568L26.495 27.6493L34.7025 18.3393C35.315 17.6393 36.3825 17.5693 37.065 18.1818C37.7475 18.7943 37.835 19.8618 37.2225 20.5093L29.015 29.8543L30.0125 30.7468L35.56 24.4643C36.1725 23.7643 37.24 23.6943 37.94 24.3068C38.64 24.9193 38.6925 25.9868 38.08 26.6343L28.98 36.9943C25.06 41.4568 18.27 41.8768 13.825 37.9568ZM20.2825 16.5193L25.2525 10.8843C25.6725 10.4118 26.1975 10.0093 26.775 9.78177L27.44 8.41677C27.86 7.59427 27.51 6.57927 26.67 6.17677C25.8475 5.77427 24.8325 6.12427 24.43 6.94677L20.0375 15.9418C20.125 16.1343 20.23 16.3268 20.2825 16.5193ZM19.25 14.3843V14.4718L24.115 4.54927C24.5 3.70927 24.1675 2.71177 23.3275 2.30927C22.505 1.89802 21.49 2.23927 21.0875 3.07927L16.4675 12.5468C17.605 12.7393 18.6025 13.3868 19.25 14.3843ZM8.3475 25.4618L12.075 15.0843C12.5475 13.7718 13.65 12.8793 14.9625 12.5818L18.7075 4.89927C19.11 4.05927 18.76 3.06177 17.9375 2.65927C17.0975 2.25677 16.1 2.58927 15.6975 3.42927L8.75 17.6043L7.875 17.1668L8.2425 12.0743C8.3125 11.2868 7.9975 10.4993 7.4375 9.93927L6.6325 9.13427C5.81 8.38177 4.4625 8.88927 4.375 10.0093L3.5 21.0168C3.2725 24.5868 4.8475 27.9993 7.6125 30.1343C7.5775 28.5943 7.805 27.0018 8.3475 25.4618Z"></path>
</svg>
</div>
<h3 class="lh bh qk kl dn qh _j fb">
Enjoy our App
</h3>
<p class="kh _g ph">
With Rocksh, you enjoy the peace of mind that comes with transparency,
no hidden fees, and insured investments. </p>
</div>
</div>
</div>
</div>
</section>
<!-- ===== How Works end ===== -->
<!-- ===== Call to Action start ===== -->
<section id="cta" class="tg">
<div class="a">
<div class="af cf ef xj zj de xf mk dl um xn wow fadeInUp" data-wow-delay=".2s">
<div class="lb od pd ia">
<div class="fc hm/2 nf">
<div class="ed ag">
<span class="lh _g sh jb oa">
Download Now!
</span>
<h2 class="jh eh pk oh qh _j gb">
Download our mobile application.
</h2>
<p class="lh _g nh ph ua">
Download Rocksh mobile banking app for IOS & Android to
manage your online money.
</p>
<div class="lb qd">
<a href="javascript:void(0)" class="lb qd te be wf qf nk ii aj hb fk">
<span class="ug">
<svg width="34" height="34" viewbox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 28.9958V4.9125C4 4.07667 4.48167 3.34 5.19 3L19.1442 16.9542L5.19 30.9083C4.48167 30.5542 4 29.8317 4 28.9958ZM23.5642 21.3742L8.32083 30.1858L20.3483 18.1583L23.5642 21.3742ZM28.31 15.2683C28.7917 15.6508 29.1458 16.2458 29.1458 16.9542C29.1458 17.6625 28.8342 18.2292 28.3383 18.6258L25.0942 20.4958L21.5525 16.9542L25.0942 13.4125L28.31 15.2683ZM8.32083 3.7225L23.5642 12.5342L20.3483 15.75L8.32083 3.7225Z" fill="white"></path>
</svg>
</span>
<span class="lh rh fh">
<span class="jb gh rh vh">
Get rocksh on
</span>
Google Play
</span>
</a>
<a href="javascript:void(0)" class="lb qd se tj be wf qf nk ii bj">
<span class="ug rh ak">
<svg width="34" height="34" viewbox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M26.5058 27.625C25.33 29.3817 24.0833 31.0958 22.185 31.1242C20.2866 31.1667 19.6775 30.005 17.5241 30.005C15.3566 30.005 14.6908 31.0958 12.8916 31.1667C11.0358 31.2375 9.6333 29.2967 8.4433 27.5825C6.0208 24.0833 4.16497 17.6375 6.6583 13.3025C7.8908 11.1492 10.1008 9.78916 12.495 9.74666C14.3083 9.71833 16.0366 10.9792 17.1558 10.9792C18.2608 10.9792 20.3575 9.46333 22.5533 9.68999C23.4741 9.73249 26.0525 10.0583 27.71 12.495C27.5825 12.58 24.6358 14.3083 24.6641 17.8925C24.7066 22.1708 28.4183 23.6017 28.4608 23.6158C28.4183 23.715 27.8658 25.6558 26.5058 27.625ZM18.4166 4.95833C19.4508 3.78249 21.165 2.88999 22.5816 2.83333C22.7658 4.49083 22.1 6.16249 21.1083 7.35249C20.1308 8.55666 18.5158 9.49166 16.9291 9.36416C16.7166 7.73499 17.51 6.03499 18.4166 4.95833Z" fill="currentColor"></path>
</svg>
</span>
<span class="lh rh ak fh">
<span class="jb gh rh ak vh bk">
Download rocksh from
</span>
App Store
</span>
</a>
</div>
</div>
</div>
<div class="fc hm/2 nf">
<div class="e fc lb rd pd">
<div class="fc">
<img src="images/cta-cta-image-1.svg" alt="image" class="e ea ei">
</div>
<div class="fc ib">
<img src="images/cta-cta-image-2.svg" alt="image" class="e ha ei">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===== Call to Action end ===== -->
<!-- ===== Pricing start ===== -->
<section id="pricing" class="lg">
<div class="a">
<div class="lb sd ia">
<div class="fc nf">
<div class="bd ka zg cb wow fadeInUp" data-wow-delay=".2s">
<h2 class="jh eh pk qh _j ta">
Flexible Plans
</h2>
<p class="kh _g ph">
with Rocksh, You can Schedule your posts for times when your affiliate audience
is most active. Choose from our best-time predictions.
</p>
</div>
</div>
</div>
<div class="lb od ia">
<div class="fc zk/2 hm/3 nf">
<div class="e yd eg fg kk el vm yn 2xl:ud-px-12 de ie ne pj xa wow fadeInUp" data-wow-delay=".25s">
<span class="lh bh qh _j oa jb">
Basic Plan
</span>
<h3 class="lh qh _j hh">
$35
<span class="mh _g ph _j">
/month
</span>
</h3>
<div class="vg ud">
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
Life time free updates!
</p>
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
Unlimited transactions
</p>
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
Free credit-card
</p>
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
1 year premium support
</p>
</div>
<div class="wg">
<a href="/#pricing" class="te fc lb qd sd rh _g lh mf be ii aj">
Choose Basic Plan
</a>
</div>
<div>
<span class="d g m fa">
<svg width="294" height="190" viewbox="0 0 294 190" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M199.25 163.88C109.57 215.656 -5.10297 184.93 -56.8797 95.2499C-108.656 5.57007 -77.9297 -109.103 11.7501 -160.88C101.43 -212.656 216.103 -181.93 267.88 -92.25C319.657 -2.57014 288.93 112.103 199.25 163.88Z" fill="url(#paint0_linear_100_168)"></path>
<defs>
<lineargradient id="paint0_linear_100_168" x1="-53.0679" y1="-96.4761" x2="331.837" y2="237.372" gradientunits="userSpaceOnUse">
<stop stop-color="#E4F2FE"></stop>
<stop offset="1" stop-color="#E4F2FE" stop-opacity="0"></stop>
</lineargradient>
</defs>
</svg>
</span>
<span class="d g o fa">
<svg width="138" height="104" viewbox="0 0 138 104" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M161 23.5C161 67.9589 124.959 104 80.5 104C36.0411 104 0 67.9589 0 23.5C0 -20.9589 36.0411 -57 80.5 -57C124.959 -57 161 -20.9589 161 23.5Z" fill="url(#paint0_linear_100_167)"></path>
<defs>
<lineargradient id="paint0_linear_100_167" x1="149.5" y1="72.5" x2="-51.5" y2="-35" gradientunits="userSpaceOnUse">
<stop stop-color="#FFEEFE"></stop>
<stop offset="1" stop-color="#FFEEFE" stop-opacity="0"></stop>
</lineargradient>
</defs>
</svg>
</span>
<span class="d g u fa">
<svg width="63" height="30" viewbox="0 0 63 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.21563" cy="10.1013" r="1.14106" transform="rotate(-118.771 7.21563 10.1013)" fill="#8B5CF6"></circle>
<circle cx="24.8191" cy="0.43515" r="1.14106" transform="rotate(-118.771 24.8191 0.43515)" fill="#8B5CF6"></circle>
<circle cx="16.7716" cy="27.5037" r="1.14106" transform="rotate(-118.771 16.7716 27.5037)" fill="#8B5CF6"></circle>
<circle cx="2.38256" cy="1.2995" r="1.14106" transform="rotate(-118.771 2.38256 1.2995)" fill="#8B5CF6"></circle>
<circle cx="25.5737" cy="22.6717" r="1.14106" transform="rotate(-118.771 25.5737 22.6717)" fill="#8B5CF6"></circle>
<circle cx="34.3754" cy="17.8386" r="1.14106" transform="rotate(-118.771 34.3754 17.8386)" fill="#8B5CF6"></circle>
<circle cx="43.1771" cy="13.0056" r="1.14106" transform="rotate(-118.771 43.1771 13.0056)" fill="#8B5CF6"></circle>
<circle cx="51.9788" cy="8.17249" r="1.14106" transform="rotate(-118.771 51.9788 8.17249)" fill="#8B5CF6"></circle>
<circle cx="60.5805" cy="3.44925" r="1.14106" transform="rotate(-118.771 60.5805 3.44925)" fill="#8B5CF6"></circle>
<circle cx="11.9389" cy="18.7029" r="1.14106" transform="rotate(-118.771 11.9389 18.7029)" fill="#8B5CF6"></circle>
<circle cx="20.7405" cy="13.8698" r="1.14106" transform="rotate(-118.771 20.7405 13.8698)" fill="#8B5CF6"></circle>
<circle cx="29.5423" cy="9.0368" r="1.14106" transform="rotate(-118.771 29.5423 9.0368)" fill="#8B5CF6"></circle>
<circle cx="38.344" cy="4.2038" r="1.14106" transform="rotate(-118.771 38.344 4.2038)" fill="#8B5CF6"></circle>
<circle cx="47.1458" cy="-0.62915" r="1.14106" transform="rotate(-118.771 47.1458 -0.62915)" fill="#8B5CF6"></circle>
</svg>
</span>
</div>
</div>
</div>
<div class="fc zk/2 hm/3 nf">
<div class="e yd eg fg kk el vm yn 2xl:ud-px-12 de ie oe xa wow fadeInUp" data-wow-delay=".3s">
<span class="lh bh qh _j oa jb">
Popular Plan
</span>
<h3 class="lh qh _j hh">
$99
<span class="mh _g ph _j">
/month
</span>
</h3>
<div class="vg ud">
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
Life time free updates!
</p>
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
Unlimited transactions
</p>
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
Free credit-card
</p>
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
2 year premium support
</p>
</div>
<div class="wg">
<a href="/#pricing" class="te fc lb qd sd rh _g lh mf be ii aj">
Choose Popular Plan
</a>
</div>
<div>
<span class="d g m fa">
<svg width="294" height="190" viewbox="0 0 294 190" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M199.25 163.88C109.57 215.656 -5.10297 184.93 -56.8797 95.2499C-108.656 5.57007 -77.9297 -109.103 11.7501 -160.88C101.43 -212.656 216.103 -181.93 267.88 -92.25C319.657 -2.57014 288.93 112.103 199.25 163.88Z" fill="url(#paint0_linear_100_168)"></path>
<defs>
<lineargradient id="paint0_linear_100_168" x1="-53.0679" y1="-96.4761" x2="331.837" y2="237.372" gradientunits="userSpaceOnUse">
<stop stop-color="#E4F2FE"></stop>
<stop offset="1" stop-color="#E4F2FE" stop-opacity="0"></stop>
</lineargradient>
</defs>
</svg>
</span>
<span class="d g o fa">
<svg width="138" height="104" viewbox="0 0 138 104" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M161 23.5C161 67.9589 124.959 104 80.5 104C36.0411 104 0 67.9589 0 23.5C0 -20.9589 36.0411 -57 80.5 -57C124.959 -57 161 -20.9589 161 23.5Z" fill="url(#paint0_linear_100_167)"></path>
<defs>
<lineargradient id="paint0_linear_100_167" x1="149.5" y1="72.5" x2="-51.5" y2="-35" gradientunits="userSpaceOnUse">
<stop stop-color="#FFEEFE"></stop>
<stop offset="1" stop-color="#FFEEFE" stop-opacity="0"></stop>
</lineargradient>
</defs>
</svg>
</span>
<span class="d g u fa">
<svg width="63" height="30" viewbox="0 0 63 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.21563" cy="10.1013" r="1.14106" transform="rotate(-118.771 7.21563 10.1013)" fill="#8B5CF6"></circle>
<circle cx="24.8191" cy="0.43515" r="1.14106" transform="rotate(-118.771 24.8191 0.43515)" fill="#8B5CF6"></circle>
<circle cx="16.7716" cy="27.5037" r="1.14106" transform="rotate(-118.771 16.7716 27.5037)" fill="#8B5CF6"></circle>
<circle cx="2.38256" cy="1.2995" r="1.14106" transform="rotate(-118.771 2.38256 1.2995)" fill="#8B5CF6"></circle>
<circle cx="25.5737" cy="22.6717" r="1.14106" transform="rotate(-118.771 25.5737 22.6717)" fill="#8B5CF6"></circle>
<circle cx="34.3754" cy="17.8386" r="1.14106" transform="rotate(-118.771 34.3754 17.8386)" fill="#8B5CF6"></circle>
<circle cx="43.1771" cy="13.0056" r="1.14106" transform="rotate(-118.771 43.1771 13.0056)" fill="#8B5CF6"></circle>
<circle cx="51.9788" cy="8.17249" r="1.14106" transform="rotate(-118.771 51.9788 8.17249)" fill="#8B5CF6"></circle>
<circle cx="60.5805" cy="3.44925" r="1.14106" transform="rotate(-118.771 60.5805 3.44925)" fill="#8B5CF6"></circle>
<circle cx="11.9389" cy="18.7029" r="1.14106" transform="rotate(-118.771 11.9389 18.7029)" fill="#8B5CF6"></circle>
<circle cx="20.7405" cy="13.8698" r="1.14106" transform="rotate(-118.771 20.7405 13.8698)" fill="#8B5CF6"></circle>
<circle cx="29.5423" cy="9.0368" r="1.14106" transform="rotate(-118.771 29.5423 9.0368)" fill="#8B5CF6"></circle>
<circle cx="38.344" cy="4.2038" r="1.14106" transform="rotate(-118.771 38.344 4.2038)" fill="#8B5CF6"></circle>
<circle cx="47.1458" cy="-0.62915" r="1.14106" transform="rotate(-118.771 47.1458 -0.62915)" fill="#8B5CF6"></circle>
</svg>
</span>
</div>
</div>
</div>
<div class="fc zk/2 hm/3 nf">
<div class="e yd eg fg sm:black-12 el vm yn 2xl:ud-px-12 de ie ne qj xa wow fadeInUp" data-wow-delay=".35s">
<span class="lh bh qh _j oa jb">
Golden Plan
</span>
<h3 class="lh qh _j hh">
$159
<span class="mh _g ph _j">
/month
</span>
</h3>
<div class="vg ud">
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
Life time free updates!
</p>
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
Unlimited transactions
</p>
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
Free credit-card
</p>
<p class="lb qd kh _g ph">
<span class="ug">
<svg width="20" height="20" viewbox="0 0 20 20" class="ff">
<path d="M17.5 5.83333L7.50002 15.8333L2.91669 11.25L4.09169 10.075L7.50002 13.475L16.325 4.65833L17.5 5.83333Z"></path>
</svg>
</span>
Lifetime premium support
</p>
</div>
<div class="wg">
<a href="/#pricing" class="te fc lb qd sd rh _g lh mf be ii aj">
Choose Golden Plan
</a>
</div>
<div>
<span class="d g m fa">
<svg width="294" height="190" viewbox="0 0 294 190" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M199.25 163.88C109.57 215.656 -5.10297 184.93 -56.8797 95.2499C-108.656 5.57007 -77.9297 -109.103 11.7501 -160.88C101.43 -212.656 216.103 -181.93 267.88 -92.25C319.657 -2.57014 288.93 112.103 199.25 163.88Z" fill="url(#paint0_linear_100_168)"></path>
<defs>
<lineargradient id="paint0_linear_100_168" x1="-53.0679" y1="-96.4761" x2="331.837" y2="237.372" gradientunits="userSpaceOnUse">
<stop stop-color="#E4F2FE"></stop>
<stop offset="1" stop-color="#E4F2FE" stop-opacity="0"></stop>
</lineargradient>
</defs>
</svg>
</span>
<span class="d g o fa">
<svg width="138" height="104" viewbox="0 0 138 104" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M161 23.5C161 67.9589 124.959 104 80.5 104C36.0411 104 0 67.9589 0 23.5C0 -20.9589 36.0411 -57 80.5 -57C124.959 -57 161 -20.9589 161 23.5Z" fill="url(#paint0_linear_100_167)"></path>
<defs>
<lineargradient id="paint0_linear_100_167" x1="149.5" y1="72.5" x2="-51.5" y2="-35" gradientunits="userSpaceOnUse">
<stop stop-color="#FFEEFE"></stop>
<stop offset="1" stop-color="#FFEEFE" stop-opacity="0"></stop>
</lineargradient>
</defs>
</svg>
</span>
<span class="d g u fa">
<svg width="63" height="30" viewbox="0 0 63 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="7.21563" cy="10.1013" r="1.14106" transform="rotate(-118.771 7.21563 10.1013)" fill="#8B5CF6"></circle>
<circle cx="24.8191" cy="0.43515" r="1.14106" transform="rotate(-118.771 24.8191 0.43515)" fill="#8B5CF6"></circle>
<circle cx="16.7716" cy="27.5037" r="1.14106" transform="rotate(-118.771 16.7716 27.5037)" fill="#8B5CF6"></circle>
<circle cx="2.38256" cy="1.2995" r="1.14106" transform="rotate(-118.771 2.38256 1.2995)" fill="#8B5CF6"></circle>
<circle cx="25.5737" cy="22.6717" r="1.14106" transform="rotate(-118.771 25.5737 22.6717)" fill="#8B5CF6"></circle>
<circle cx="34.3754" cy="17.8386" r="1.14106" transform="rotate(-118.771 34.3754 17.8386)" fill="#8B5CF6"></circle>
<circle cx="43.1771" cy="13.0056" r="1.14106" transform="rotate(-118.771 43.1771 13.0056)" fill="#8B5CF6"></circle>
<circle cx="51.9788" cy="8.17249" r="1.14106" transform="rotate(-118.771 51.9788 8.17249)" fill="#8B5CF6"></circle>
<circle cx="60.5805" cy="3.44925" r="1.14106" transform="rotate(-118.771 60.5805 3.44925)" fill="#8B5CF6"></circle>
<circle cx="11.9389" cy="18.7029" r="1.14106" transform="rotate(-118.771 11.9389 18.7029)" fill="#8B5CF6"></circle>
<circle cx="20.7405" cy="13.8698" r="1.14106" transform="rotate(-118.771 20.7405 13.8698)" fill="#8B5CF6"></circle>
<circle cx="29.5423" cy="9.0368" r="1.14106" transform="rotate(-118.771 29.5423 9.0368)" fill="#8B5CF6"></circle>
<circle cx="38.344" cy="4.2038" r="1.14106" transform="rotate(-118.771 38.344 4.2038)" fill="#8B5CF6"></circle>
<circle cx="47.1458" cy="-0.62915" r="1.14106" transform="rotate(-118.771 47.1458 -0.62915)" fill="#8B5CF6"></circle>
</svg>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===== Pricing end ===== -->
<!-- ===== Testimonial start ===== -->
<section id="testimonial" class="tg">
<div class="ue uj lg xg">
<div class="a">
<div class="lb sd ia">
<div class="fc nf">
<div class="bd ka zg cb wow fadeInUp" data-wow-delay=".2s">
<h2 class="jh eh pk qh _j ta">
What Clients Say?
</h2>
<p class="kh _g ph">
with Rocksh, there are no issues with your funds, affiliate or investments
</p>
</div>
</div>
</div>
<div class="lb od ia rl mn">
<div class="fc zk/2 hm/3 nf wm zn">
<div class="re sj lf sm vm vn de ge e ea yd ua gj wi ii ai wow fadeInUp" data-wow-delay=".25s">
<p class="lh _g qh _j ya jj">
with Rocksh, there are no issues with your funds, affiliate or investments
with Rocksh, there are no issues with your funds, affiliate or investments
with Rocksh, there are no issues with your funds, affiliate or investments
</p>
<div class="lb qd">
<div class="sc dc ae yd qa">
<img src="images/testimonial-image-1.png" alt="image" class="fc">
</div>
<div>
<h3 class="lh ah qh _j jj">
Emmanuel Macron
</h3>
<p class="kh gh ph jj kj">
mr president
</p>
</div>
</div>
<span class="d g o fa sh jj">
<svg width="63" height="30" viewbox="0 0 63 30" class="ff">
<circle cx="7.21563" cy="10.1013" r="1.14106" transform="rotate(-118.771 7.21563 10.1013)"></circle>
<circle cx="24.8191" cy="0.43515" r="1.14106" transform="rotate(-118.771 24.8191 0.43515)"></circle>
<circle cx="16.7716" cy="27.5037" r="1.14106" transform="rotate(-118.771 16.7716 27.5037)"></circle>
<circle cx="2.38256" cy="1.2995" r="1.14106" transform="rotate(-118.771 2.38256 1.2995)"></circle>
<circle cx="25.5737" cy="22.6717" r="1.14106" transform="rotate(-118.771 25.5737 22.6717)"></circle>
<circle cx="34.3754" cy="17.8386" r="1.14106" transform="rotate(-118.771 34.3754 17.8386)"></circle>
<circle cx="43.1771" cy="13.0056" r="1.14106" transform="rotate(-118.771 43.1771 13.0056)"></circle>
<circle cx="51.9788" cy="8.17249" r="1.14106" transform="rotate(-118.771 51.9788 8.17249)"></circle>
<circle cx="60.5805" cy="3.44925" r="1.14106" transform="rotate(-118.771 60.5805 3.44925)"></circle>
<circle cx="11.9389" cy="18.7029" r="1.14106" transform="rotate(-118.771 11.9389 18.7029)"></circle>
<circle cx="20.7405" cy="13.8698" r="1.14106" transform="rotate(-118.771 20.7405 13.8698)"></circle>
<circle cx="29.5423" cy="9.0368" r="1.14106" transform="rotate(-118.771 29.5423 9.0368)"></circle>
<circle cx="38.344" cy="4.2038" r="1.14106" transform="rotate(-118.771 38.344 4.2038)"></circle>
<circle cx="47.1458" cy="-0.62915" r="1.14106" transform="rotate(-118.771 47.1458 -0.62915)"></circle>
</svg>
</span>
</div>
</div>
<div class="fc zk/2 hm/3 nf wm zn">
<div class="re sj lf sm vm vn de ge e ea yd ua gj wi ii ai wow fadeInUp" data-wow-delay=".3s">
<p class="lh _g qh _j ya jj">
with Rocksh, there are no issues with your funds, affiliate or investments
with Rocksh, there are no issues with your funds, affiliate or investments
with Rocksh, there are no issues with your funds, affiliate or investments
<!-- Lorem ipsum dolor sit amet, consect adipiscing elit.
Pellentesque dignissim nisi a odio laoreet luctus. Ut sed
diam, quis bibendum ex. -->
</p>
<div class="lb qd">
<div class="sc dc ae yd qa">
<img src="images/testimonial-image-2.png" alt="image" class="fc">
</div>
<div>
<h3 class="lh ah qh _j jj">
Alex Glorio
</h3>
<p class="kh gh ph jj kj">
Graphics Designer
</p>
</div>
</div>
<span class="d g o fa sh jj">
<svg width="63" height="30" viewbox="0 0 63 30" class="ff">
<circle cx="7.21563" cy="10.1013" r="1.14106" transform="rotate(-118.771 7.21563 10.1013)"></circle>
<circle cx="24.8191" cy="0.43515" r="1.14106" transform="rotate(-118.771 24.8191 0.43515)"></circle>
<circle cx="16.7716" cy="27.5037" r="1.14106" transform="rotate(-118.771 16.7716 27.5037)"></circle>
<circle cx="2.38256" cy="1.2995" r="1.14106" transform="rotate(-118.771 2.38256 1.2995)"></circle>
<circle cx="25.5737" cy="22.6717" r="1.14106" transform="rotate(-118.771 25.5737 22.6717)"></circle>
<circle cx="34.3754" cy="17.8386" r="1.14106" transform="rotate(-118.771 34.3754 17.8386)"></circle>
<circle cx="43.1771" cy="13.0056" r="1.14106" transform="rotate(-118.771 43.1771 13.0056)"></circle>
<circle cx="51.9788" cy="8.17249" r="1.14106" transform="rotate(-118.771 51.9788 8.17249)"></circle>
<circle cx="60.5805" cy="3.44925" r="1.14106" transform="rotate(-118.771 60.5805 3.44925)"></circle>
<circle cx="11.9389" cy="18.7029" r="1.14106" transform="rotate(-118.771 11.9389 18.7029)"></circle>
<circle cx="20.7405" cy="13.8698" r="1.14106" transform="rotate(-118.771 20.7405 13.8698)"></circle>
<circle cx="29.5423" cy="9.0368" r="1.14106" transform="rotate(-118.771 29.5423 9.0368)"></circle>
<circle cx="38.344" cy="4.2038" r="1.14106" transform="rotate(-118.771 38.344 4.2038)"></circle>
<circle cx="47.1458" cy="-0.62915" r="1.14106" transform="rotate(-118.771 47.1458 -0.62915)"></circle>
</svg>
</span>
</div>
</div>
<div class="fc zk/2 hm/3 nf wm zn">
<div class="re sj lf sm vm vn de ge e ea yd ua gj wi ii ai wow fadeInUp" data-wow-delay=".35s">
<p class="lh _g qh _j ya jj">
with Rocksh, there are no issues with your funds, affiliate or investments
with Rocksh, there are no issues with your funds, affiliate or investments
with Rocksh, there are no issues with your funds, affiliate or investments
<!-- Lorem ipsum dolor sit amet, consect adipiscing elit.
Pellentesque dignissim nisi a odio laoreet luctus. Ut sed
diam, quis bibendum ex. -->
</p>
<div class="lb qd">
<div class="sc dc ae yd qa">
<img src="images/testimonial-image-3.png" alt="image" class="fc">
</div>
<div>
<h3 class="lh ah qh _j jj">
Jonathon Smith
</h3>
<p class="kh gh ph jj kj">
UI/UX Designer
</p>
</div>
</div>
<span class="d g o fa sh jj">
<svg width="63" height="30" viewbox="0 0 63 30" class="ff">
<circle cx="7.21563" cy="10.1013" r="1.14106" transform="rotate(-118.771 7.21563 10.1013)"></circle>
<circle cx="24.8191" cy="0.43515" r="1.14106" transform="rotate(-118.771 24.8191 0.43515)"></circle>
<circle cx="16.7716" cy="27.5037" r="1.14106" transform="rotate(-118.771 16.7716 27.5037)"></circle>
<circle cx="2.38256" cy="1.2995" r="1.14106" transform="rotate(-118.771 2.38256 1.2995)"></circle>
<circle cx="25.5737" cy="22.6717" r="1.14106" transform="rotate(-118.771 25.5737 22.6717)"></circle>
<circle cx="34.3754" cy="17.8386" r="1.14106" transform="rotate(-118.771 34.3754 17.8386)"></circle>
<circle cx="43.1771" cy="13.0056" r="1.14106" transform="rotate(-118.771 43.1771 13.0056)"></circle>
<circle cx="51.9788" cy="8.17249" r="1.14106" transform="rotate(-118.771 51.9788 8.17249)"></circle>
<circle cx="60.5805" cy="3.44925" r="1.14106" transform="rotate(-118.771 60.5805 3.44925)"></circle>
<circle cx="11.9389" cy="18.7029" r="1.14106" transform="rotate(-118.771 11.9389 18.7029)"></circle>
<circle cx="20.7405" cy="13.8698" r="1.14106" transform="rotate(-118.771 20.7405 13.8698)"></circle>
<circle cx="29.5423" cy="9.0368" r="1.14106" transform="rotate(-118.771 29.5423 9.0368)"></circle>
<circle cx="38.344" cy="4.2038" r="1.14106" transform="rotate(-118.771 38.344 4.2038)"></circle>
<circle cx="47.1458" cy="-0.62915" r="1.14106" transform="rotate(-118.771 47.1458 -0.62915)"></circle>
</svg>
</span>
</div>
</div>
<div class="fc zk/2 hm/3 nf wm zn">
<div class="re sj lf sm vm vn de ge e ea yd ua gj wi ii ai wow fadeInUp" data-wow-delay=".4s">
<p class="lh _g qh _j ya jj">
Lorem ipsum dolor sit amet, consect adipiscing elit.
Pellentesque dignissim nisi a odio laoreet luctus. Ut sed
diam, quis bibendum ex.
</p>
<div class="lb qd">
<div class="sc dc ae yd qa">
<img src="images/testimonial-image-4.png" alt="image" class="fc">
</div>
<div>
<h3 class="lh ah qh _j jj">
Devid Miller
</h3>
<p class="kh gh ph jj kj">
Product Designer
</p>
</div>
</div>
<span class="d g o fa sh jj">
<svg width="63" height="30" viewbox="0 0 63 30" class="ff">
<circle cx="7.21563" cy="10.1013" r="1.14106" transform="rotate(-118.771 7.21563 10.1013)"></circle>
<circle cx="24.8191" cy="0.43515" r="1.14106" transform="rotate(-118.771 24.8191 0.43515)"></circle>
<circle cx="16.7716" cy="27.5037" r="1.14106" transform="rotate(-118.771 16.7716 27.5037)"></circle>
<circle cx="2.38256" cy="1.2995" r="1.14106" transform="rotate(-118.771 2.38256 1.2995)"></circle>
<circle cx="25.5737" cy="22.6717" r="1.14106" transform="rotate(-118.771 25.5737 22.6717)"></circle>
<circle cx="34.3754" cy="17.8386" r="1.14106" transform="rotate(-118.771 34.3754 17.8386)"></circle>
<circle cx="43.1771" cy="13.0056" r="1.14106" transform="rotate(-118.771 43.1771 13.0056)"></circle>
<circle cx="51.9788" cy="8.17249" r="1.14106" transform="rotate(-118.771 51.9788 8.17249)"></circle>
<circle cx="60.5805" cy="3.44925" r="1.14106" transform="rotate(-118.771 60.5805 3.44925)"></circle>