-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1618 lines (1614 loc) · 98.9 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>Tailwind Test</title>
<link rel="stylesheet" href="./tailwind.css">
<link rel="stylesheet" href="./styles.css">
<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" />
<script src="https://kit.fontawesome.com/d1bf1bacdb.js" crossorigin="anonymous"></script>
</head>
<body class="overflow-x-hidden">
<!-- Header Banner -->
<header class="w-full h-[52px] bg-white relative">
<div
class="w-0 h-0 absolute top-0 bottom-0 left-0 border-b-[52px] border-b-lightBlue border-r-[40px] border-r-transparent z-[14]">
</div>
<div class="hidden lg:block w-2 h-[52px] bg-[#C4DDF9] skew-x-[38deg] absolute left-5 z-[12]"></div>
<div class="w-[120px] h-[52px] bg-[#E7F1FD] skew-x-[38deg] absolute z-[10] left-4 lg:left-6"></div>
<div class="w-[140px] h-[52px] bg-[#F3F8FE] skew-x-[38deg] absolute z-[12] left-[4rem] lg:left-[9rem]"></div>
<div
class="absolute top-1/2 left-1/2 z-[1000] w-full -translate-x-1/2 -translate-y-1/2 flex justify-center items-center space-x-4">
<p class="hidden lg:block font-mullish">
RazorpayX Payroll: 3 Clicks, Payroll Fixed! Automate payroll now!
</p>
<p class="block lg:hidden font-mullish text-xs md:text-[14px]">
Automate Payroll in just 3 clicks now!
</p>
<button class="py-[10px] px-4 bg-lightBlue text-white font-mullish font-bold text-xs rounded-md">
Know More
</button>
</div>
<div class="w-[140px] h-[52px] bg-[#F3F8FE] skew-x-[38deg] absolute z-[12] right-[4rem] lg:right-[9rem]"></div>
<div class="w-[120px] h-[52px] bg-[#E7F1FD] skew-x-[38deg] absolute z-[10] right-4 lg:right-6"></div>
<div class="hidden lg:block w-2 h-[52px] bg-[#C4DDF9] skew-x-[38deg] absolute right-5 z-[12]"></div>
<div
class="w-0 h-0 absolute top-0 bottom-0 right-0 border-t-[52px] border-t-lightBlue border-l-[40px] border-l-transparent z-[14]">
</div>
</header>
<!-- Navbar -->
<nav class="bg-deepBlue">
<div class="relative w-10/12 md:w-11/12 max-w-[1080px] mx-auto flex items-center justify-between">
<a href="/" class="cursor-pointer py-full pr-7 block">
<img src="./Images/logo.svg" alt="logo" height="30px" width="120px" class="">
</a>
<ul class="flex space-x-6 pr-7">
<li
class="text-white font-mullish py-7 hover:text-lightBlue transition-all duration-200 cursor-pointer h-full group relative flex ">
<a href="#">Payments</a>
<div class="w-full h-1 bg-lightBlue absolute bottom-0 hidden group-hover:block"></div>
</li>
<li
class="text-white font-mullish py-7 hover:text-lightBlue transition-all duration-200 cursor-pointer h-full group relative min-w-fit">
<a href="#">Banking</a>
<div class="w-full h-1 bg-lightBlue absolute bottom-0 hidden group-hover:block"></div>
</li>
<li
class="text-white font-mullish py-7 hover:text-lightBlue transition-all duration-200 cursor-pointer h-full group relative flex">
<a href="#">Corporate Card</a>
</li>
<li
class="text-white font-mullish py-7 hover:text-lightBlue transition-all duration-200 cursor-pointer h-full group relative flex ">
<a href="#">Payroll</a>
</li>
<li
class="text-white font-mullish py-7 hover:text-lightBlue transition-all duration-200 cursor-pointer h-full group relative flex ">
<a href="#">Resources</a>
<div class="w-full h-1 bg-lightBlue absolute bottom-0 hidden group-hover:block"></div>
</li>
<li
class="text-white font-mullish py-7 hover:text-lightBlue transition-all duration-200 cursor-pointer h-full group relative flex ">
<a href="#">Support</a>
<div class="w-full h-1 bg-lightBlue absolute bottom-0 hidden group-hover:block"></div>
</li>
<li
class="text-white font-mullish py-7 hover:text-lightBlue transition-all duration-200 cursor-pointer h-full group relative flex ">
<a href="#">Pricing</a>
<div class="w-full h-1 bg-lightBlue absolute bottom-0 hidden group-hover:block"></div>
</li>
</ul>
<div class="flex items-center gap-3 h-full">
<img src="./Images/india-flag.svg" alt="ind">
<button
class="text-sm font-mullish font-semibold text-white border border-lightBlue py-3 px-5 rounded-sm ">Log
in</button>
<button
class="text-sm font-mullish font-semibold text-lightBlue border bg-white border-white py-3 px-5 rounded-sm">Sign
Up <i class="fa-solid fa-arrow-right ml-3"></i>
</button>
</div>
</div>
</nav>
<!-- Hero section -->
<section class="relative bg-deepBlue">
<div
class="w-10/12 md:w-11/12 max-w-[1080px] mx-auto flex flex-col lg:flex-row items-center justify-between -mt-[0.5px]">
<div class="space-y-8 my-16 lg:my-0">
<h1 class="font-mullish font-extrabold 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 py-[14px] px-[18px] rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200">Sign
Up Now</button>
</div>
<div>
<img src="./Images/hero-illustration.jpg" alt="hero" class="max-w-[680px]">
</div>
</div>
<div class="absolute w-full md:w-[103%] left-0 right-0 top-[98%] md:-right-2 z-[1000]">
<img src="./Images/hero-shape.svg" loading=" lazy" class="w-full object-fill z-10">
</div>
</section>
<!-- Feature Section 1-->
<section class="mt-[100px] md:mt-[190px] relative overflow-hidden">
<img src="./Images/feature-section1-dottedrows.png" alt="dots" loading="lazy" width="233" height="167"
class="absolute -z-[100] -top-[8rem] left-[10rem] hidden md:inline-block">
<img src="./Images/feature-section1-dottedrows.png" alt="dots" loading="lazy" width="233" height="167"
class="absolute -z-[100] top-[3rem] right-0 rotate-180 hidden md:inline-block">
<div class="w-10/12 md:w-11/12 max-w-[1080px] mx-auto relative overflow-hidden pt-4">
<h2 class="hidden md:block font-mullish text-center text-2xl leading-[1.2] font-extrabold">Accept Payments
with Razorpay Payment Suite</h2>
<div class="w-6 h-1 bg-greenLight mx-auto mt-4 mb-6 md:mb-20"></div>
<!-- outer section -->
<div
class="w-full min-h-[520px] bg-white flex md:border border-lightGray rounded-md relative p-4 md:p-10 py-12">
<!-- inner section -->
<div class="flex flex-col justify-between items-start w-full">
<h3
class="font-mullish text-xl md:leading-10 md:text-[28px] font-bold md:max-w-[500px] max-w-[190px]">
Supercharge your business with the all-powerful <span class="text-lightBlue">Payment
Gateway</span>
</h3>
<ul class="space-y-2 my-6 md:my-0">
<li class="font-mullish flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-check text-greenLight">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
<span>100+ Payment Methods</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-check text-greenLight">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
<span> Industry Leading Success Rate </span>
</li>
<li class="font-mullish flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-check text-greenLight">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
<span> Superior Checkout Experience </span>
</li>
<li class="font-mullish flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-check text-greenLight">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
<span> Easy to Integrate </span>
</li>
<li class="font-mullish flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-check text-greenLight">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
<span> Instant Settlements from day 1 </span>
</li>
<li class="font-mullish flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-check text-greenLight">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
<span> In-depth Reporting and Insights </span>
</li>
</ul>
<!-- button div -->
<div
class="w-full md:w-fit flex flex-col-reverse md:flex-row md:items-center md:space-x-4 gap-y-4 md:space-y-0">
<button
class="bg-lightBlue w-full md:w-fit flex items-center justify-center md:justify-start text-white py-[14px] px-[18px] rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200">
Sign Up Now
<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>
<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>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
<img src="./Images/payment-suite.png" alt="payment suite"
class="hidden md:block md:max-w-[400px] lg:max-w-[600px] absolute right-0 lg:top-0 bottom-0">
</div>
<!-- Feature Boxes -->
<div class="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 my-10">
<!-- box - 1 -->
<div class="w-full min-h-[15rem] relative cursor-pointer featureCard">
<!-- box icon -->
<img src="./Images/payment-link-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[80] featureCardIcon 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-[90] featureCardSVG 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-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox">
<div>
<h3 class="font-mullish font-extrabold 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>
<div class="flex items-center cursor-pointer place-items-end">
<a href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200">Know
More</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
<!-- box - 2 -->
<div class="w-full min-h-[15rem] relative cursor-pointer featureCard">
<!-- box icon -->
<img src="./Images/payment-pages-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[80] featureCardIcon 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-[90] featureCardSVG 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-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox">
<div>
<h3 class="font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem]">
Payment Pages
</h3>
<p class="font-mullish text-grayText mt-6">
Take your store online instantly with zero coding. Accept
international & domestic payments
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200">Know
More</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
<!-- box - 3 -->
<div class="w-full min-h-[15rem] relative cursor-pointer featureCard">
<!-- box icon -->
<img src="./Images/payment-buttons-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[80] featureCardIcon 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-[90] featureCardSVG 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-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox">
<div>
<h3 class="font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem]">
Payment Buttons
</h3>
<p class="font-mullish text-grayText mt-6">
Create, Copy & Collect With Payment Button. Collect one time
or subscription payments & more
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200">Know
More</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
<!-- box - 4 -->
<div class="w-full min-h-[15rem] relative cursor-pointer featureCard">
<!-- box icon -->
<img src="./Images/subscriptions-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[80] featureCardIcon 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-[90] featureCardSVG 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-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox">
<div>
<h3 class="font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem]">
Subscriptions
</h3>
<p class="font-mullish text-grayText mt-6">
Subscription plans with automated recurring transactions on
various payment modes.
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200">Know
More</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
<!-- box - 5 -->
<div class="w-full min-h-[15rem] relative cursor-pointer featureCard">
<!-- box icon -->
<img src="./Images/route-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[80] featureCardIcon 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-[90] featureCardSVG 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-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox">
<div>
<h3 class="font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem]">
Route
</h3>
<p class="font-mullish text-grayText mt-6">
Split incoming payments auto- matically to vendor’s accounts,
manage marketplace money flow...
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200">Know
More</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
<!-- box - 6 -->
<div class="w-full min-h-[15rem] relative cursor-pointer featureCard">
<!-- box icon -->
<img src="./Images/smart-collect-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[80] featureCardIcon 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-[90] featureCardSVG 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-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox">
<div>
<h3 class="font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem]">
Smart Collect
</h3>
<p class="font-mullish text-grayText mt-6">
Automatically reconcile incoming NEFT, RTGS, IMPS, UPI
payments using Virtual Accounts & UPI-IDs
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200">Know
More</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</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] md:pt-[16rem] pb-[180px] md:pb-[500px] mt-14">
<div class="w-10/12 md:w-11/12 max-w-[1080px] mx-auto relative pt-4">
<!-- Section Heading -->
<h2 class="hidden md:block font-mullish text-center text-2xl leading-[1.2] text-white font-extrabold">
Explore Razorpay Business Banking
</h2>
<div class="w-6 h-1 bg-greenLight md:mx-auto mt-4 mb-6 md:mb-20"></div>
<!-- Main Feature Box -->
<div class="w-full min-h-[440px] flex md:border border-grayText border-opacity-50 rounded-md relative">
<img alt="" src="./Images/x-flame-1.png" loading="lazy"
class="-top-[240px] -scale-x-[1] rotate-180 md:scale-x-[1] md:rotate-0 -right-[50px] md:right-auto md:-top-[142px] md:-left-[140px] w-[180px] md:w-[200px] absolute z-10">
<img alt="" src="./Images/x-flame-2.png" loading="lazy"
class="hidden md:block top-[150px] -right-[180px] w-[270px] absolute z-10">
<div class="w-full p-4 md:p-10 py-12 bg-[#181c2e] z-20">
<div class="flex flex-col justify-between items-start w-full h-full z-20">
<h3
class="md:hidden font-mullish text-xl md:leading-10 md:text-[28px] font-bold md:max-w-[500px] max-w-[190px] text-white">
Open and operate fully-functional Current Accounts on RazorpayX
</h3>
<h3
class="hidden md:block font-mullish text-xl md:leading-10 md:text-[28px] font-bold md:max-w-[500px] max-w-[190px] text-white">
Manage your company's finances with
<img src="./Images/razorpayX.svg" width="168px" loading="lazy" height="32px" alt="razorpayX"
class="inline">
<span class="text-greenLight">Business Banking</span>
</h3>
<!-- Features list -->
<ul class="space-y-2 my-6 md:my-0">
<li class="font-mullish flex text-white items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-check text-greenLight">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
<span>Open a fully digital current account</span>
</li>
<li class="font-mullish flex text-white items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-check text-greenLight">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
<span>Automate payables & compliment payments</span>
</li>
<li class="font-mullish flex text-white items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-check text-greenLight">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
<span>Simplify and track spends with Corporate cards</span>
</li>
<li class="font-mullish flex text-white items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-check text-greenLight">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
<span>View financial insights at a glance</span>
</li>
</ul>
<div
class="w-full md:w-fit flex flex-col-reverse md:flex-row md:items-center md:space-x-4 gap-y-4 md:space-y-0">
<button
class="relative bg-lightBlue w-full md:w-fit flex items-center justify-center md:justify-start text-white py-[14px] px-[18px] md:pr-[90px] rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200">
Sign Up
<div
class="z-10 w-12 h-[60px] bg-greenLight skew-x-[20deg] absolute right-6 grid place-items-center">
<svg viewBox="0 0 24 24" focusable="false"
class="w-[20px] h-[20px] -skew-x-[20deg]">
<path fill="currentColor"
d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"></path>
</svg>
</div>
</button>
<div class="flex 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>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 group-hover:text-lightBlue transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
<img src="./Images/buisness-banking.png" alt="payment suite"
class="hidden md:block md:max-w-[400px] lg:max-w-[600px] absolute right-0 lg:top-0 bottom-0 z-[5]">
</div>
</div>
<!-- Individual Feature boxes -->
<div class="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 my-14">
<!-- box - 1 -->
<div class="w-full min-h-[15rem] relative cursor-pointer featureCard2">
<!-- box icon -->
<img src="./Images/current-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[80] featureCardIcon 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-[#525a76] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.8">
<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>
<!-- box content -->
<div
class="z-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox">
<div>
<h3 class="font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem]">
Current Account
</h3>
<p class="font-mullish text-grayText mt-6">
Current accounts for fast-growing businesses, supported by the
best-in-class technology
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200">Know
More</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
<!-- box - 2 -->
<div class="w-full min-h-[15rem] relative cursor-pointer featureCard2">
<!-- box icon -->
<img src="./Images/capital-credit-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[80] featureCardIcon 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-[#525a76] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.8">
<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>
<!-- box content -->
<div
class="z-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox">
<div>
<h3 class="font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem]">
Capital & Credit
</h3>
<p class="font-mullish text-grayText mt-6">
Instant additional cash and corporate cards designed for
growing businesses
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200">Know
More</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
<!-- box - 3 -->
<div class="w-full min-h-[15rem] relative cursor-pointer featureCard2">
<!-- box icon -->
<img src="./Images/payouts-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[80] featureCardIcon 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-[#525a76] h-full w-full absolute z-[90] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.8">
<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>
<!-- box content -->
<div
class="z-[1000] absolute h-full w-full pl-5 py-6 pr-8 flex flex-col justify-between featureCardBox">
<div>
<h3 class="font-mullish font-extrabold text-white leading-[1.2] text-[1.375rem]">
Payouts
</h3>
<p class="font-mullish text-grayText mt-6">
Make simple, reliable & secure payouts to bank accounts, UPI
IDs or wallets
</p>
</div>
<div class="flex items-center cursor-pointer place-items-end">
<a href="#"
class="font-mullish font-bold text-lightBlue500 transition-all duration-200">Know
More</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
</div>
<!-- Check Demo Section -->
<div
class="hidden mb-24 w-full md:flex items-center gap-y-6 justify-between flex-wrap md:border border-grayText border-opacity-50 rounded-md relative py-10 p-8">
<p class="mx-auto font-mullish text-white text-xl">
Check out the live demo to learn how RazorpayX works.
<span class="font-bold">No sign-up required!</span>
</p>
<button
class="relative mx-auto bg-lightBlue w-full md:w-fit flex items-center justify-center md:justify-start text-white py-[14px] px-[18px] md:pr-[90px] rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200">
Check out the demo
<div
class="z-10 w-12 h-[60px] bg-greenLight skew-x-[20deg] absolute right-6 grid place-items-center">
<svg viewBox="0 0 24 24" focusable="false" class="w-[20px] h-[20px] -skew-x-[20deg]">
<path fill="currentColor" d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z">
</path>
</svg>
</div>
</button>
</div>
</div>
</section>
<!-- New Feature Section -->
<section>
<div class="w-10/12 md:w-11/12 max-w-[1080px] mx-auto relative pt-4">
<img src="./Images/feature-section1-dottedrows.png"
class="hidden md:block absolute w-[233px] left-[300px] -top-[6rem] -z-[10]">
<img src="./Images/feature-section1-dottedrows.png"
class="hidden md:block absolute w-[233px] -right-[3.5rem] -top-[6rem] -z-[10]">
<div class="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-y-10 gap-x-4 relative z-[100]">
<div class="grid place-items-center relative">
<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>
<!-- new feature - 1 -->
<div
class="w-full p-10 max-h-[300px] bg-white cursor-pointer bg-no-repeat bg-[url(./Images/instant-settlement-bg.svg)] hover:bg-[url(./Images/instant-settlement-bghover.svg)] hover:scale-105 transition-all duration-200 newFeatureCard">
<img src="./Images/razorpayXicon.svg" class="w-10 h-10">
<h3 class="font-mullish font-bold pt-4 text-lg">Corporate Cards</h3>
<p class="font-mullish text-grayText py-3 leading-normal">
Simplify your recurring, international and team expenses with
savings on every spend. Save upto 10 lacs every month.
</p>
<div class="flex 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>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 group-hover:text-lightBlue transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
<!-- new feature - 2 -->
<div style="background-position: -2px -2px"
class="w-full max-h-[300px] p-10 bg-white cursor-pointer bg-[url(./Images/upi-autopay-bg.svg)] bg-no-repeat hover:bg-[url(./Images/upi-autopay-hoverbg.svg)] hover:scale-105 transition-all duration-200 newFeatureCard">
<img src="./Images/autopay-icon.svg" class="w-10 h-10 bg-lightBlue rounded-full">
<h3 class="font-mullish font-bold pt-4 text-lg">UPI AutoPay</h3>
<p class="font-mullish text-grayText py-3">
Allow customers to set up recurring payments using UPI Apps.
</p>
<div class="flex 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>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 group-hover:text-lightBlue transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
<!-- new feature - 3 -->
<div style="background-position: -2px -2px"
class="w-full max-h-[300px] bg-white p-10 cursor-pointer bg-[url(./Images/magic-checkout-bg.svg)] bg-no-repeat hover:bg-[url(./Images/magic-checkout-hoverbg.svg)] hover:scale-105 transition-all duration-200 newFeatureCard">
<img src="./Images/magic-checkout.svg" class="w-10 h-10 bg-lightBlue rounded-full">
<h3 class="font-mullish font-bold pt-4 text-lg">Magic Checkout</h3>
<p class="font-mullish text-grayText py-3">
Improve your order conversion rates & reduce return-to-origins.
Boost your business by 20%
</p>
<div class="flex 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>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 group-hover:text-lightBlue transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
<!-- new feature - 4 -->
<div style="background-position: -2px -2px"
class="w-full max-h-[300px] bg-white p-10 cursor-pointer bg-[url(./Images/payment-button-bg.svg)] bg-no-repeat hover:bg-[url(./Images/payment-button-hoverbg.svg)] hover:scale-105 transition-all duration-200 newFeatureCard">
<img src="./Images/payment-button.svg" class="w-10 h-10 bg-lightBlue rounded-full">
<h3 class="font-mullish font-bold pt-4 text-lg">Payment Button</h3>
<p class="font-mullish text-grayText py-3">
Accept payments on your website, in less than 5 minutes. No
developer needed.
</p>
<div class="flex 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>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 group-hover:text-lightBlue transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
<!-- new feature - 5 -->
<div style="background-position: -2px -2px"
class="w-full max-h-[300px] bg-white p-10 cursor-pointer hover:bg-cover bg-[url(./Images/instantsettlement-bg.svg)] bg-no-repeat hover:bg-[url(./Images/instantsettlement-hoverbg.svg)] hover:scale-105 transition-transform duration-200 newFeatureCard">
<img src="./Images/instant-settlement-icon.svg" class="w-10 h-10 bg-lightBlue rounded-full">
<h3 class="font-mullish font-bold pt-4 text-lg">Payment Button</h3>
<p class="font-mullish text-grayText py-3">
Accept payments on your website, in less than 5 minutes. No
developer needed.
</p>
<div class="flex 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>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-chevron-right w-5 h-5 text-lightBlue500 group-hover:text-lightBlue transition-all duration-200">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
</div>
</div>
</div>
</section>
<!-- Core Features -->
<section
class="w-full bg-[url(./Images/core-features-sectionBg.svg)] coreFeatureBg bg-no-repeat bg-cover bg-center mt-6 md:mt-14 relative z-[1000]">
<div class="w-10/12 md:w-11/12 max-w-[1080px] mx-auto relative pt-4">
<h2 class="font-mullish font-extrabold text-2xl text-center text-white">
Features
</h2>
<div class="w-6 h-1 bg-greenLight mx-auto my-4"></div>
<p class="font-mullish text-center max-w-[450px] mx-auto text-white">
Empower your business with all the right tools to accept online
payments and provide the best customer experience
</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-[2rem] mt-8">
<!-- core feature 1 -->
<div>
<img src="./Images/instant-activation-icon.svg">
<h3 class="font-mullish text-white text-lg font-extrabold my-4">
Instant Activation
</h3>
<p class="font-mullish text-white opacity-[0.87]">
Get activated and transact within 2 minutes. Completely online
onboarding with minimum documentation.
</p>
</div>
<!-- core feature 2 -->
<div>
<img src="./Images/easy-integration.svg">
<h3 class="font-mullish text-white text-lg font-extrabold my-4">
Easy Integration
</h3>
<p class="font-mullish text-white opacity-[0.87]">
With plugins for all major platforms and languages, integrate and
go live with Razorpay in less than an hour.
</p>
</div>
<!-- core feature 3 -->
<div>
<img src="./Images/api-driven-icon.svg">
<h3 class="font-mullish text-white text-lg font-extrabold my-4">
API Driven
</h3>
<p class="font-mullish text-white opacity-[0.87]">
Build your business for scale with our complete API-driven
automation that requires zero manual intervention.
</p>
</div>
<!-- core feature 4 -->
<div>
<img src="./Images/payment-modes.svg">
<h3 class="font-mullish text-white text-lg font-extrabold my-4">
100+ payment modes
</h3>
<p class="font-mullish text-white opacity-[0.87]">
Offer your customers the luxury of all payment modes including
Credit/Debit cards, Netbanking, UPI, Wallets etc.
</p>
</div>
<!-- core feature 5 -->
<div>
<img src="./Images/simple-pricing.svg">
<h3 class="font-mullish text-white text-lg font-extrabold my-4">
Simple Pricing
</h3>
<p class="font-mullish text-white opacity-[0.87]">
Our innovative payment solutions with competitive pricing make
payments simpler.
</p>
</div>
<!-- core feature 6 -->
<div>
<img src="./Images/industry-support-icon.svg">
<h3 class="font-mullish text-white text-lg font-extrabold my-4">
Best in Industry Support
</h3>
<p class="font-mullish text-white opacity-[0.87]">
Always available email, phone and chat based support to help you
in your every step.
</p>
</div>
<!-- core feature 7 -->
<div>
<img src="./Images/dashboard-reporting-icon.svg">
<h3 class="font-mullish text-white text-lg font-extrabold my-4">
Dashboard Reporting
</h3>
<p class="font-mullish text-white opacity-[0.87]">
Real-time data and insights on your Razorpay Dashboard to make
informed business decisions.
</p>
</div>
<!-- core feature 8 -->
<div>
<img src="./Images/secure-icon.svg">
<h3 class="font-mullish text-white text-lg font-extrabold my-4">
Secure
</h3>
<p class="font-mullish text-white opacity-[0.87]">
PCI DSS Level 1 compliant solution which removes your burden of
regulatory compliance.
</p>
</div>
</div>
</div>
</section>
<!-- Join Razorpay -->
<section class="bg-[#f5f8fe] -mt-[200px] relative z-[100] pt-40 pb-12">
<div class="w-10/12 md:w-11/12 max-w-[1080px] mx-auto relative pt-4 md:flex">
<div class="md:w-[calc(100%-500px)] md:flex md:flex-col md:justify-center">
<h2 class="font-mullish font-extrabold text-2xl text-deepBlueHead">
Join the 50,00,000+ businesses using Razorpay
</h2>
<div class="w-6 h-1 bg-greenLight my-4 mb-10"></div>
<p class="font-mullish">
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>
<p class="font-mullish mt-6">