-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1096 lines (1086 loc) · 53.8 KB
/
index.html
File metadata and controls
1096 lines (1086 loc) · 53.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="./images/favicon.ico"
type="image/x-icon"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="./css/style.css" />
<title>Paytm: Secure & Fast UPI Payments, Recharge Mobile & Pay</title>
</head>
<body class="bg-gray-100 font-[Inter] overflow-x-hidden">
<header class="bg-white shadow-xl">
<div
class="md:container md:mx-auto p-5 flex items-center justify-start md:justify-between"
>
<div class="mr-5 block md:hidden cursor-pointer">
<i class="fa-solid fa-bars text-[24px]"></i>
</div>
<a class="cursor-pointer" href="#">
<img
class="w-36"
src="./images/paytm_logo.png"
alt="logo"
ss
/>
</a>
<nav class="hidden lg:flex cursor-pointer text-sm">
<a class="mr-5 font-bold hover:text-gray-900"
>Paytm For Consumer</a
>
<a class="mr-5 font-bold hover:text-gray-900"
>Paytm For Business</a
>
<a class="mr-5 font-bold hover:text-gray-900">Company</a>
<a class="mr-5 font-bold hover:text-gray-900"
>Investor Relations</a
>
<a class="mr-5 font-bold hover:text-gray-900">Career</a>
</nav>
<button
class="bg-sky-500 hover:bg-blue-900 hidden md:flex cursor-pointer text-white rounded-full text-center pl-3 w-30"
>
<h2 class="font-semibold mt-2">Sign in</h2>
<span class="ml-3">
<svg
class="w-10 h-10"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="12.1363"
cy="12.0001"
r="11.5909"
fill="#002970"
/>
<circle
cx="12.1361"
cy="10.4545"
r="5.40909"
fill="white"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M3.32666 19.5329C5.03463 16.4248 8.3395 14.3184 12.1364 14.3184C15.9332 14.3184 19.2381 16.4249 20.9461 19.5329C18.8202 22.0168 15.6621 23.591 12.1364 23.591C8.61063 23.591 5.45254 22.0168 3.32666 19.5329Z"
fill="white"
/>
</svg>
</span>
</button>
</div>
</header>
<!-- aside -->
<aside class="text-center py-1 text-base mb-2">
<h2 class="text-black">
<span class="font-bold">NO Wallet KYC Required</span> 😊 to pay
using UPI on Paytm.
<span class="font-semibold"> Learn More.</span>
</h2>
</aside>
<!-- hero-section -->
<section aria-label="hero">
<div
class="bg-white flex flex-col-reverse md:flex-row justify-between items-center text-center sm:text-left py-16 space-y-0 md:space-y-0 md:pl-14"
>
<div
class="space-y-8 flex flex-col leading-3 md:w-1/3 lg:w-1/2"
>
<img
src="./images/hero-left-logo.png"
class="block mx-auto md:mx-0 w-20 h-20 mb-8"
alt="hero-logo"
/>
<h1
class="text-center text-[1.5rem] leading-[1] font-extrabold sm:text-[1.5rem] md:text-[2rem] lg:text-[2.5rem] xl:text-[3.5rem] md:text-left"
>
India's Most-loved Payments App
</h1>
<p
class="text-gray-800 text-center leading-5 xl:text-[2rem] xl:leading-8 md:text-left"
>
Recharge & pay bill, book flights & movie tickets, open
a savings account, invest in stocks & mutual funds, and
do a lot more.
</p>
<button
class="flex flex-row cursor-pointer p-5 align-middle text-center mx-auto md:mx-0 w-[260px] rounded-full text-white bg-black hover:bg-white hover:text-black border border-transparent hover:border-black"
>
<h2>Download Paytm App</h2>
<span class="ml-3"
><i class="fa-brands fa-apple"></i
></span>
<span class="ml-3">
<i class="fa-brands fa-google-play"></i
></span>
</button>
</div>
<div>
<img
src="./images/heroimage.webp"
class="w-[23rem] h-[15rem] mb-12 md:mb-0 md:w-[34rem] md:h-[32rem]"
alt="heor-image"
/>
</div>
</div>
</section>
<!-- Recharge and Bill section -->
<section class="bg-sky-500" aria-label="Recharge & Bill">
<div class="container mx-auto flex flex-col p-8">
<div class="text-white font-semibold mb-14">
<h1
class="text-2xl text-center md:text-left md:text-5xl lg:ml-36"
>
Recharge & pay Bills on Paytm.
</h1>
</div>
<div
class="bg-transparent flex flex-col justify-center items-center md:items-start flex-wrap sm:flex-row"
>
<div
class="bg-transparent mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-sky-400"
>
<img
class="w-20 mb-3"
src="./images/r1.png"
alt="phone"
/>
<h3>Recharge</h3>
<h3>Perpaid</h3>
<h3>Mobile <i class="fa-solid fa-angle-right"></i></h3>
</div>
<div
class="bg-transparent ml-5 mb-8 text-white text-lg font-semibold flex flex-col justify-center items-center mg:justify-start md:items-start p-2 w-[10rem] h-[12rem] rounded-xl hover:bg-sky-400"
>
<img
class="w-20 mb-3"
src="./images/r2.png"
alt="phone"
/>
<h3>Pay</h3>
<h3>Rent</h3>
<h3>Payment <i class="fa-solid fa-angle-right"></i></h3>
</div>
<div
class="bg-transparent ml-5 mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-sky-400"
>
<img
class="w-20 mb-3"
src="./images/r3.png"
alt="phone"
/>
<h3>Pay</h3>
<h3>Electricity</h3>
<h3>bill <i class="fa-solid fa-angle-right"></i></h3>
</div>
<div
class="bg-transparent ml-5 mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-sky-400"
>
<img
class="w-20 mb-3"
src="./images/r4.png"
alt="phone"
/>
<h3>Recharge</h3>
<h3>DTH</h3>
<h3>
Connection <i class="fa-solid fa-angle-right"></i>
</h3>
</div>
<div
class="bg-transparent ml-5 mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-sky-400"
>
<img
class="w-20 mb-3"
src="./images/r5.png"
alt="phone"
/>
<h3>Book</h3>
<h3>Gas</h3>
<h3>
Cylinder <i class="fa-solid fa-angle-right"></i>
</h3>
</div>
<div
class="bg-transparent ml-5 mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-sky-400"
>
<img
class="w-20 mb-3"
src="./images/r6.png"
alt="phone"
/>
<h3>Pay</h3>
<h3>Credit</h3>
<h3>
Card Bill <i class="fa-solid fa-angle-right"></i>
</h3>
</div>
</div>
</div>
</section>
<!-- Book & Pay section -->
<section class="bg-blue-900 mb-14" aria-label="Recharge & Bill">
<div class="container mx-auto flex flex-col p-8">
<div class="text-white font-semibold mb-14">
<h1
class="text-2xl text-center md:text-left md:text-5xl lg:ml-36"
>
Book & Pay on Paytm.
</h1>
</div>
<div
class="bg-transparent flex flex-col justify-center items-center md:items-start flex-wrap sm:flex-row"
>
<div
class="bg-transparent mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-blue-800"
>
<img
class="w-20 mb-3"
src="./images/b1.png"
alt="phone"
/>
<h3>Movie</h3>
<h3>Tickets <i class="fa-solid fa-angle-right"></i></h3>
</div>
<div
class="bg-transparent ml-5 mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-blue-800"
>
<img
class="w-20 mb-3"
src="./images/b2.png"
alt="phone"
/>
<h3>Flight</h3>
<h3>Tickets <i class="fa-solid fa-angle-right"></i></h3>
</div>
<div
class="bg-transparent ml-5 mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-blue-800"
>
<img
class="w-20 mb-3"
src="./images/b3.png"
alt="phone"
/>
<h3>Bus</h3>
<h3>Tickets <i class="fa-solid fa-angle-right"></i></h3>
</div>
<div
class="bg-transparent ml-5 mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-blue-800"
>
<img
class="w-20 mb-3"
src="./images/b4.png"
alt="phone"
/>
<h3>Train</h3>
<h3>Tickets <i class="fa-solid fa-angle-right"></i></h3>
</div>
<div
class="bg-transparent ml-5 mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-blue-800"
>
<img
class="w-20 mb-3"
src="./images/b5.png"
alt="phone"
/>
<h3>Car &</h3>
<h3>Bikes <i class="fa-solid fa-angle-right"></i></h3>
</div>
<div
class="bg-transparent ml-5 mb-8 text-white text-lg font-semibold p-2 w-[10rem] h-[12rem] flex flex-col justify-center items-center mg:justify-start md:items-start rounded-xl hover:bg-blue-800"
>
<img
class="w-20 mb-3"
src="./images/b6.png"
alt="phone"
/>
<h3>International</h3>
<h3>Flights <i class="fa-solid fa-angle-right"></i></h3>
</div>
</div>
</div>
</section>
<!-- Paytm Payment Instuments -->
<section class="mb-20">
<div class="container mx-auto flex flex-col w-[100%] sm:w-[80%]">
<div
class="text-4xl md:text-6xl font-bold mb-14 text-center md:text-left"
>
<h2>Paytm Payment Instuments</h2>
</div>
<div class="grid gap-8 grid-cols-1 lg:grid-cols-2">
<div
class="col-span-2 bg-white flex flex-col-reverse md:flex-row justify-between items-center text-center py-12 sm:text-left lg:py-32 lg:px-24 space-y-0 md:space-y-0 rounded-xl mb-10"
>
<div
class="space-y-8 flex flex-col leading-3 md:w-10/12 px-8"
>
<div
class="flex flex-col justify-center md:flex-row md:justify-start items-center"
>
<img
src="./images/paytm-wallet.png"
class="block mx-auto md:mx-0 w-14 h-14"
alt="hero-logo"
/>
<div
class="flex flex-col md:ml-3 text-sm font-bold"
>
<span>Paytm</span>
<span>Wallet</span>
</div>
</div>
<h1
class="text-center text-[1.5rem] leading-[1] font-extrabold sm:text-[1.5rem] md:text-[2rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left"
>
The Fastest Way to Pay In-store & Online.
</h1>
<p
class="text-gray-800 text-center leading-5 text-[1rem] xl:leading-8 md:text-left"
>
Load up your Paytm Wallet for free and make
payments in a jiffy at over 21 million stores,
websites and apps.
</p>
<button
class="flex flex-row cursor-pointer p-5 align-middle text-center mx-auto md:mx-0 w-[260px] rounded-full text-white bg-black hover:bg-white hover:text-black border border-transparent hover:border-black"
>
<h2>Download Paytm App</h2>
<span class="ml-3"
><i class="fa-brands fa-apple"></i
></span>
<span class="ml-3">
<i class="fa-brands fa-google-play"></i
></span>
</button>
</div>
<div>
<img
src="./images/inst-1.webp"
class="w-[22rem] h-[18rem] mb-12 md:mb-0 md:w-[45rem] md:h-[25rem]"
alt="heor-image"
/>
</div>
</div>
<div
class="col-span-2 bg-white flex flex-col-reverse md:flex-row justify-between items-center text-center py-12 sm:text-left lg:py-32 lg:px-24 space-y-0 md:space-y-0 rounded-xl mb-10"
>
<div
class="space-y-8 flex flex-col leading-3 md:w-10/12 px-8"
>
<div
class="flex flex-col justify-center md:flex-row md:justify-start items-center"
>
<img
src="./images/paytm-upi-money.png"
class="block mx-auto md:mx-0 w-14 h-14"
alt="hero-logo"
/>
<div
class="flex flex-col md:ml-3 text-sm font-bold"
>
<span>UPI Money </span>
<span>Transfer</span>
</div>
</div>
<h1
class="text-center text-[1.5rem] leading-[1] font-extrabold sm:text-[1.5rem] md:text-[2rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left md:w-10/12"
>
Pay anyone directly from your bank account.
</h1>
<p
class="text-gray-800 text-center leading-5 text-[1rem] xl:leading-8 md:text-left"
>
Pay anyone, everywhere. Make contactless &
secure payments in-stores or online using Paytm
Wallet or Directly from your Bank Account. Plus,
send & receive money from anyone.
</p>
<button
class="flex flex-row cursor-pointer p-5 align-middle text-center mx-auto md:mx-0 w-[260px] rounded-full text-white bg-black hover:bg-white hover:text-black border border-transparent hover:border-black"
>
<h2>Download Paytm App</h2>
<span class="ml-3"
><i class="fa-brands fa-apple"></i
></span>
<span class="ml-3">
<i class="fa-brands fa-google-play"></i
></span>
</button>
</div>
<div>
<img
src="./images/inst-2.webp"
class="w-[22rem] h-[18rem] mb-12 md:mb-0 md:w-[45rem] md:h-[25rem]"
alt="heor-image"
/>
</div>
</div>
<div
class="col-span-2 bg-white flex flex-col-reverse md:flex-row justify-between items-center text-center py-12 sm:text-left lg:py-32 lg:px-24 space-y-0 md:space-y-0 rounded-xl mb-10"
>
<div
class="space-y-8 flex flex-col leading-3 md:w-10/12 px-8"
>
<img
src="./images/paytm-postpaid.webp"
class="block mx-auto md:mx-0 w-32 h-auto"
alt="hero-logo"
/>
<h1
class="text-center text-[1.5rem] leading-[1] font-extrabold sm:text-[1.5rem] md:text-[2rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left"
>
Want it? <br />
No more waiting for it.
</h1>
<p
class="text-gray-800 text-center leading-5 text-[1rem] xl:leading-8 md:text-left"
>
With Paytm Postpaid, your wishlist doesn't have
to be on the waitlist. Shop for the things you
want today and pay for them next month.
</p>
<button
class="flex flex-row justify-between items-center cursor-pointer p-5 align-middle text-center mx-auto md:mx-0 w-[150px] rounded-full text-white bg-blue-900 hover:bg-blue-500"
>
<h2>Learn More</h2>
<span
><i class="fa-solid fa-chevron-right"></i
></span>
</button>
</div>
<div>
<img
src="./images/inst-3.webp"
class="w-[22rem] h-[18rem] mb-12 md:mb-0 md:w-[45rem] md:h-[25rem]"
alt="heor-image"
/>
</div>
</div>
<div
class="col-span-2 lg:col-span-1 bg-white flex flex-col justify-between items-center text-center py-0 sm:text-left lg:py-0 lg:px-24 space-y-0 md:space-y-0 rounded-xl mb-10"
>
<div
class="space-y-8 flex flex-col leading-3 md:w-10/12 px-8 mb-20"
>
<img
src="./images/paytm-hdfc.png"
class="block mx-auto md:mx-0"
alt="hero-logo"
/>
<h1
class="text-center text-[1.5rem] leading-[1] font-extrabold sm:text-[1.5rem] md:text-[2rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left"
>
Unlimited Cashback Every time.
</h1>
<p
class="text-gray-800 text-center leading-5 text-[1rem] xl:leading-8 md:text-left"
>
Paytm HDFC Bank Select Credit Card. A card with
assured Cashback and incredible offers.
</p>
</div>
<div>
<img
src="./images/inst-card-1.webp"
class="w-[22rem] h-[18rem] md:mb-0 md:w-[25rem] md:h-[20rem]"
alt="heor-image"
/>
</div>
</div>
<div
class="col-span-2 lg:col-span-1 bg-white flex flex-col justify-between items-center text-center py-12 sm:text-left lg:py-20 lg:px-24 space-y-0 md:space-y-0 rounded-xl mb-10"
>
<div class="space-y-8 flex flex-col leading-3 px-8">
<img
src="./images/paytm-sbi.png"
class="block mx-auto md:mx-0"
alt="hero-logo"
/>
<h1
class="text-center text-[1.5rem] leading-[1] font-extrabold sm:text-[1.5rem] md:text-[2rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left"
>
India’s Most Sincere Credit Card
</h1>
<p
class="text-gray-800 text-center leading-5 text-[1rem] xl:leading-8 md:text-left"
>
Paytm SBI Card SELECT - With Intelligent
Features & Great Rewards that Never Expire
</p>
</div>
<div>
<img
src="./images/inst-card-2.webp"
class="w-[22rem] h-[18rem] mb-0 md:mb-0 md:w-[25rem] md:h-[20rem]"
alt="heor-image"
/>
</div>
</div>
</div>
</div>
</section>
<!-- Finacncial Services section -->
<section class="bg-white mb-10">
<div
class="container mx-auto w flex flex-col-reverse md:flex-row justify-between items-center text-center sm:text-left py-20 w-[100%] md:w-[85%] md:pl-14"
>
<div class="space-y-8 flex flex-col leading-[4] md:w-[55%]">
<h1
class="text-center text-[1rem] leading-[1.5] font-extrabold md:text-[1.5rem] lg:text-[2rem] xl:text-[3rem] md:text-left w-[100%]"
>
Financial Services by Paytm
</h1>
<img
src="./images/paytm-payments-bank.png"
class="block mx-auto md:mx-0 w-40 md:w-80 h-12 leading-[1.5]"
alt="hero-logo"
/>
<h1
class="text-center text-[1rem] leading-[1.5] font-extrabold md:text-[1.5rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left"
>
India's most sincere bank.
</h1>
<p
class="text-gray-800 text-center leading-[1.2] xl:text-[1.5rem] xl:leading-8 md:text-left md:w-[80%]"
>
Paytm Payments Bank offers secure, transparent and
risk-free banking at your fingertips. With instant
account opening, virtual debit card and zero balance
requirements, experience the future of banking today.
</p>
<button
class="flex flex-row justify-center items-center px-6 cursor-pointer align-middle text-center mx-auto md:mx-0 w-[180px] rounded-xl text-white bg-blue-800 hover:bg-blue-900"
>
<h2>Learn More</h2>
<span class="ml-3"
><i class="fa-solid fa-chevron-right"></i
></span>
</button>
</div>
<div>
<img
src="./images/financial-services.webp"
class="w-[23rem] h-[15rem] mb-12 md:mb-0 md:w-[34rem] md:h-[32rem]"
alt="heor-image"
/>
</div>
</div>
</section>
<!-- paytm money -->
<section
class="bg-gray-50"
style="
background-image: url(./images/background.webp);
background-size: cover;
background-repeat: no-repeat;
"
>
<div
class="container mx-auto flex flex-col-reverse md:flex-row-reverse justify-between items-center text-center sm:text-left py-20 w-[100%] md:w-[85%] md:pl-14"
>
<div
class="space-y-8 flex flex-col leading-[4] md:w-[55%] md:ml-32"
>
<img
src="./images/paytm-money.webp"
class="block mx-auto md:mx-0 w-40 h-12 leading-[1.5]"
alt="hero-logo"
/>
<h1
class="text-center text-[1rem] leading-[1.5] font-extrabold md:text-[1.5rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left md:w-[60%]"
>
Build Long-term Wealth & Achieve your Goals.
</h1>
<p
class="text-gray-800 text-center leading-[1.2] xl:text-[1.5rem] xl:leading-8 md:text-left w-[100%]"
>
Investing on Paytm Money is transparent, low-cost and
commission-free. Buy stocks & mutual funds that can help
you create wealth & realise your dreams.
</p>
<button
class="flex flex-row justify-center items-center px-2 cursor-pointer align-middle text-center mx-auto md:mx-0 w-[180px] rounded-full text-white bg-blue-900 hover:bg-sky-500"
>
<h2>Learn More</h2>
<span class="ml-3"
><i class="fa-solid fa-chevron-right"></i
></span>
</button>
</div>
<div>
<img
src="./images/financial-services.webp"
class="w-[23rem] h-[15rem] mb-12 md:mb-0 md:w-[34rem] md:h-[32rem]"
alt="heor-image"
/>
</div>
</div>
</section>
<!-- paytm insurance -->
<section class="bg-white mb-20">
<div
class="container mx-auto w flex flex-col-reverse md:flex-row justify-between items-center text-center sm:text-left py-20 w-[100%] md:w-[85%] md:pl-14"
>
<div class="space-y-8 flex flex-col leading-[4] md:w-[60%]">
<img
src="./images/paytm-insurance-broking.webp"
class="block mx-auto md:mx-0 w-40 h-12 leading-[1.5]"
alt="hero-logo"
/>
<h1
class="text-center text-[1rem] leading-[1.5] font-extrabold md:text-[1.5rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left"
>
Insurance made easy.
</h1>
<p
class="text-gray-800 text-center leading-[1.2] xl:text-[1.5rem] xl:leading-8 md:text-left md:w-[80%]"
>
Buying insurance does not have to be tedious,
time-consuming & confusing. Paytm Insurance removes the
worry of getting insured by making it simple, convenient
& easy-to-understand.
</p>
<button
class="flex flex-row justify-center items-center px-6 cursor-pointer align-middle text-center mx-auto md:mx-0 w-[180px] rounded-full text-white bg-blue-900 hover:bg-sky-500"
>
<h2>Learn More</h2>
<span class="ml-3"
><i class="fa-solid fa-chevron-right"></i
></span>
</button>
</div>
<div>
<img
src="./images/paytm-insuracnce.webp"
class="w-[23rem] h-[15rem] mb-12 md:mb-0 md:w-[34rem] md:h-[32rem]"
alt="heor-image"
/>
</div>
</div>
</section>
<!-- personal loan -->
<section class="mb-20">
<div
class="container mx-auto w flex flex-col-reverse md:flex-row-reverse justify-between items-center text-center sm:text-left py-24 w-[100%] md:w-[85%] md:pl-14"
>
<div
class="space-y-8 flex flex-col leading-[4] md:w-[55%] md:ml-36"
>
<img
src="./images/paytm-personal-loan.png"
class="block mx-auto md:mx-0 w-40 h-12 leading-[1.5]"
alt="hero-logo"
/>
<h1
class="text-center text-[1rem] leading-[1.5] font-extrabold md:text-[1.5rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left md:w-[60%]"
>
Get a Personal Loan in 2 Minutes.
</h1>
<p
class="text-gray-800 text-center leading-[1.2] xl:text-[1.5rem] xl:leading-8 md:text-left"
>
Paytm offers India's quickest multi-purpose, hassle-free
loan. It is 100% digital, transparent and paperless.
</p>
<button
class="flex flex-row justify-center items-center px-6 cursor-pointer align-middle text-center mx-auto md:mx-0 w-[180px] rounded-full text-white bg-blue-900 hover:bg-sky-500"
>
<h2>Learn More</h2>
<span class="ml-3"
><i class="fa-solid fa-chevron-right"></i
></span>
</button>
</div>
<div>
<img
src="./images/personal-loan.webp"
class="w-[23rem] h-[15rem] mb-12 md:mb-0 md:w-[34rem] md:h-[32rem]"
alt="heor-image"
/>
</div>
</div>
</section>
<!-- business services -->
<section class="bg-white py-20">
<div
class="container mx-auto flex flex-col w-[100%] sm:w-[80%] mb-20"
>
<div
class="text-4xl md:text-5xl font-bold mb-8 mt-20 text-center md:text-left"
>
<h2>Business Services by Paytm</h2>
</div>
<div class="grid gap-8 grid-cols-1 lg:grid-cols-2">
<div
class="col-span-2 bg-gray-100 max-w-[100%] flex flex-col-reverse md:flex-row justify-between items-center text-center py-12 sm:text-left lg:py-32 space-y-0 md:space-y-0 rounded-xl mb-10"
>
<div
class="space-y-8 flex flex-col leading-3 md:w-[50%] px-8"
>
<h1
class="text-center text-[1.5rem] leading-[1] font-extrabold sm:text-[1.5rem] md:text-[2rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left"
>
Accept payments online with ease
</h1>
<p
class="text-gray-800 text-center leading-5 text-[1rem] xl:leading-8 md:text-left"
>
Grow your business with the payment gateway that
powers India’s largest brands and even the Paytm
App
</p>
<button
class="flex flex-row justify-center items-center leading-10 px-6 cursor-pointer align-middle text-center mx-auto md:mx-0 w-[160px] rounded-full text-white bg-blue-900 hover:bg-sky-500"
>
<h2 class="text-base">Learn More</h2>
<span class="ml-3"
><i class="fa-solid fa-chevron-right"></i
></span>
</button>
</div>
<div>
<img
src="./images/apowe.webp"
class="w-[15rem] lg::w-[22rem] h-[18rem] mb-12 md:w-[30rem] md:h-[25rem]"
alt="heor-image"
/>
</div>
</div>
<div
class="col-span-2 bg-gray-100 max-w-[100%] flex flex-col-reverse md:flex-row justify-between items-center text-center py-12 sm:text-left lg:py-32 space-y-0 md:space-y-0 rounded-xl mb-10"
>
<div
class="space-y-8 flex flex-col leading-3 md:w-[50%] px-8"
>
<h1
class="text-center text-[1.5rem] leading-[1] font-extrabold sm:text-[1.5rem] md:text-[2rem] lg:text-[2rem] xl:text-[2.5rem] md:text-left"
>
In-shop payments powered by Paytm.
</h1>
<p
class="text-gray-800 text-center leading-5 text-[1rem] xl:leading-8 md:text-left"
>
Millions of small & big businesses use Paytm to
accept payments anywhere any time with a wide
range of solutions for all kind of merchants
</p>
<button
class="flex flex-row justify-center items-center leading-10 px-2 cursor-pointer align-middle text-center mx-auto md:mx-0 w-[150px] rounded-full text-white bg-blue-900 hover:bg-sky-500"
>
<h2 class="text-base">Learn More</h2>
<span class="ml-3"
><i class="fa-solid fa-chevron-right"></i
></span>
</button>
</div>
<div>
<img
src="./images/paytm-box.webp"
class="w-[12rem] lg:w-[22rem] h-[18rem] mb-12 md:ml-2 md:w-[30rem] md:h-[25rem]"
alt="heor-image"
/>
</div>
</div>
</div>
</div>
<!-- business Tools -->
<div class="container mx-auto flex flex-col w-[100%] sm:w-[80%]">
<div
class="text-4xl md:text-4xl font-bold mb-14 text-center md:text-left"
>
<h2 class="md:w-[50%]">
Business Tools to help your business grow
</h2>
</div>
<div
class="container mx-auto flex flex-wrap flex-col md:flex-row lg:flex-nowrap justify-center items-center bg-white"
>
<div
class="flex flex-col justify-center items-center md:items-start gap-6 lg:gap-4 text-center md:text-left max-w-[100%] min-h-[100%]"
>
<img src="./images/pos.webp" class="w-40" alt="image" />
<h2 class="text-2xl font-bold w-[50%]">
POS Billing Software
</h2>
<p class="w-[90%]">
Say Hello to Smart Retail Business Management
</p>
<a class="hover:font-bold" href="#">Learn More</a>
</div>
<div
class="flex flex-col justify-center items-center md:items-start gap-6 lg:gap-4 text-center md:text-left max-w-[100%] min-h-[100%]"
>
<img
src="./images/pfba.webp"
class="w-40"
alt="image"
/>
<h2 class="text-2xl font-bold w-[50%]">
Paytm for Business App
</h2>
<p class="w-[90%]">
Everything you need to manage your business on your
phone
</p>
<a class="hover:font-bold" href="#">Learn More</a>
</div>
<div
class="flex flex-col justify-center items-center md:items-start gap-6 lg:gap-4 text-center md:text-left max-w-[100%] min-h-[100%]"
>
<img src="./images/aop.webp" class="w-40" alt="image" />
<h2 class="text-2xl font-bold w-[50%]">
Advertise on Paytm
</h2>
<p class="w-[90%]">
Grow your business by advertising on India’s largest
mobile business
</p>
<a class="hover:font-bold" href="#">Learn More</a>
</div>
<div
class="flex flex-col justify-center items-center md:items-start gap-6 lg:gap-4 text-center md:text-left max-w-[100%] min-h-[100%]"
>
<img src="./images/bk.webp" class="w-40" alt="image" />
<h2 class="text-2xl font-bold w-[50%]">
Business Khata
</h2>
<p class="w-[90%]">Managing Khata made easy</p>
<a class="hover:font-bold" href="#">Learn More</a>
</div>
</div>
</div>
</section>
<!-- paytm money-card -->
<section class="bg-green-100 py-20">
<div class="flex flex-col gap-10">
<div
class="container mx-auto p-8 bg-white flex flex-col rounded-xl md:flex-row w-[80%]"
>
<div
class="flex flex-col justify-center items-center md:items-start text-center md:text-left md:start md:w-[25%]"
>
<img
src="./images/paytm-money.webp"
class="w-40"
alt=""
/>
<p class="my-6">
Get started on wealth creation journey with Zero
brokerage fee & no hidden charges.
</p>
<a class="text-sky-500" href="#">Learn More</a>
</div>
<div
class="flex flex-col md:flex-row justify-center items-center gap-8 flex-wrap lg:flex-nowrap"
>
<div
class="bg-sky-300 p-1 flex flex-col justify-center items-center rounded-xl"
>
<img
src="./images/pm-1.webp"
class="w-32 h-36"
alt=""
/>
<h3 class="p-2 py-4 text-white font-bold">
Invest in Stocks
</h3>
</div>
<div
class="bg-sky-300 p-1 flex flex-col justify-center items-center rounded-xl"
>
<img
src="./images/pm-1.webp"
class="w-32 h-36"
alt=""
/>
<h3 class="p-2 py-4 text-white font-bold">
Apply for IPO
</h3>
</div>
<div
class="bg-sky-300 p-1 flex flex-col justify-center items-center rounded-xl"
>
<img
src="./images/pm-2.webp"
class="w-32 h-36"
alt=""
/>
<h3 class="p-2 py-4 text-white font-bold">
Invest in ETFs
</h3>
</div>
<div
class="bg-sky-300 p-1 flex flex-col justify-center items-center rounded-xl"
>
<img
src="./images/pm-3.webp"
class="w-32 h-36"
alt=""
/>
<h3 class="p-2 py-4 text-white font-bold">
Buy Gold
</h3>
</div>
<div
class="bg-sky-300 p-1 flex flex-col justify-center items-center rounded-xl"
>
<img
src="./images/pm-4.webp"
class="w-32 h-36"
alt=""
/>
<h3 class="p-2 py-4 text-white font-bold">
Invest in Stocks
</h3>
</div>
</div>
</div>
<!-- paytm travel -->
<div
class="container mx-auto p-8 bg-white flex flex-col rounded-xl md:flex-row w-[80%]"
>
<div
class="flex flex-col justify-center items-center md:items-start text-center md:text-left md:start md:w-[25%]"
>
<img
src="./images/paytm-travel-icon.webp"
class="w-40"
alt=""
/>
<p class="my-6">
Best travel solutions with quick ticket bookings,
great offers and easy refunds
</p>
<a class="text-sky-500" href="#">Learn More</a>
</div>
<div
class="flex flex-col md:flex-row justify-center items-center gap-8 flex-wrap lg:flex-nowrap"
>
<div
class="bg-sky-300 p-1 flex flex-col justify-center items-center rounded-xl"
>
<img
src="./images/t1.webp"
class="w-20 h-20"
alt=""
/>
<h3 class="p-2 py-4 text-white font-bold">
<span class="font-extrabold">Flat 14% </span>
<br />
Cashback With <br />
Code <br />
WELCOMEFLIGHT
</h3>
</div>
<div