-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffers.html
1963 lines (1593 loc) · 171 KB
/
offers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Offers | Paymatrix</title>
<meta name="description" content="Know more about offers and promotions on Paymatrix and save on your Monthly Rent and Rent deposit payments. Save as much as Rs.500/-* every month.." />
<meta property="og:title" content="Offers | Paymatrix.in">
<meta property="og:description" content="Know more about offers and promotions on Paymatrix and save on your Monthly Rent and Rent deposit payments. Save as much as Rs.500/-* every month." >
<meta property="og:image" content="https://paymatrix.in/images/paymatrix-og.png" >
<meta property="og:type" content="website">
<meta property="twitter:title" content="Offers | Paymatrix.in" >
<meta property="twitter:description" content="Know more about offers and promotions on Paymatrix and save on your Monthly Rent and Rent deposit payments. Save as much as Rs.500/-* every month." >
<meta property="twitter:image" content="https://paymatrix.in/images/paymatrix-og.png" >
<meta name="twitter:card" content="summary_large_image" >
<meta name="keywords" content="Job, employment" />
<meta name="author" content="Paymatrix" />
<meta name="email" content="[email protected]" />
<meta name="website" content="https://paymatrix.in" />
<meta name="version" content="v3.0.0" />
<meta name="generator" content="Bootstrap, Vue, laravel">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- favicon -->
<link rel="shortcut icon" href="https://paymatrix.in/images/favicon.ico" type="image/x-icon">
<link rel="icon" href="https://paymatrix.in/images/favicon.ico" type="image/x-icon">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<!-- Icons -->
<link href="css/materialdesignicons.min.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v2.1.9/css/unicons.css">
<!-- Main Css -->
<link href="css/style.css" rel="stylesheet" type="text/css" id="theme-opt" />
<link href="css/colors/default.css" rel="stylesheet" id="color-opt">
</head>
<body>
<!-- Loader -->
<div id="preloader">
<div id="status">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
</div>
<!-- Loader -->
<!-- Navbar STart -->
<header id="topnav" class="defaultscroll sticky">
<div class="container">
<!-- Logo container-->
<div>
<a class="logo" href="">
<svg xmlns="http://www.w3.org/2000/svg" width="212.682" height="40.102" viewBox="0 0 212.682 40.102"><g transform="translate(-4122 4750)"><g transform="translate(4122 -4750)"><path d="M3,3.059,12.176,0l9.176,3.059L12.176,6.118Z" transform="translate(17.9 16.992)" fill="#161c2d"/><path d="M50.128,35.089V16.709L30.076,10.026,10.026,16.709v18.38L0,40.1V10.026L30.076,0,60.153,10.026V40.1Z" fill="#161c2d"/><path d="M15.038,5.013,30.076,0V15.038L15.038,20.051ZM0,15.038V0L15.038,5.013V20.051Z" transform="translate(15.038 20.051)" fill="#161c2d"/></g><path d="M3-32.592H7a13.155,13.155,0,0,1,4.678.6,4.758,4.758,0,0,1,2.262,1.939,5.987,5.987,0,0,1,.828,3.211A5.391,5.391,0,0,1,13.682-23.4a5.622,5.622,0,0,1-2.941,1.912,16.91,16.91,0,0,1-3.971.31v8.387H3Zm3.769,7.741h1.2a6.473,6.473,0,0,0,1.965-.2,1.747,1.747,0,0,0,.868-.669,1.96,1.96,0,0,0,.316-1.128,1.8,1.8,0,0,0-.888-1.675,5.065,5.065,0,0,0-2.4-.392H6.769Zm20.9-2.585h3.675v14.647H27.667v-1.548a7.2,7.2,0,0,1-2.158,1.474,6.04,6.04,0,0,1-2.346.451,6.518,6.518,0,0,1-4.908-2.2,7.678,7.678,0,0,1-2.071-5.472,7.868,7.868,0,0,1,2-5.56,6.383,6.383,0,0,1,4.868-2.167,6.186,6.186,0,0,1,2.474.5,6.751,6.751,0,0,1,2.138,1.494ZM23.8-24.42a3.713,3.713,0,0,0-2.831,1.2,4.342,4.342,0,0,0-1.127,3.09A4.388,4.388,0,0,0,20.993-17a3.717,3.717,0,0,0,2.824,1.225,3.786,3.786,0,0,0,2.871-1.2,4.4,4.4,0,0,0,1.14-3.157,4.278,4.278,0,0,0-1.14-3.1A3.833,3.833,0,0,0,23.8-24.42Zm8.922-3.407h3.756l3.8,9.19,4.2-9.19H48.25l-9.173,20h-3.8l3.012-6.451Zm18.1,0H54.5v1.683A6.273,6.273,0,0,1,56.6-27.693a6.12,6.12,0,0,1,2.513-.512,4.669,4.669,0,0,1,2.479.673,4.865,4.865,0,0,1,1.778,1.965,5.935,5.935,0,0,1,2.149-1.965A5.86,5.86,0,0,1,68.3-28.2a5.15,5.15,0,0,1,2.748.727,4.2,4.2,0,0,1,1.7,1.9,10.141,10.141,0,0,1,.519,3.81v8.589h-3.7v-7.431a6.356,6.356,0,0,0-.619-3.372,2.12,2.12,0,0,0-1.858-.882,2.818,2.818,0,0,0-1.689.538,3.183,3.183,0,0,0-1.111,1.488,9.245,9.245,0,0,0-.363,3.049v6.61h-3.7v-7.094a9.987,9.987,0,0,0-.29-2.847,2.575,2.575,0,0,0-.87-1.313,2.288,2.288,0,0,0-1.4-.431A2.765,2.765,0,0,0,56-24.321a3.252,3.252,0,0,0-1.12,1.528,9.445,9.445,0,0,0-.371,3.1v6.516H50.829Zm36.5-.392h3.675v14.647H87.331V-15.12a7.2,7.2,0,0,1-2.158,1.474,6.04,6.04,0,0,1-2.346.451,6.518,6.518,0,0,1-4.908-2.2,7.678,7.678,0,0,1-2.071-5.472,7.868,7.868,0,0,1,2-5.56A6.383,6.383,0,0,1,82.719-28.6a6.186,6.186,0,0,1,2.474.5A6.751,6.751,0,0,1,87.331-26.6ZM83.467-25.2A3.713,3.713,0,0,0,80.636-24a4.342,4.342,0,0,0-1.127,3.09,4.388,4.388,0,0,0,1.147,3.123,3.717,3.717,0,0,0,2.824,1.225,3.786,3.786,0,0,0,2.871-1.2,4.4,4.4,0,0,0,1.14-3.157,4.278,4.278,0,0,0-1.14-3.1A3.834,3.834,0,0,0,83.467-25.2Zm11.555-8.42H98.7v5.4h2.181v3.164H98.7v11.483H95.023V-25.062H93.138v-3.164h1.885Zm7.656,5.4h3.15v1.844a3.936,3.936,0,0,1,1.36-1.656,3.28,3.28,0,0,1,1.858-.565,3.437,3.437,0,0,1,1.494.377L109.4-25.055a2.527,2.527,0,0,0-1.063-.323,1.683,1.683,0,0,0-1.434,1.05,9.608,9.608,0,0,0-.586,4.119l.013.713v5.923h-3.648Zm11.7-6.031a2.247,2.247,0,0,1,1.658.7,2.325,2.325,0,0,1,.691,1.7,2.3,2.3,0,0,1-.685,1.676,2.221,2.221,0,0,1-1.638.693,2.252,2.252,0,0,1-1.671-.707,2.364,2.364,0,0,1-.691-1.716,2.26,2.26,0,0,1,.685-1.656A2.247,2.247,0,0,1,114.376-34.25Zm-1.838,6.031h3.675v14.647h-3.675Zm6.157,0h4.267l2.895,3.992,2.88-3.992h4.2l-4.973,6.893,5.623,7.754h-4.267l-3.484-4.8-3.466,4.8h-4.2l5.559-7.7Z" transform="translate(4186.672 -4702.122)" fill="#161c2d"/><path d="M2.131-18.642H.112V-19.6H5.283v.958H3.263v5.136H2.131Zm9.6,5.136-.009-4.039-2,3.343h-.5l-2-3.29v3.987H6.136V-19.6h.931l2.42,4.039L11.863-19.6h.931l.009,6.093Z" transform="translate(4321.879 -4716.286)" fill="#161c2d"/></g></svg>
</a>
</div>
<div class="buy-button">
<a href="" class="btn btn-primary">Sign up</a>
</div><!--end login button-->
<!-- End Logo container-->
<div class="menu-extras">
<div class="menu-item">
<!-- Mobile menu toggle-->
<a class="navbar-toggle">
<div class="lines">
<span></span>
<span></span>
<span></span>
</div>
</a>
<!-- End mobile menu toggle-->
</div>
</div>
<div id="navigation">
<!-- Navigation Menu-->
<ul class="navigation-menu ">
<li ><a href="">Support</a></li>
<li><a href="">Offers</a></li>
<li><a href="">Pricing</a></li>
<li class="active"><a href="">Login</a></li>
</ul><!--end navigation menu-->
<div class="buy-menu-btn d-none">
<a href="" class="btn btn-primary">Sign up</a>
</div><!--end login button-->
</div><!--end navigation-->
</div><!--end container-->
</header><!--end header-->
<!-- Navbar End -->
<!-- Hero Start -->
<section class="bg-half bg-light d-table w-100">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12 text-center">
<div class="page-next-level">
<h4 class="title"> Offers </h4>
</div>
</div><!--end col-->
</div><!--end row-->
</div> <!--end container-->
</section><!--end section-->
<div class="position-relative">
<div class="shape overflow-hidden text-white">
<svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 48H1437.5H2880V0H2160C1442.5 52 720 0 720 0H0V48Z" fill="currentColor"></path>
</svg>
</div>
</div>
<!-- Hero End -->
<!-- Start -->
<section class="section">
<div class="container">
<div class="row">
<ul class="col container-filter list-unstyled categories-filter text-center mb-0" id="filter">
<li class="list-inline-item"><a class="categories border d-block text-dark rounded" data-filter=".all">All offers</a></li>
<li class="list-inline-item"><a class="categories border d-block text-dark rounded" data-filter=".branding">Rent payment</a></li>
<li class="list-inline-item"><a class="categories border d-block text-dark rounded" data-filter=".designing">Rent agreement</a></li>
<li class="list-inline-item"><a class="categories border d-block text-dark rounded" data-filter=".photography">Partner promotions</a></li>
<li class="list-inline-item"><a class="categories border d-block text-dark rounded" data-filter=".development">Expired</a></li>
</ul>
</div><!--end row-->
<div class="row projects-wrapper">
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all branding">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer1">
<div class="card-body p-0">
<img src="images/offers/rupaycc75.jpg" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">RuPay Credit Cards.</h5>
<h6 class="text-muted tag mb-0">Cashback of Rs.75/-</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer1" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle">Rupay cashback rs.75/- </h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li style="padding-left: 0px;">
The Offer is valid only on Rent and Maintenance payments made on Paymatrix through <strong>RuPay Credit Cards</strong>.
</li>
<li style="padding-left: 0px;">
Under this offer, the user is eligible for <strong>cashback of Rs.75/-</strong> in form of Paymatrix rewards on the FIRST Rent /Rent advance/Maintenance payment in a month.
</li>
<li style="padding-left: 0px;">
Rewards of <strong>Rs.75/-</strong> are applicable only if the payment is atleast for an amount of Rs.10,000/-
</li>
<li style="padding-left: 0px;">
The Offer is valid only for payments made through <strong>RuPay Credit card</strong> on Paymatrix.
</li>
<li style="padding-left: 0px;">
To be eligible for the offer, the user should use the code <strong>RUPAYCC75</strong> on the payment page. Payments without the discount code shall not be eligible for the offer
</li>
<li style="padding-left: 0px;">
The Offer is <strong>NOT</strong> valid on transactions made through any other payment option – Debit card/Wallets/Net banking. The offer is NOT applicable for Visa/MasterCard/Diners/American Express cards.
</li>
<li style="padding-left: 0px;">
Cashback shall be credited to the user's Paymatrix account in the form of Paymatrix credits within 24 hours from the time of transactions
</li>
<li style="padding-left: 0px;">
One Paymatrix Reward points is equivalent to Rs.1.
</li>
<li style="padding-left: 0px;">
These credits can be used by the user to pay his subsequent Rent payments or avail any other service listed on our website. User shall not be able to convert the credits into cash of transfer to his own bank account.
</li>
<li style="padding-left: 0px;">
Cashback shall be given only for successful transactions and will not be applicable to pending or failed transactions.
</li>
<li style="padding-left: 0px;">
Paymatrix reserves the right to withdraw or alter this promotion anytime as per its discretion without any notice.
</li>
<li style="padding-left: 0px;">
In case the transaction is found to be circular or fraudulent in nature, Paymatrix reserves the right to hotlist the user account and refund the amount to source account
</li>
<li style="padding-left: 0px;">
For all other queries, please write to <strong>[email protected]</strong>
</li>
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div><!--end col-->
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all branding">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer2">
<div class="card-body p-0">
<img src="images/offers/2020-07-07.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">RuPay Credit Cards.</h5>
<h6 class="text-muted tag mb-0">Cashback of Rs.50/-</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer2" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle2" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle2">Rupay cashback Rs.50/- </h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li style="padding-left: 0px;">
The Offer is valid only on Rent and Maintenance payments made on Paymatrix through <strong>RuPay Credit Cards</strong>.
</li>
<li style="padding-left: 0px;">
Under this offer, the user is eligible for <strong>cashback of Rs.75/-</strong> in form of Paymatrix rewards on the FIRST Rent /Rent advance/Maintenance payment in a month.
</li>
<li style="padding-left: 0px;">
Rewards of <strong>Rs.75/-</strong> are applicable only if the payment is atleast for an amount of Rs.6,000/-
</li>
<li style="padding-left: 0px;">
The Offer is valid only for payments made through <strong>RuPay Credit card</strong> on Paymatrix.
</li>
<li style="padding-left: 0px;">
To be eligible for the offer, the user should use the code <strong>RUPAYCC75</strong> on the payment page. Payments without the discount code shall not be eligible for the offer
</li>
<li style="padding-left: 0px;">
The Offer is <strong>NOT</strong> valid on transactions made through any other payment option – Debit card/Wallets/Net banking. The offer is NOT applicable for Visa/MasterCard/Diners/American Express cards.
</li>
<li style="padding-left: 0px;">
Cashback shall be credited to the user's Paymatrix account in the form of Paymatrix credits within 24 hours from the time of transactions
</li>
<li style="padding-left: 0px;">
One Paymatrix Reward points is equivalent to Rs.1.
</li>
<li style="padding-left: 0px;">
These credits can be used by the user to pay his subsequent Rent payments or avail any other service listed on our website. User shall not be able to convert the credits into cash of transfer to his own bank account.
</li>
<li style="padding-left: 0px;">
Cashback shall be given only for successful transactions and will not be applicable to pending or failed transactions.
</li>
<li style="padding-left: 0px;">
Paymatrix reserves the right to withdraw or alter this promotion anytime as per its discretion without any notice.
</li>
<li style="padding-left: 0px;">
In case the transaction is found to be circular or fraudulent in nature, Paymatrix reserves the right to hotlist the user account and refund the amount to source account
</li>
<li style="padding-left: 0px;">
For all other queries, please write to <strong>[email protected]</strong>
</li>
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div><!--end col-->
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all branding">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer3">
<div class="card-body p-0">
<img src="images/offers/creditcard_offr.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Cashback of 2% </h5>
<h6 class="text-muted tag mb-0">on monthly rent payments</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer3" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle3" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle3">Cashback of 2% on monthly rent payments</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li style="padding-left: 0px;">The Offer is valid only on Rent payments made on Paymatrix.</li>
<li style="padding-left: 0px;">Under this offer, the user is eligible for <span style="font-size: 14px;font-weight: 600;">2%</span> cashback in form of rewards up to Max of <span style="font-size: 14px;font-weight: 600;">Rs.50/-*</span> on Rent payments every month.</li>
<li style="padding-left: 0px;">Rewards up to <span style="font-size: 14px;font-weight: 600;">Rs.50/-*</span> is applicable only on the <span style="font-size: 14px;font-weight: 600;">FIRST</span> Rent payment in each month of atleast Rs.6000/-.</li>
<li style="padding-left: 0px;">The Offer is valid <span style="font-size: 14px;font-weight: 600;">only</span> for payments made through Credit card on Paymatrix.</li>
<li style="padding-left: 0px;">The Offer is <span style="font-size: 14px;font-weight: 600;">NOT</span> valid on transactions made through any other payment option including Credit card option on other payment gateways.</li>
<li style="padding-left: 0px;">Cashback shall be credited to the user's Paymatrix account in the form of Paymatrix credits immediately after the transaction.</li>
<li style="padding-left: 0px;">These credits can be used by the user to pay his subsequent Rent payments or avail any other service listed on our website. User shall not be able to encash the credits into his own bank account.</li>
<li style="padding-left: 0px;">Cashback shall be given only for successful transactions and will not be applicable to pending or failed transactions.</li>
<li style="padding-left: 0px;">Paymatrix reserves the right to withdraw or alter this promotion anytime as per its discretion without any notice.</li>
<li style="padding-left: 0px;">For all other queries, please write to <a style="color: #0071bc;">[email protected]</a></li>
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div><!--end col-->
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all branding">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer4">
<div class="card-body p-0">
<img src="images/offers/pgpay100_offers.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Participate in draw</h5>
<h6 class="text-muted tag mb-0">To Earn upto of Rs.500/-* cashback monthly</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer4" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle4" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle4" style="font-size: 16px;font-weight: 400;"><strong>PGPAY100</strong> Use code to participate in a draw to win upto <strong>Rs.500/-*</strong> Cashback Monthly. T&C Apply.</h5>
<p>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Use PGPAY100</a>
</p>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li>Valid on successful rent/deposit payments from 1st to 10th of every month to <strong>registered PG/Hostels only</strong> (Not valid for Co-working spaces) </li>
<li><strong>PGPAY100</strong> promo code has to be applied on the checkout page to participate in the contest.</li>
<li>Promo code can be applied any number of times by the user.</li>
<li>Valid on minimum transaction amount of <strong>Rs 4000</strong>.</li>
<li>5 Lucky winners will be announced on <strong>15th of every month</strong>, 2019 and will be communicated via SMS/Email.</li>
<li>Cashback will be credited to your Paymatrix account which can be redeemed on the next transaction. The said cashback/rewards are non-transferable.</li>
<li>Valid on credit/debit/net banking/E-wallets and listed payment methods on www.paymatrix.in</li>
<li>The user need to enter the promo code in the payment page to be eligible for lucky winner.</li>
<li>Offer only valid on <a href="https://paymatrix.in/" style="color: #0071bc;" target="_blank">www.paymatrix.in</a></li>
<li>We reserve the right to modify/end any or all offers at our discretion without any prior notice.</li>
<li>For all other queries, please write to <a style="color: #0071bc;">[email protected]</a> </li>
<li>We reserve the right to restrict the cashback to any user with suspicious behaviour or invalid credentials or invalid KYC details.</li>
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div><!--end col-->
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all branding">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer5">
<div class="card-body p-0">
<img src="images/offers/lucky12_offers.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Participate in contest</h5>
<h6 class="text-muted tag mb-0">To Earn upto of Rs.1200/-* cashback monthly</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer5" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle5" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle5" style="font-size: 16px;font-weight: 400;"> Use code <strong>LUCKY12</strong> to participate in the contest to win upto <strong>Rs.1200/-*</strong> Cashback Monthly. T&C Apply.</h5>
<p>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Use LUCKY12</a>
</p>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li>Valid on successful rent/deposit payments from <strong>1st</strong> to <strong>10th of every month</strong></li>
<li><strong>LUCKY12</strong> promo code has to be applied to participate in the contest. </li>
<li>Users who have uploaded their KYC documents to Paymatrix are ONLY eligible for the rewards/cashback under this promotion.</li>
<li>Promo code can be applied any number of times by the user.</li>
<li>Valid on minimum transaction amount of <strong>Rs 4000</strong>.</li>
<li>12 Lucky winners will be announced on <strong>15th of that month</strong>, 2018 and will be communicated via SMS/Email.</li>
<li>Cashback will be credited to your Paymatrix account which can be redeemed on the next transaction. The said cashback/rewards are non-transferable.</li>
<li>Valid on credit/debit/net banking/E-wallets and listed payment methods on www.paymatrix.in</li>
<li>The user need to enter the promo code in the payment page to be eligible for lucky winner.</li>
<li>Offer only valid on <a href="https://paymatrix.in/" style="color: #0071bc;" target="_blank">www.paymatrix.in</a></li>
<li>We reserve the right to modify/end any or all offers at our discretion without any prior notice.</li>
<li>For all other queries, please write to <a style="color: #0071bc;">[email protected]</a> </li>
<li>We reserve the right to restrict the cashback to any user with suspicious behaviour or invalid credentials or invalid KYC details.</li>
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div><!--end col-->
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all branding">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer6">
<div class="card-body p-0">
<img src="images/offers/LUCKY-5-offers-image.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Participate in contest</h5>
<h6 class="text-muted tag mb-0">To Earn upto of Rs.500/-* cashback monthly</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer6" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle6" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle6" style="font-size: 16px;font-weight: 400;"> Use code <strong>LUCKY5</strong> to participate in the contest to win upto <strong>Rs.500/-*</strong> Cashback Monthly. T&C Apply.</h5>
<p>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Use LUCKY5</a>
</p>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li>Valid on successful rent/deposit payments from <strong>1st</strong> to <strong>10th of every month</strong></li>
<li><strong>LUCKY5</strong> promo code has to be applied to participate in the contest. </li>
<li>Users who have uploaded their KYC documents to Paymatrix are ONLY eligible for the rewards/cashback under this promotion.</li>
<li>Promo code can be applied any number of times by the user.</li>
<li>Valid on minimum transaction amount of <strong>Rs 4000</strong>.</li>
<li>12 Lucky winners will be announced on <strong>15th of that month</strong>, 2018 and will be communicated via SMS/Email.</li>
<li>Cashback will be credited to your Paymatrix account which can be redeemed on the next transaction. The said cashback/rewards are non-transferable.</li>
<li>Valid on credit/debit/net banking/E-wallets and listed payment methods on www.paymatrix.in</li>
<li>The user need to enter the promo code in the payment page to be eligible for lucky winner.</li>
<li>Offer only valid on <a href="https://paymatrix.in/" style="color: #0071bc;" target="_blank">www.paymatrix.in</a></li>
<li>We reserve the right to modify/end any or all offers at our discretion without any prior notice.</li>
<li>For all other queries, please write to <a style="color: #0071bc;">[email protected]</a> </li>
<li>We reserve the right to restrict the cashback to any user with suspicious behaviour or invalid credentials or invalid KYC details.</li>
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div><!--end col-->
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all designing">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer7">
<div class="card-body p-0">
<img src="images/offers/rent-agreement-offer-maharastra.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Avail Rs.400/-* discounts</h5>
<h6 class="text-muted tag mb-0">On rent agreement of Maharashtra</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer7" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle7" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle7" style="font-size: 16px;font-weight: 400;"> Use code <strong>PAYMTX400</strong> to avail discount of <strong>Rs.400/-*</strong> Cashback Monthly on rent agreemets on Maharashtra. T&C Apply.</h5>
<p>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Use PAYMTX400</a>
</p>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li>These coupon codes are valid only up to <strong>31<sup>st</sup> July 2020</strong> for Rent agreement/Leave and License Agreement orders in particular cities.</li>
<li>A user is entitled to avail the coupon multiple times during the promotion period.</li>
<li>Paymatrix is just a facilitator for users to get into Rent agreements, wherein our role /our vendor or partner's role is constrained to the documentation of terms , capturing biometrics , registering the agreement and delivering the copy to your doorstep.</li>
<li>The platform in no way undertakes the legal validation or authentication of the Agreement.</li>
<li>The onus of paying the right and requisite stamp duty stays with the user ordering and paying for the same.</li>
<li>Rent Agreements, once ordered cannot be cancelled or reversed.</li>
<li>Users, however, can place a request for any modification of the terms of the Agreement by writing to <strong style="font-weight: 500;"><a href="mailto:[email protected]?subject=feedback">[email protected]</a></strong> within 24 hours of ordering the agreement.</li>
<li>The above terms construe as an addendum to the Platform's general Terms and conditions.</li>
<li>Paymatrix reserves the right to discontinue the promotion without any notice as per its discretion.</li>
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div><!--end col-->
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all designing">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer8">
<div class="card-body p-0">
<img src="images/offers/rent-agreement-delhi-offers.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Avail Rs.50/-* discounts</h5>
<h6 class="text-muted tag mb-0">On convenience fee payment</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer8" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle8" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle8" style="font-size: 16px;font-weight: 400;"> Use code <strong>DEL50</strong> to avail discount of <strong>Rs.50/-*</strong> Cashback on convenience fee payment T&C Apply.</h5>
<p>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Use DEL50</a>
</p>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li>These coupon codes are valid only up to <strong>31<sup>st</sup> July 2020</strong> for Rent agreement/Leave and License Agreement orders in particular cities.</li>
<li>A user is entitled to avail the coupon multiple times during the promotion period.</li>
<li>Paymatrix is just a facilitator for users to get into Rent agreements, wherein our role /our vendor or partner's role is constrained to the documentation of terms , capturing biometrics , registering the agreement and delivering the copy to your doorstep.</li>
<li>The platform in no way undertakes the legal validation or authentication of the Agreement.</li>
<li>The onus of paying the right and requisite stamp duty stays with the user ordering and paying for the same.</li>
<li>Rent Agreements, once ordered cannot be cancelled or reversed.</li>
<li>Users, however, can place a request for any modification of the terms of the Agreement by writing to <strong style="font-weight: 500;"><a href="mailto:[email protected]?subject=feedback">[email protected]</a></strong> within 24 hours of ordering the agreement.</li>
<li>The above terms construe as an addendum to the Platform's general Terms and conditions.</li>
<li>Paymatrix reserves the right to discontinue the promotion without any notice as per its discretion.</li>
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div><!--end col-->
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all designing">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer9">
<div class="card-body p-0">
<img src="images/offers/kar-rent-agreement-offer.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Avail Rs.50/-* discounts</h5>
<h6 class="text-muted tag mb-0">On convenience fee payment</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer9" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle9" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle9" style="font-size: 16px;font-weight: 400;"> Use code <strong>TEL50</strong> to avail discount of <strong>Rs.50/-*</strong> Cashback on convenience fee payment T&C Apply.</h5>
<p>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Use TEL50</a>
</p>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li>These coupon codes are valid only up to <strong>31<sup>st</sup> July 2020</strong> for Rent agreement/Leave and License Agreement orders in particular cities.</li>
<li>A user is entitled to avail the coupon multiple times during the promotion period.</li>
<li>Paymatrix is just a facilitator for users to get into Rent agreements, wherein our role /our vendor or partner's role is constrained to the documentation of terms , capturing biometrics , registering the agreement and delivering the copy to your doorstep.</li>
<li>The platform in no way undertakes the legal validation or authentication of the Agreement.</li>
<li>The onus of paying the right and requisite stamp duty stays with the user ordering and paying for the same.</li>
<li>Rent Agreements, once ordered cannot be cancelled or reversed.</li>
<li>Users, however, can place a request for any modification of the terms of the Agreement by writing to <strong style="font-weight: 500;"><a href="mailto:[email protected]?subject=feedback">[email protected]</a></strong> within 24 hours of ordering the agreement.</li>
<li>The above terms construe as an addendum to the Platform's general Terms and conditions.</li>
<li>Paymatrix reserves the right to discontinue the promotion without any notice as per its discretion.</li>
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div><!--end col-->
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all designing">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer10">
<div class="card-body p-0">
<img src="images/offers/tel-rent-agreement-offer.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Avail Rs.50/-* discounts</h5>
<h6 class="text-muted tag mb-0">On convenience fee payment</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer10" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle10" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle10" style="font-size: 16px;font-weight: 400;"> Use code <strong>KAR50</strong> to avail discount of <strong>Rs.50/-*</strong> Cashback on convenience fee payment T&C Apply.</h5>
<p>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Use KAR50</a>
</p>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li>These coupon codes are valid only up to <strong>31<sup>st</sup> July 2020</strong> for Rent agreement/Leave and License Agreement orders in particular cities.</li>
<li>A user is entitled to avail the coupon multiple times during the promotion period.</li>
<li>Paymatrix is just a facilitator for users to get into Rent agreements, wherein our role /our vendor or partner's role is constrained to the documentation of terms , capturing biometrics , registering the agreement and delivering the copy to your doorstep.</li>
<li>The platform in no way undertakes the legal validation or authentication of the Agreement.</li>
<li>The onus of paying the right and requisite stamp duty stays with the user ordering and paying for the same.</li>
<li>Rent Agreements, once ordered cannot be cancelled or reversed.</li>
<li>Users, however, can place a request for any modification of the terms of the Agreement by writing to <strong style="font-weight: 500;"><a href="mailto:[email protected]?subject=feedback">[email protected]</a></strong> within 24 hours of ordering the agreement.</li>
<li>The above terms construe as an addendum to the Platform's general Terms and conditions.</li>
<li>Paymatrix reserves the right to discontinue the promotion without any notice as per its discretion.</li>
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div><!--end col-->
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 all branding">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer11">
<div class="card-body p-0">
<img src="images/offers/referandearn-new.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Refer and earn</h5>
<h6 class="text-muted tag mb-0">Earn amazon vouchers</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer11" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle11" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle11" style="font-size: 16px;font-weight: 400;">Refer and Earn</h5>
<ul>
<li>Rs. 25/- as Amazon voucher and Rs.25/- as Paymatrix rewards for every friend signing up using your referral code and making his first transaction on Paymatrix.</li>
<li>Your friend gets to earn Rs.25/- too as Paymatrix rewards immediately once he signs up using your referral code</li>
<li>The invite code can be found in the Refer and Earn page after logging into your user account.</li>
</ul>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<ol class="t-and-c">
<li>Amazon vouchers and Paymatrix rewards are offered for every successful referral.</li>
<li>Successful referral is one where the referred person signs up with your referral code and makes his first Rent payment transaction worth Rs.6000/- on Paymatrix</li>
<li>New Users using the referral code while signup shall earn an
<span style="font-size: 14px;font-weight: 600;">instant credit of Rs.25/-</span> as Paymatrix rewards, while the person referring shall receive
<span style="font-size: 14px;font-weight: 600;">Rs.25/- as Amazon voucher </span> and <span style="font-size: 14px;font-weight: 600;">Rs.25/- as Paymatrix rewards</span> within 24 hours for every successful referral.</li>
<li>A User can earn unlimited Amazon vouchers and referral credits by simply referring more users and asking them to sign up and transact using his/her referral invite code.</li>
<li> Referral code and the corresponding benefits are applicable only once per user. It means that a user at any point of time can take benefit of only one of the existing referral programs on the platform.</li>
<li> Users shall have to enter the code mandatorily while signing up to avail the benefits of the program.</li>
<li> Referral credits earned into Paymatrix account by the users can be used only for their subsequent payments on the website. They cannot be redeemed for cash nor can be transferred to other users.</li>
<li>Paymatrix reserves the right to withdraw or alter this promotion or scheme, anytime as per its discretion.</li>
<li>Paymatrix can block or hot-list any user account in case of suspicious activity or fraud and can withhold the referral benefits as the case may be</li>
<li>For any queries, you may please reach to us on <a href="mailto:[email protected]">[email protected]</a></li>
<!-- <li>Amazon vouchers are offered for every successful referral signing up with Paymatrix while Paymatrix rewards are applicable if the referred user completes his/her first successful transaction on Paymatrix.</li>
<li>Users using the referral code while signup shall earn an <span style="font-size: 14px;font-weight: 600;">instant credit of Rs.100/-</span> as Paymatrix rewards, while the person referring shall receive the <span style="font-size: 14px;font-weight: 600;">Rs.25/- as Amazon voucher</span> on his registered email ID within 24 hours from the transaction.</li>
<li>If the referred person completes his first transaction of atleast Rs.6000/-, the person referring shall receive an additional credit of <span style="font-size: 14px;font-weight: 600;">Rs.75/- as Paymatrix rewards</span>.</li>
<li>A User can earn unlimited Amazon vouchers and referral credits by simply referring more users and asking them to sign up and transact using his/her referral invite code.</li>
<li>Referral code and the corresponding benefits are applicable only once per user. It means that a user at any point of time can take benefit of only one of the existing referral programs on the platform.</li>
<li>Users shall have to enter the code mandatorily while signing up to avail the benefits of the program.</li>
<li>Referral credits earned into Paymatrix account by the users can be used only for their subsequent payments on the website. They cannot be redeemed for cash nor can be transferred to other users.</li>
<li>Paymatrix reserves the right to withdraw or alter this promotion or scheme, anytime as per its discretion.</li>
<li>For any queries, you may please reach to us on <a style="color: #0071bc;">[email protected]</a></li> -->
</ol>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Content End -->
</div>
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 photography">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer12">
<div class="card-body p-0">
<img src="images/offers/offer_wash.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Washup coupon</h5>
<h6 class="text-muted tag mb-0">Get exciting coupons from our partners</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer12" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle11" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle12" style="font-size: 16px;font-weight: 400;">Get Rs 100 OFF on your laundry services</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
<a href="https://www.getwashapp.in/" class="btn" style="background-color:#00b19e;color:#fff;">Visit Washup</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<p>SIGNUP with Paymatrix to get more such exclusive deals!
WashApp is your laundry and dry cleaning partner in Hyderabad who delivers quality, reliable and affordable Laundry Services in time at your doorstep. Use the code to get Rs.100/-* off at WashApp</p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
<!-- Modal Content End -->
</div>
</div>
<div class="col-lg-4 col-md-12 col-12 col-sm-12 mt-4 pt-2 photography">
<div class="card border-0 work-container work-classic">
<a data-toggle="modal" data-target="#offer13">
<div class="card-body p-0">
<img src="images/offers/offer_tax.png" class="img-fluid rounded work-image" alt="">
<div class="content pt-3">
<h5 class="mb-0">Filing Mantra coupon</h5>
<h6 class="text-muted tag mb-0">Get exciting coupons from our partners</h6>
</div>
</div>
</a>
</div>
<!--- Modal Content Start -->
<div class="modal fade" id="offer13" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle11" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content rounded shadow border-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle13" style="font-size: 16px;font-weight: 400;">Get Rs 100 OFF on your first order at Filing Mantra!</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="container">
<br>
<a href="#" class="btn" style="background-color:#00b19e;color:#fff;">Sign up</a>
<a href="https://www.filingmantra.com/" class="btn" style="background-color:#00b19e;color:#fff;">Visit Filing Mantra</a>
</div>
<div class="modal-body">
<div class="bg-white p-3 rounded box-shadow">
<p>SIGNUP with Paymatrix to get more such exclusive deals!<br>
Filing Mantra provides online tax filing services to small business, professional and Individuals. It has developed automated tax filing platform for individuals. Use the code to get Rs.100/-* off on your first order at Filing Mantra.</p>
</div>