-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcredit-score-page.html
More file actions
1311 lines (1311 loc) · 82.5 KB
/
Copy pathcredit-score-page.html
File metadata and controls
1311 lines (1311 loc) · 82.5 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><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Wed Mar 26 2025 16:53:16 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="670cb985650adf63f6229ea8" data-wf-site="670cb985650adf63f6229ded">
<head>
<meta charset="utf-8">
<title>Credit Score page</title>
<meta content="Buy on credit with ease and confidence with our simplified payments just for you." name="description">
<meta content="Credit Score page" property="og:title">
<meta content="Buy on credit with ease and confidence with our simplified payments just for you." property="og:description">
<meta content="https://uploads-ssl.webflow.com/624d5f7a74a0186475f7ef9d/65ce4b5a5b56f2c2d3928627_shopper.png" property="og:image">
<meta content="Credit Score page" property="twitter:title">
<meta content="Buy on credit with ease and confidence with our simplified payments just for you." property="twitter:description">
<meta content="https://uploads-ssl.webflow.com/624d5f7a74a0186475f7ef9d/65ce4b5a5b56f2c2d3928627_shopper.png" property="twitter:image">
<meta property="og:type" content="website">
<meta content="summary_large_image" name="twitter:card">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="Webflow" name="generator">
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/webflow.css" rel="stylesheet" type="text/css">
<link href="css/settle-club.webflow.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["Lato:100,100italic,300,300italic,400,400italic,700,700italic,900,900italic"] }});</script>
<script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
<link href="images/favicon.png" rel="shortcut icon" type="image/x-icon">
<link href="images/webclip.png" rel="apple-touch-icon">
<link href="https://www.settle.club/credit-score-page" rel="canonical">
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-68Z5VHQ4QB"></script>
<script type="text/javascript">window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('set', 'developer_id.dZGVlNj', true);gtag('config', 'G-68Z5VHQ4QB');</script>
<link rel="“preconnect”" href="“https://assets-global.website-files.com”">
<style>
.w-webflow-badge{
display: none !important;
}
body{
-webkit-font-smoothing: antialiased;
scroll-behavior: smooth!important;
}
html, body {
overscroll-behavior: none;}
</style>
<!-- [Attributes by Finsweet] CMS PrevNext -->
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-cmsprevnext@1/cmsprevnext.js"></script>
<!-- [Attributes by Finsweet] CMS Filter -->
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-cmsfilter@1/cmsfilter.js"></script>
<!-- [Attributes by Finsweet] CMS Sort -->
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-cmssort@1/cmssort.js"></script>
<!-- [Attributes by Finsweet] CMS Load -->
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-cmsload@1/cmsload.js"></script>
<!-- [Attributes by Finsweet] Range Slider -->
<script defer="" src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-rangeslider@1/rangeslider.js"></script>
<meta name="ahrefs-site-verification" content="8fd0bc49d8b5e677c269c63c354380428d5bef1d6f9ae62f455ba058ad8b4d01">
<meta name="“google-site-verification”" content="“07-mCCANWJ8pRJPAUqNw2ujQXCOqyEKrdKFssC3MzcM”">
<meta name="“robots”" content="“noindex”">
<!-- FAQ schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "What is Settle?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Settle is the new BNPL platform that offers instant credit with just a few simple steps. Settle limit offers instant credit up to ₹ 20,000 is a 100% paperless process."
}
},{
"@type": "Question",
"name": "How can I open a Settle account?",
"acceptedAnswer": {
"@type": "Answer",
"text": "All you need is an Aadhaar card and a PAN card to open a Settle account. Enter your Aadhaar-linked phone number, complete the KYC, and your Settle account is created"
}
},{
"@type": "Question",
"name": "Does Settle charge any application fee?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No! Creating a Settle account is 100% free, with no application fee or any hidden charges."
}
},{
"@type": "Question",
"name": "What is the maximum credit limit that I can get?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The maximum available credit limit is up to ₹ 20000"
}
}]
}
</script>
<!-- FAQ schema end -->
<style>
/* According Arrow */
.accordion-item > .accordion-header:after {
font-family: "Font Awesome 5 Free";
font-weight: 600;
font-size: 16px;
content: "\f077";
color: #1F2024;
float: right;
position: relative;
display: block;
top: 2px;
transition: .3s all;
transform: rotate(-180deg);
opacity: 100;
}
.accordion-item.active > .accordion-header:after {
transform: rotate(0deg);
}
.accordion-header.active .js-accordion-header.active {
background-color: transparent;
}
.accordion-header {
align-items: baseline !important;
}
[text-split] {opacity: 0;}
html.w-editor [text-split] {opacity: 1;}
.word {
overflow: hidden;
vertical-align: top;
transform-origin: bottom;
}
</style>
<!-- Font awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.css">
</head>
<body class="body">
<div class="page-wrapper">
<div bind="05bb0f2c-0d02-62ea-4a96-2f8ff9fe7b3f" class="global-style w-embed">
<style>
/* ALL PAGES CSS */
/* Your max width code replaces the code below */
@media only screen and (min-width: 1560px) {
Body {font-size: 0.975em !important;}
}
/*
@media screen and (max-width:991px) {
body {font-size: 11.011111111111111px;}
}
/* Desktop Only CSS (i.e. hover states)
@media only screen and (min-width: 568px) {
body {font-size: 11.011111111111111px;}
}
*/
/* Global Styles */
img::selection, svg::selection {
background: transparent;
}
/* Link color inherits from parent font color */
a {
color: inherit;
}
/* Disable / enable clicking on an element and its children */
.no-click {
pointer-events: none;
}
.can-click {
pointer-events: auto;
}
/*code for arrow move to right when hover*/
.btn_arrow
cursor: pointer;
}
.arrow_ico {
display: inline-block;
transition: transform 0.3s ease;
}
.btn_arrow:hover .arrow_ico {
transform: translateX(2px);
}
/* stlyes using atrribute for arrow icon*/
[btn_arrow] {
cursor: pointer;
}
/* Style for the arrow icon based on data-arrow-ico attribute */
[arrow_ico] {
display: inline-block;
transition: transform 0.3s ease; /* Apply a smooth transition effect */
}
/* Rotate the arrow icon when hovering on [data-w-id="fbb7f92f-cda3-4a7e-cb51-88b1b8376cb3"] */
[btn_arrow]:hover [arrow_ico] {
transform: translateX(2px); /* Move the arrow to the right by 2 pixels */
}
.nav_dropdown_list{
-webkit-mask-image: -webkit-radial-gradient(white, black);
}
</style>
<style>
.w-select {
-webkit-appearance: none;
-moz-appearance: none;
}
html {
overflow-x: hidden;
}
::-webkit-scrollbar {
display: none !important;
}
.iframe{
border: none !important;
}
.form-field{
height: 2.78em !important;
}
</style>
<style>
/* Make text look crisper and more legible in all browsers */
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
/* Focus state style for keyboard navigation for the focusable elements */
*[tabindex]:focus-visible,
input[type="file"]:focus-visible {
outline: 0.125rem solid #4d65ff;
outline-offset: 0.125rem;
}
/* Get rid of top margin on first element in any rich text element */
.w-richtext > :not(div):first-child, .w-richtext > div:first-child > :first-child {
margin-top: 0 !important;
}
/* Get rid of bottom margin on last element in any rich text element */
.w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child {
margin-bottom: 0 !important;
}
/* Prevent all click and hover interaction with an element */
.pointer-events-off {
pointer-events: none;
}
/* Enables all click and hover interaction with an element */
.pointer-events-on {
pointer-events: auto;
}
/* Create a class of .div-square which maintains a 1:1 dimension of a div */
.div-square::after {
content: "";
display: block;
padding-bottom: 100%;
}
/* Make sure containers never lose their center alignment */
.container-medium,.container-small, .container-large {
margin-right: auto !important;
margin-left: auto !important;
}
/*
Make the following elements inherit typography styles from the parent and not have hardcoded values.
Important: You will not be able to style for example "All Links" in Designer with this CSS applied.
Uncomment this CSS to use it in the project. Leave this message for future hand-off.
*/
/*
a,
.w-input,
.w-select,
.w-tab-link,
.w-nav-link,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
color: inherit;
text-decoration: inherit;
font-size: inherit;
}
*/
/* Apply "..." after 3 lines of text */
.text-style-3lines {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
/* Apply "..." after 2 lines of text */
.text-style-2lines {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
/* Adds inline flex display */
.display-inlineflex {
display: inline-flex;
}
/* These classes are never overwritten */
.hide {
display: none !important;
}
@media screen and (max-width: 991px) {
.hide, .hide-tablet {
display: none !important;
}
}
@media screen and (max-width: 767px) {
.hide-mobile-landscape{
display: none !important;
}
}
@media screen and (max-width: 479px) {
.hide-mobile{
display: none !important;
}
}
.margin-0 {
margin: 0rem !important;
}
.padding-0 {
padding: 0rem !important;
}
.spacing-clean {
padding: 0rem !important;
margin: 0rem !important;
}
</style>
</div>
<div class="navbar-main">
<div class="navbar-l1">
<a href="old-home.html" class="navlink-wrap w-inline-block">
<div class="page_tab">For shoppers</div>
<div class="nav-line"></div>
</a>
<a href="index.html" class="navlink-wrap w-inline-block">
<div class="page_tab disable">For brands</div>
<div class="nav-line opacity-0"></div>
</a>
<a href="enterprise.html" class="navlink-wrap w-inline-block">
<div class="page_tab disable">For enterprise</div>
<div class="nav-line opacity-0"></div>
</a>
</div>
<div data-animation="default" class="navbar-l2 w-nav" data-easing2="ease" fs-scrolldisable-element="smart-nav" data-easing="ease" data-collapse="medium" role="banner" data-duration="400" bind="098a18af-c836-3369-39b2-2097f9b5d51a">
<div class="nav-bg-color"></div>
<div class="nav-top-height-web"></div>
<div class="nav-top-height-mobile"></div>
<nav class="navbar_container">
<a href="old-home.html" id="w-node-_0fe44113-4632-fcda-c673-0052a5b25251-a5b2523e" class="navbar-logo-link w-nav-brand"><img src="images/Artboard-20-copy.svg" loading="lazy" alt="" class="navbar-logo"></a>
<nav role="navigation" id="w-node-_0fe44113-4632-fcda-c673-0052a5b25253-a5b2523e" class="navbar2_menu is-page-height-tablet w-nav-menu">
<div>
<div class="link_line-wrapper side_margin-small">
<a href="https://www.settle.club/" data-analytics="HOMEPAGE_NAVLINK_HOME" class="nav_links w-nav-link">Home</a>
<div class="link_line"></div>
</div>
</div>
<div data-hover="false" data-delay="0" class="dropdown-2 w-dropdown">
<div class="nav_links dropdown w-dropdown-toggle">
<div>Resources</div>
<div class="star w-icon-dropdown-toggle"></div>
</div>
<nav class="dropdown-list w-dropdown-list">
<div class="link_line-wrapper side_margin-small">
<a href="blog.html" data-analytics="HOMEPAGE_NAVLINK_HOME" class="nav_links last w-nav-link">Blogs</a>
<div class="link_line"></div>
</div>
<div class="link_line-wrapper side_margin-small">
<a href="newsletters.html" data-analytics="HOMEPAGE_NAVLINK_HOME" class="nav_links last w-nav-link">Newsletters</a>
<div class="link_line"></div>
</div>
</nav>
</div>
<div class="link_line-wrapper side_margin-small">
<a href="credit-score.html" data-analytics="HOMEPAGE_NAVLINK_HOME" class="nav_links last w-nav-link">Free Credit Score</a>
<div class="link_line"></div>
</div>
</nav>
<div id="w-node-_0fe44113-4632-fcda-c673-0052a5b2526b-a5b2523e" class="navbar2_button-wrapper">
<div class="navbar2_menu-button w-nav-button">
<div class="menu-icon2">
<div class="menu-icon2_line-top"></div>
<div class="menu-icon2_line-middle">
<div class="menu-icon_line-middle-inner"></div>
</div>
<div class="menu-icon2_line-bottom"></div>
</div>
</div>
<a href="https://account.settle.club/auth/login?redirectTo=%2F&slug=home" target="_blank" class="button is_transparent w-button">Sign up / Log in</a>
</div>
</nav>
</div>
</div>
<div class="main-wrapper">
<section class="section">
<div class="padding-global">
<div class="padding-custom-credit-scrore position-relative">
<div class="container-large">
<div class="flex-horizontal justify_apart position-relative">
<div class="animation-play mob-text-center">
<div class="max-width-medium">
<div class="padding-bottom is_24px">
<div class="row-two">
<div class="max-width is_350px">
<h1 class="heading-style-h1">Your Credit Risk Oracle at <span class="font-color-green">Settle</span></h1>
</div>
</div>
</div>
<div class="padding-bottom is_24px">
<div class="max-width-xsmall tablet-max-25em">
<div class="row-three">
<p class="text-size-regular">Know your Credit game and understand how you can elevate and improve your credit score<br></p>
</div>
</div>
</div>
<div class="row-four">
<div class="button-group m-align-center">
<a href="https://account.potlee.co.in/auth/login?redirectTo=%2Fcredit-score" target="_blank" class="button min-240px w-button">Check Credit Score</a>
<a href="#" class="button is-icon hide w-inline-block"><img src="images/play-filled.svg" loading="lazy" alt="a green play button on a white background"></a>
</div>
</div>
</div>
</div>
<div class="graphic_relative">
<div class="credit_scrol_graphic">
<div class="creadi_score"></div>
</div><img src="images/buynownew_1buynownew.webp" loading="lazy" alt="a green bubble with the words buy now and pay later in flexible installations" class="credit-score-2"><img src="images/cars.svg" loading="lazy" alt="a green square icon with a car" class="credit-score-3"><img src="images/cars.svg" loading="lazy" alt="a green square icon with a car" class="credit-score-1">
</div>
</div>
</div>
</div>
</div>
</section>
<div class="z-index-2">
<section class="section">
<div data-w-id="99901f03-fcf9-6040-e217-6e1cca9d0269" class="background-color-linear_light_brown border-top is-56px">
<div class="padding-global mob-padding-10px">
<div class="padding-section-large">
<div class="container-large">
<div class="animation-play padding-right-15px">
<div class="padding-bottom is_32px">
<div class="row-one">
<h2 class="heading-style-h3">Why do you need a credit score checker?</h2>
</div>
</div>
<div class="padding-bottom is_48px">
<p class="text-size-large">A credit score checker is a valuable tool for individuals to monitor their creditworthiness through a three-digit numerical representation. It helps identify errors, detect fraud, and informs decisions on loan or credit card applications. A higher score, such as 750 in Cibil, improves the chances of approval with better rates and terms</p>
</div>
</div>
<div class="tab_wrapper">
<div data-current="Tab 1" data-easing="ease" data-duration-in="0" data-duration-out="0" class="tab_style_2 w-tabs">
<div r-automatic-tabs="6" class="tab_menu w-tab-menu">
<a data-w-tab="Tab 1" class="tab_pill w-inline-block w-tab-link w--current">
<div class="tab_text">What?</div><img loading="lazy" src="images/Union.svg" alt="a dark green background with a white border" class="bottom_pill_right">
</a>
<a data-w-tab="Tab 2" class="tab_pill w-inline-block w-tab-link">
<div class="tab_text">Why?</div><img loading="lazy" src="images/Union.svg" alt="a dark green background with a white border" class="bottom_pill_right">
</a>
<a data-w-tab="Tab 3" class="tab_pill w-inline-block w-tab-link">
<div class="tab_text">When?</div><img loading="lazy" src="images/Union.svg" alt="a dark green background with a white border" class="bottom_pill_right">
</a>
<a data-w-tab="Tab 4" class="tab_pill w-inline-block w-tab-link">
<div class="tab_text">How?</div><img loading="lazy" src="images/Union.svg" alt="a dark green background with a white border" class="bottom_pill_right">
</a>
</div>
<div class="tabs_content w-tab-content">
<div data-w-tab="Tab 1" class="w-tab-pane w--tab-active">
<div class="padding-xxxlarge background-color-dark-green mob-no-border-left">
<div class="flex-horizontal space-between tablet-inverse">
<div class="wrapper is-40 text-align-left">
<div class="padding-bottom is_24px">
<div class="max-width">
<div class="heading-style-h3 text-weight-medium text-color-84e06c">What is a credit score? How is a credit score determined?</div>
</div>
</div>
<div>
<div class="padding-bottom is_48px">
<p class="text-size-regular text-color-white">A credit score, ranging from 300 to 900, statistically represents a person's creditworthiness, indicating their ability to repay borrowed sums. A higher score is advantageous for loan or credit card applications, offering better terms and interest rates, while a lower score suggests a history of late payments and financial irresponsibility</p>
</div>
<div class="padding-bottom is_24px">
<p class="text-size-regular text-color-white">Credit bureaus gather following data to determine a credit score:</p>
</div>
<div class="buttle-wrapper">
<div class="bullets">Personal information</div>
<div class="bullets">Credit history length</div>
<div class="bullets">New credit</div>
<div class="bullets">Amount owed</div>
<div class="bullets">Payment history</div>
<div class="bullets">Credit mix</div>
</div>
</div>
</div>
<div class="width-50" data-w-id="1004fd01-10d5-cd1c-9fdf-7803a8928acd" data-animation-type="lottie" data-src="https://uploads-ssl.webflow.com/624d5f7a74a0186475f7ef9d/660e1d611907ddf30d13408e_Main%20Credit%20Score.json" data-loop="1" data-direction="1" data-autoplay="1" data-is-ix2-target="0" data-renderer="svg" data-default-duration="10.816666666666666" data-duration="0"></div>
</div>
</div>
</div>
<div data-w-tab="Tab 2" class="w-tab-pane">
<div class="padding-xxxlarge background-color-dark-green">
<div class="flex-horizontal space-between tablet-inverse">
<div class="wrapper is-40 text-align-left">
<div class="padding-bottom is_24px">
<div class="max-width">
<div class="heading-style-h3 text-weight-medium text-color-84e06c">Why is it necessary to
have a high credit score?</div>
</div>
</div>
<div>
<div class="padding-bottom is_48px">
<p class="text-size-regular text-color-white">Maintaining a high credit score is essential to increase your loan eligibility, faster loan approvals, benefits of lower interest rates, access to credit cards with alluring rewards, and higher loan amounts qualification and credit card limits.</p>
</div>
<div class="padding-bottom is_24px">
<ol role="list" class="list text-color-84e06c">
<li>
<div class="text-size-regular text-color-f6f3ec"><span class="text-color-84e06c"><strong>Increases Loan Eligibility and Accessibility:</strong></span> A high credit score signifies responsible borrowing, enhancing the chances of swift pre-approved loans without processing delays</div>
</li>
<li>
<div class="text-size-regular text-color-f6f3ec"><span class="text-color-84e06c"><strong>Low-Interest Rates:</strong></span> A high credit score leads to lower loan interest rates, saving you money in the long run</div>
</li>
</ol>
</div>
</div>
</div><img sizes="(max-width: 479px) 82vw, (max-width: 767px) 80vw, (max-width: 991px) 42vw, 41vw" srcset="images/01_101.webp 500w, images/01_101.webp 800w, images/01_101.webp 1080w, images/01_101.webp 1316w" alt="a woman sitting on the floor with shopping bags" src="images/01_101.webp" loading="lazy" class="width-50">
</div>
</div>
</div>
<div data-w-tab="Tab 3" class="w-tab-pane">
<div class="padding-xxxlarge background-color-dark-green">
<div class="flex-horizontal space-between tablet-inverse">
<div class="wrapper is-40 text-align-left">
<div class="padding-bottom is_24px">
<div class="max-width">
<div class="heading-style-h3 text-weight-medium text-color-84e06c">What aspects are considered when determining credit score?</div>
</div>
</div>
<div>
<div class="padding-bottom is_48px">
<p class="text-size-regular text-color-white">The Credit Bureaus take into account the following elements when calculating credit scores:</p>
</div>
<div class="padding-bottom is_24px">
<ol role="list" class="list text-color-84e06c">
<li>
<div class="text-size-regular text-color-f6f3ec"><span class="text-color-84e06c"><strong>Credit history and it’s length:</strong></span> History includes information about your account number, credit usage, and any missed or late payments and a long history of on-time payments leads up to 15% of your credit score</div>
</li>
<li>
<div class="text-size-regular text-color-f6f3ec"><span class="text-color-84e06c"><strong>Credit score inquiries:</strong></span> This includes loan type, requested amount, and individual or joint application details</div>
</li>
</ol>
</div>
</div>
</div><img sizes="(max-width: 479px) 82vw, (max-width: 767px) 80vw, (max-width: 991px) 42vw, 41vw" srcset="images/01_101.webp 500w, images/01_101.webp 800w, images/01_101.webp 1080w, images/01_101.webp 1316w" alt="a woman sitting on the floor with shopping bags" src="images/01_101.webp" loading="lazy" class="width-50">
</div>
</div>
</div>
<div data-w-tab="Tab 4" class="w-tab-pane">
<div class="padding-xxxlarge background-color-dark-green mob-no-border-right">
<div class="flex-horizontal space-between tablet-inverse">
<div class="wrapper is-40 text-align-left">
<div class="padding-bottom is_24px">
<div class="max-width">
<div class="heading-style-h3 text-weight-medium text-color-84e06c">How can one
improve their credit score?</div>
</div>
</div>
<div>
<div class="padding-bottom is_48px">
<ul role="list" class="list">
<li class="list_items">
<p class="text-size-regular text-color-white">Pay your loan instalments on time</p>
</li>
<li class="list_items">
<p class="text-size-regular text-color-white">Pay your bills on time and avoid exceeding your credit limit</p>
</li>
<li class="list_items">
<p class="text-size-regular text-color-white">Pay off any outstanding debts or bills</p>
</li>
<li class="list_items">
<p class="text-size-regular text-color-white">Avoid submitting multiple credit card or loan applications</p>
</li>
</ul>
</div>
<div class="padding-bottom is_24px">
<p class="text-size-regular text-color-white">A credit score of 700 or more is regarded as being good, Here is what lenders investigate when someone requests a loan:</p>
</div>
<div class="buttle-wrapper">
<div class="bullets">CIBIL report and score</div>
<div class="bullets">Employment status</div>
<div class="bullets">Account information</div>
<div class="bullets">Payment history</div>
<div class="bullets">EMI-income ratio</div>
</div>
</div>
</div><img sizes="(max-width: 479px) 89vw, (max-width: 767px) 80vw, (max-width: 991px) 42vw, 41vw" srcset="images/01_101.webp 500w, images/01_101.webp 800w, images/01_101.webp 1080w, images/01_101.webp 1316w" alt="a woman sitting on the floor with shopping bags" src="images/01_101.webp" loading="lazy" class="width-50">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section radius-80px">
<div class="background-color-linear_blue border-top is-56px">
<div class="padding-global">
<div class="padding-section-large">
<div>
<div class="flex-vertical">
<div class="padding-bottom is-xhuge">
<div class="animation-play content-align-center">
<div class="max-width is-700px margin-auto">
<div class="inline-block">
<div class="pills no_bg">
<div>We have got you covered!</div>
</div>
</div>
<div class="max-width">
<h2 class="heading-style-h2">Few other factors to look for</h2>
</div>
</div>
</div>
</div>
<div class="sizing_grow">
<div class="grid-two-col">
<div id="w-node-ae60a7b7-1548-5174-b08f-60b676faac11-f6229ea8" class="card is_white">
<div class="flex horizontal">
<div class="margin-right is-20px">
<div class="icon-height-large" data-w-id="ec0c583f-a49d-0883-bc9f-ace9a981f114" data-animation-type="lottie" data-src="https://uploads-ssl.webflow.com/624d5f7a74a0186475f7ef9d/660e1d61c9ba6da414e76fc4_01%20000%20or%20STD.json" data-loop="1" data-direction="1" data-autoplay="1" data-is-ix2-target="0" data-renderer="svg" data-default-duration="8" data-duration="0"></div>
</div>
<div class="mob-text-left">
<div class="padding-bottom is-small">
<div class="heading-style-h5">000 and STD Codes</div>
</div>
<p class="text-size-regular">Credit bureaus use "000" for accounts in good standing, paid on time. "STD" stands for "Standard," indicating timely payments or dues within 90 days</p>
</div>
</div>
</div>
<div id="w-node-ae60a7b7-1548-5174-b08f-60b676faac19-f6229ea8" data-w-id="ae60a7b7-1548-5174-b08f-60b676faac19" style="-webkit-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0" class="card is_white">
<div class="flex horizontal">
<div class="margin-right is-20px">
<div class="icon-height-large" data-w-id="428d4d8a-a929-3b51-bf9b-72524b8da2d8" data-animation-type="lottie" data-src="https://uploads-ssl.webflow.com/624d5f7a74a0186475f7ef9d/660e1d61e13b9f6c3e605ba8_02%20Dues.json" data-loop="1" data-direction="1" data-autoplay="1" data-is-ix2-target="0" data-renderer="svg" data-default-duration="4.016666666666667" data-duration="0"></div>
</div>
<div class="mob-text-left">
<div class="padding-bottom is-small">
<div class="heading-style-h5">Dues in Credit Report</div>
</div>
<p class="text-size-regular">Get your credit report from CIBIL, look for any non-"000" or "STD" statuses, dispute errors, and monitor payments for timeliness</p>
</div>
</div>
</div>
<div id="w-node-ae60a7b7-1548-5174-b08f-60b676faac21-f6229ea8" data-w-id="ae60a7b7-1548-5174-b08f-60b676faac21" style="-webkit-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0" class="card is_white">
<div class="flex horizontal">
<div class="margin-right is-20px">
<div class="icon-height-large" data-w-id="777887fb-9b85-11f2-73cd-e7aba0f4cfa8" data-animation-type="lottie" data-src="https://uploads-ssl.webflow.com/624d5f7a74a0186475f7ef9d/660bc5e1d6efd943bd24d9bb_03%20Changes%20Of%20Address.json" data-loop="1" data-direction="1" data-autoplay="1" data-is-ix2-target="0" data-renderer="svg" data-default-duration="4.016666666666667" data-duration="0"></div>
</div>
<div class="mob-text-left">
<div class="padding-bottom is-small">
<div class="heading-style-h5">Change of Address Impact</div>
</div>
<p class="text-size-regular">Frequent address changes don't impact credit scores but can raise red flags for lenders, affecting credit approval</p>
</div>
</div>
</div>
<div id="w-node-ae60a7b7-1548-5174-b08f-60b676faac29-f6229ea8" data-w-id="ae60a7b7-1548-5174-b08f-60b676faac29" style="-webkit-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0" class="card is_white">
<div class="flex horizontal">
<div class="margin-right is-20px">
<div class="icon-height-large" data-w-id="de725f22-3653-cb12-f814-89089524ec7b" data-animation-type="lottie" data-src="https://uploads-ssl.webflow.com/624d5f7a74a0186475f7ef9d/660bc5e1aafe0299b23aed34_04%20Unauthorised%20Credit%20Access.json" data-loop="1" data-direction="1" data-autoplay="1" data-is-ix2-target="0" data-renderer="svg" data-default-duration="4.016666666666667" data-duration="0"></div>
</div>
<div class="mob-text-left">
<div class="padding-bottom is-small">
<div class="heading-style-h5">Unauthorised Report Access</div>
</div>
<p class="text-size-regular">If a lender checks your credit without consent, dispute with the bureau, complain to the lender, and monitor your report to protect your score</p>
</div>
</div>
</div>
<div id="w-node-ae60a7b7-1548-5174-b08f-60b676faac31-f6229ea8" data-w-id="ae60a7b7-1548-5174-b08f-60b676faac31" style="-webkit-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0" class="card is_white">
<div class="flex horizontal">
<div class="margin-right is-20px">
<div class="icon-height-large" data-w-id="20307fb1-7910-a23d-b9c4-8e484e014e2f" data-animation-type="lottie" data-src="https://uploads-ssl.webflow.com/624d5f7a74a0186475f7ef9d/660bc5e14fc1109d97b3fdc0_05%20Derogatory%20Marks.json" data-loop="1" data-direction="1" data-autoplay="1" data-is-ix2-target="0" data-renderer="svg" data-default-duration="4.016666666666667" data-duration="0"></div>
</div>
<div class="mob-text-left">
<div class="padding-bottom is-small">
<div class="heading-style-h5">Derogatory Remarks</div>
</div>
<p class="text-size-regular">Derogatory remarks in a CIBIL report, like late payments or defaults, can impact credit score and make obtaining credit challenging.</p>
</div>
</div>
</div>
<div id="w-node-ae60a7b7-1548-5174-b08f-60b676faac39-f6229ea8" data-w-id="ae60a7b7-1548-5174-b08f-60b676faac39" style="-webkit-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 4em, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0" class="card is_white">
<div class="flex horizontal">
<div class="margin-right is-20px">
<div class="icon-height-large" data-w-id="4f72dc55-27c1-4685-db9f-db95bb64efbc" data-animation-type="lottie" data-src="https://uploads-ssl.webflow.com/624d5f7a74a0186475f7ef9d/660e1d6098a70392aeb3c870_06%20Derogatory%20Marks.json" data-loop="1" data-direction="1" data-autoplay="1" data-is-ix2-target="0" data-renderer="svg" data-default-duration="4.016666666666667" data-duration="0"></div>
</div>
<div class="mob-text-left">
<div class="padding-bottom is-small">
<div class="heading-style-h5">Free Credit Report</div>
</div>
<p class="text-size-regular">Get one free credit report annually from each agency at the official website: annualcreditreport.com or Call 1-877-322-8228 for access</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="padding-global">
<div class="padding-section-medium bottom-no-pad">
<div class="container">
<div class="padding-bottom is_32px">
<div class="max-width-xsmall">
<div class="animation-play">
<div class="row-one">
<h2 class="heading-style-h4">Unaware about loan inquiries in the report?</h2>
</div>
</div>
</div>
</div>
<p class="text-size-regular">If you see loans without your knowledge in your credit bureau report, you should first contact the credit bureau and the concerned lender to raise a dispute and request them to investigate the matter. They are required to investigate and respond to your dispute within a specified time frame.
<br><br>If you are not satisfied with their response or resolution, you may approach the Banking Ombudsman appointed by the Reserve Bank of India (RBI). The Banking Ombudsman is an independent and impartial authority that addresses complaints and grievances related to banking services, including credit reporting issues.
<br><br>You can file a complaint with the Banking Ombudsman online or in writing, providing all the necessary details and supporting documents. The Banking Ombudsman will then investigate the matter and provide a resolution based on their findings.</p>
</div>
</div>
</div>
</section>
<section class="section hide">
<div class="padding-section-medium m-top-nopadding">
<div>
<div class="animation-play">
<div class="max-width-xmedium margin-auto mobile_max-width-medium">
<div class="row-one">
<div class="flex-horizontal align-center">
<div class="inline-block">
<div class="pills bg-orange">
<div>Special offers</div>
</div>
</div>
</div>
</div>
<div class="padding-bottom is-large">
<div class="row-two">
<h2 class="heading-style-h2 text-align-center">Special Offers you can’t resist</h2>
</div>
</div>
</div>
</div>
<div class="padding-bottom is-xlarge">
<div class="overflow-scroll special_offer">
<a data-w-id="3bbdf32a-e2de-ac28-cb6b-d8d4b677eb06" href="#" class="coupons_card w-inline-block"><img src="images/small-cards_1small-cards.webp" loading="lazy" sizes="100vw" srcset="images/small-cards_1-p-500.png 500w, images/small-cards_1small-cards.webp 629w" alt="a group of people standing next to each other" class="banner"></a>
<a href="#" class="coupons_card w-inline-block"><img src="images/small-cards-1_1small-cards-1.webp" loading="lazy" sizes="100vw" srcset="images/small-cards-1_1-p-500.png 500w, images/small-cards-1_1small-cards-1.webp 629w" alt="a man holding a smart phone with the text best magnains on top brands get" class="banner"></a>
<a href="#" class="coupons_card w-inline-block"><img src="images/small-cards_1small-cards.webp" loading="lazy" sizes="100vw" srcset="images/small-cards_1-p-500.png 500w, images/small-cards_1small-cards.webp 629w" alt="a group of people standing next to each other" class="banner"></a>
<a href="#" class="coupons_card w-inline-block"><img src="images/small-cards-1_1small-cards-1.webp" loading="lazy" sizes="100vw" srcset="images/small-cards-1_1-p-500.png 500w, images/small-cards-1_1small-cards-1.webp 629w" alt="a man holding a smart phone with the text best magnains on top brands get" class="banner"></a>
<a data-w-id="73f47194-90e3-6299-fd32-636e9133f232" href="#" class="coupons_card w-inline-block"><img src="images/small-cards_1small-cards.webp" loading="lazy" sizes="100vw" srcset="images/small-cards_1-p-500.png 500w, images/small-cards_1small-cards.webp 629w" alt="a group of people standing next to each other" class="banner"></a>
</div>
</div>
<div class="flex-horizontal align-center">
<div class="line-wrap">
<div style="width:20%" class="line-active"></div>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="padding-global">
<div class="padding-section-large">
<div class="container-medium">
<div class="flex-horizontal align-top gap-between-medium">
<div class="max-width-xsmall">
<div class="animation-play">
<div class="row-one">
<h2 class="heading-style-h2 tablet-text-align-center">Frequently Asked Questions</h2>
</div>
</div>
</div>
<div data-ix="fade-up-1" class="accordion js-accordion">
<div class="accordion-item js-accordion-item active">
<div class="accordion-header js-accordion-header">
<h2 class="question-texts">What is Settle?</h2>
</div>
<div data-ix="hide-on-load" class="accordion-body js-accordion-body">
<div class="accordion-body__contents">Settle is the new BNPL platform that offers instant credit with just a few simple steps. Settle limit offers instant credit up to ₹ 20,000 is a 100% paperless process.</div>
</div>
</div>
<div class="accordion-item js-accordion-item">
<div class="accordion-header js-accordion-header">
<h2 class="question-texts">How can I open a Settle account?</h2>
</div>
<div data-ix="hide-on-load" class="accordion-body js-accordion-body">
<div class="accordion-body__contents">All you need is an Aadhaar card and a PAN card to open a Settle account.Enter your Aadhaar linked phone number, complete the KYC and your Settle account is created.</div>
</div>
</div>
<div class="accordion-item js-accordion-item">
<div class="accordion-header js-accordion-header">
<h2 class="question-texts">Does Settle charge any application fee?</h2>
</div>
<div data-ix="hide-on-load" class="accordion-body js-accordion-body">
<div class="accordion-body__contents">No! Creating a Settle account is 100% free, with no application fee or any hidden charges.</div>
</div>
</div>
<div class="accordion-item js-accordion-item">
<div class="accordion-header js-accordion-header">
<h2 class="question-texts">What is the maximum credit limit that I can get?</h2>
</div>
<div data-ix="hide-on-load" class="accordion-body js-accordion-body">
<div class="accordion-body__contents">The maximum available credit limit is up to ₹20000</div>
</div>
</div>
</div>
</div>
<div class="padding-top is_32px">
<div class="content-align-center">
<a href="faq.html" target="_blank" class="w-inline-block"><button class="button is_transparent with-icon">
<div>View More</div>
<div class="button-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewbox="0 0 24 24" fill="none" preserveaspectratio="xMidYMid meet" aria-hidden="true" role="img">
<path d="M18.541 11.0686L13.824 6.35156L13.117 7.05856L17.733 11.6756H5V12.6756H17.735L13.117 17.2926L13.824 17.9996L18.541 13.2836C18.837 12.9876 19 12.5936 19 12.1756C19 11.7576 18.837 11.3636 18.541 11.0696V11.0686Z" fill="currentColor"></path>
</svg></div>
</button></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="padding-global is-120px">
<div class="padding-section-xlarge">
<div class="background-color-dark-green radius_56px position-relative">
<div class="cta_padding">
<div class="padding-global">
<div class="container-large position-relative">
<div class="flex-horizontal m-wrap m-space-between-32px">
<div class="animation-play">
<div>
<div class="padding-bottom is-medium">
<div class="row-one">
<h2 class="heading-style-h2">Join the <span class="text-color-84e06c">Settle Revolution</span></h2>
</div>
</div>
<div class="padding-bottom is-huge">
<div class="max-width-small">
<div class="row-two">
<p class="text-size-regular text-color-white">Revamp your brand's approach to payments and elevate your customer experience. Get in touch with us today to discover how Settle can seamlessly integrate with your brand or marketplace</p>
</div>
</div>
</div>
<div class="row-three">
<div class="button-group minus-5px">
<a href="https://play.google.com/store/apps/details?id=in.co.potlee.account" target="_blank" class="google_play w-inline-block"><img src="images/Android_2Android.webp" loading="lazy" alt=""></a>
<a href="#" class="google_play disable w-inline-block"><img src="images/IOS_2IOS.webp" loading="lazy" alt=""></a>
</div>
</div>
</div>
</div>
<div class="settle_wrapper app_download"><img src="images/home_1home.webp" loading="lazy" sizes="100vw" srcset="images/home_1home.webp 500w, images/home_1home.webp 512w" alt="a mobile phone showing a payment application" class="settle_mobile"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<section class="footer">
<div class="padding-global">
<div class="padding-section-large bottom-padding-small">
<div class="flex-horizontal justify_apart gap-large">
<div class="max-width-xsmall tablet-width-100">
<div class="padding-bottom is-small">
<a href="old-home.html" class="footer-logo w-inline-block"><img src="images/svg-viewer-1.png" loading="lazy" alt="" class="width-100"></a>
</div>
<div class="padding-bottom is-medium">
<div class="div-block-318">
<a href="#" class="icon-20px w-inline-block">
<div class="w-embed"><svg width="100%" height="100%" viewbox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.50003 0.347656C7.05576 0.347656 6.74926 0.358026 5.7893 0.401807C4.83136 0.445509 4.17712 0.597673 3.60464 0.820118C3.01281 1.05012 2.5109 1.35788 2.01057 1.8582C1.51022 2.35853 1.20246 2.86049 0.972488 3.45232C0.74999 4.02478 0.597879 4.67901 0.554124 5.63696C0.510343 6.59691 0.5 6.90341 0.5 9.34768C0.5 11.7919 0.510343 12.0984 0.554124 13.0584C0.597879 14.0163 0.74999 14.6705 0.972488 15.243C1.20249 15.8348 1.51025 16.3367 2.01057 16.8371C2.51093 17.3374 3.01281 17.6452 3.60464 17.8752C4.17712 18.0976 4.83136 18.2498 5.7893 18.2935C6.74926 18.3373 7.05576 18.3477 9.50003 18.3477C11.9442 18.3477 12.2507 18.3373 13.2107 18.2935C14.1686 18.2498 14.8229 18.0976 15.3953 17.8752C15.9872 17.6452 16.4891 17.3374 16.9895 16.8371C17.4898 16.3367 17.7975 15.8348 18.0275 15.243C18.25 14.6705 18.4021 14.0163 18.4458 13.0584C18.4896 12.0984 18.5 11.7919 18.5 9.34768C18.5 6.90341 18.4896 6.59691 18.4458 5.63696C18.4021 4.67901 18.25 4.02478 18.0275 3.45232C17.7975 2.86049 17.4898 2.35853 16.9895 1.8582C16.4891 1.35788 15.9872 1.05012 15.3953 0.820118C14.8229 0.597673 14.1686 0.445509 13.2107 0.401807C12.2507 0.358026 11.9442 0.347656 9.50003 0.347656ZM9.50003 1.96927C11.9031 1.96927 12.1877 1.97846 13.1368 2.02176C14.0143 2.06176 14.4908 2.20838 14.8079 2.33163C15.2281 2.49491 15.5279 2.68992 15.8428 3.00486C16.1577 3.3198 16.3527 3.61963 16.516 4.0397C16.6393 4.35684 16.7859 4.8334 16.8259 5.71088C16.8692 6.65991 16.8784 6.94457 16.8784 9.34766C16.8784 11.7507 16.8692 12.0354 16.8259 12.9844C16.7859 13.8619 16.6393 14.3385 16.516 14.6556C16.3527 15.0757 16.1577 15.3755 15.8428 15.6904C15.5279 16.0054 15.228 16.2004 14.808 16.3637C14.4908 16.4869 14.0143 16.6336 13.1368 16.6736C12.1879 16.7169 11.9033 16.726 9.5 16.726C7.09672 16.726 6.81214 16.7169 5.86323 16.6735C4.98572 16.6336 4.50918 16.4869 4.19208 16.3637C3.77194 16.2004 3.47214 16.0054 3.15723 15.6904C2.84229 15.3755 2.64726 15.0757 2.48397 14.6556C2.36072 14.3385 2.21413 13.8619 2.1741 12.9844C2.1308 12.0354 2.12161 11.7507 2.12161 9.34766C2.12161 6.94457 2.1308 6.65991 2.1741 5.71088C2.21413 4.83337 2.36072 4.35684 2.48397 4.03973C2.64726 3.6196 2.84229 3.3198 3.1572 3.00489C3.47214 2.68992 3.77197 2.49491 4.19205 2.33163C4.50918 2.20838 4.98575 2.06176 5.86323 2.02176C6.81225 1.97846 7.09694 1.96927 9.50003 1.96927Z" fill="currentColor"></path>
<path d="M9.48102 12.3476C7.82412 12.3476 6.48098 11.0045 6.48098 9.34765C6.48098 7.69075 7.82412 6.34761 9.48102 6.34761C11.1379 6.34761 12.481 7.69075 12.481 9.34765C12.481 11.0045 11.1379 12.3476 9.48102 12.3476ZM9.48102 4.726C6.92853 4.726 4.85938 6.79515 4.85938 9.34765C4.85938 11.9001 6.92853 13.9692 9.48102 13.9692C12.0335 13.9692 14.1026 11.9001 14.1026 9.34765C14.1026 6.79515 12.0335 4.726 9.48102 4.726ZM15.3652 4.5434C15.3652 5.13989 14.8817 5.62339 14.2852 5.62339C13.6888 5.62339 13.2052 5.13989 13.2052 4.5434C13.2052 3.94693 13.6888 3.46338 14.2852 3.46338C14.8817 3.46338 15.3652 3.94693 15.3652 4.5434Z" fill="currentColor"></path>
</svg></div>
</a>
<a href="#" class="icon-20px w-inline-block">
<div class="w-embed"><svg width="100%" height="100%" viewbox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.5 10.3477C20.5 4.82481 16.0229 0.347656 10.5 0.347656C4.97715 0.347656 0.5 4.82481 0.5 10.3477C0.5 15.3389 4.15685 19.476 8.9375 20.2262V13.2383H6.39844V10.3477H8.9375V8.14454C8.9375 5.63828 10.4304 4.25391 12.7146 4.25391C13.8087 4.25391 14.9531 4.44922 14.9531 4.44922V6.91016H13.6922C12.4499 6.91016 12.0625 7.681 12.0625 8.47183V10.3477H14.8359L14.3926 13.2383H12.0625V20.2262C16.8431 19.476 20.5 15.3389 20.5 10.3477Z" fill="currentColor"></path>
</svg></div>
</a>
<a href="#" class="icon-20px w-inline-block">
<div class="w-embed"><svg width="100%" height="100%" viewbox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4369_530)">
<path d="M11.2052 7.97028L17.9016 0.347656H16.3154L10.4984 6.96492L5.85592 0.347656H0.5L7.52192 10.3551L0.5 18.3476H2.08627L8.22514 11.358L13.129 18.3476H18.485M2.65879 1.51908H5.09576L16.3142 17.2337H13.8766" fill="currentColor"></path>
</g>
<defs>
<clippath id="clip0_4369_530">
<rect width="17.985" height="18" fill="currentColor" transform="translate(0.5 0.347656)"></rect>
</clippath>
</defs>
</svg></div>
</a>
<a href="https://www.linkedin.com/company/settle-club" target="_blank" class="icon-20px w-inline-block">
<div class="w-embed"><svg width="100%" height="100%" viewbox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.8349 15.6843H13.1679V11.5077C13.1679 10.5117 13.1501 9.22956 11.7807 9.22956C10.3916 9.22956 10.1791 10.3147 10.1791 11.4351V15.6841H7.51208V7.0951H10.0724V8.26887H10.1083C10.3645 7.83077 10.7348 7.47036 11.1796 7.22604C11.6245 6.98172 12.1273 6.86263 12.6345 6.88146C15.3376 6.88146 15.836 8.65948 15.836 10.9726L15.8349 15.6843ZM4.50277 5.92104C4.19666 5.9211 3.89741 5.83038 3.64286 5.66036C3.38831 5.49034 3.18989 5.24866 3.0727 4.96587C2.9555 4.68308 2.9248 4.3719 2.98446 4.07166C3.04413 3.77142 3.19148 3.49562 3.4079 3.27913C3.62431 3.06264 3.90006 2.91518 4.20027 2.85541C4.50049 2.79564 4.81169 2.82623 5.09452 2.94332C5.37735 3.06041 5.6191 3.25874 5.78922 3.51323C5.95933 3.76772 6.05015 4.06694 6.05021 4.37305C6.05024 4.5763 6.01025 4.77757 5.9325 4.96536C5.85475 5.15315 5.74078 5.32379 5.59709 5.46753C5.45339 5.61128 5.2828 5.72531 5.09503 5.80313C4.90727 5.88094 4.70602 5.92101 4.50277 5.92104ZM5.83629 15.6843H3.16647V7.0951H5.83629V15.6843ZM17.1645 0.348882H1.82629C1.47815 0.344953 1.1427 0.479399 0.893641 0.722675C0.644582 0.96595 0.502296 1.29815 0.498047 1.64628V17.0481C0.50215 17.3964 0.644346 17.7289 0.893396 17.9724C1.14245 18.2159 1.47798 18.3506 1.82629 18.3469H17.1645C17.5135 18.3513 17.85 18.217 18.1 17.9735C18.3501 17.7299 18.4932 17.3971 18.498 17.0481V1.64517C18.4931 1.29635 18.3498 0.963772 18.0998 0.720502C17.8497 0.477232 17.5134 0.34317 17.1645 0.347771" fill="currentColor"></path>
</svg></div>
</a>
</div>
</div>
<div class="padding-bottom is-small hide">
<div class="button-group spacing_small">
<a href="https://www.instagram.com/potleesocial/" target="_blank" class="icon-1x1-large w-inline-block">
<div class="icon-embed-custom w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewbox="0 0 18 19" fill="none" preserveaspectratio="xMidYMid meet" aria-hidden="true" role="img">
<path d="M9.00003 0.347656C6.55576 0.347656 6.24926 0.358026 5.2893 0.401807C4.33136 0.445509 3.67712 0.597673 3.10464 0.820118C2.51281 1.05012 2.0109 1.35788 1.51057 1.8582C1.01022 2.35853 0.702463 2.86049 0.472488 3.45232C0.24999 4.02478 0.0978791 4.67901 0.0541242 5.63696C0.0103425 6.59691 0 6.90341 0 9.34768C0 11.7919 0.0103425 12.0984 0.0541242 13.0584C0.0978791 14.0163 0.24999 14.6705 0.472488 15.243C0.702489 15.8348 1.01025 16.3367 1.51057 16.8371C2.01093 17.3374 2.51281 17.6452 3.10464 17.8752C3.67712 18.0976 4.33136 18.2498 5.2893 18.2935C6.24926 18.3373 6.55576 18.3477 9.00003 18.3477C11.4442 18.3477 11.7507 18.3373 12.7107 18.2935C13.6686 18.2498 14.3229 18.0976 14.8953 17.8752C15.4872 17.6452 15.9891 17.3374 16.4895 16.8371C16.9898 16.3367 17.2975 15.8348 17.5275 15.243C17.75 14.6705 17.9021 14.0163 17.9458 13.0584C17.9896 12.0984 18 11.7919 18 9.34768C18 6.90341 17.9896 6.59691 17.9458 5.63696C17.9021 4.67901 17.75 4.02478 17.5275 3.45232C17.2975 2.86049 16.9898 2.35853 16.4895 1.8582C15.9891 1.35788 15.4872 1.05012 14.8953 0.820118C14.3229 0.597673 13.6686 0.445509 12.7107 0.401807C11.7507 0.358026 11.4442 0.347656 9.00003 0.347656ZM9.00003 1.96927C11.4031 1.96927 11.6877 1.97846 12.6368 2.02176C13.5143 2.06176 13.9908 2.20838 14.3079 2.33163C14.7281 2.49491 15.0279 2.68992 15.3428 3.00486C15.6577 3.3198 15.8527 3.61963 16.016 4.0397C16.1393 4.35684 16.2859 4.8334 16.3259 5.71088C16.3692 6.65991 16.3784 6.94457 16.3784 9.34766C16.3784 11.7507 16.3692 12.0354 16.3259 12.9844C16.2859 13.8619 16.1393 14.3385 16.016 14.6556C15.8527 15.0757 15.6577 15.3755 15.3428 15.6904C15.0279 16.0054 14.728 16.2004 14.308 16.3637C13.9908 16.4869 13.5143 16.6336 12.6368 16.6736C11.6879 16.7169 11.4033 16.726 9 16.726C6.59672 16.726 6.31214 16.7169 5.36323 16.6735C4.48572 16.6336 4.00918 16.4869 3.69208 16.3637C3.27194 16.2004 2.97214 16.0054 2.65723 15.6904C2.34229 15.3755 2.14726 15.0757 1.98397 14.6556C1.86072 14.3385 1.71413 13.8619 1.6741 12.9844C1.6308 12.0354 1.62161 11.7507 1.62161 9.34766C1.62161 6.94457 1.6308 6.65991 1.6741 5.71088C1.71413 4.83337 1.86072 4.35684 1.98397 4.03973C2.14726 3.6196 2.34229 3.3198 2.6572 3.00489C2.97214 2.68992 3.27197 2.49491 3.69205 2.33163C4.00918 2.20838 4.48575 2.06176 5.36323 2.02176C6.31225 1.97846 6.59694 1.96927 9.00003 1.96927Z" fill="currentColor"></path>
<path d="M8.98102 12.3476C7.32412 12.3476 5.98098 11.0045 5.98098 9.34765C5.98098 7.69075 7.32412 6.34761 8.98102 6.34761C10.6379 6.34761 11.981 7.69075 11.981 9.34765C11.981 11.0045 10.6379 12.3476 8.98102 12.3476ZM8.98102 4.726C6.42853 4.726 4.35938 6.79515 4.35938 9.34765C4.35938 11.9001 6.42853 13.9692 8.98102 13.9692C11.5335 13.9692 13.6026 11.9001 13.6026 9.34765C13.6026 6.79515 11.5335 4.726 8.98102 4.726ZM14.8652 4.5434C14.8652 5.13989 14.3817 5.62339 13.7852 5.62339C13.1888 5.62339 12.7052 5.13989 12.7052 4.5434C12.7052 3.94693 13.1888 3.46338 13.7852 3.46338C14.3817 3.46338 14.8652 3.94693 14.8652 4.5434Z" fill="currentColor"></path>
</svg></div>
</a>
<a href="https://www.facebook.com/Potlee-112099868134714" target="_blank" class="icon-1x1-large w-inline-block">
<div class="icon-embed-custom w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewbox="0 0 20 21" fill="none" preserveaspectratio="xMidYMid meet" aria-hidden="true" role="img">
<path d="M20 10.3477C20 4.82481 15.5229 0.347656 10 0.347656C4.47715 0.347656 0 4.82481 0 10.3477C0 15.3389 3.65685 19.476 8.4375 20.2262V13.2383H5.89844V10.3477H8.4375V8.14454C8.4375 5.63828 9.93043 4.25391 12.2146 4.25391C13.3087 4.25391 14.4531 4.44922 14.4531 4.44922V6.91016H13.1922C11.9499 6.91016 11.5625 7.681 11.5625 8.47183V10.3477H14.3359L13.8926 13.2383H11.5625V20.2262C16.3431 19.476 20 15.3389 20 10.3477Z" fill="currentColor"></path>
</svg></div>
</a>
<a href="https://twitter.com/potleesocial" target="_blank" class="icon-1x1-large w-inline-block">
<div class="icon-embed-custom w-embed"><svg xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" viewbox="0 0 18 19" fill="none" preserveaspectratio="xMidYMid meet" aria-hidden="true" role="img">
<path d="M10.7052 7.97028L17.4016 0.347656H15.8154L9.99843 6.96492L5.35592 0.347656H0L7.02192 10.3551L0 18.3476H1.58627L7.72514 11.358L12.629 18.3476H17.985M2.15879 1.51908H4.59576L15.8142 17.2337H13.3766" fill="currentColor"></path>
</svg></div>
</a>
<a href="https://www.linkedin.com/company/potlee" target="_blank" class="icon-1x1-large w-inline-block">
<div class="icon-embed-custom w-embed"><svg xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" viewbox="0 0 18 19" fill="none" preserveaspectratio="xMidYMid meet" aria-hidden="true" role="img">
<path d="M15.3349 15.6843H12.6679V11.5077C12.6679 10.5117 12.6501 9.22956 11.2807 9.22956C9.89164 9.22956 9.67911 10.3147 9.67911 11.4351V15.6841H7.01208V7.0951H9.57243V8.26887H9.60827C9.8645 7.83077 10.2348 7.47036 10.6796 7.22604C11.1245 6.98172 11.6273 6.86263 12.1345 6.88146C14.8376 6.88146 15.336 8.65948 15.336 10.9726L15.3349 15.6843ZM4.00277 5.92104C3.69666 5.9211 3.39741 5.83038 3.14286 5.66036C2.88831 5.49034 2.68989 5.24866 2.5727 4.96587C2.4555 4.68308 2.4248 4.3719 2.48446 4.07166C2.54413 3.77142 2.69148 3.49562 2.9079 3.27913C3.12431 3.06264 3.40006 2.91518 3.70027 2.85541C4.00049 2.79564 4.31169 2.82623 4.59452 2.94332C4.87735 3.06041 5.1191 3.25874 5.28922 3.51323C5.45933 3.76772 5.55015 4.06694 5.55021 4.37305C5.55024 4.5763 5.51025 4.77757 5.4325 4.96536C5.35475 5.15315 5.24078 5.32379 5.09709 5.46753C4.95339 5.61128 4.7828 5.72531 4.59503 5.80313C4.40727 5.88094 4.20602 5.92101 4.00277 5.92104ZM5.33629 15.6843H2.66647V7.0951H5.33629V15.6843ZM16.6645 0.348882H1.32629C0.978152 0.344953 0.642699 0.479399 0.393641 0.722675C0.144582 0.96595 0.00229567 1.29815 -0.00195312 1.64628V17.0481C0.00215025 17.3964 0.144346 17.7289 0.393396 17.9724C0.642445 18.2159 0.97798 18.3506 1.32629 18.3469H16.6645C17.0135 18.3513 17.35 18.217 17.6 17.9735C17.8501 17.7299 17.9932 17.3971 17.998 17.0481V1.64517C17.9931 1.29635 17.8498 0.963772 17.5998 0.720502C17.3497 0.477232 17.0134 0.34317 16.6645 0.347771" fill="currentColor"></path>
</svg></div>
</a>
</div>
</div>
<div>#FastestWayToPay</div>
<div class="div-block-319"><img src="images/iso2x_1iso2x.webp" loading="lazy" alt="" class="logo-footer _40"><img src="images/fintech_convergence_council_1fintech_convergence_council.png" loading="lazy" alt="" class="logo-footer _56"><img src="images/main-logo_1main-logo.png" loading="lazy" alt="" class="logo-footer _60"><img src="images/msme-registration-certificate-1_1msme-registration-certificate-1.png" loading="lazy" alt="" class="logo-footer _40"><img src="images/startup-india-logo1-02.png" loading="lazy" alt="" class="logo-footer _155"></div>
</div>
<div class="sizing_grow max-width-large">
<div class="flex-horizontal justify_apart tablet-space-between-large">
<div class="footer_link-wrapper">
<div class="padding-bottom is-xmedium">
<div class="text-size-small text-weight-medium text-color-black">Quick Links</div>
</div>
<div class="footer_link-row">
<div>
<div class="link_line-wrapper">
<a href="https://account.potlee.co.in/credit-score" target="_blank" class="text-size-small">My Account</a>
<div class="link_line"></div>
</div>
</div>
<div class="footer_link_hide">
<div class="link_line-wrapper">
<a href="old-home.html" class="text-size-small">Settle for Shoppers</a>
<div class="link_line"></div>
</div>
</div>
<div class="footer_link_hide">
<div class="link_line-wrapper">
<a href="index.html" class="text-size-small">Settle for Brands</a>
<div class="link_line"></div>
</div>
</div>
<div class="footer_link_hide">
<div class="link_line-wrapper">
<a href="enterprise.html" class="text-size-small">Settle for Enterprise</a>
<div class="link_line"></div>
</div>
</div>
<div>
<div class="link_line-wrapper">
<a href="financing-partners.html" class="text-size-small">Lending Partners</a>
<div class="link_line"></div>
</div>
</div>
</div>
</div>
<div class="footer_link-wrapper">
<div class="padding-bottom is-xmedium">
<div class="text-size-small text-weight-medium text-color-black">Resources</div>
</div>
<div class="footer_link-row">
<div>
<div class="link_line-wrapper">
<a href="newsletters.html" class="text-size-small">Newsletters</a>
<div class="link_line"></div>
</div>
</div>
<div>
<div class="link_line-wrapper">
<a href="credit-score.html" class="text-size-small">Credit Score</a>
<div class="link_line"></div>
</div>
</div>
<div>
<div class="link_line-wrapper">
<a href="blog.html" class="text-size-small">Blogs</a>
<div class="link_line"></div>
</div>
</div>
<div>
<div class="link_line-wrapper">
<a href="about-us.html" class="text-size-small">About us</a>
<div class="link_line"></div>
</div>
</div>
</div>
</div>
<div class="footer_link-wrapper">
<div class="padding-bottom is-xmedium">
<div class="text-size-small text-weight-medium text-color-black">Support</div>
</div>
<div class="footer_link-row">
<div>
<div class="link_line-wrapper">
<a href="faq.html" class="text-size-small">FAQ</a>
<div class="link_line"></div>