-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1350 lines (1034 loc) · 74.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.0">
<title>RazorPay Clone-Best Payment Solution for Online Payments India</title>
<script src="https://unpkg.com/feather-icons"></script>
<!-- Linking The Favicon -->
<link rel="icon" href="data:image/png;base64,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">
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<style>
.corefeatures_Section{
background-size: 100% 100%;
padding-top: 12rem;
padding-bottom: 12rem;
padding-right: 4.5rem;
}
.moveImage{
animation: 10s infinite linear moveCompany;
}
.cta-section{
background-size: 100% 100%;
padding-top: 4rem;
padding-bottom: 10rem;
}
@keyframes moveCompany {
0% {
top: 0;
}
100% {
top: -50%;
}
}
</style>
<link rel="stylesheet" href="/assets/index-0d005bf6.css">
</head>
<body>
<body class="overflow-x-hidden">
<!-- NavBar -->
<nav class="bg-deepBlue">
<div class="relative w-[1080px] mx-auto flex items-center justify-between">
<a href="" class="cursor-pointer py-7 pr-7">
<img src="/assets/logo-803a4a65.svg" alt="Error" width="125px" height="30px">
</a>
<ul class="flex gap-6">
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group"><a href="#">Payments</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block animate-shake transition-all duration-200"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group"><a href="#">Banking</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block animate-shake transition-all duration-200"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group"><a href="#">Coorporate Card</a>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group"><a href="#">Payroll</a>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group"><a href="#">Resources</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block animate-shake transition-all duration-200"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group"><a href="#">Support</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block animate-shake transition-all duration-200"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group"><a href="#">Pricing</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block animate-shake transition-all duration-200"></div>
</li>
</ul>
<div class="flex gap-6">
<img src="/assets/india-flag-62cf945b.svg" alt="Error" width="28px" height="20px">
<button class="text-white py-3 px-5 font-mullish border rounded-sm border-lightBlue text-sm font-bold">Log in</button>
<button class="py-3 px-4 font-mullish rounded-sm text-sm font-bold text-lightBlue300 border border-l-greenLight bg-white transition-all duration-200 hover:text-lightBlue500">Sign Up</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="relative bg-deepBlue">
<!-- Main Div part that contains both left and right part -->
<div class="w-[85%] max-w-[1080px] flex flex-row justify-between items-center mx-auto ">
<!-- Left Part -->
<div class="space-y-8">
<h1 class="font-mullish font-bold text-[40px] leading-[1.2] text-white">Power your finance, grow your business</h1>
<div class="w-6 h-1 bg-greenLight"></div>
<p class="font-mullish text-[18px] leading-7 text-white opacity-70">Accept payments from customers. Automate payouts to vendors & employees. Never run out of working capital.</p>
<button class="bg-lightBlue text-white rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200 py-[16px] px-[14px] flex gap-3 pl-[18px]">Sign Up Now <img src="/assets/arrow-right-solid-240814c4.svg" alt="Error" width="13px" height="20px" class="mt-[6px] mr-4 "></button>
</div>
<!-- Right Part -->
<img src="/assets/hero-illustration-783a8736.jpg" alt="Error" class="w-full max-w-[680px]">
</div>
<!-- Imgae Part of triangular part -->
<div class="absolute left-0 right-0 w-[103%]">
<img src="/assets/hero-shape-55e07e29.svg" alt="Error" class="w-full">
</div>
</section>
<!-- Feature Section 1-->
<section class="relative mt-[190px] overflow-hidden">
<img src="data:image/png;base64,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" alt="Error" loading="lazy" width="233" height="167" class="absolute -top=[8rem] left-[10rem] inline-block ">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOkAAACnCAMAAADDu4vNAAAAOVBMVEUAAADT5PnT5fjj4//S5PLS5PbS5Pja5/nY4vnT5/fR5PbV5frBzOXZ5/nR4/7T5PnP3/TS4vjV5vv5nSPYAAAAE3RSTlMATEIJEzkmHA4hKy8KFxw0MD49U7XcFQAAB5ZJREFUeNrt3ed22zAMBWDuKVqW3/9hO1ytACbIQnbTc3j/9euKIg/5RgTFzxgrpcpa7MHN/7THhRYRcz0Wv9iDsFk+48Qe22lxJ73a7WDLHyvQ1NHUHzOIhX4Lq/0+1Cwl+HJnxOxm+yEsm5XN1Gam0cJKut80ZfuherlHPHOVqdVc3exqCbF8mVkpwQmk7LafUnBS1cHMBbbBflKno02Iraf0bPKQu3iGsvSkiTKHWHyaRiwgZo52Y1g5HYGtHSk0TVlCzD0tIGYqRh29p03Br0zIRiPPX5/po5XXFigzTzNnS3KPh89kWZDnqWm0gJiu2IKYJExgBr+bSoiAvC6afnsgNiOWV/OIxX5LyGu5e2Hx8J6zxl1sCbHcbWKLRWwB33QxfbGowLWFcPKlPTQ0+05L0KbVxMHy02Zg+6NB+3m+m/V3d0stFi82x7D00kZGRkZGRkZGRl5n8t6828I/MnMwbffPPzULT3PQFGmmz24nWxBT0Api/mgBfgLa7VG3gthttRmxXDe3WkLMMU0r8MmZsrSZ7DaHWKxZQKwg5ne7IVaEiEhDkgkLiIlOmxGzjbYgpuq2nP9WQv4lh/xLsWKSsNuTJsoKYuZpGrFwtICaPGTua0Gnd7agsa8FLaRddqSp50hxC4y2uyCPB382e9Ej1TdaaX2k9pk+WkDNwT6VZQk12KDaj9sE3j1Ic2KNhKb7LSLmVwuImX4z+xvloVLELayWCZMVc7v5i83RpjO4KlstXmweXnE+MCvQrKEsIGaWL2ZMEHveZdNX0p+ykZGRkZGRkQvj092Ziy18sfjT9Fe73+MnrWy3FoA6azlafNrcaJljgjAnYXeZXpsTovOODr6JqqXVHnXLNbO72eOnDQ1uMeNZQMzvNiOWGs31mtstEj0gYTNilrAJ6/cqpi4ytBvsu8OO7gYnym6vLVBWsDvngIFukNEDEgZ6QNL43aDv7Ab5d73yu0H6nBbKDHnXsq+YIqz8MUmYAYb3gKHRNGoe/omjqdUcYeJNluudn220/PwlqJowWzaLSF/oG600mqmuJJA1U69sWmCnpjFTnRbbTN36LaxWEAuvzS9Sqr0/u8jCkab4y+5fTP20pI+mHWKZa+4gW332DUxfbiMjIyMjIyMXxqTHw940w8Tf2f3xmD9pDl5DilSx8BeWkf5xRsy2me60x29zyMrmVLVQtYzYvJmGn41Uv6nNRM30wdpX8Pl+s70WEXN1y6slxPKp1shI5zAzVmUujaYIm4jOr3NVpmzujGhjrLSlOqP+ldLQDGP1NKsbDP+2G7wzzp/jroiHBnvAitHd4Ez2gNAKafTz9NzvQdOvbfoba1kpzX89jsDI19QZsdxr+WwJnBbc8mYGsYCsbNZVW9pswkz9nTnQvdWvkUzdpvzHQrP1X/ssiKmnPRCzf0znRVknDsHN9FiENn+xgtkMzb8y32hFjIyMjIyM0OH3SMo6DQx2RgravcfEdTYr0EuVWYEeye8Gr4dog/2QQSwgnVHgdEbMayn8upfRLc2IWcSWzTRqsB+qmiZ7JENM0vtkj+QOxpjWlxFLQszkxD1+j6S4PdJudGcEjT+FT3Cm8H26Ryr/VY/kOFP4WN3gO3skz+iRzJU9Ev+5S/VIjG5JcHqk67slspvnWzqb634/De2T9Pjd0nRZt4T/rM0RnVHnz9qmVOmRNGmwH7KvzdZ6pGTVvHdBu8UvltvMcM0jfVOBdi+wM7obYMt9TOEbGRkZGRkZGakmmPCPTDeZYZnY4uD0OpGg6dxolmuPk4XXZuAEPxsQ0+eqcEbWt2TE0m5Bdpqr241hEbNTqwFmIeGmd3OIxW6T3VYQMzUzJ/NI8xGRDtghlt9ojPlWdjV1MHzi3kLMMSMMdMWSsOtnlsEWbTp3g998Ct+NsPYpfJa1ppg/he+d9w0WoYh14o5aE05P5psoK9wZkriF11P4DDldj7YZMUsaf+Legpg62QR6Utx03VLNAjJrwfRbrE3cK4j5s4W9E+2e1et7ze4Wsfm9veZajZjJrM62INP6FLSAmEGsKDitz7/ZdPEeXGgXX4D5vzeDm/mAjbp3ZGRkZGTk0pjoiv5GJlDjJ1g4Dc9gtjwNXOXhligrT3Mnk9DibrwUcIWP220zAe2xm7vCMmq8aNU9cW9GLL3rk5zfLQpOztP1GDZ9YjcOTugpfIzdODg7dNzQ1oSRb7tDB2bxWxzpflTvnMLHiT39j9AiNXGvf4cOaM3NNifx0h068El6qdFmqgfkBfnJ0sQ2elqflv121RtqbrTUP5kvtJqEVnbjZkoK7pSRf5nFrCBm/s5kr/ETzAQtYCa+jY2MjIyMjIz8o8S7TTfECsNMgzloGrEAjPdpRukPW3qaRWxGLGvBjJNrQpsp3W2p0fJmAjNetNyiEHvUdt4wiPlrLCOWPtMNzkdjrMoMu/VP3GNFXbvSVjCm8Gl69TQj/+MOHX+Xb7FDR9ztQ92gZ1hp3KHDEEbsxsGIQXbe8IQR0/XeZVbwMiNPA7uZb7Sy2ULsvAGtfQU0L1OGz/dpRsw+SR1ML5h17rxREDOIBcGOt0qqFBDTF5qUymEmaFtW4+QHdW+CRelCpzcAAAAASUVORK5CYII=" alt="Error" loading="lazy" width="233" height="167" class="absolute top-[3rem] right-0 inline-block rotate-180">
<div class="relative w-11/12 max-w-[1080px] mx-auto pt-4">
<h2 class="font-mullish text-center text-2xl leading-[1.2] font-bold">Accept Payments with Razorpay Payment Suite</h2>
<div class="w-6 h-1 bg-greenLight mx-auto mt-4 mb-6"></div>
<!-- Content Box -->
<div class="w-full min-h-[520px] bg-white flex rounded-md relative p-10 py-12 border ">
<!-- Left Section -->
<div class="w-full flex flex-col justify-between">
<h3 class="font-mullish text-[28px] leading-10 font-bold max-w-[500px]">Supercharge your business with the all‑powerful <span class="text-lightBlue"> Payment Gateway</span></h3>
<ul class="space-y-2">
<li class="font-mullish flex space-x-2"><i data-feather="check" class="text-greenLight"></i><span>100+ Payment Methods</span></li>
<li class="font-mullish flex space-x-2"><i data-feather="check" class="text-greenLight"></i><span>Industry Leading Success Rate</span></li>
<li class="font-mullish flex space-x-2"><i data-feather="check" class="text-greenLight"></i><span>Superior Checkout Experience</span></li>
<li class="font-mullish flex space-x-2"><i data-feather="check" class="text-greenLight"></i><span>Easy to Integrate</span></li>
<li class="font-mullish flex space-x-2"><i data-feather="check" class="text-greenLight"></i><span>Instant Settlements from day 1</span></li>
<li class="font-mullish flex space-x-2"><i data-feather="check" class="text-greenLight"></i><span>In-depth Reporting and Insights</span></li>
</ul>
<!-- For Button and hyperlink -->
<div class="flex flex-row items-center space-x-4">
<button class="bg-lightBlue text-white rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200 py-[16px] px-[14px] flex gap-3 pl-[18px]">Sign Up Now<img src="/assets/arrow-right-solid-240814c4.svg" alt="Error" width="13px" height="20px" class="mt-[6px] mr-4 "></button>
<!-- HyperLink -->
<div class="flex items-center cursor-pointer group ">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-grayBlue transition-all duration-200">Know More</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<img src="/assets/payment-suite-f883499d.png" alt="Error" class="max-w-[638px] absolute right-0 bottom-0">
</div>
<div class="w-full grid grid-cols-3 gap-4 mt-10">
<!--Box1-->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="/assets/payment-link-icon-68c91ae5.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8]
transition-all duration-200">
<!--box shape-->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!--box -content -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<!--text part-->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">
Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!--hyperlink know more-->
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"
>Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!--Box2-->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="/assets/payment-link-icon-68c91ae5.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8]
transition-all duration-200">
<!--box shape-->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!--box -content -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<!--text part-->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">
Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!--hyperlink know more-->
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"
>Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!--Box3-->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="/assets/payment-link-icon-68c91ae5.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8]
transition-all duration-200">
<!--box shape-->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!--box -content -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<!--text part-->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">
Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!--hyperlink know more-->
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"
>Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!--Box4-->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="/assets/payment-link-icon-68c91ae5.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8]
transition-all duration-200">
<!--box shape-->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!--box -content -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<!--text part-->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">
Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!--hyperlink know more-->
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"
>Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!--Box5-->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="/assets/payment-link-icon-68c91ae5.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8]
transition-all duration-200">
<!--box shape-->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!--box -content -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<!--text part-->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">
Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!--hyperlink know more-->
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"
>Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!--Box6-->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="/assets/payment-link-icon-68c91ae5.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8]
transition-all duration-200">
<!--box shape-->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!--box -content -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<!--text part-->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">
Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!--hyperlink know more-->
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"
>Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Feature Section 2 -->
<section class="bg-[url(./images/feature-section-2BG.svg)] bg-no-repeat bg-cover pt-[10rem] pb-[350px] mt-14">
<div class="w-10/12 max-w-[1080px] mx-auto relative pt-4">
<h2 class="font-mullish text-center text-2xl leading-[1.2] text-white font-bold">Explore RazorpayX powered Business Banking</h2>
<div class="w-6 h-1 bg-greenLight mx-auto mt-[20px] mb-20"></div>
<!-- Main Feature Box of underlying bckground image of flames -->
<div class="w-full flex flex-col relative">
<img src="/assets/x-flame-1-12c499a3.png" alt="Error" loading="lazy" class="absolute -top-[142px] -left-[140px] w-[200px]">
<img src="/assets/x-flame-2-9092ee28.png" alt="Error" loading="lazy" class="absolute top-[150px] -right-[180px] w-[270px]">
<!-- Content Box:left part of header paragraph sign up know more and right part of background image -->
<div class="w-full min-h-[520px] flex rounded-md relative p-10 py-12 border border-zinc-600 bg-deepBlue z-20">
<!-- Left Section -->
<div class="w-full flex flex-col justify-between z-20">
<h3 class=" text-white font-mullish text-[28px] leading-10 font-bold max-w-[510px]">Manage your company’s finances and supercharge your business banking with <img src="/assets/razorpayX-dbf3ba53.svg" alt="Error" width="168px" class="inline" height="32px"><span class="text-greenLight text-base">Business Banking</span></h3>
<ul class="space-y-2 text-white text-opacity-80">
<li class="font-mullish flex space-x-2"><i data-feather="check" class="text-greenLight"></i><span>Open a fully digital current account</span></li>
<li class="font-mullish flex space-x-2"><i data-feather="check" class="text-greenLight"></i><span>Automate payables & compliment payments</span></li>
<li class="font-mullish flex space-x-2"><i data-feather="check" class="text-greenLight"></i><span>Simplify and track spends with Corporate cards</span></li>
<li class="font-mullish flex space-x-2"><i data-feather="check" class="text-greenLight"></i><span>View financial insights at a glance</span></li>
</ul>
<!-- For Button and hyperlink -->
<div class="flex flex-row items-center space-x-4">
<button class="bg-lightBlue text-white rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200 py-[16px] px-[14px] flex gap-3 pl-[18px]">Sign Up Now<img src="/assets/arrow-right-solid-240814c4.svg" alt="Error" width="13px" height="20px" class="mt-[6px] mr-4 "></button>
<!-- HyperLink -->
<div class="flex items-center cursor-pointer group ">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-grayBlue transition-all duration-200">Know More</a>
<i data-feather="chevron-right" class="w-4 h-4 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- BackGround Image of content box right -->
<img src="/assets/buisness-banking-f8dca509.png" alt="" class="w-[1000px] z-4">
</div>
</div>
<!-- Demo Section -->
<div class="flex w-full flex-row items-center justify-between border border-zinc-600 mt-14 gap-y-6 relative rounded-md p-8">
<p class="font-mullish text-white text-opacity-80 text-xl">Check out the live demo to learn how RazorpayX works.<span class="font-bold"> No sign-up required!</span></p>
<button class="bg-lightBlue text-white text-opacity-100 rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200 py-[16px] px-[14px] flex gap-3 pl-[18px]">Check out the demo <img src="/assets/arrow-right-solid-240814c4.svg" alt="Error" width="13px" height="20px" class="mt-[6px] mr-4 "></button>
</div>
</div>
</section>
<!--New Features Section grid wala -->
<section class="bg-white relative">
<div class="relative w-11/12 max-w-[1080px] mx-auto pt-4">
<img src="data:image/png;base64,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" alt=""
class="absolute w-[233px] left-[300px] -top-[6rem] z-10">
<img src="data:image/png;base64,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" alt=""
class="absolute w-[233px] -right-[3.5rem] -top-[6rem] z-10" >
<div class="w-full grid grid-cols-3 gap-y-10 gap-x-4 relative z-[100]">
<!--item 1-->
<div class="relative flex items-center z-0">
<h2
class="text-deepBlueHead font-mullish font-extrabold text-4xl leading-[3.375rem]"
>New in the
<span class="text-lightBlue500">
Razorpay
</span> <br>
Product Suite
</h2>
</div>
<!--card 1-->
<div
class="p-10 bg-[url(/images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer
bg-no-repeat hover:scale-105 transition-all duration-200
hover:bg-[url(/images/instant-settlement-bghover.svg)]
bg-white border rounded-md" >
<img src="/assets/razorpayXicon-3345804c.svg" alt=""
class="w-10 h-10">
<h3 class="font-mullish text-lg font-bold pt-4">Corporate Cards</h3>
<p
class="font-mullish py-3 text-grayText leading-normal"
>Simplify your recurring, international and team expenses with savings on every spend. Save upto 10 lacs every month.</p>
<div class="flex flex-row items-center cursor-pointer group">
<a href=""
class="font-mullish font-bold text-lightBlue500 group-hover:text-lightBlue
transition-all duration-200">Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
<!--card 2-->
<div
class="p-10 bg-[url(/images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer
bg-no-repeat hover:scale-105 transition-all duration-200
hover:bg-[url(/images/upi-autopay-hoverbg.svg)] bg-white border rounded-md" >
<img src="/assets/twitter-icon-82cbd3e5.svg" alt=""
class="w-10 h-10">
<h3 class="font-mullish text-lg font-bold pt-4">UPI AutoPay</h3>
<p
class="font-mullish py-3 text-grayText leading-normal"
>Simplify your recurring, international and team expenses with savings on every spend. Save upto 10 lacs every month.</p>
<div class="flex flex-row items-center cursor-pointer group">
<a href=""
class="font-mullish font-bold text-lightBlue500 group-hover:text-lightBlue
transition-all duration-200">Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
<!--card 3-->
<div
class="p-10 bg-[url(/images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer
bg-no-repeat hover:scale-105 transition-all duration-200
hover:bg-[url(/images/instant-settlement-bghover.svg)] bg-white border rounded-md" >
<img src="/assets/razorpayXicon-3345804c.svg" alt="Error"
class="w-10 h-10">
<h3 class="font-mullish text-lg font-bold pt-4">Payment Button</h3>
<p
class="font-mullish py-3 text-grayText leading-normal"
>Simplify your recurring, international and team expenses with savings on every spend. Save upto 10 lacs every month.</p>
<div class="flex flex-row items-center cursor-pointer group">
<a href=""
class="font-mullish font-bold text-lightBlue500 group-hover:text-lightBlue
transition-all duration-200">Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
<!--card 4-->
<div
class="p-10 bg-[url(/images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer
bg-no-repeat hover:scale-105 transition-all duration-200
hover:bg-[url(/images/instant-settlement-bghover.svg)] bg-white border rounded-md" >
<img src="/assets/quotes-38b97044.svg" alt=""
class="w-10 h-10">
<h3 class="font-mullish text-lg font-bold pt-4">QR Codes</h3>
<p
class="font-mullish py-3 text-grayText leading-normal"
>Simplify your recurring, international and team expenses with savings on every spend. Save upto 10 lacs every month.</p>
<div class="flex flex-row items-center cursor-pointer group">
<a href=""
class="font-mullish font-bold text-lightBlue500 group-hover:text-lightBlue
transition-all duration-200">Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
<!--card 5-->
<div
class="p-10 bg-[url(/images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer
bg-no-repeat hover:scale-105 transition-all duration-200
hover:bg-[url(/images/magic-checkout-hoverbg.svg)] bg-white border rounded-md" >
<img src="/assets/magic-checkout-a61eda6c.svg" alt="Error"
class="w-10 h-10">
<h3 class="font-mullish text-lg font-bold pt-4">Magic Checkout</h3>
<p
class="font-mullish py-3 text-grayText leading-normal"
>Simplify your recurring, international and team expenses with savings on every spend. Save upto 10 lacs every month.</p>
<div class="flex flex-row items-center cursor-pointer group">
<a href=""
class="font-mullish font-bold text-lightBlue500 group-hover:text-lightBlue
transition-all duration-200">Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500
group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Core Features -->
<section class="w-full bg-[url(/images/core-features-sectionBg.svg)] bg-no-repeat bg-cover bg-center mt-14 relative corefeatures_Section" >
<div class="relative mx-auto pt-4 w-11/12 max-w-[1080px]">
<h2 class="text-white font-mullish font-bold text-2xl text-center mx-auto">Features</h2>
<div class="w-6 h-1 bg-greenLight mx-auto mt-[20px] mb-7"></div>
<p class="font-mullish text-center max-w-[450px] text-white mx-auto">Empower your business with all the right tools to accept online payments and provide the best customer experience</p>
<!-- For grids -->
<div class="grid grid-cols-4 gap-[2rem] mt-8">
<!-- Card 1 -->
<div>
<img src="/assets/instant-activation-icon-5dc1b16b.svg" alt="Error">
<h3 class="font-mullish text-white text-lg font-bold my-4"> Instant Activation</h3>
<p class="font-mullish text-white opacity-80">Get activated and transact within 2 minutes. Completely online onboarding with minimum documentation.</p>
</div>
<!-- Card 2 -->
<div>
<img src="/assets/easy-integration-385f4c4d.svg" alt="Error">
<h3 class="font-mullish text-white text-lg font-bold my-4"> Easy Integration</h3>
<p class="font-mullish text-white opacity-80">With plugins for all major platforms and languages, integrate and go live with Razorpay in less than an hour.</p>
</div>
<!-- Card 3 -->
<div>
<img src="/assets/api-driven-icon-f4b24f36.svg" alt="Error">
<h3 class="font-mullish text-white text-lg font-bold my-4"> API Driven</h3>
<p class="font-mullish text-white opacity-80">Build your business for scale with our complete API-driven automation that requires zero manual intervention.</p>
</div>
<!-- Card 4 -->
<div>
<img src="/assets/payment-modes-746c757f.svg" alt="Error">
<h3 class="font-mullish text-white text-lg font-bold my-4">100+ payment modes</h3>
<p class="font-mullish text-white opacity-80">Offer your customers the luxury of all payment modes including Credit/Debit cards, Netbanking, UPI, Wallets etc.</p>
</div>
<!-- Card 5 -->
<div>
<img src="/assets/simple-pricing-ef5880b2.svg" alt="Error">
<h3 class="font-mullish text-white text-lg font-bold my-4">Simple Pricing</h3>
<p class="font-mullish text-white opacity-80">Our innovative payment solutions with competitive pricing make payments simpler.</p>
</div>
<!-- Card 6 -->
<div>
<img src="/assets/industry-support-icon-dfe9d1a9.svg" alt="Error">
<h3 class="font-mullish text-white text-lg font-bold my-4">Best in Industry Support</h3>
<p class="font-mullish text-white opacity-80">Always available email, phone and chat based support to help you in your every step.</p>
</div>
<!-- Card 7 -->
<div>
<img src="/assets/dashboard-reporting-icon-9dc031ab.svg" alt="Error">
<h3 class="font-mullish text-white text-lg font-bold my-4"> Dashboard Reporting</h3>
<p class="font-mullish text-white opacity-80">Real-time data and insights on your Razorpay Dashboard to make informed business decisions.</p>
</div>
<!-- Card 8 -->
<div>
<img src="/assets/secure-icon-1eb94f5d.svg" alt="Error">
<h3 class="font-mullish text-white text-lg font-bold my-4"> Secure</h3>
<p class="font-mullish text-white opacity-80">PCI DSS Level 1 compliant solution which removes your burden of regulatory compliance.</p>
</div>
</div>
</div>
</section>
<!-- Join RazorPay Section -->
<section class="bg-[#f5f8fe] relative pt-40 pb-12 -mt-[200px] -z-[10]">
<!-- Parent Div container that contains both Left and Right Part -->
<div class="w-11/12 max-w-[1080px] mx-auto relative flex flex-row">
<!-- Left part -->
<div class="flex flex-col justify-center max-w-[calc(100%-500px)] ">
<h2 class="font-mullish font-bold text-2xl text-deepBlueHead w-[80%]">Join the 50,00,000 businesses using Razorpay</h2>
<div class="w-6 h-1 bg-greenLight mt-[20px] mb-7"></div>
<p class="font-mullish opacity-80 w-[80%]">We make it easier for you to focus on building great products while we work on simplifying your payments. Become one of us by joining thousands of our happy users and simplify the online payment experience for your customers.</p>
<br>
<p class="font-mullish opacity-80 w-[80%]">Focus on your business while we handle the complexities of payments for you.</p>
<br>
<button class="bg-lightBlue text-white rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200 py-[14px] px-[14px] flex gap-3 pl-[18px]">Get Started <img src="/assets/arrow-right-solid-240814c4.svg" alt="Error" width="13px" height="20px" class="mt-[6px] mr-4" style="filter: invert(100%);"></button>
</div>
<!-- Right Part -->
<div class="h-[500px] w-[500px] relative overflow-y-hidden">
<!-- Divs for gradient -->
<div style="background-image: linear-gradient(180deg,#f4f8ff,#fff0);" class="absolute h-[150px] w-full top-0 z-50"></div>
<img src="/assets/comanies-f772fc25.png" alt="Error" width="500px" class="absolute object-cover moveImage ">
</div>
<div style="background-image: linear-gradient(0deg,#f4f8ff,#fff0);" class="absolute h-[150px] w-full bottom-0 z-50"></div>
</div>
</section>
<!-- Testimonial Section -->
<section class="relative">
<!-- Main Content div box -->
<div class="w-11/12 max-w-[1300px] mx-auto relative py-20">
<img src="data:image/png;base64,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" alt="" class="absolute -z-10">
<h2 class="font-mullish font-bold text-2xl text-deepBlueHead text-center">An Experience <br>
People Love to Talk About</h2>
<div class="w-6 h-1 bg-greenLight mt-[20px] mb-7 mx-auto "></div>
<!-- Left Button -->
<button class="w-[100px] h-[100px] bg-[#f4f8ff] rounded-full absolute left-0 top-1/2 flex justify-center items-center">
<div class="w-[65%] h-[65%] bg-[#f4f8ff] rounded-full flex justify-center items-center mix-blend-multiply">
<i data-feather="chevron-right" class="stroke-[5px] w-6 h-6 md:w-10 md:h-10 text-gray-400 rotate-180">
</i>
</div>
</button>
<!-- Right Button -->
<button class="w-[100px] h-[100px] bg-[#f4f8ff] rounded-full absolute right-0 top-1/2 flex justify-center items-center">
<div class="w-[65%] h-[65%] bg-[#f4f8ff] rounded-full flex justify-center items-center mix-blend-multiply">
<i data-feather="chevron-right" class="stroke-[5px] w-6 h-6 md:w-10 md:h-10 text-gray-400"></i>
</div>
</button>
<!-- Main Content -->
<div class="flex flex-row max-w-[960px] items-center mx-auto my-20 justify-evenly">
<!-- Left Image -->
<img src="/assets/ayush-03552e42.jpg" alt="" height="320px" width="320px" class="rounded-xl">
<!-- Right Part -->
<div class="max-w-[400px]">
<img src="/assets/quotes-38b97044.svg" alt="" width="35px" height="40px" class="-mb-2" >
<p class="font-mullish text-3xl font-extralight">Acquire Customers From New Customer Segments</p>
<a href="#" class="text-grayText italic underline">Learn More</a>
<h3 class="font-mullish font-extrabold text-2xl ">Ayush Chakraborty</h3>
<p class="font-mullish font-medium">Product Manager</p>
<img src="/assets/Logo-Ayush-9b9c2c8a.png" alt="Error" class="w-[80px] h-[40px]">
</div>
</div>
<!-- 6 Dot wala div -->
<div class="flex flex-row mx-auto space-x-2 justify-center">
<!-- Dot 1 -->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full"></div>
<!-- Dot 2 -->
<div class="h-[10px] w-[10px] bg-lightBlue300 rounded-full"></div>
<!-- Dot 3 -->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full"></div>
<!-- Dot 4 -->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full"></div>
<!-- Dot 5 -->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full"></div>
<!-- Dot 6 -->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full"></div>
</div>
</div>
</section>
<!-- CTA -->
<section class="bg-[url(/images/CTABg.svg)] w-full h-full bg-no-repeat bg-cover relative cta-section">
<div class="w-11/12 max-w-[1080px] relative flex flex-row mx-auto items-center justify-between space-x-2">
<div class="flex flex-col gap-5 mt-12 max-w-[600px]">
<h2 class="font-mullish font-bold text-2xl text-white ">Supercharge your business with Razorpay</h2>
<div class="w-6 h-1 bg-greenLight mt-[20px] mb-7 mx-auto "></div>
<p class="font-mullish text-white ">
Supercharge your business with Razorpay
Sign up now to experience the future of payments and offer <br> your customers the best checkout experience.
</p>
<ul class="flex flex-row gap-1 space-y-2 text-white ">
<li class="font-mullish text-white flex flex-row">
<i data-feather="check" class="text-greenLight"></i>
<span>Quick onboarding
</span>
</li>
<li class="font-mullish text-white flex flex-row">
<i data-feather="check" class="text-greenLight"></i>
<span>Access to entire product suite</span>
</li>
<li class="font-mullish text-white flex flex-row">
<i data-feather="check" class="text-greenLight"></i>
<span>API access</span>
</li>
<li class="font-mullish text-white flex flex-row">
<i data-feather="check" class="text-greenLight"></i>
<span>24x7 support</span>
</li>
</ul>
<button class="bg-white text-lightBlue rounded-md font-mullish font-bold hover:text-lightBlue500 transition-all duration-200 flex gap-3 pl-[18px] pb-3 pt-3 w-[200px]">Sign Up Now<img src="/assets/arrow-right-solid-240814c4.svg" alt="Error" width="13px" height="20px" class="mt-[6px]"></button>
</div>
<img src="/assets/ctaImg-e340b144.svg" alt="" width="240px" height="282px" class="mt-[100px]">
</div>
</section>
<!------------------------------- Footer Section --------------------------------------------------->
<footer style="background: linear-gradient(to right, #eef9fe, #edf7ff)" class="mt-[50px] man-h-full pb-8">
<!-- Parent Div Container -->
<div class="w-10/12 max-w-[1080px] flex flex-row space-x-4 mx-auto">
<!-- Column 1 -->
<div class="flex flex-col max-w-[360px]">
<img src="/assets/logo-dark-e6c30c29.svg" alt="Error" width="120px" height="24px">
<p class="text-sm text-grayText my-3 font-mullish">Razorpay is the only payments solution in India that allows businesses to accept, process and disburse payments with its product suite. It gives you access to all payment modes including credit card, debit card, netbanking, UPI and popular wallets including JioMoney, Mobikwik, Airtel Money, FreeCharge, Ola Money and PayZapp.</p>
<p class="text-sm text-grayText my-3 font-mullish">RazorpayX supercharges your business banking experience, bringing effectiveness, efficiency, and excellence to all financial processes. With RazorpayX, businesses can get access to fully-functional current accounts, supercharge their payouts and automate payroll compliance.</p>
<p class="text-sm text-grayText my-3 font-mullish">Manage your marketplace, automate bank transfers, collect recurring payments, share invoices with customers and avail working capital loans - all from a single platform. Fast forward your business with Razorpay.</p>
<p class="text-[0.625rem] text-grayText my-3 font-mullish">Disclaimer: The RazorpayX powered Current Account and VISA corporate credit card are provided by RBI licensed banks. Your RazorpayX powered account is provided by our partner bank, in accordance with RBI regulations. RazorpayX itself is not a bank and doesn't hold or claim to hold a banking license.</p>
<p class="font-mullish uppercase font-bold text-gray2">
Subscribe to our newsletter
</p>
<form class="relative bg-white w-[260px] mt-2 mb-4">
<input
placeholder="Your email address"
class="pr-16 font-mullish border-gray-300 outline-lightBlue focus:outline-lightBlue placeholder:text-sm py-2 px-4 border rounded-sm transition-all duration-200"
/>
<button
class="h-[90%] bg-white absolute right-[1.5px] top-1/2 -translate-y-1/2 z-10 font-mullish text-sm font-bold text-lightBlue300 flex rounded-sm items-center hover:text-lightBlue500 transition-all duration-200"
>
Subscribe
<svg
viewBox="0 0 24 24"
focusable="false"
class="w-[14px] h-[14px] ml-3"
>
<path
fill="currentColor"
d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"
></path>
</svg>
</button>
</form>
<div class="flex items-start space-x-4">
<img
src="/assets/footer-certificate-1-21d2bad2.png"
loading="lazy"
width="92"
height="40"
class="cursor-pointer"
/>
<img