-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
1283 lines (1174 loc) · 76.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./main.css">
<script src="https://kit.fontawesome.com/848e0df24d.js" crossorigin="anonymous"></script>
<title>Razorpay</title>
<link rel="shortcut icon" href="./Images/razorpay_favicon.webp" type="image/x-icon">
<!-- 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&display=swap"
rel="stylesheet">
<style>
.companiesList {
animation: moveCompany 5s linear 0s infinite forwards;
}
@keyframes moveCompany {
0% {
top: 0px;
}
100% {
top: -90%;
}
}
</style>
</head>
<!-- feature section 1 -> make cards dynamic -->
<body>
<div class="overflow-x-hidden relative w-full font-mulish">
<!-- Navbar -->
<nav class="bg-deepBlue px-[30px]">
<div class="relative max-w-[1080px] mx-auto flex items-center justify-between">
<ul class="flex gap-6">
<!-- ----------------------- Logo ----------------------------- -->
<li class="py-7 pr-7"> <a href="#Home"><img src="./Images/razorpayX.svg" alt="Razorpay logo"
width="125px" height="30px"></a></li>
<li class="lg:hidden text-white py-7 flex hover:text-lightBlue transition-all duration-200
relative group">
<a href="#">Payments</a>
<div class="absolute bottom-0 bg-lightBlue h-1 w-full hidden group-hover:block
transition-all duration-200">
</div>
</li>
<li class="lg:hidden text-white py-7 flex hover:text-lightBlue transition-all duration-200
relative group">
<a href="#">Banking+</a>
<div class="absolute bottom-0 bg-lightBlue h-1 w-full hidden group-hover:block
transition-all duration-200">
</div>
</li>
<li class="lg:hidden text-white py-7 flex hover:text-lightBlue transition-all duration-200
relative group">
<a href="#">Credit</a>
</li>
<li class="lg:hidden text-white py-7 flex hover:text-lightBlue transition-all duration-200
relative group">
<a href="#">Payroll</a>
<div class="absolute bottom-0 bg-lightBlue h-1 w-full hidden group-hover:block
transition-all duration-200">
</div>
</li>
<li class="lg:hidden text-white py-7 flex hover:text-lightBlue transition-all duration-200
relative group">
<a href="#">Resources</a>
<div class="absolute bottom-0 bg-lightBlue h-1 w-full hidden group-hover:block
transition-all duration-200">
</div>
</li>
<li class="lg:hidden text-white py-7 flex hover:text-lightBlue transition-all duration-200
relative group">
<a href="#">Support</a>
<div class="absolute bottom-0 bg-lightBlue h-1 w-full hidden group-hover:block
transition-all duration-200">
</div>
</li>
<li class="lg:hidden text-white py-7 flex hover:text-lightBlue transition-all duration-200
relative group">
<a href="#">Pricing</a>
</li>
</ul>
<div class="flex gap-4 font-mulish">
<img class="p-2" src="./Images/india-flag.svg" alt="Indian Flag">
<button class="px-5 py-3 text-lg text-white border border-lightBlue rounded-sm
font-bold">Log In</button>
<button class="lg:hidden px-5 py-3 text-lg bg-white rounded-sm font-bold text-lightBlue300
hover:text-lightBlue500">Sign Up<i class="fa-solid fa-arrow-right fa-xs pl-2"></i>
</button>
<div class="lg:block hidden">
<ul class="p-6 flex flex-col justify-center">
<li class="h-1 w-5 bg-white my-[2px]"></li>
<li class="h-1 w-5 bg-white my-[2px]"></li>
<li class="h-1 w-5 bg-white my-[2px]"></li>
</ul>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="relative bg-deepBlue px-[30px]">
<div
class="max-w-[1080px] m-auto mb-[150px] text-white flex items-center justify-between lg:flex-wrap lg:pb-0">
<div class="py-[80px] lg:pb-5">
<h1 class="text-[40px] font-extrabold leading-[48px]">
Power your finance, grow your business</h1>
<div class="h-1 w-6 bg-greenLight mt-[30px]"></div>
<p class="text-[18px] opacity-75 my-[40px]">Account payments from customers. Automate
payouts to vendors & employees. Never run out of working capital.</p>
<button class="text-left w-[160px] h-[50px] px-[18px] py-[14px] rounded-md font-bold
flex items-center bg-lightBlue300 hover:bg-lightBlue500 transition-all duration-200">
<p>Sign Up Now</p>
<i class="fa-solid fa-arrow-right fa-2xs pl-2"></i>
</button>
</div>
<img class="w-[680px] lg:w-full" src="./Images/hero-illustration.jpg">
</div>
<!-- Shape part -->
<div class="absolute top-full left-0 w-[100.1%] mt-[-1px]"><img src="./Images/hero-shape.svg" alt="shape"
width="100%">
</div>
</section>
<!-- features section 1 -->
<section class="px-[30px] relative max-w-[1080px] mx-auto overflow-x-hidden">
<!-- heading -->
<h1 class="text-center text-2xl font-extrabold">Accept Payements with Razorpay Payement Suite</h1>
<div class="h-2 w-6 bg-greenLight mx-auto mt-[20px] mb-[100px]"></div>
<!-- Shape Part -->
<img class="absolute top-[-10%] left-[125px] lg:hidden" src="./Images/feature-section1-dottedrows.png"
alt="design" loading="lazy">
<img class="absolute top-10 right-0 rotate-180 lg:hidden" src="./Images/feature-section1-dottedrows.png"
alt="design" loading="lazy">
<!-- Content box -->
<div class="relative border-solid border-2 py-10 px-12 overflow-hidden md:border-none md:p-[18px]">
<!-- Icon -->
<img src="./Images/payment-gateway.svg" alt="Razorpay logo" class="md:block absolute top-[10px] right-0 w-12 h-12 z-[-2]
hidden bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- border -->
<svg viewBox="0 0 694.4000244140625 498.6000061035156" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none" class="hidden h-full stroke-1 stroke-[#818597] w-full absolute z-[-1] top-0 left-0
transition-all duration-200 rounded-md group-hover:shadow-lg group-hover:stroke-none md:block"
style="stroke-opacity: 0.15">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 595.4000244140625
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 399.6000061035156
a 6 6 0 0 1 -6 6
h -682.4000244140625
a 6 6 0 0 1 -6 -6
z" fill="#fff"></path>
</svg>
<!-- left part -->
<h1 class="text-3xl font-[700] leading-[50px] pb-8 max-w-[510px] md:w-[80%]">
Supercharge your business with the all-powerful
<span class="text-lightBlue500">Payment Gateway</span>
</h1>
<ul>
<li class="pb-2 text-lg"><span class="text-green-300 font-bold">✓</span> 100+
Payments Methods
</li>
<li class="pb-2"><span class="text-green-300 font-bold">✓</span> Industry Leading
Success Rate
</li>
<li class="pb-2"><span class="text-green-300 font-bold">✓</span> Superior Checkout
Experience
</li>
<li class="pb-2"><span class="text-green-300 font-bold">✓</span> Easy to Integrate
</li>
<li class="pb-2"><span class="text-green-300 font-bold">✓</span> Instant
Settlements
from day 1
</li>
<li class="pb-2"><span class="text-green-300 font-bold">✓</span> In-depth Reporting
and
Insights
</li>
</ul>
<!-- hyperlink and button -->
<div class="mt-8 mb-[40px] md:flex md:flex-col-reverse">
<button class="md:w-full md:text-center text-left w-[160px] px-[18px] py-[14px] mr-4 rounded-md font-bold
text-white bg-lightBlue300 hover:bg-lightBlue500 transition-all duration-200">
<p class="inline">Sign Up Now</p>
<i class="fa-solid fa-arrow-right fa-2xs pl-2"></i>
</button>
<a class="inline px-[18px] py-[14px] text-lightBlue500 hover:text-[#555] transition-all duration-200 font-bold"
href="#">Know More ></a>
</div>
<!-- Image -->
<div class="absolute bottom-0 right-0 w-[60%] md:hidden"><img src="./Images/payment-suite.png"
alt="payment suite">
</div>
</div>
<!-- Cards -->
<ul class="grid grid-cols-3 gap-8 mt-10 lg:gap-4
md:gap-8 md:grid-cols-1 lg:grid-cols-2">
<li class="relative min-h-[15rem] group">
<!-- Icon -->
<img src="./Images/payment-link-icon.svg" alt=""
class="absolute top-2 right-2 w-12 h-12 z-9 bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- Zig-zag line -->
<img src="./Images/features-wave.svg" alt=""
class="absolute bottom-10 right-[-5px] w-[80px] h-[56px] z-10 opacity-0 rounded-full transition-all duration-200 group-hover:opacity-100">
<!-- box border -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="h-full stroke-1 stroke-[#818597] w-full absolute z-[9] transition-all duration-200 rounded-md group-hover:shadow-lg group-hover:stroke-none"
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>
<div class="z-10 py-6 pl-5 pr-[48px] absolute ">
<h1 class="text-xl font-extrabold">Current Account</h1>
<p class="text-lg opacity-75 mt-6 leading-6 tracking-wide">Set your payroll and compliances
like
TDS, ESIC, PT, & PF on autopilot.</p>
</div>
<a class="z-10 inline-block text-lightBlue500 group-hover:text-lightBlue300 transition-all duration-200 font-bold px-6 mt-2 absolute top-[175px] left-0"
href="#">Know More ></a>
</li>
<li class="relative min-h-[15rem] group">
<!-- Icon -->
<img src="./Images/payment-pages-icon.svg" alt=""
class="absolute top-2 right-2 w-12 h-12 z-9 bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- Zig-zag line -->
<img src="./Images/features-wave.svg" alt=""
class="absolute bottom-10 right-[-5px] w-[80px] h-[56px] z-10 opacity-0 rounded-full transition-all duration-200 group-hover:opacity-100">
<!-- box border -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="h-full stroke-1 stroke-[#818597] w-full absolute z-[9] transition-all duration-200 rounded-md group-hover:shadow-lg group-hover:stroke-none"
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>
<div class="z-10 py-6 pl-5 pr-[48px] absolute ">
<h1 class="text-xl font-extrabold">Payment Pages</h1>
<p class="text-lg opacity-75 mt-6 leading-6 tracking-wide">Take your store online instantly
with
zero coding. Accept international & domestic payments</p>
</div>
<a class="z-10 inline-block text-lightBlue500 group-hover:text-lightBlue300 transition-all duration-200 font-bold px-6 mt-2 absolute top-[175px] left-0"
href="#">Know More ></a>
</li>
<li class="relative min-h-[15rem] group">
<!-- Icon -->
<img src="./Images/payment-button.svg" alt=""
class="absolute top-2 right-2 w-12 h-12 z-9 bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- Zig-zag line -->
<img src="./Images/features-wave.svg" alt=""
class="absolute bottom-10 right-[-5px] w-[80px] h-[56px] z-10 opacity-0 rounded-full transition-all duration-200 group-hover:opacity-100">
<!-- box border -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="h-full stroke-1 stroke-[#818597] w-full absolute z-[9] transition-all duration-200 rounded-md group-hover:shadow-lg group-hover:stroke-none"
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>
<div class="z-10 py-6 pl-5 pr-[48px] absolute ">
<h1 class="text-xl font-extrabold">Payment Buttons</h1>
<p class="text-lg opacity-75 mt-6 leading-6 tracking-wide">Create, Copy & Collect With
Payment
Button. Collect one time or subscription payments & more</p>
</div>
<a class="z-10 inline-block text-lightBlue500 group-hover:text-lightBlue300 transition-all duration-200 font-bold px-6 mt-2 absolute top-[175px] left-0"
href="#">Know More ></a>
</li>
<li class="relative min-h-[15rem] group">
<!-- Icon -->
<img src="./Images/subscriptions-icon.svg" alt=""
class="absolute top-2 right-2 w-12 h-12 z-9 bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- Zig-zag line -->
<img src="./Images/features-wave.svg" alt=""
class="absolute bottom-10 right-[-5px] w-[80px] h-[56px] z-10 opacity-0 rounded-full transition-all duration-200 group-hover:opacity-100">
<!-- box border -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="h-full stroke-1 stroke-[#818597] w-full absolute z-[9] transition-all duration-200 rounded-md group-hover:shadow-lg group-hover:stroke-none"
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>
<div class="z-10 py-6 pl-5 pr-[48px] absolute ">
<h1 class="text-xl font-extrabold">Subscriptions</h1>
<p class="text-lg opacity-75 mt-6 leading-6 tracking-wide">Subscription plans with automated
recurring transactions on various payment modes.</p>
</div>
<a class="z-10 inline-block text-lightBlue500 group-hover:text-lightBlue300 transition-all duration-200 font-bold px-6 mt-2 absolute top-[175px] left-0"
href="#">Know More ></a>
</li>
<li class="relative min-h-[15rem] group">
<!-- Icon -->
<img src="./Images/route-icon.svg" alt=""
class="absolute top-2 right-2 w-12 h-12 z-9 bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- Zig-zag line -->
<img src="./Images/features-wave.svg" alt=""
class="absolute bottom-10 right-[-5px] w-[80px] h-[56px] z-10 opacity-0 rounded-full transition-all duration-200 group-hover:opacity-100">
<!-- box border -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="h-full stroke-1 stroke-[#818597] w-full absolute z-[9] transition-all duration-200 rounded-md group-hover:shadow-lg group-hover:stroke-none"
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>
<div class="z-10 py-6 pl-5 pr-[48px] absolute ">
<h1 class="text-xl font-extrabold">Route</h1>
<p class="text-lg opacity-75 mt-6 leading-6 tracking-wide">Split incoming payments
automatically to
vendor's accounts, manage marketplace money flow...</p>
</div>
<a class="z-10 inline-block text-lightBlue500 group-hover:text-lightBlue300 transition-all duration-200 font-bold px-6 mt-2 absolute top-[175px] left-0"
href="#">Know More ></a>
</li>
<li class="relative min-h-[15rem] group">
<!-- Icon -->
<img src="./Images/payouts-icon.svg" alt=""
class="absolute top-2 right-2 w-12 h-12 z-9 bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- Zig-zag line -->
<img src="./Images/features-wave.svg" alt=""
class="absolute bottom-10 right-[-5px] w-[80px] h-[56px] z-10 opacity-0 rounded-full transition-all duration-200 group-hover:opacity-100">
<!-- box border -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="h-full stroke-1 stroke-[#818597] w-full absolute z-[9] transition-all duration-200 rounded-md group-hover:shadow-lg group-hover:stroke-none"
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>
<div class="z-10 py-6 pl-5 pr-[48px] absolute ">
<h1 class="text-xl font-extrabold">Smart Collect</h1>
<p class="text-lg opacity-75 mt-6 leading-6 tracking-wide">Automatically reconcile incoming
NEFT,
RTGS, IMPS, UPI payments using Customer Identifiers & UPI-IDs</p>
</div>
<a class="z-10 inline-block text-lightBlue500 group-hover:text-lightBlue300 transition-all duration-200 font-bold px-6 mt-2 absolute top-[175px] left-0"
href="#">Know More ></a>
</li>
</ul>
<!-- footer -->
<div class="flex justify-center items-center gap-3 max-w-[1080px] mx-auto mt-5 p-4 mb-[100px] border-[0.8px] rounded-md
border-blue-500 bg-gradient-to-b from-blue-100 to-blue-50 lg:flex-wrap lg:justify-start">
<p class="inline text-lg font-extrabold text-center">Not sure which product to choose?</p>
<p class="inline text-[16px]"> Answer a few questions and we'll help you out</p>
<a href="https://www.google.com" class="text-blue-500 text-[16px] font-bold">Find me a product</a>
</div>
</section>
<!-- features section 2 -->
<section class="bg-[url('./Images/feature-section-2BG.svg')] bg-no-repeat bg-[length:175%_100%] pt-[10%]
min-h-[100rem] px-[30px] overflow-x-hidden md:bg-[length:400%_100%]">
<div class="relative max-w-[1080px] mx-auto">
<!-- heading -->
<h1 class="text-white text-center text-2xl font-extrabold pt-[64px]
md:w-[80%] md:text-start md:text-[40px] md:leading-[48px] md:font-extrabold">
Explore RazorpayX powered Business Banking
</h1>
<div class="h-1 w-6 bg-greenLight mx-auto mt-[20px] mb-[100px] md:ml-0"></div>
<!-- Shape Part -->
<img class="absolute top-[10px] -left-[140px] w-[200px] md:hidden" src="./Images/x-flame-1.png"
alt="design" loading="lazy">
<img class="absolute top-[300px] -right-[180px] w-[270px] md:top-[50px] md:left-[calc(100%-150px)] md:rotate-180"
src="./Images/x-flame-2.png" alt="design" loading="lazy">
<!-- Content box -->
<div class="z-10 bg-[#181C2E] relative text-white border-solid border-2 py-10 px-12
md:border-none md:p-[18px]">
<!-- Icon -->
<img src="./Images/razorpayXicon.svg" alt="Razorpay logo"
class="md:block absolute top-[10px] right-0 w-12 h-12 z-[-2] hidden bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- border -->
<svg viewBox="0 0 694.4000244140625 498.6000061035156" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none" class="md:block hidden h-full stroke-1 stroke-[#818597] w-full absolute z-[-1] top-0 left-0
transition-all duration-200 rounded-md group-hover:shadow-lg group-hover:stroke-none"
style="stroke-opacity: 0.15">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 595.4000244140625
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 399.6000061035156
a 6 6 0 0 1 -6 6
h -682.4000244140625
a 6 6 0 0 1 -6 -6
z" fill="#181C2E"></path>
</svg>
<!-- left part -->
<h1 class="text-3xl font-[700] leading-[50px] pb-8 max-w-[510px]">
Manage your company's finances and supercharge your business banking with
<img class="inline" src="./Images/razorpayX.svg" alt="Razorpay logo" width="175px">
</h1>
<ul>
<li class="pb-2 text-lg"><span class="text-green-300 font-bold">✓</span> Open a
fully digital current account
</li>
<li class="pb-2"><span class="text-green-300 font-bold">✓</span> Automate payables
& compilment payments
</li>
<li class="pb-2"><span class="text-green-300 font-bold">✓</span> Simplify and track
spends with Corporate cards
</li>
<li class="pb-2"><span class="text-green-300 font-bold">✓</span> View financial
insights at a glance</li>
</ul>
<!-- hyperlink and button -->
<div class="py-8 md:flex md:flex-col-reverse">
<button
class="relative text-left w-[160px] h-[50px] px-[18px] py-[14px] mr-4 rounded-md font-bold
text-white bg-lightBlue300 hover:bg-lightBlue500 transition-all duration-200 md:w-full md:text-center">
<p class="inline">Sign Up </p>
<div class="bg-greenLight h-[56px] w-[45px] absolute right-[20px] top-[-3px] skew-x-[20deg]
flex justify-center items-center opacity-90">
<i class="fa-solid fa-arrow-right fa-2sm pl-2 skew-x-[-20deg]"></i>
</div>
</button>
<a class="h-[50px] px-[18px] py-[14px] inline text-lightBlue500 hover:text-lightBlue300 transition-all duration-200 font-bold"
href="#">Know More ></a>
</div>
<!-- image -->
<div class="absolute bottom-0 right-0 w-[55%] md:hidden"><img src="./Images/buisness-banking.png"
alt="payment suite">
</div>
</div>
<!-- Cards -->
<ul class="grid grid-cols-3 gap-8 mt-10 lg:grid-cols-2 md:grid-cols-1 lg:gap-4 md:gap-8">
<li class="relative w-full min-h-[15rem] min-w-[310px] group">
<!-- Icon -->
<img src="./Images/current-icon.svg" alt=""
class="absolute top-2 right-2 w-12 h-12 z-9 bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- Zig-zag line -->
<img src="./Images/features2-wave.svg" alt=""
class="absolute bottom-10 right-[-5px] w-[80px] h-[56px] z-10 opacity-0 rounded-full transition-all duration-200 group-hover:opacity-100">
<!-- box border -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#ddd] w-full h-full absolute z-[9] transition-all duration-200 rounded-md group-hover:shadow-2xl group-hover:stroke-none"
style="stroke-opacity: .4">
<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="#181C2E"></path>
</svg>
<!-- hyperlink and button -->
<div class="text-white z-10 py-6 pl-5 pr-[48px] absolute ">
<h1 class="text-xl font-extrabold">Current Account</h1>
<p class="text-lg opacity-75 mt-6 leading-6 tracking-wide">Current account for
fast-graowing
businesses, supported by the best-in-class technology</p>
</div>
<a class="z-10 inline-block text-lightBlue500 transition-all duration-200 font-bold px-6 mt-2 absolute top-[175px] left-0"
href="#">Know More ></a>
</li>
<li class="relative w-full min-h-[15rem] min-w-[310px] group">
<!-- Icon -->
<img src="./Images/payouts-icon.svg" alt=""
class="absolute top-2 right-2 w-12 h-12 z-9 bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- Zig-zag line -->
<img src="./Images/features2-wave.svg" alt=""
class="absolute bottom-10 right-[-5px] w-[80px] h-[56px] z-10 opacity-0 rounded-full transition-all duration-200 group-hover:opacity-100">
<!-- box border -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#ddd] w-full h-full absolute z-[9] transition-all duration-200 rounded-md group-hover:shadow-2xl group-hover:stroke-none"
style="stroke-opacity: .4">
<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="#181C2E"></path>
</svg>
<!-- hyperlink and button -->
<div class="text-white z-10 py-6 pl-5 pr-[48px] absolute ">
<h1 class="text-xl font-extrabold">Payouts</h1>
<p class="text-lg opacity-75 mt-6 leading-6 tracking-wide">Make simple, reliable & secure
payouts
to bank accounts, UPI IDs or wallets</p>
</div>
<a class="z-10 inline-block text-lightBlue500 transition-all duration-200 font-bold px-6 mt-2 absolute top-[175px] left-0"
href="#">Know More ></a>
</li>
<li class="relative w-full min-h-[15rem] min-w-[310px] group">
<!-- Icon -->
<img src="./Images/payment-pages-icon.svg" alt="Icon"
class="absolute top-2 right-2 w-12 h-12 z-9 bg-lightBlue rounded-full transition-all duration-200 group-hover:bg-lightBlue300">
<!-- Zig-zag line -->
<img src="./Images/features2-wave.svg" alt=""
class="absolute bottom-10 right-[-5px] w-[80px] h-[56px] z-10 opacity-0 rounded-full transition-all duration-200 group-hover:opacity-100">
<!-- box border -->
<svg viewBox="0 0 349.32501220703125 225" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#ddd] w-full h-full absolute z-[9] transition-all duration-200 rounded-md group-hover:shadow-2xl group-hover:stroke-none"
style="stroke-opacity: .4">
<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="#181C2E"></path>
</svg>
<!-- hyperlink and button -->
<div class="text-white z-10 py-6 pl-5 pr-[48px] absolute ">
<h1 class="text-xl font-extrabold">Payroll</h1>
<p class="text-lg opacity-75 mt-6 leading-6 tracking-wide">Set your payroll and compliances
like
TDS, ESIC, PT, & PF on autopilot.</p>
</div>
<a class="z-10 inline-block text-lightBlue500 transition-all duration-200 font-bold px-6 mt-2 absolute top-[175px] left-0"
href="#">Know More ></a>
</li>
</ul>
<!-- footer of current section -->
<div class="flex flex-wrap justify-center items-center gap-3 mt-5 p-4 border-[0.8px] rounded-md
border-blue-500 text-white mb-[450px]">
<div class="px-[20px]">
<p class="inline text-lg"> Check out the live demo to learn how RazorpayX works. </p>
<p class="inline text-lg font-bold">No sign-up required!</p>
</div>
<button class="relative text-left w-[260px] h-[50px] px-[18px] py-[14px] mr-4 rounded-md font-bold
text-white bg-lightBlue300 hover:bg-lightBlue500 transition-all duration-200">
<p class="inline">Check out the demo </p>
<div class="bg-greenLight h-[56px] w-[45px] absolute right-[20px] top-[-3px] skew-x-[20deg]
flex justify-center items-center opacity-90">
<i class="fa-solid fa-arrow-right fa-2sm pl-2 skew-x-[-20deg]"></i>
</div>
</button>
</div>
</div>
</section>
<!-- features section 3 -->
<section class="pt-[75px] px-[30px] relative max-w-[1080px] mx-auto overflow-x-hidden">
<!-- Shape Part -->
<img class="absolute -top-[100px] left-[240px] w-[250px] lg:hidden"
src="./Images/feature-section1-dottedrows.png" alt="design" loading="lazy">
<img class="absolute -top-[100px] -right-[60px] w-[250px] lg:hidden"
src="./Images/feature-section1-dottedrows.png" alt="design" loading="lazy">
<!-- Cards -->
<ul class="z-10 relative grid grid-cols-3 gap-4 mt-10 lg:grid-cols-2 lg:gap-4 md:grid-cols-1 md:gap-8">
<li class="w-full flex items-center ">
<h1 class="font-extrabold text-[40px] leading-[48px]">New in the
<span class="text-lightBlue500">Razorpay</span> Product Suite
</h1>
</li>
<li
class="bg-white shadow-lg hover:scale-[1.05] transition-all duration-300
bg-[url('./Images/instant-settlement-bg.svg')] hover:bg-[url('./Images/instant-settlement-bghover.svg')]">
<!-- description -->
<div class="p-10 md:p-6">
<!-- Icon -->
<img src="./Images/instant-settlement-icon.svg" alt="Instant Settlements"
class="w-10 h-10 z-9 bg-lightBlue rounded-full">
<h1 class="text-lg font-extrabold pt-4">Instant Settlements</h1>
<p class="text-lg opacity-75 py-3 leading-6 tracking-wide">Settle your customer payments
within
10 seconds as soon your account is activated, even during holidays.</p>
<!-- hyperlink -->
<a class="text-lightBlue500 transition-all duration-200 font-bold" href="#">Know More
></a>
</div>
</li>
<li
class="bg-white shadow-lg hover:scale-[1.05] transition-all duration-300
bg-[url('./Images/upi-autopay-bg.svg')] bg-no-repeat hover:bg-[url('./Images/upi-autopay-hoverbg.svg')]">
<!-- description -->
<div class="p-10 md:p-6">
<!-- Icon -->
<img src="./Images/autopay-icon.svg" alt="UPI AutoPlay"
class="w-10 h-10 z-9 bg-lightBlue rounded-full">
<h1 class="text-lg font-extrabold pt-4">UPI AutoPlay</h1>
<p class="text-lg opacity-75 py-3 leading-6 tracking-wide">Allow customers to set up
recurring
payments using UPI Apps.</p>
<!-- hyperlink -->
<a class="text-lightBlue500 transition-all duration-200 font-bold" href="#">Know More
></a>
</div>
</li>
<li
class="bg-white shadow-lg hover:scale-[1.05] transition-all duration-300
bg-[url('./Images/payment-button-bg.svg')] bg-no-repeat hover:bg-[url('./Images/payment-button-hoverbg.svg')]">
<!-- description -->
<div class="p-10 md:p-6">
<!-- Icon -->
<img src="./Images/payment-buttons-icon.svg" alt="Payment Button"
class="w-10 h-10 z-9 bg-lightBlue rounded-full">
<h1 class="text-lg font-extrabold pt-4">Payment Button</h1>
<p class="text-lg opacity-75 py-3 leading-6 tracking-wide">Accept payments on your website,
in
less than 5 minutes. No developer needed.</p>
<!-- hyperlink -->
<a class="text-lightBlue500 transition-all duration-200 font-bold" href="#">Know More
></a>
</div>
</li>
<li
class="bg-white shadow-lg hover:scale-[1.05] transition-all duration-300
bg-[url('./Images/instantsettlement-bg.svg')] bg-no-repeat hover:bg-[url('./Images/instantsettlement-bghover.svg')]">
<!-- description -->
<div class="p-10 md:p-6">
<!-- Icon -->
<img src="./Images/qr-code.svg" alt="QR Codes" class="w-10 h-10 z-9 bg-lightBlue rounded-full">
<h1 class="text-lg font-extrabold pt-4">QR Codes</h1>
<p class="text-lg opacity-75 py-3 leading-6 tracking-wide">Create unlimited QR codes with
business branding and start accepting payments for free*.</p>
<!-- hyperlink -->
<a class="text-lightBlue500 transition-all duration-200 font-bold" href="#">Know More
></a>
</div>
</li>
<li
class="bg-white shadow-lg hover:scale-[1.05] transition-all duration-300
bg-[url('./Images/magic-checkout-bg.svg')] bg-no-repeat hover:bg-[url('./Images/magic-checkout-hoverbg.svg')]">
<!-- description -->
<div class="p-10 md:p-6">
<!-- Icon -->
<img src="./Images/magic-checkout.svg" alt="Magic Checkout"
class="w-10 h-10 z-9 bg-lightBlue rounded-full">
<h1 class="text-lg font-extrabold pt-4">Magic Checkout</h1>
<p class="text-lg opacity-75 py-3 leading-6 tracking-wide">Improve your order conversion
rates
& reduce return-to-origins. Boost your business by 20%!</p>
<!-- hyperlink -->
<a class="text-lightBlue500 transition-all duration-200 font-bold" href="#">Know More
></a>
</div>
</li>
</ul>
</section>
<!-- features section 4 -->
<section class="bg-[url('./Images/core-features-sectionBg.svg')] bg-no-repeat bg-cover bg-right
pt-[10%] pb-[150px] px-[30px] overflow-x-hidden lg:mt-[-125px] lg:bg-[length:250%_100%]
md:mt-[-100px] md:pt-[325px] md:bg-[length:200%_100%] md:bg-center">
<div class="relative max-w-[1080px] mx-auto">
<!-- heading -->
<h1 class="text-white text-center text-2xl mt-4 font-extrabold lg:text-start">Features</h1>
<div class="h-1 w-6 bg-greenLight mx-auto my-[20px] lg:ml-0"></div>
<p class="text-lg text-white text-center mx-[25%] leading-6 tracking-wide lg:text-start lg:mx-0">Empower
your business with all the right tools to accept online payments and provide the best customer
experience</p>
<!-- Cards -->
<ul class="grid grid-cols-4 gap-6 my-8 lg:grid-cols-1">
<li class="w-full min-w-[230px] px-4">
<!-- Icon -->
<img src="./Images/instant-activation-icon.svg" alt="Instant Activation"
class="top-2 right-2 w-11 h-11">
<!-- Description -->
<div class="text-white z-10">
<h1 class="text-lg my-4 font-extrabold tracking-wide">Instant Activation</h1>
<p class="text-lg my-4 leading-6 tracking-wide">Get activated and transact within 2 minutes.
Completely online onboarding with minimum documentation.</p>
</div>
</li>
<li class="w-full min-w-[230px] px-4">
<!-- Icon -->
<img src="./Images/easy-integration.svg" alt="Easy Integration" class="top-2 right-2 w-11 h-11">
<!-- Description -->
<div class="text-white z-10">
<h1 class="text-lg my-4 font-extrabold tracking-wide">Easy Integration</h1>
<p class="text-lg my-4 leading-6 tracking-wide">With plugins for all major platforms and
languages, integrate and go live with Razorpay in less than an hour.</p>
</div>
</li>
<li class="w-full min-w-[230px] px-4">
<!-- Icon -->
<img src="./Images/api-driven-icon.svg" alt="API Driven" class="top-2 right-2 w-11 h-11">
<!-- Description -->
<div class="text-white z-10">
<h1 class="text-lg my-4 font-extrabold tracking-wide">API Driven</h1>
<p class="text-lg my-4 leading-6 tracking-wide">Build your business for scale with our
complete
API-driven automation that requires zero manual intervention.</p>
</div>
</li>
<li class="w-full min-w-[230px] px-4">
<!-- Icon -->
<img src="./Images/payment-modes.svg" alt="100+ payments modes" class="top-2 right-2 w-11 h-11">
<!-- Description -->
<div class="text-white z-10">
<h1 class="text-lg my-4 font-extrabold tracking-wide">100+ payments modes</h1>
<p class="text-lg my-4 leading-6 tracking-wide">Offer your customers the luxury of all
payment
modes including Credit/Debit cards, Netbanking, UPI, Wallets etc.</p>
</div>
</li>
<li class="w-full min-w-[230px] px-4">
<!-- Icon -->
<img src="./Images/simple-pricing.svg" alt="Simple Pricing" class="top-2 right-2 w-11 h-11">
<!-- Description -->
<div class="text-white z-10">
<h1 class="text-lg my-4 font-extrabold tracking-wide">Simple Pricing</h1>
<p class="text-lg my-4 leading-6 tracking-wide">Our innovative payment solutions with
competitive pricing make payments simpler.</p>
</div>
</li>
<li class="w-full min-w-[230px] px-4">
<!-- Icon -->
<img src="./Images/industry-support-icon.svg" alt="Best in Industry Support"
class="top-2 right-2 w-11 h-11">
<!-- Description -->
<div class="text-white z-10">
<h1 class="text-lg my-4 font-extrabold tracking-wide">Best in Industry Support</h1>
<p class="text-lg my-4 leading-6 tracking-wide">Always available email, phone and chat based
support to help you in your every step.</p>
</div>
</li>
<li class="w-full min-w-[230px] px-4">
<!-- Icon -->
<img src="./Images/dashboard-reporting-icon.svg" alt="Dashboard Reporting"
class="top-2 right-2 w-11 h-11">
<!-- Description -->
<div class="text-white z-10">
<h1 class="text-lg my-4 font-extrabold tracking-wide">Dashboard Reporting</h1>
<p class="text-lg my-4 leading-6 tracking-wide">Real-time data and insights on your Razorpay
Dashboard to make informed business decisions.</p>
</div>
</li>
<li class="w-full min-w-[230px] px-4">
<!-- Icon -->
<img src="./Images/secure-icon.svg" alt="Secure" class="top-2 right-2 w-11 h-11">
<!-- Description -->
<div class="text-white z-10">
<h1 class="text-lg my-4 font-extrabold tracking-wide">Secure</h1>
<p class="text-lg my-4 leading-6 tracking-wide">PCI DSS Level 1 compliant solution which
removes
your burden of regulatory compliance.</p>
</div>
</li>
</ul>
</div>
</section>
<!-- Join Razorpay -->
<section class="relative bg-[#f5f8fe] px-[30px] max-w-[1080px] m-auto">
<div class="flex items-center justify-between md:mt-12 md:flex-wrap">
<!-- leftBox -->
<div class="max-w-[calc(100%-500px)] min-w-[450px] md:max-w-full">
<h1 class="text-[29px] font-extrabold">
Join the 50,00,000 businesses using Razorpay</h1>
<div class="h-1 w-6 bg-greenLight my-4"></div>
<p class="text-[18px] opacity-90 py-3">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.
Focus on your business while we handle the complexities of payments for you.</p>
<button class="text-white text-left w-[160px] h-[50px] px-[18px] py-[14px] mt-4 rounded-md font-bold
flex items-center bg-lightBlue300 hover:bg-lightBlue500 transition-all duration-200">
<p>Get Started</p>
<i class="fa-solid fa-arrow-right fa-2xs pl-2"></i>
</button>
</div>
<!-- RightBox -->
<div class="companiesList w-[500px] h-[500px] overflow-hidden relative">
<div class="z-10 absolute top-0 bg-gradient-to-b from-[#f5f8fe] h-[150px] w-full"></div>
<img class="z-0 absolute companiesList object-cover" src="./Images/comanies.png">
<div class="z-10 absolute bottom-0 bg-gradient-to-t from-[#f5f8fe] h-[150px] w-full"></div>
</div>
</div>
</section>
<!-- About section -->
<section class="px-[30px] mt-[96px] relative max-w-[1300px] mx-auto overflow-x-hidden about-section-container">
<!-- heading -->
<h1 class="text-center text-2xl font-extrabold">An Experience <br> People Love to Talk About</h1>
<div class="h-1 w-6 bg-greenLight mx-auto my-4"></div>
<!-- Shape Part -->
<img class="absolute top-[25px] left-[50px lg:hidden" src="./Images/feature-section1-dottedrows.png"
alt="design" loading="lazy">
<!-- Content box -->
<div class="relative py-8 px-[160px] flex justify-start items-center
lg:flex-col lg:justify-center lg:p-0">
<!-- shapes -->
<div class="absolute left-0 top-[50%] w-[96px] h-[96px] rounded-full flex justify-center items-center
bg-[#f1fefe] lg:w-[60px] lg:h-[60px] lg:top-[55%]"><i class="fa-solid fa-angle-left text-4xl text-[#888] px-[19px] py-3 bg-[#dbebf0] rounded-full
lg:w-10 lg:h-10 lg:text-2xl lg:py-2 lg:px-3"></i>
</div>
<div class="absolute right-0 top-[50%] w-[96px] h-[96px] rounded-full flex justify-center items-center
bg-[#f1fefe] lg:w-[60px] lg:h-[60px] lg:top-[55%]"><i class="fa-solid fa-angle-right text-4xl text-[#888] px-[19px] py-3 bg-[#dbebf0] rounded-full
lg:w-10 lg:h-10 lg:text-2xl lg:py-2 lg:px-3"></i>
</div>
<!-- Image(leftpart) -->
<img class="lg:mx-[35px] lg:w-[250px] lg:h-[250px]" src="./Images/testimonial.jpg" alt="payment suite"
width="320px">
<!-- right part -->
<div class="w-[500px] pl-[80px] py-8 lg:p-0 lg:flex lg:flex-col-reverse lg:items-center">
<div class="relative pt-8 box1">
<!-- Quotes -->
<img class="absolute top-0 left-0" src="./Images/quotes.svg" alt="Quotes" height="40px"
width="35px">
<p class="text-3xl opacity-75 leading-[45px]">Single Flow To Collect And <br> Disburse
Payments
</p>
<a class="text-black underline text-sm opacity-60" href="#">Learn More</a>
</div>
<div class="box2">
<p class="text-lg font-extrabold">Pranay Bhardwaj</p>
<p class="text-sm opacity-75">Product Manager</p>
<p class="text-4xl font-bold text-purple-800">Slice</p>
</div>
</div>
</div>
<!-- footer -->
<div class="flex justify-center max-w-[1080px] mx-auto py-2">
<div class="inline-block mx-1 h-[10px] w-[10px] rounded-full bg-[#ccc]"></div>
<div class="inline-block mx-1 h-[10px] w-[10px] rounded-full bg-[#ccc]"></div>
<div class="inline-block mx-1 h-[10px] w-[10px] rounded-full bg-[#ccc]"></div>
<div class="inline-block mx-1 h-[10px] w-[10px] rounded-full bg-lightBlue300"></div>
<div class="inline-block mx-1 h-[10px] w-[10px] rounded-full bg-[#ccc]"></div>
<div class="inline-block mx-1 h-[10px] w-[10px] rounded-full bg-[#ccc]"></div>
<div class="inline-block mx-1 h-[10px] w-[10px] rounded-full bg-[#ccc]"></div>
</div>
</section>
<!-- CTA section -->
<section class="bg-[url('./Images/ctaBg.svg')] bg-no-repeat bg-[length:100%_100%] px-[30px] mt-[96px] w-full
overflow-x-hidden lg:bg-[length:175%_100%]">
<div class="relative max-w-[1080px] mx-auto my-[114px] flex justify-between">
<!-- leftBox -->
<div class="text-white">
<div class="text-[29px] font-extrabold">Supercharge your business with Razorpay</div>
<div class="h-1 w-6 bg-greenLight my-4"></div>
<p class="text-xl mt-2">Sign up now to experience the future of payments and offer your customers
the best checkout experience.</p>
<ul class="mt-8 flex flex-wrap flex-auto">
<li class="mr-12"><span class="text-green-300 font-bold">✓</span> Quick onboarding
</li>