-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1611 lines (1553 loc) · 60.1 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" />
<link rel="stylesheet" href="main.css" />
<script
src="https://kit.fontawesome.com/7821157037.js"
crossorigin="anonymous"
></script>
<link
rel="icon"
href="img/favicon-default.9e0f1b99.png"
type="image/x-icon"
/>
<title>Razorpay best payment solutions for online payments India</title>
</head>
<body>
<!-- NAVBAR -->
<section class="relative">
<ul class="flex bg-deepBlue justify-evenly">
<li class="py-1 ml-[8rem]">
<img class="py-2" src="img/razorpayX.svg" alt="" />
</li>
<li
class="payment-trigger text-white pt-3 font-mullish hover:text-lightBlue group"
>
<a class="" href="">Payments</a>
<div
class="w-fulls bg-lightBlue h-1 opacity-0 group-hover:opacity-100 mt-5"
></div>
</li>
<li
class="banking-trigger text-white pt-3 font-mullish hover:text-lightBlue group"
>
<a href="">Banking+</a>
<div
class="w-fulls bg-lightBlue h-1 opacity-0 group-hover:opacity-100 mt-5"
></div>
</li>
<li class="text-white pt-3 font-mullish hover:text-lightBlue group">
<a href="">Line of Credit</a>
</li>
<li class="text-white pt-3 font-mullish hover:text-lightBlue group">
<a href="">Payroll</a>
</li>
<li
class="resource-trigger text-white pt-3 font-mullish hover:text-lightBlue group"
>
<a href="">Resource</a>
<div
class="w-fulls bg-lightBlue h-1 opacity-0 group-hover:opacity-100 mt-5"
></div>
</li>
<li
class="support-trigger text-white pt-3 font-mullish hover:text-lightBlue group"
>
<a href="">Support</a>
<div
class="w-fulls bg-lightBlue h-1 opacity-0 group-hover:opacity-100 mt-5"
></div>
</li>
<li class="text-white pt-3 font-mullish hover:text-lightBlue group">
<a href="">Pricing</a>
</li>
<li class="py-4">
<img src="img/india-flag.svg" alt="" />
</li>
<li>
<button
class="text-white my-3 border border-sky-500 py-1 px-3 rounded-sm font-mullish"
>
Log in
</button>
</li>
<li>
<button
class="text-lightBlue mr-[8rem] my-3 border border-white-500 bg-white hover:text-blue-800 py-1 px-3 rounded-sm font-mullish"
>
Sign Up
</button>
</li>
</ul>
</section>
<!-- hidden divs absolute relative to div -->
<!-- payment nav div -->
<section>
<div class="payment-1 hidden">
<div
class="absolute top-15 left-12 bg-white grid grid-cols-3 rounded-md"
>
<div>
<h1 class="ml-8 mt-4">ACCEPT PAYMENT ONLINE</h1>
<ul class="ml-12 mt-6 cursor-pointer">
<li class="flex">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Payment Gateway</h1>
<p>Payment on your Website & App</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Payment Links</h1>
<p>Create & send link to collect money</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Payment Pages</h1>
<p>Get paid with personalized page</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Payment Buttons</h1>
<p>Create, copy and collect in 5 min.</p>
</div>
</li>
<li class="flex mt-[30px] mb-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">QR Codes</h1>
<p>Multi-feature QR for your business</p>
</div>
</li>
</ul>
</div>
<!-- column- 2 -->
<div>
<ul class="ml-12 mt-16 cursor-pointer">
<li class="flex">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Instant Settlement</h1>
<p>Customer payment settled faster</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Invoices</h1>
<p>Create & send links to collect Money</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Smart Collect</h1>
<p>Automate NEFT , RTGS , IMPS payments</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Subscriptions</h1>
<p>Collect recurring Subscription Payments</p>
</div>
</li>
<li class="flex mt-[30px] mb-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">International Payments</h1>
<p>Accept payments from across the globe</p>
</div>
</li>
</ul>
</div>
<!-- column- 3 -->
<div>
<h1 class="ml-8 mt-4">ACCEPT PAYMENT OFFLINE</h1>
<ul class="ml-16 mt-6 mr-10">
<li class="flex cursor-pointer">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Razorpay POS</h1>
<p>Accept payment in-Store</p>
</div>
</li>
<h1 class="mt-6 text-gray-700 -ml-7">WITH POWER AND ONE</h1>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Razorpay TokenHQ</h1>
<p>Multi-network card tokenization</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Optimizer</h1>
<p>Manage multiple payment Gateway</p>
</div>
</li>
<h1 class="mt-6 text-gray-700 -ml-7">PARTNER APPS</h1>
<li class="flex mt-[19px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">App Store</h1>
<p>Find right app for your bussiness</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- banking+ nav div -->
<section>
<div class="banking-1 hidden">
<div
class="absolute top-15 left-8 bg-white grid grid-cols-3 rounded-md"
>
<!-- column-1 -->
<div>
<h1 class="ml-8 mt-4">BUSINESS BANKING PLUS</h1>
<ul class="ml-12 mt-6 cursor-pointer">
<li class="flex">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">RazorpayX</h1>
<p>Bussiness banking Supercharged for disrupter</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Vendor Payments</h1>
<p>Automate vendor invoice and TDS payments</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Payouts</h1>
<p>24x7 , instant & Automated Payouts</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Payout Links</h1>
<p>Send money without recipient account details</p>
</div>
</li>
<li class="flex mt-[30px] mb-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">View Live Demo</h1>
<p>See RazorpayX in action, no signup required!</p>
<p></p>
</div>
</li>
</ul>
</div>
<!-- column- 2 -->
<div>
<ul class="ml-12 mt-16 cursor-pointer">
<li class="flex">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Current Account</h1>
<p>Supercharged for bussiness</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Escrow+ Account</h1>
<p>Escrow account for digital-first bussiness</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Forex/FDI Transfer</h1>
<p>Expert-led service to bring foreign currency</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Tax Payments</h1>
<p>Pay your bussiness taxes in under 30 seconds</p>
</div>
</li>
<li class="flex mt-[30px] mb-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Payroll</h1>
<p>Automate and execute payroll</p>
</div>
</li>
</ul>
</div>
<!-- column- 3 -->
<div>
<h1 class="ml-8 mt-4">CREDIT</h1>
<ul class="ml-16 mt-6 mr-3 cursor-pointer">
<li class="flex">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Razorpay Capital</h1>
<p>Get money for your bussiness need</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Line of Credit</h1>
<p>Better short-term loans - Use, Repay , Repeat</p>
</div>
</li>
<li class="flex mt-[30px]">
<div>
<img
class="w-8 h-8 mt-2 bg-lightBlue rounded-full"
src="img/payment-link-icon.svg"
alt=""
/>
</div>
<div class="ml-2">
<h1 class="font-bold">Corporate Cards</h1>
<p>Credit Card for growing bussiness/p></p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- resource nav div -->
<section>
<div class="resource-1 hidden">
<div
class="absolute top-15 left-[30%] grid grid-cols-4 bg-white rounded-md"
>
<!-- col-1 -->
<div class="">
<h1 class="m-6 font-medium text-gray-500">AWARENESS</h1>
<ul class="m-6 cursor-pointer">
<li class="mb-4">Blog</li>
<li class="mb-4">Learn</li>
<li class="mb-4">Events</li>
<li class="mb-4">White Paper</li>
<li class="mb-4">Customer Stories</li>
</ul>
</div>
<!-- col-2 -->
<div class="">
<h1 class="m-6 font-medium text-gray-500">DEVELOPERS</h1>
<ul class="m-6 cursor-pointer">
<li class="mb-4">Developer Docs</li>
<li class="mb-4">Integrations</li>
<li class="mb-4">API Reference</li>
<li class="mb-4">Onboarding APIs</li>
</ul>
</div>
<!-- col-3 -->
<div class="">
<h1 class="m-6 font-medium text-gray-500">SOLUTIONS</h1>
<ul class="m-6 cursor-pointer">
<li class="mb-4">SaaS</li>
<li class="mb-4">E-Commerce</li>
<li class="mb-4">Eductation</li>
<li class="mb-4">BFSI</li>
<li class="mb-4">FreeLance Stories</li>
<li class="mb-8">Partners</li>
</ul>
</div>
<!-- col-4 -->
<div class="">
<h1 class="m-6 font-medium text-gray-500">FREE TOOLS</h1>
<ul class="m-6 cursor-pointer">
<li class="mb-4">GST Calculator</li>
<li class="mb-4 mr-8">Online TDS Payment</li>
<li class="mb-4">GST Number Search</li>
<li class="mb-4">GST Number by PAN</li>
</ul>
</div>
</div>
</div>
</section>
<!-- support nav div -->
<section class="main-section">
<section>
<div class="support-1 hidden">
<div
class="absolute top-15 left-[55%] grid grid-cols-1 bg-white rounded-md"
>
<h1 class="mt-4 ml-4 mb-3 font-medium text-gray-500">AWARENESS</h1>
<ul>
<li class="ml-4 mr-[100px] mb-4">Raise a request</li>
<li class="ml-4 mr-7 mb-4">Knowledgebase</li>
<li class="ml-4 mr-7 mb-4">Chargeback Guide</li>
<li class="ml-4 mr-7 mb-4">Settlement Guide</li>
</ul>
</div>
</div>
</section>
<!-- TOP-1st -->
<section class="bg-deepBlue overflow-hidden">
<!-- Left div -->
<div class="flex flex-col lg:flex-row">
<div class="text-white mt-[12rem] ml-[8rem]">
<h1 class="font-mullish text-4xl font-bold leading-[3rem]">
<strong>Power your finance, grow your business</strong>
</h1>
<div class="w-4 bg-blue-400 my-8 py-0.5 px-3.5"></div>
<h6 class="font-mullish text-lg leading-[2rem] opacity-40">
Accept payments from customers. Automate payouts to vendors &
employees. Never run out of working capital.
</h6>
<button
class="py-3 px-3 bg-lightBlue font-mullish text-white rounded-md hover:bg-blue-600 font-bold mt-4"
>
Sign Up Now ->
</button>
</div>
<!-- Right div -->
<div>
<img
class="w-[40rem] h-[35rem] mr-[50rem]"
src="img/illustration-desktop.4a9233fc.jpg"
alt=""
/>
<br /><br /><br />
</div>
</div>
</section>
<!-- TRIANGLE -->
<section class="overflow-hidden">
<img class="w-full" src="img/hero-shape.svg" alt="" />
</section>
<section class="relative z-[0] font-mullish overflow-hidden">
<!-- Accept Payment -->
<section class="overflow-hidden">
<div class="flex justify-between">
<div>
<!-- img-1 -->
<img
class="ml-36"
src="img/feature-section1-dottedrows.png"
alt=""
/>
</div>
<div class="-mb-4">
<!-- heading -->
<h1 class="font-mullish text-2xl font-bold">
Accept Payments with Razorpay Payment Suite
</h1>
<br />
<center><div class="w-8 h-1 bg-green-500"></div></center>
</div>
<div>
<!-- img-2 -->
<img
class="mr-32 mt-16 rotate-180"
src="img/feature-section1-dottedrows.png"
alt=""
/>
</div>
</div>
</section>
<!-- feature-1 -->
<section class="-mt-[100px] z-[3] bg-white overflow-hidden">
<div
class="flex flex-col lg:flex-row w-auto w-max-[1080px] z-[2px] rounded-md border-[#E2E2E2] border-x-[1px] border-y-[1px] ml-[8rem] mr-[8rem]"
>
<div class="pl-16 bg-white">
<!-- Superchange your bussiness -->
<h1 class="mt-16 text-3xl leading-10 font-bold">
Supercharge your business with the all-powerful
<span class="text-lightBlue">Payment Gateway</span>
</h1>
<br />
<ul class="leading-9">
<li>
<i class="fa-solid fa-check fa-lg" style="color: #56bd67"></i>
  100+ Payment Methods
</li>
<li>
<i class="fa-solid fa-check fa-lg" style="color: #56bd67"></i>
  Industry Leading Success Rate
</li>
<li>
<i class="fa-solid fa-check fa-lg" style="color: #56bd67"></i>
  Superior Checkout Experience
</li>
<li>
<i class="fa-solid fa-check fa-lg" style="color: #56bd67"></i>
  Easy to Integrate
</li>
<li>
<i class="fa-solid fa-check fa-lg" style="color: #56bd67"></i>
  Instant Settlements from day 1
</li>
<li>
<i class="fa-solid fa-check fa-lg" style="color: #56bd67"></i>
  In-depth Reporting and Insights
</li>
</ul>
<br />
<button class="bg-lightBlue text-white p-3 font-bold rounded-sm">
Sign Up Now <i class="fa-solid fa-arrow-right-long"></i>
</button>
<button class="ml-3 p-3 font-bold text-lightBlue">
Know More >
</button>
<br /><br />
</div>
<div class="z-20">
<!-- image -->
<img
class="w-[65rem] h-full bg-white"
src="img/payment-suite.png"
alt=""
/>
</div>
</div>
</section>
</section>
<!-- GAP -->
<div class="mt-[29rem]"></div>
<!-- CARDS -->
<section
class="flex w-auto w-max-[1080px] z-[2px] rounded-md border-[#E2E2E2] border-x-[1px] border-y-[1px] ml-[8rem] mr-[8rem] -mt-96 overflow-hidden"
>
<!-- card-1 -->
<div
class="grid grid-flow-row grid-cols-1 grid-rows-6 lg:grid-cols-3 lg:grid-rows-2 justify-around gap-9 p-6"
>
<div
class="border-2 border-gray-50 p-4 rounded-md hover:z-[20px] relative z-10 cursor-pointer hover:shadow-xl group"
>
<img
class="w-12 h-12 rounded-full absolute right-3 top-0 z-0 bg-lightBlue group-hover:bg-[#349FFD]"
src="img/payment-link-icon.svg"
alt=""
/>
<h1 class="font-mullish text-xl font-bold pb-6">Payment Links</h1>
<p>
Share payment link via an email, SMS, messenger, chatbot etc. and
get paid immediately.
</p>
<br />
<button class="pt-3 font-bold text-lightBlue">Know More ></button>
</div>
<!-- card-2 -->
<div
class="border-2 border-gray-50 p-4 rounded-md hover:z-[20px] relative z-10 cursor-pointer hover:shadow-xl group"
>
<img
class="w-12 h-12 rounded-full absolute right-3 top-0 z-0 bg-lightBlue"
src="img/payment-link-icon.svg"
alt=""
/>
<h1 class="font-mullish text-xl font-bold pb-6">Payment Pages</h1>
<p>
Share payment link via an email, SMS, messenger, chatbot etc. and
get paid immediately.
</p>
<br />
<button class="pt-3 font-bold text-lightBlue">Know More ></button>
</div>
<!-- card-3 -->
<div
class="border-2 border-gray-50 p-4 rounded-md hover:z-[20px] relative z-10 cursor-pointer hover:shadow-xl group"
>
<img
class="w-12 h-12 rounded-full absolute right-3 top-0 z-0 bg-lightBlue"
src="img/payment-link-icon.svg"
alt=""
/>
<h1 class="font-mullish text-xl font-bold pb-6">Payment Buttons</h1>
<p>
Share payment link via an email, SMS, messenger, chatbot etc. and
get paid immediately.
</p>
<br />
<button class="pt-3 font-bold text-lightBlue">Know More ></button>
</div>
<!-- card-4 -->
<div
class="border-2 border-gray-50 p-4 rounded-md hover:z-[20px] relative z-10 cursor-pointer hover:shadow-xl group"
>
<img
class="w-12 h-12 rounded-full absolute right-3 top-0 z-0 bg-lightBlue"
src="img/payment-link-icon.svg"
alt=""
/>
<h1 class="font-mullish text-xl font-bold pb-6">Subscription</h1>
<p>
Share payment link via an email, SMS, messenger, chatbot etc. and
get paid immediately.
</p>
<br />
<button class="pt-3 font-bold text-lightBlue">Know More ></button>
</div>
<!-- card-5 -->
<div
class="border-2 border-gray-50 p-4 rounded-md hover:z-[20px] relative z-10 cursor-pointer hover:shadow-xl group"
>
<img
class="w-12 h-12 rounded-full absolute right-3 top-0 z-0 bg-lightBlue"
src="img/payment-link-icon.svg"
alt=""
/>
<h1 class="font-mullish text-xl font-bold pb-6">Route</h1>
<p>
Share payment link via an email, SMS, messenger, chatbot etc. and
get paid immediately.
</p>
<br />
<button class="pt-3 font-bold text-lightBlue">Know More ></button>
</div>
<!-- card-6 -->
<div
class="border-2 border-gray-50 p-4 rounded-md hover:z-[20px] relative z-10 cursor-pointer hover:shadow-xl group"
>
<img
class="w-12 h-12 rounded-full absolute right-3 top-0 z-0 bg-lightBlue"
src="img/payment-link-icon.svg"
alt=""
/>
<h1 class="font-mullish text-xl font-bold pb-6">Smart Collect</h1>
<p>
Share payment link via an email, SMS, messenger, chatbot etc. and
get paid immediately.
</p>
<br />
<button class="pt-3 font-bold text-lightBlue">Know More ></button>
</div>
</div>
</section>
<!-- feature-2 -->
<section
class="bg-[url('./img/feature-section-2BG.svg')] bg-cover bg-no-repeat mt-14 pt-[10rem] pd-[350px] overflow-hidden"
>
<!--feature-2.1 -->
<div class="relative">
<h1 class="mt-8 text-3xl font-bold text-center text-white mb-3">
Explore RazorpayX powered Business Banking
</h1>
<div class="w-5 h-1 bg-greenLight mx-auto mb-16"></div>
<!-- ------------------------------------------------ -->
<img
class="absolute -top-0 w-[10rem] z-10"
src="img/x-flame-1.png"
alt=""
/>
<img
class="absolute -right-14 bottom-5"
src="img/x-flame-2.png"
alt=""
/>
<!-- ---------------------------------------------- -->
<div
class="flex flex-col lg:flex-row w-auto w-max-[1080px] rounded-md border-[0.1px] border-gray-600 ml-[8rem] mr-[8rem] bg-[#181C2E]"
>
<div class="pl-16 z-30">
<!-- Superchange your bussiness -->
<h1 class="mt-16 text-[25px] leading-10 font-bold text-white">
Manage your company’s finances and supercharge your business
banking with
<img
class="inline-block h-[31px]"
src="img/razorpayX.svg"
alt=""
/>
</h1>
<br />
<ul class="leading-9 text-white">
<li>
<i class="fa-solid fa-check fa-lg" style="color: #56bd67"></i>
  Open a fully digital current account
</li>
<li>
<i class="fa-solid fa-check fa-lg" style="color: #56bd67"></i>
  Automate payables & compliment payments
</li>
<li>
<i class="fa-solid fa-check fa-lg" style="color: #56bd67"></i>
  Simplify and track spends with Corporate cards
</li>
<li>
<i class="fa-solid fa-check fa-lg" style="color: #56bd67"></i>
  View financial insights at a glance
</li>
</ul>
<br />
<button class="bg-lightBlue text-white p-3 font-bold rounded-sm">
Sign Up Now <i class="fa-solid fa-arrow-right-long"></i>
</button>
<button class="ml-3 p-3 font-bold text-lightBlue">
Know More >
</button>
<br /><br />
</div>
<div class="">
<!-- image -->
<img class="w-[100rem]" src="img/buisness-banking.png" alt="" />
</div>
</div>
</div>
<!-- CARDS -->
<section
class="flex w-auto w-max-[1080px] z-[2px] rounded-md ml-[8rem] mr-[8rem] mt-10 text-white overflow-hidden"
>
<!-- card-1 -->
<div
class="grid grid-flow-row grid-rows-3 lg:grid-cols-3 lg:grid-rows-1 justify-around gap-9 p-6"
>
<div
class="border-[0.1px] border-gray-600 p-4 rounded-md hover:z-[20px] relative z-10 cursor-pointer hover:shadow-2xl group"
>
<img
class="w-12 h-12 rounded-full absolute right-3 top-0 z-0 bg-lightBlue group-hover:bg-[#349FFD]"
src="img/payment-link-icon.svg"
alt=""
/>
<h1 class="font-mullish text-xl font-bold pb-6">
Current Account
</h1>
<p class="text-gray-400 font-mullish text-base">
Current accounts for fast-growing businesses, supported by the
best-in-class technology
</p>
<br />
<button class="pt-3 font-bold text-lightBlue">Know More ></button>
</div>
<!-- card-2 -->
<div
class="border-[0.1px] border-gray-600 p-4 rounded-md hover:z-[20px] relative z-10 cursor-pointer hover:shadow-xl group"
>
<img
class="w-12 h-12 rounded-full absolute right-3 top-0 z-0 bg-lightBlue"
src="img/payment-link-icon.svg"
alt=""
/>
<h1 class="font-mullish text-xl font-bold pb-6">Payouts</h1>
<p class="text-gray-400 font-mullish text-base">
Make simple, reliable & secure payouts to bank accounts, UPI IDs
or wallets
</p>
<br />
<button class="pt-3 font-bold text-lightBlue">Know More ></button>
</div>
<!-- card-3 -->
<div
class="border-[0.1px] border-gray-600 p-4 rounded-md hover:z-[20px] relative z-10 cursor-pointer hover:shadow-2xl group"
>
<img
class="w-12 h-12 rounded-full absolute right-3 top-0 z-0 bg-lightBlue"
src="img/payment-link-icon.svg"
alt=""
/>
<h1 class="font-mullish text-xl font-bold pb-6">Payrolls</h1>
<p class="text-gray-400 font-mullish text-base">
Set your payroll and compliances like TDS, ESIC, PT, & PF on
autopilot.
</p>
<br />
<button class="pt-3 font-bold text-lightBlue">Know More ></button>
</div>
</div>
</section>
<!-- WARNING -->
<div
class="flex w-auto w-max-[1080px] rounded-md border-[0.1px] border-gray-600 pt-6 pb-6 pl-0 ml-[8rem] mr-[8rem] bg-[#181C2E] mt-10"
>
<div class="pl-14 z-30">
<!-- Superchange your bussiness -->
<h1 class="text-[20px] leading-10 text-yellow-50">
Check out the live demo to learn how RazorpayX works. No sign-up
required!
<button
class="bg-lightBlue rounded-md pl-4 pt-1 pb-1 ml-6 pr-10 hover:bg-blue-600 text-[18px]"
>
Check out the demo
<i
class="fa-solid fa-arrow-right fa-xs pl-3"
style="color: #ffffff"
></i>
</button>
</h1>
</div>
</div>
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
</section>
<!-- NEW IN THE RAZORPAY PRODUCT SUITE -->
<section class="relative overflow-hidden">
<!-- dotted image -->
<div class="z-0 bg-transparent">
<img
class="-mt-[70px] ml-[400px] inline"
src="img/feature-section1-dottedrows.png"
alt=""
/>
<img
class="-mt-[170px] ml-[75%]"
src="img/feature-section1-dottedrows.png"
alt=""
/>
</div>
<!-- cards -->
<section
class="flex w-auto w-max-[1080px] z-3 rounded-md ml-[8rem] mr-[8rem] -mt-16"
>