-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
670 lines (539 loc) · 33.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
<!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">
<title>Rezorpay_dummy</title>
<link rel="stylesheet" href="main.css">
<script src="https://unpkg.com/feather-icons"></script> <!--commands: npm i feather // npm audit fix --force // npm run start-->
<script src="https://cdn.tailwindcss.com"></script> //tailwindcss using cdn
</head>
<body>
<!-- nav bar -->
<nav class="bg-deepBlue min-w-[1200px]">
<div class="relative w-[1080px] mx-auto flex items-center justify-between">
<!-- logo -->
<a href="/" class="cursor-pointer py-7 pr-7 ">
<img src="./assets/logo.svg" alt="" width="125px" height="30px">
</a>
<ul class="flex space-x-6">
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group">
<a href="#">Payments</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block duration-200"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group">
<a href="#">Banking+</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block duration-200"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group">
<a href="#">Line of Credit</a>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group">
<a href="#">Payroll</a>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group">
<a href="#">Resources</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block duration-200"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group">
<a href="#">Support</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block duration-200"></div>
</li>
<li class="text-white font-mullish py-7 hover:text-lightBlue cursor-pointer transition-all duration-200 relative group">
<a href="#">Pricing</a>
<div class="absolute bottom-0 w-full h-1 bg-lightBlue hidden group-hover:block duration-200"></div>
</li>
</ul>
<div class="flex space-x-6">
<img src="./assets/india-flag.svg"
height="20px"
width="28px" alt="">
<button class="py-3 px-5 font-mullish text-white border-lightBlue border rounded-sm text-sm font-bold">Log In</button>
<button class="py-3 px-4 font-mullish rounded-sm text-sm font-bold bg-white text-lightBlue300 border transition duration-200 hover:text-lightBlue500">Sign Up </button>
</div>
</div>
</nav>
<!-- Hero-section -->
<section class="relative bg-deepBlue min-w-[1200px] py-[0px] px-[32px]">
<div class="w-10/12 flex flex-row justify-between items-center mx-auto">
<!-- left-part -->
<div class="flex flex-col gap-4 h-[500px] w-[410px] py-[80px] px-[0px]">
<h1 class="font-mullish font-bold text-[40px] leading-[1.2] text-white">Power your finance, grow your business</h1>
<div class="w-6 h-1 bg-greenLight"></div>
<p class="font-mullish text-[18px] leading-7 text-white opacity-60">Accept payments from customers. Automate payouts to vendors & employees. Never run out of working capital.</p>
<button class="bg-lightBlue text-white font-mullish rounded-md font-bold hover:bg-lightBlue500 transition-all duration-200 py-[14px] px-[18px] w-[162px] h-[49px]">Sign Up Now</button>
</div>
<!-- right-part -->
<div class="w-full max-w-[680px]">
<img src="./assets/hero-illustration.jpg" alt="">
</div>
</div>
<!-- triangular-shaped-image -->
<div class="absolute left-0 right-[-1px]">
<img src="./assets/hero-shape.svg" alt="" class="w-[103%]">
</div>
</section>
<!-- Info-sdection -->
<section class="relative mt-[190px] overflow-hidden">
<img src="./assets/feature-section1-dottedrows.png" alt="" loading="lazy" width="233"
height="167"
class="absolute top-[-8rem] left-[10rem] inline-block">
<!--display: Inline == pure ki pure width occupy
display:block == jitna content hain utna hi lega //
diplay: inline-block == according to given parameters given by u-->
<img src="./assets/feature-section1-dottedrows.png" alt="" loading="lazy"
width="233" height="167"
class="absolute top-[3rem] right-0 inline-block rotate-180">
<!-- feature div -->
<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-6"></div>
<!-- content-box -->
<div class="w-full min-h-[520px] bg-white flex rounded-md relative p-10 py-10 border drop-shadow-md">
<!-- left-section -->
<div class="flex flex-col justify-between w-full">
<h3 class="font-mullish text-[28px] leading-10 font-bold max-w-[500px] ">Supercharge your business with the all-powerful
<span class="text-lightBlue">Payment Gateway</span>
</h3>
<ul class="space-y-2 ">
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>100+ Payment Methods</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Industry Leading Success Rate</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Superior Checkout Experience</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Easy to Integrate</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Instant Settlements from day 1</span>
</li>
<li class="font-mullish flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>In-depth Reporting and Insights</span>
</li>
</ul>
<!-- for button and hyper-link -->
<div class="flex flex-row items-center space-x-4">
<button class="bg-lightBlue text-white py-[14px] px-[18px] rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200 cursor-pointer
flex flex-row w-[162px] h-[50px] justify-between items-center">
Sign Up Now
<!-- arrow using svg -->
<i data-feather="arrow-right" class="text-white h-[16px] w-[16px]"></i>
</button>
<!-- hyper-link -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-grayBlue transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<img src="./assets/payment-suite.png" alt="" class="max-w-[600px] absolute right-0 bottom-0">
</div>
<!-- end payment section -->
<div class="w-full grid grid-cols-3 gap-4 mt-16">
<!-- box1 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="./assets/payment-link-icon.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200">
<!-- box shape -->
<svg viewBox="0 0 430.8000183105469 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.15">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 331.8000183105469
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 -418.8000183105469
a 6 6 0 0 1 -6 -6
z" fill="#fff"></path>
</svg>
<!-- box content -->
<div class="z-[100] absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8">
<!-- text part -->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!-- hyper link know more -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-grayBlue transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box 2-->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="./assets/payment-link-icon.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200">
<!-- box shape -->
<svg viewBox="0 0 430.8000183105469 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.15">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 331.8000183105469
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 -418.8000183105469
a 6 6 0 0 1 -6 -6
z" fill="#fff"></path>
</svg>
<!-- box content -->
<div class="z-[100] absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8">
<!-- text part -->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!-- hyper link know more -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-grayBlue transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box3-->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="./assets/payment-link-icon.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200">
<!-- box shape -->
<svg viewBox="0 0 430.8000183105469 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.15">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 331.8000183105469
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 -418.8000183105469
a 6 6 0 0 1 -6 -6
z" fill="#fff"></path>
</svg>
<!-- box content -->
<div class="z-[100] absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8">
<!-- text part -->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!-- hyper link know more -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-grayBlue transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box4 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="./assets/payment-link-icon.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200">
<!-- box shape -->
<svg viewBox="0 0 430.8000183105469 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.15">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 331.8000183105469
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 -418.8000183105469
a 6 6 0 0 1 -6 -6
z" fill="#fff"></path>
</svg>
<!-- box content -->
<div class="z-[100] absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8">
<!-- text part -->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!-- hyper link know more -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-grayBlue transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box5 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="./assets/payment-link-icon.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200">
<!-- box shape -->
<svg viewBox="0 0 430.8000183105469 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.15">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 331.8000183105469
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 -418.8000183105469
a 6 6 0 0 1 -6 -6
z" fill="#fff"></path>
</svg>
<!-- box content -->
<div class="z-[100] absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8">
<!-- text part -->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!-- hyper link know more -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-grayBlue transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box6 -->
<div class="w-full min-h-[15rem] relative cursor-pointer">
<img src="./assets/payment-link-icon.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200">
<!-- box shape -->
<svg viewBox="0 0 430.8000183105469 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.15">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 331.8000183105469
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 -418.8000183105469
a 6 6 0 0 1 -6 -6
z" fill="#fff"></path>
</svg>
<!-- box content -->
<div class="z-[100] absolute h-full w-full flex flex-col justify-between pl-5 py-6 pr-8">
<!-- text part -->
<div>
<h3 class="font-mullish font-bold text-deepBlueHead leading-[1.2] text-[1.375rem]">Payment Links</h3>
<p class="font-mullish text-grayText mt-6">Share payment link via an email, SMS, messenger, chatbot etc. and get paid immediately</p>
</div>
<!-- hyper link know more -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-grayBlue transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- feature section-2 -->
<section
class="bg-[url(./assets/bg-image.svg)] bg-cover relative bg-no-repeat pt-[224px] pb-[500px] px-[32px] top-0 bottom-0 left-0 right-0 mt-14 min-w-[1500px]">
<div
class=" max-w-[1080px] pt-4 mx-auto relative ">
<h2 class="font-mullish text-center text-2xl leading-[1.2] font-extrabold text-white ">Explore RazorpayX powered Business Banking</h2>
<div class="w-6 h-1 bg-greenLight mx-auto mt-4 mb-6"></div>
<!-- main featured-box -->
<div class="w-full min-h-[440px] flex flex-col relative ">
<img src="./assets/x-flame-1.png" alt="" loading="lazy" class="absolute -top-[142px] -left-[140px] w-[200px]">
<img src="./assets/x-flame-2.png" alt="" loading="lazy" class="absolute top-[150px] -right-[180px] w-[270px]">
<!-- content box -->
<div class="w-full bg-[#181c2e] min-h-[520px] flex rounded-md relative p-10 py-10 border border-slate-600 z-20">
<!-- left-section -->
<div class="flex flex-col justify-between w-full h-full text-start gap-12 z-20">
<h3 class="font-mullish text-white text-[28px] leading-10 font-bold max-w-[500px] ">
Manage your company's finances and supercharge your business banking with
<img src="./assets/razorpayX.svg" alt=""
width="168px"
height="32px"
class="inline">
</h3>
<ul class="space-y-2 ">
<li class="font-mullish text-white flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Open a fully digital current account</span>
</li>
<li class="font-mullish text-white flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Automate payables & compliment payments</span>
</li>
<li class="font-mullish text-white flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>Simplify and track spends with Corporate cards</span>
</li>
<li class="font-mullish text-white flex items-center space-x-2">
<i data-feather="check" class="text-greenLight"></i>
<span>View financial insights at a glance</span>
</li>
</ul>
<!-- for button and hyper-link -->
<div class="flex flex-row w-full items-center space-x-4 mt-6">
<button class="relative bg-lightBlue text-white py-[14px] px-[18px] rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200 cursor-pointer
flex flex-row w-[162px] h-[50px] justify-between items-center">
Sign Up
<div class="absolute w-12 h-[60px] bg-greenLight right-6 skew-x-[20deg] flex justify-center items-center">
<!-- arrow using svg -->
<i data-feather="arrow-right" class="text-white h-[16px] w-[16px] -skew-x-[20deg]"></i>
</div>
</button>
<!-- hyper-link -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-grayBlue transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-grayBlue transition-all duration-200"></i>
</div>
</div>
</div>
<img src="./assets/buisness-banking.png" alt="" class="max-w-[600px] relative top-0 left-0 right-0 bottom-0 z-4">
</div>
<!-- card-box -->
<div class="w-full grid grid-cols-3 gap-4 mt-16 ">
<!-- box1 -->
<div class="w-full h-[225px] relative cursor-pointer">
<img src="./assets/payment-link-icon.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200">
<!-- box shape -->
<svg viewBox="0 0 430.8000183105469 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.6">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 331.8000183105469
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 -418.8000183105469
a 6 6 0 0 1 -6 -6
z" fill="#181c2e"></path>
</svg>
<!-- box content -->
<div class="z-[100] absolute w-full flex flex-col justify-between pl-5 py-6 pr-8 h-[225px]">
<!-- text part -->
<div>
<h3 class="font-mullish font-extrabold text-white leading-[26.4px] text-[1.375rem]">Current Account</h3>
<p class="font-mullish text-grayText mt-6">Current account for fast growing bussiness,supported by best-in-class technology</p>
</div>
<!-- hyper link know more -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-lightBlue500 transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-lightBlue500 transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box 2-->
<div class="w-full h-[225px] relative cursor-pointer">
<img src="./assets/payment-link-icon.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200">
<!-- box shape -->
<svg viewBox="0 0 430.8000183105469 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.6">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 331.8000183105469
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 -418.8000183105469
a 6 6 0 0 1 -6 -6
z" fill="#181c2e"></path>
</svg>
<!-- box content -->
<div class="z-[100] absolute w-full flex flex-col justify-between pl-5 py-6 pr-8 h-[225px]">
<!-- text part -->
<div>
<h3 class="font-mullish font-extrabold text-white leading-[26.4px] text-[1.375rem]">Current Account</h3>
<p class="font-mullish text-grayText mt-6">Current account for fast growing bussiness,supported by best-in-class technology</p>
</div>
<!-- hyper link know more -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-lightBlue500 transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-lightBlue500 transition-all duration-200"></i>
</div>
</div>
</div>
<!-- box3-->
<div class="w-full h-[225px] relative cursor-pointer">
<img src="./assets/payment-link-icon.svg" alt=""
class="bg-lightBlue absolute right-3 top-3 w-12 h-12 rounded-full z-[8] transition-all duration-200">
<!-- box shape -->
<svg viewBox="0 0 430.8000183105469 225" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" class="stroke-1 stroke-[#818597] h-full w-full absolute z-[9] featureCardSVG transition-all duration-200"
style="stroke-opacity: 0.6">
<path d="m 0 6
a 6 6 0 0 1 6 -6
h 331.8000183105469
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 -418.8000183105469
a 6 6 0 0 1 -6 -6
z" fill="#181c2e"></path>
</svg>
<!-- box content -->
<div class="z-[100] absolute w-full flex flex-col justify-between pl-5 py-6 pr-8 h-[225px]">
<!-- text part -->
<div>
<h3 class="font-mullish font-extrabold text-white leading-[26.4px] text-[1.375rem]">Current Account</h3>
<p class="font-mullish text-grayText mt-6">Current account for fast growing bussiness,supported by best-in-class technology</p>
</div>
<!-- hyper link know more -->
<div class="flex flex-row items-center cursor-pointer group">
<a href="#"
class="font-mullish font-bold text-lightBlue group-hover:text-lightBlue500 transition-all duration-200">Know more</a>
<i data-feather="chevron-right" class="w-5 h-5 text-lightBlue group-hover:text-lightBlue500 transition-all duration-200"></i>
</div>
</div>
</div>
</div>
<!-- demo-box -->
<div class="w-full flex flex-row justify-between items-center border border-slate-700 mt-9 mb-24 gap-y-6 p-8 relative rounded-md">
<p class="text-white font-mullish 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 bg-lightBlue text-white py-[14px] px-[18px] rounded-md font-mullish font-bold hover:bg-lightBlue500 transition-all duration-200 cursor-pointer
flex flex-row w-[260px] h-[49px] justify-between items-center">
Check out the demo
<div class="absolute w-12 h-[60px] bg-greenLight right-6 skew-x-[20deg] flex justify-center items-center">
<!-- arrow using svg -->
<i data-feather="arrow-right" class="text-white h-[16px] w-[16px] -skew-x-[20deg]"></i>
</div>
</button>
</div>
</div>
</div>
</section>
<script>
feather.replace()
</script>
</body>
</html>