-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
963 lines (923 loc) · 53.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Razorpay</title>
<link rel="stylesheet" href="./main.css">
<script src="https://unpkg.com/feather-icons"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<style>
.move-image{
animation: 8s infinite linear move-list;
}
@keyframes move-list {
0%{
top:0;
}
100%{
top:-170%;
}
}
</style>
</head>
<body >
<div class="overflow-x-hidden">
<!-- nav bar -->
<nav class="bg-deepBlue ">
<div class="relative w-[1080px] mx-auto flex items-center justify-between">
<a href="#" class="cursor-pointer py-7 pr-7">
<img src="Images/razorpay-logo.png"
height="30px"
width="120px" alt="razorpay-logo">
</a>
<ul class=" space-x-6 hidden lg:flex">
<li class="text-white font-mullish py-7 hover:text-lightBlue
transition-all duration-200 relative group">
<a href="#">Payments</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue
transition-all duration-200 relative group">
<a href="#">Banking+</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue
transition-all duration-200 relative group">
<a href="#">Line of Credit</a>
<li class="text-white font-mullish py-7 hover:text-lightBlue
transition-all duration-200 relative group">
<a href="#">Payroll</a>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue
transition-all duration-200 relative group">
<a href="#">Resources</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue
transition-all duration-200 relative group">
<a href="#">Support</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue
transition-all duration-200 relative group">
<a href="#">Pricing</a>
</li>
</ul>
<div class="flex space-x-6">
<img src="Images/india-flag.svg"
width="28px"
height="20px" alt="india-flag">
<button class="py-3 px-5 font-mullish border-lightBlue border rounded-sm text-sm text-white font-bold">Log in</button>
<button class="bg-white text-lightBlue300 font-bold py-3 px-4 font-mullish rounded-sm text-sm border transition-all duration-200 hover:text-lightBlue500 flex">Sign Up
<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>
</div>
</nav>
<!-- hero section -->
<section class="relative bg-deepBlue ">
<div class="w-10/12 flex flex-col lg:flex-row justify-between items-center mx-auto max-w-[1080px]">
<div class="space-y-8">
<h1 class="text-white font-mullish font-bold text-[40px] leading-[1.2]">Power your finance, grow your business</h1>
<div class="w-6 h-1 bg-greenLight "></div>
<p class="text-white font-mullish text-[18px] leading-7 opacity-70">Accept payments from customers. Automate payouts to vendors & employees. Never run out of working capital.</p>
<button class="bg-lightBlue text-white rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200 py-3 px-5" >Sign Up Now</button>
</div>
<img src="Images/hero-illustration.jpg" class="max-w-[680px]" alt="">
</div>
<!-- <div class="absolute left-0 right-[-1]"> -->
<div class="w-[103%] absolute left-0 right-0 ">
<img src="Images/hero-shape.svg" class="w-full">
</div>
</section>
<!-- feature section 1-->
<section class="relative mt-[190px] overflow-hidden">
<img src="Images/feature-section1-dottedrows.png"
width="233"
height="167"
class="absolute -top-[8rem] left-[10rem] -z-10 hidden lg:block">
<img src="Images/feature-section1-dottedrows.png"
width="233"
height="167"
class="absolute top-[3rem] right-0 rotate-180 hidden lg:block">
<div class="relative w-11/12 max-w-[1080px] mx-auto pt-4">
<!-- heading -->
<h2 class="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-4 "></div>
<!-- content -->
<div class="w-full bg-white flex rounded-md relative p-10 py-12 min-h-[520px] border">
<!-- left section -->
<div class=" flex flex-col justify-between w-full">
<h3 class="text-[28px] font-mullish leading-10 font-extrabold max-w-[500px]">Supercharge your business with the all‑powerful
<span class="text-lightBlue">Payment Gateway</span></h3>
<ul class="space-y-2 font-mullish ">
<li class="space-x-2 flex items-center">
<i data-feather="check" class="text-greenLight"></i>
<span>100+ Payment Methods</span></li>
<li class="space-x-2 flex items-center">
<i data-feather="check" class="text-greenLight"></i>
<span></span> Industry Leading Success Rate</li>
<li class="space-x-2 flex items-center">
<i data-feather="check" class="text-greenLight"></i>
<span></span> Superior Checkout Experience</li>
<li class="space-x-2 flex items-center">
<i data-feather="check" class="text-greenLight"></i>
<span></span> Easy to Integrate</li>
<li class="space-x-2 flex items-center">
<i data-feather="check" class="text-greenLight"></i>
<span></span> Instant Settlements from day 1</li>
<li class="space-x-2 flex items-center">
<i data-feather="check" class="text-greenLight"></i>
<span></span> In-depth Reporting and Insights</li>
</ul>
<div class="flex flex-col-reverse space-x-4 md:flex-row ">
<button class="bg-lightBlue text-white rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200 py-3 px-5
flex place-content-center" >Sign Up Now
<svg
viewBox="0 0 24 24"
focusable="false"
class="w-[20px] h-[19px] ml-1 mt-1"
>
<path
fill="currentColor"
d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"
></path>
</svg>
</button>
<div class="cursor-pointer group flex items-center ">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-gray-700 transition-all duration-200">
Know More</a>
<i data-feather="chevron-right" class=" w-5 h-5 text-lightBlue500 group-hover:text-gray-700 transition-all duration-200"></i>
</div>
</div>
</div>
<img src="Images/payment-suite.png"
class="absolute max-w-[620px] right-0 bottom-0 hidden md:max-w-[380px] lg:max-w-[600px] md:block lg:block" alt="">
</div>
</div>
<div class="w-11/12 max-w-[1080px] mx-auto grid grid-cols-1 gap-4 mt-14 md:grid-cols-2 lg:grid-cols-3">
<!-- box1 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="Images/payment-link-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200" alt="">
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!-- boxcontent -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<div>
<h3 class=" font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payement Links</h3>
<p class="font-mullish text-grayText mt-6">Share payment link via an email, SMS, messenger, chatbox, etc. and get paid immediately</p>
</div>
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500 group:hover:text-grayBlue transition-all duration-200">
Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box2 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="Images/payment-link-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200" alt="">
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!-- boxcontent -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<h3 class=" font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payement Pages</h3>
<p class="font-mullish text-grayText mt-6">Take your store online instantly with zero-coding. Accept international & domestic payments</p>
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500 group:hover:text-grayBlue transition-all duration-200">
Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box3 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="Images/payment-link-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200" alt="">
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!-- boxcontent -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<h3 class=" font-mullish font-extrabold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payement 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 class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500 group:hover:text-grayBlue transition-all duration-200">
Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box4 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="Images/payment-link-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200" alt="">
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!-- boxcontent -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<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 class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500 group:hover:text-grayBlue transition-all duration-200">
Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box5 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="Images/payment-link-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200" alt="">
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!-- boxcontent -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<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 automatically to vendor's accounts, manage marketplace moneyflow...</p>
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500 group:hover:text-grayBlue transition-all duration-200">
Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box6 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="Images/payment-link-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200" alt="">
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.15"
>
<path
d="m 0 6
a 6 6 0 0 1 6 -6
h 250.32501220703125
a 16 16 0 0 1 11 5
l 77 77
a 16 16 0 0 1 5 11
v 126
a 6 6 0 0 1 -6 6
h -337.32501220703125
a 6 6 0 0 1 -6 -6
z"
fill="#fff"
></path>
</svg>
<!-- boxcontent -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<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 Identifiers & UPI-IDs</p>
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500 group:hover:text-grayBlue transition-all duration-200">
Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
</div>
</section>
<!-- feature section 2 -->
<section
class="bg-[url(Images/feature-section-2BG.svg)] bg-no-repeat bg-cover pt-[16rem] pb-[500px] mt-14">
<div
class="w-10/12 max-w-[1080px] pt-4 mx-auto relative flex flex-col" >
<h2 class="font-mullish text-white text-center text-2xl leading-[1.2] font-extrabold">Explore RazorpayX powered Business Banking</h2>
<div class="w-6 h-1 bg-greenLight mx-auto mt-4 mb-6"></div>
<!-- main feature box -->
<div class="w-full min-h[440px] flex relative" >
<img src="Images/x-flame-1.png"
class="absolute -top-[142px] -left-[140px] w-[200px] " alt="">
<img src="Images/x-flame-2.png"
class="absolute top-[150px] -right-[180px] w-[270px] " alt="">
<!-- content box -->
<div class=" w-full flex rounded-md relative p-10 py-12 min-h-[520px] border border-slate-600 z-20 bg-[#181c2e]">
<!-- left section -->
<div class=" flex flex-col justify-between w-full z-20">
<h3 class="text-[28px] font-mullish text-white leading-10 font-extrabold max-w-[500px]">Manage your company’s finances and supercharge your business banking with
<img src="Images/razorpayX.svg" alt=""
class="inline" width="168px" height="32px"></h3>
<ul class="space-y-2 font-mullish text-white">
<li class="space-x-2 flex items-center ">
<i data-feather="check" class="text-greenLight"></i>
<span >Open a fully digital current account</span></li>
<li class="space-x-2 flex items-center">
<i data-feather="check" class="text-greenLight"></i>
<span></span> Automate payables & compliment payments</li>
<li class="space-x-2 flex items-center">
<i data-feather="check" class="text-greenLight"></i>
<span></span> Simplify and track spends with Corporate cards</li>
<li class="space-x-2 flex items-center">
<i data-feather="check" class="text-greenLight"></i>
<span></span>View financial insights at a glance</li>
</ul>
<div class="flex flex-col-reverse space-x-4 items-center w-full md:flex-row">
<button
class="bg-lightBlue relative flex items-center place-content-center text-white rounded-md self-stretch pr-[90px]
font-mullish font-bold py-[14px] px-[18px] hover:bg-lightBlue500 transition-all duration-200 "
>Sign Up
<div class="w-12 h-[60px] bg-greenLight absolute right-6 skew-x-[20deg]
flex justify-center items-center">
<!-- arrow -->
<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="cursor-pointer group flex items-center ">
<a href="#" class="font-mullish font-bold text-lightBlue500 group-hover:text-lightBlue300 transition-all duration-200">
Know More</a>
<i data-feather="chevron-right" class=" w-5 h-5 text-lightBlue500 group-hover:text-lightBlue300 transition-all duration-200"></i>
</div>
</div>
</div>
<!-- right part img -->
<img src="Images/buisness-banking.png"
class="absolute max-w-[700px] right-0 bottom-0 hidden md:max-w-[400px] lg:max-w-[600px] md:block" alt="">
</div>
</div>
<!-- card-box -->
<div class="grid grid-cols-1 gap-4 my-14 md:grid-cols-2 lg:grid-cols-3">
<!-- box1 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="Images/current-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200" alt="">
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.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>
<!-- boxcontent -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<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 best-in-class technology</p>
</div>
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500 group:hover:text-grayBlue transition-all duration-200">
Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box2 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="Images/payouts-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200" alt="">
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.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>
<!-- boxcontent -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<div>
<h3 class=" font-mullish font-bold 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 group">
<a href="#"
class="font-mullish font-bold text-lightBlue500 group:hover:text-grayBlue transition-all duration-200">
Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box3 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="Images/payment-link-icon.svg"
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200" alt="">
<!-- box shape -->
<svg
viewBox="0 0 349.32501220703125 225"
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] transition-all duration-200"
style="stroke-opacity: 0.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>
<!-- boxcontent -->
<div class="z-[100] absolute w-full h-full flex flex-col justify-between pl-5 py-6 pr-8">
<div>
<h3 class=" font-mullish font-bold text-white leading-[1.2] text-[1.375rem]">Payroll</h3>
<p class="font-mullish text-grayText mt-6">Set your payroll and compliances like TDS, ESIC, PT, & PF on autopilot.</p>
</div>
<div class="flex items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue500 group:hover:text-grayBlue transition-all duration-200">
Know More</a>
<i
data-feather="chevron-right"
class="w-5 h-5 text-lightBlue500 group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
</div>
<!-- --demo-box-- -->
<div class=" border border-slate-600 justify-between items-center mb-24 gap-y-6 p-8 relative rounded-md hidden md:flex ">
<p class="text-white font-mullish text-xl">Check out the live demo to learn how RazorpayX works. <span class="font-extrabold">No sign-up required!</span></p>
<button
class="bg-lightBlue relative flex items-center place-content-center text-white rounded-md self-stretch pr-[90px]
font-mullish font-bold py-[14px] px-[18px] hover:bg-lightBlue500 transition-all duration-200 "
>Check out the demo
<div class="w-12 h-[60px] bg-greenLight absolute right-6 skew-x-[20deg]
flex justify-center items-center">
<!-- arrow -->
<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>
<!-- feature secton 3 -->
<section>
<div class="w-10/12 max-w-[1080px] pt-4 mx-auto relative flex flex-col">
<img src="Images/feature-section1-dottedrows.png" alt=""
width="233px"
class="absolute left-[300px] -top-[6rem] hidden lg:block ">
<img src="Images/feature-section1-dottedrows.png" alt=""
width="233px"
class="absolute -right-[3.5rem] -top-[6rem] -z-30 hidden lg:block">
<div class="w-full grid grid-cols-1 gap-y-10 gap-x-4 relative md:grid-cols-2 lg:grid-cols-3">
<!-- items1 -->
<div class="flex justify-center items-center">
<h2 class="font-mullish font-extrabold text-4xl leading-[3.375rem] text-deepBlueHead">New in the
<span class="text-lightBlue500">Razorpay</span>
<br>Product Suite</h2>
</div>
<!-- card 1 -->
<div class="bg-white p-10 bg-[url(Images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer bg-no-repeat hover:scale-105 transition-all duration-200 hover:bg-[url(Images/instant-settlement-bghover.svg)] " >
<img src="Images/razorpayXicon.svg" alt="">
<h3 class="font-mullish text-lg font-extrabold text-deepBlueHead pt-4">Instant Settlements</h3>
<p class="font-mullish py-3 text-grayText leading-normal">Settle your customer paments within 10 seconds as soon s your account is activated, even during holidays</p>
<div class="cursor-pointer group flex items-center ">
<a href="#" class="font-mullish font-extrabold text-lightBlue500 transition-all duration-200">
Know More</a>
<i data-feather="chevron-right" class=" w-5 h-5 text-lightBlue500 transition-all duration-200"></i>
</div>
</div>
<!-- card 2 -->
<div class=" bg-white p-10 bg-[url(Images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer bg-no-repeat hover:scale-105 transition-all duration-200 hover:bg-[url(Images/instant-settlement-bghover.svg)] " >
<img src="Images/razorpayXicon.svg" alt="">
<h3 class="font-mullish text-lg font-extrabold text-deepBlueHead pt-4">Instant Settlements</h3>
<p class="font-mullish py-3 text-grayText leading-normal">Settle your customer paments within 10 seconds as soon s your account is activated, even during holidays</p>
<div class="cursor-pointer group flex items-center ">
<a href="#" class="font-mullish font-extrabold text-lightBlue500 transition-all duration-200">
Know More</a>
<i data-feather="chevron-right" class=" w-5 h-5 text-lightBlue500 transition-all duration-200"></i>
</div>
</div>
<!-- card 3 -->
<div class="bg-white p-10 bg-[url(Images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer bg-no-repeat hover:scale-105 transition-all duration-200 hover:bg-[url(Images/instant-settlement-bghover.svg)] " >
<img src="Images/razorpayXicon.svg" alt="">
<h3 class="font-mullish text-lg font-extrabold text-deepBlueHead pt-4">Instant Settlements</h3>
<p class="font-mullish py-3 text-grayText leading-normal">Settle your customer paments within 10 seconds as soon s your account is activated, even during holidays</p>
<div class="cursor-pointer group flex items-center ">
<a href="#" class="font-mullish font-extrabold text-lightBlue500 transition-all duration-200">
Know More</a>
<i data-feather="chevron-right" class=" w-5 h-5 text-lightBlue500 transition-all duration-200"></i>
</div>
</div>
<!-- card 4 -->
<div class="bg-white p-10 bg-[url(Images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer bg-no-repeat hover:scale-105 transition-all duration-200 hover:bg-[url(Images/instant-settlement-bghover.svg)] " >
<img src="Images/razorpayXicon.svg" alt="">
<h3 class="font-mullish text-lg font-extrabold text-deepBlueHead pt-4">Instant Settlements</h3>
<p class="font-mullish py-3 text-grayText leading-normal">Settle your customer paments within 10 seconds as soon s your account is activated, even during holidays</p>
<div class="cursor-pointer group flex items-center ">
<a href="#" class="font-mullish font-extrabold text-lightBlue500 transition-all duration-200">
Know More</a>
<i data-feather="chevron-right" class=" w-5 h-5 text-lightBlue500 transition-all duration-200"></i>
</div>
</div>
<!-- card 5 -->
<div class="bg-white p-10 bg-[url(Images/instant-settlement-bg.svg)] w-full max-h-[300px] cursor-pointer bg-no-repeat hover:scale-105 transition-all duration-200 hover:bg-[url(Images/instant-settlement-bghover.svg)] " >
<img src="Images/razorpayXicon.svg" alt="">
<h3 class="font-mullish text-lg font-extrabold text-deepBlueHead pt-4">Instant Settlements</h3>
<p class="font-mullish py-3 text-grayText leading-normal">Settle your customer paments within 10 seconds as soon s your account is activated, even during holidays</p>
<div class="cursor-pointer group flex items-center ">
<a href="#" class="font-mullish font-extrabold text-lightBlue500 transition-all duration-200">
Know More</a>
<i data-feather="chevron-right" class=" w-5 h-5 text-lightBlue500 transition-all duration-200"></i>
</div>
</div>
</div>
</div>
</section>
<!-- feature section 4 -->
<section class="bg-[url(Images/core-features-sectionBg.svg)] bg-no-repeat bg-cover relative pb-[18rem] lg:pt-[14rem]">
<div class="w-10/12 max-w-[1080px] mx-5 relative flex flex-col pt-[45rem] lg:pt-4 lg:mx-auto">
<h2 class="font-mullish font-extrabold text-white lg:text-center text-2xl ">Features</h2>
<div class="w-6 h-1 bg-greenLight lg:mx-auto mt-4 mb-6"></div>
<p class="font-mullish lg:text-center max-w-[450px] text-white lg:mx-auto">Empower your business with all the right tools to accept online payments and provide the best customer experience</p>
<!-- grid -->
<div class="grid grid-cols-1 gap-[4rem] mt-8 lg:grid-cols-4">
<!-- card 1 -->
<div class="space-y-3">
<img src="Images/instant-activation-icon.svg" alt="">
<h3 class="font-mullish text-white text-lg font-extrabold">Instant Activation</h3>
<p class="font-mullish text-white opacity-95">Get activated and transact within 2 minutes. Completely online onboarding with minimum documentation.</p>
</div>
<!-- card 2 -->
<div class="space-y-3">
<img src="Images/instant-activation-icon.svg" alt="">
<h3 class="font-mullish text-white text-lg font-extrabold">Instant Activation</h3>
<p class="font-mullish text-white opacity-95">Get activated and transact within 2 minutes. Completely online onboarding with minimum documentation.</p>
</div>
<!-- card 3 -->
<div class="space-y-3">
<img src="Images/instant-activation-icon.svg" alt="">
<h3 class="font-mullish text-white text-lg font-extrabold">Instant Activation</h3>
<p class="font-mullish text-white opacity-95">Get activated and transact within 2 minutes. Completely online onboarding with minimum documentation.</p>
</div>
<!-- card 4 -->
<div class="space-y-3">
<img src="Images/instant-activation-icon.svg" alt="">
<h3 class="font-mullish text-white text-lg font-extrabold">Instant Activation</h3>
<p class="font-mullish text-white opacity-95">Get activated and transact within 2 minutes. Completely online onboarding with minimum documentation.</p>
</div>
<!-- card 5 -->
<div class="space-y-3">
<img src="Images/instant-activation-icon.svg" alt="">
<h3 class="font-mullish text-white text-lg font-extrabold">Instant Activation</h3>
<p class="font-mullish text-white opacity-95">Get activated and transact within 2 minutes. Completely online onboarding with minimum documentation.</p>
</div>
<!-- card 6 -->
<div class="space-y-3">
<img src="Images/instant-activation-icon.svg" alt="">
<h3 class="font-mullish text-white text-lg font-extrabold">Instant Activation</h3>
<p class="font-mullish text-white opacity-95">Get activated and transact within 2 minutes. Completely online onboarding with minimum documentation.</p>
</div>
<!-- card 7 -->
<div class="space-y-3">
<img src="Images/instant-activation-icon.svg" alt="">
<h3 class="font-mullish text-white text-lg font-extrabold">Instant Activation</h3>
<p class="font-mullish text-white opacity-95">Get activated and transact within 2 minutes. Completely online onboarding with minimum documentation.</p>
</div>
<!-- card 8 -->
<div class="space-y-3">
<img src="Images/instant-activation-icon.svg" alt="">
<h3 class="font-mullish text-white text-lg font-extrabold">Instant Activation</h3>
<p class="font-mullish text-white opacity-95">Get activated and transact within 2 minutes. Completely online onboarding with minimum documentation.</p>
</div>
</div>
</div>
</section>
<!-- join razorpay section -->
<section class="bg-[#f5f8fe] relative pt-40 pb-12 -mt-[200px] -z-50">
<div class="w-11/12 max-w-[1080px] pt-4 mx-auto relative flex flex-col md:flex-row ">
<!-- left-part -->
<div class="flex flex-col justify-center w-full pr-24 md:w-[50%]">
<h3 class="font-extrabold text-2xl text-deepBlue font-mullish">Join the 50,00,000+ businesses using Razorpay</h3>
<div class="w-6 h-1 bg-greenLight mb-10 my-4"></div>
<p class="font-mullish text-left">We make it easier for you to focus on building great products while we work on simplifying your payments. Become one of us by joining thousands of our happy users and simplify the online payment experience for your customers.</p>
<br><p class="font-mullish ">Focus on your business while we handle the complexities of payments for you.</p>
<span class="mt-8">
<button class="bg-lightBlue hover:bg-lightBlue500 px-5 py-3 flex font-bold font-mullish rounded-md text-white transition-all duration-200">
Get Started
<svg
viewBox="0 0 24 24"
focusable="false"
class="w-[20px] h-[19px] ml-1 mt-1"
>
<path
fill="currentColor"
d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"
></path>
</svg>
</button>
</span>
</div>
<!-- right-part -->
<div class="h-[500px] w-full relative mx-auto overflow-y-hidden md:w-[50%]">
<div style="background: linear-gradient(180deg,#f4f8ff,#fff0)"
class="absolute w-full h-[150px] top-0 z-50">
</div>
<img src="Images/comanies.png" alt=""
class="absolute object-cover move-image">
<div style="background: linear-gradient(0deg,#f4f8ff,#fff0)"
class="absolute w-full h-[150px] bottom-0 z-50">
</div>
</div>
</section>
<!-- testimonial section -->
<section class="relative">
<div class="w-11/12 max-w-[1300px] mx-auto relative py-20">
<img src="Images/feature-section1-dottedrows.png" alt=""
class="absolute w-[200px] top-[8rem] left-[2rem] -z-10 hidden lg:block">
<h2 class="font-mullish font-extrabold text-deepBlue text-2xl text-center">An Experience<br>People Love to Talk About</h2>
<div class="w-6 h-1 bg-greenLight mx-auto my-4"></div>
<div class="relative">
<!-- left button -->
<button class="w-[100px] h-[100px] bg-[#f4f8ff] rounded-full absolute left-0 top-1/2 flex justify-center items-center ">
<div class="w-[65%] h-[65%] bg-[#f4f8ff] rounded-full flex justify-center items-center mix-blend-multiply">
<i data-feather="chevron-right"
class="stoke-[5px] w-6 h-6 text-gray-400"></i>
</div>
</button>
<!-- main content -->
<div class="flex flex-col lg:flex-row max-w-[960px] items-center mx-auto my-20 justify-evenly">
<img src="Images/testimonial.jpg" alt=""
height="320px"
width="320px"
class="rounded-xl ">
<!-- right part -->
<div class="max-w-[480px] flex flex-col gap-1 mt-[15rem] lg:mt-0">
<img src="Images/quotes.svg" alt=""
height="40px"
width="35px"
class="mb-2 hidden lg:block">
<p class="font-mullish text-3xl font-extralight">Acquire Customers From New Customer Segments</p>
<a href="" class="text-grayText italic underline">Learn More</a>
<h3 class="font-mullish font-extrabold text-2xl">Lorem Ipsum</h3>
<p class="font-mullish font-medium">Product Manager</p>
<img src="Images/fake-company-logo.png" alt=""
width="80px"
height="40px">
</div>
</div>
<!-- right button -->
<button class="w-[100px] h-[100px] bg-[#f4f8ff] rounded-full absolute right-0 top-1/2 flex justify-center items-center ">
<div class="w-[65%] h-[65%] bg-[#f4f8ff] rounded-full flex justify-center items-center mix-blend-multiply">
<i data-feather="chevron-right"
class="stoke-[5px] w-6 h-6 text-gray-400"></i>
</div>
</button>
</div>
<!-- 6 dot div -->
<div class="flex mx-auto space-x-2 justify-center">
<!-- dot 1 -->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full cursor-pointer"></div>
<!-- dot 2 -->
<div class="h-[10px] w-[10px] bg-lightBlue rounded-full cursor-pointer"></div>
<!-- dot 3 -->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full cursor-pointer"></div>
<!-- dot 4 -->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full cursor-pointer"></div>
<!-- dot 5 -->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full cursor-pointer"></div>
<!-- dot 6 -->
<div class="h-[10px] w-[10px] bg-gray-300 rounded-full cursor-pointer"></div>
</div>
</div>
</section>
<!-- last section -->
<section class="bg-[url(Images/CTABg.svg)] w-full h-full bg-no-repeat bg-cover relative min-h-[450px]">
<!-- content box -->
<div class="w-11/12 max-w-[1080px] relative flex items-center justify-between space-x-20 mx-auto pt-16 ">
<!-- left part -->
<div class="pt-10 flex flex-col gap-4 pb-[5rem]">
<h2 class="text-white font-bold text-2xl font-mullish">Supercharge your business with Razorpay</h2>
<div class="w-6 h-1 bg-greenLight"></div>
<p class="font-mullish text-white max-w-[450px]" >Sign up now to experience the future of payments and offer your customers the best checkout experience.</p>
<ul class="flex gap-10 text-white font-mullish">
<li class="flex">
<i data-feather="check" class="text-greenLight"></i>
<span>Quick onboarding</span>
</li>
<li>
<i data-feather="check" class="text-greenLight"></i>
<span>Access to entire product suite</span>
</li>
<li>
<i data-feather="check" class="text-greenLight"></i>
<span>API access</span>
</li>
<li>
<i data-feather="check" class="text-greenLight"></i>
<span>24x7 support</span>
</li>
</ul>
<button class="min-w-[32px] font-mullish text-sm font-bold bg-white text-lightBlue border flex rounded-sm items-center
hover:text-lightBlue500 transition-all duration-200 py-3 px-4 self-start">
Sign Up now
</button>
</div>
<!-- right part -->
<div class=" mt-20">
<img src="Images/ctaImg.svg" alt=""
width="240px"
height="282px"
class="hidden md:block">
</div>
</div>
</section>
</div>
<script>
feather.replace()
</script>
</body>
</html>