-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapy-calculator.html
More file actions
1993 lines (1966 loc) · 115 KB
/
apy-calculator.html
File metadata and controls
1993 lines (1966 loc) · 115 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YHX88MXWW4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-YHX88MXWW4');
</script>
<!-- Google Adsense -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1195438021979002"
crossorigin="anonymous"></script>
<script async src="https://fundingchoicesmessages.google.com/i/pub-1195438021979002?ers=1"
nonce="BjSR2tWXwNhufsw9vylkYQ"></script>
<script
nonce="BjSR2tWXwNhufsw9vylkYQ">(function () { function signalGooglefcPresent() { if (!window.frames['googlefcPresent']) { if (document.body) { const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe); } else { setTimeout(signalGooglefcPresent, 0); } } } signalGooglefcPresent(); })();</script>
<!-- Google Adsense -->
<!-- JSON-LD markup generated by Google Structured Data Markup Helper. -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Article",
"headline": "APY Calculator online for Atal Pension Yojana by Nivesguru",
"url": "https://nivesguru.in/swp-calculator-online",
"author": {
"@type": "Person",
"name": "Anupam Mondal",
"url": "https://anupammondal.in"
},
"datePublished": "2023-03-26T10:00:00+05:30",
"dateModified": "2023-11-29T14:20:00+05:30",
"image": [
"https://nivesguru.in/apy-calculator-atal-pension-yojana-nivesguru.svg",
"https://nivesguru.in/atal-pension-yojana-apy-calculator-nivesguru.svg",
"https://nivesguru.in/nivesguru-investment-calculator-apy.svg"
],
"publisher": {
"@type": "Organization",
"name": "NivesGuru"
}
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://nivesguru.in"
},{
"@type": "ListItem",
"position": 2,
"name": "APY Calculator online for Atal Pension Yojana by Nivesguru",
"item": "https://nivesguru.in/apy-calculator"
}]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "What happens if APY holder dies?",
"acceptedAnswer": {
"@type": "Answer",
"text": "In the case of death, accumulated amount of pension wealth will be paid to spouse, who is the default nominee or the nominee prescribed by the subscriber for the APY account."
}
}, {
"@type": "Question",
"name": "Can I join APY if I already have a job?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, APY is open to all individuals, regardless of their employment status. It is especially beneficial for those without access to formal pension schemes."
}
}]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "APY Calculator online for Atal Pension Yojana by Nivesguru",
"url": "https://nivesguru.in/apy-calculator",
"logo": "https://nivesguru.in/maskable_icon_x192.png",
"contactPoint": [{
"@type": "ContactPoint",
"telephone": "+91-938-239-9893",
"contactType": "customer service",
"areaServed": "IN"
}],
"image": [
"https://nivesguru.in/nivesguru-investment-calculator.svg"
],
"sameAs": [
"https://nivesguru.in",
"https://www.facebook.com/nivesguru",
"https://instagram.com/niveshguru_official",
"https://www.youtube.com/@nivesguru-india",
"https://twitter.com/Nivesguru",
"https://www.linkedin.com/company/nivesguru"
]
}
</script>
<!-- Primary Meta Tags -->
<title>APY Calculator online for Atal Pension Yojana by Nivesguru</title>
<meta name="title" content="APY Calculator online for Atal Pension Yojana by Nivesguru">
<meta name="description"
content="APY Calculator for Atal Pension Yojana, pension from ₹1,000 to ₹5,000 monthly by Govt. Age should be between 18-40, minimum contribution ₹42/month upto 60 years">
<meta property="og:type" content="website">
<meta property="og:url" content="https://nivesguru.in/apy-calculator">
<meta property="og:title" content="APY Calculator online for Atal Pension Yojana by Nivesguru">
<meta property="og:description"
content="APY Calculator for Atal Pension Yojana, pension from ₹1,000 to ₹5,000 monthly by Govt. Age should be between 18-40, minimum contribution ₹42/month upto 60 years">
<meta property="og:image" content="https://nivesguru.in/res/meta/apy-calculator-nivesguru.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@Nivesguru">
<meta property="twitter:url" content="https://nivesguru.in/apy-calculator">
<meta property="twitter:title" content="APY Calculator online for Atal Pension Yojana by Nivesguru">
<meta property="twitter:description"
content="APY Calculator for Atal Pension Yojana, pension from ₹1,000 to ₹5,000 monthly by Govt. Age should be between 18-40, minimum contribution ₹42/month upto 60 years">
<meta property="twitter:image" content="https://nivesguru.in/res/meta/apy-calculator-nivesguru.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="manifest" href="manifest.json">
<link rel="canonical" href="https://nivesguru.in/apy-calculator">
<!-- Favicon -->
<link rel="alternate" href="https://nivesguru.in/apy-calculator" hreflang="en" />
<link rel="alternate" href="https://nivesguru.in/bn/apy-calculator" hreflang="bn" />
<link rel="alternate" href="https://nivesguru.in/hi/apy-calculator" hreflang="hi" />
<link rel="alternate" href="https://nivesguru.in/apy-calculator" hreflang="x-default" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<style>
nav.navbar {
background-color: #00000077;
}
a.navbar-brand img {
margin-top: -5px;
}
header,
.mix-bg {
background: linear-gradient(245deg, #3b3b3b 0%, #FDFF96 100%), linear-gradient(245deg, #0038FF 0%, #000000 100%), radial-gradient(100% 225% at 100% 0%, #4200FF 0%, #001169 100%), linear-gradient(245deg, #000000 0%, #FFB800 100%), radial-gradient(115% 107% at 40% 100%, #EAF5FF 0%, #EAF5FF 40%, #A9C6DE calc(40% + 1px), #A9C6DE 70%, #247E6C calc(70% + 2px), #247E6C 85%, #E4C666 calc(85% + 2px), #E4C666 100%), linear-gradient(65deg, #083836 0%, #083836 40%, #66D37E calc(40% + 1px), #66D37E 60%, #C6E872 calc(60% + 1px), #C6E872 100%);
background-blend-mode: overlay, screen, overlay, hard-light, overlay, normal;
}
.bg-duo {
background: rgb(255, 255, 255);
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 50%);
}
.wave1 {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0 224L24 234.7C48 245 96 267 144 256C192 245 240 203 288 165.3C336 128 384 96 432 90.7C480 85 528 107 576 128C624 149 672 171 720 186.7C768 203 816 213 864 234.7C912 256 960 288 1008 266.7C1056 245 1104 171 1152 165.3C1200 160 1248 224 1296 224C1344 224 1392 160 1416 128L1440 96L1440 320L1416 320C1392 320 1344 320 1296 320C1248 320 1200 320 1152 320C1104 320 1056 320 1008 320C960 320 912 320 864 320C816 320 768 320 720 320C672 320 624 320 576 320C528 320 480 320 432 320C384 320 336 320 288 320C240 320 192 320 144 320C96 320 48 320 24 320L0 320Z'%3E%3C/path%3E%3C/svg%3E");
background-position: bottom center;
background-repeat: no-repeat;
}
.right-dark-strip-bg {
background: rgb(255, 255, 255);
background: linear-gradient(225deg, rgba(255, 255, 255, 1) 80%, rgba(0, 17, 105, 1) 80%, rgba(0, 17, 105, 1) 100%);
}
a {
text-decoration: none;
}
h2,
ul li a {
color: rgba(0, 17, 105, 1);
}
ul li {
list-style: none;
}
.modal-content {
background: linear-gradient(125deg, #ffc107 0%, #ffc107 30%, #FFFFFF calc(30% + 1px), #FFFFFF 60%, #FFFFFF calc(60% + 1px), #FFFFFF 72%, #FFFFFF calc(72% + 1px), #FFFFFF 100%);
}
a small,
a svg {
display: block;
margin: 0 auto;
text-align: center;
}
a small {
font-size: .6rem;
}
a.nav-link {
transition: none;
}
#myChart {
display: block;
margin: auto;
width: 100%;
max-width: 340px
}
.bg-pattern {
background-color: #f8f8ff;
opacity: 0.8;
background-image: linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff), linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff), linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff), linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff), linear-gradient(60deg, #ffffff77 25%, transparent 25.5%, transparent 75%, #ffffff77 75%, #ffffff77), linear-gradient(60deg, #ffffff77 25%, transparent 25.5%, transparent 75%, #ffffff77 75%, #ffffff77);
background-size: 74px 130px;
background-position: 0 0, 0 0, 37px 65px, 37px 65px, 0 0, 37px 65px;
}
</style>
</head>
<body>
<header id="calculator">
<div class="wave1">
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand text-white fw-bold" href="./" title="Nivesguru">
<img src="favicon-32x32.png" width="32" height="32"
class="d-inline-block align-text-top rounded-circle" alt="Nivesguru Logo"
title="Nivesguru Logo">
<p class="d-inline-block h4">Nivesguru</p>
</a>
<button class="navbar-toggler shadow-none border-0" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="text-white">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
class="bi bi-grid-fill" viewBox="0 0 16 16">
<path
d="M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5v-3zm8 0A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5v-3zm-8 8A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5v-3zm8 0A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5v-3z" />
</svg>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto fw-bold mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Investment Calculators
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item"
href="senior-citizens-savings-scheme-scss-calculator">SCSS Calculator</a>
</li>
<li><a class="dropdown-item"
href="post-office-monthly-income-scheme-mis-calculator">MIS Calculator</a>
</li>
<li><a class="dropdown-item"
href="mahila-samman-savings-certificate-mssc-calculator">MSSC Calculator</a>
</li>
<li><a class="dropdown-item" href="post-office-time-deposit-td-calculator">TD
Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="sgb-calculator">SGB Calculator</a></li>
<li><a class="dropdown-item" href="kvp-calculator">KVP
Calculator</a></li>
<li><a class="dropdown-item" href="national-savings-certificate-nsc-calculator">NSC
Calculator</a></li>
<li><a class="dropdown-item" href="sukanya-samriddhi-yojana-ssy-calculator">SSY
Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="apy-calculator">APY
Calculator</a></li>
<li><a class="dropdown-item" href="national-pension-system-nps-calculator">NPS
Calculator</a></li>
<li><a class="dropdown-item" href="ppf-calculator">PPF
Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item"
href="pradhan-mantri-jeevan-jyoti-bima-yojana-pmjjby-calculator">PMJJBY
Calculator</a></li>
<li><a class="dropdown-item"
href="pradhan-mantri-suraksha-bima-yojana-pmsby-calculator">PMSBY
Calculator</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Finance Calculators
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="income-tax-calculator">Income Tax Calculator</a>
</li>
<li><a class="dropdown-item" href="gst-calculator">GST Calculator</a></li>
<li><a class="dropdown-item" href="simple-interest-calculator">Simple Interest
Calculator</a></li>
<li><a class="dropdown-item" href="service-tax-calculator">Service Tax Calculator</a>
</li>
<li><a class="dropdown-item" href="capital-gain-tax-calculator">Capital Gain Tax
Calculator</a></li>
<li><a class="dropdown-item" href="tds-calculator">TDS Calculator</a></li>
<li><a class="dropdown-item" href="vat-calculator">VAT Calculator</a></li>
<li><a class="dropdown-item"
href="systematic-investment-plan-sip-return-calculator">SIP
Calculator</a></li>
<li><a class="dropdown-item" href="inflation-calculator-india">Inflation
Calculator</a></li>
<li><a class="dropdown-item" href="emi-calculator-online">EMI Calculator</a></li>
<li><a class="dropdown-item" href="swp-calculator-online">SWP Calculator</a></li>
<li><a class="dropdown-item" href="compound-interest-calculator">Compound Interest
Calculator</a></li>
<li><a class="dropdown-item" href="lumpsum-calculator-online">Lumpsum
Calculator</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Savings Calculators
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="fixed-deposit-fd-calculator">FD Calculator</a></li>
<li><a class="dropdown-item" href="bob-fd-calculator">BOB FD Calculator</a></li>
<li><a class="dropdown-item" href="boi-fd-calculator">BOI FD Calculator</a></li>
<li><a class="dropdown-item" href="pnb-fd-calculator">PNB FD Calculator</a></li>
<li><a class="dropdown-item" href="sbi-fd-calculator">SBI FD Calculator</a></li>
<li><a class="dropdown-item" href="ubi-fd-calculator">UBI FD Calculator</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="rd-calculator">RD Calculator</a></li>
<li><a class="dropdown-item" href="bob-rd-calculator">BOB RD Calculator</a></li>
<li><a class="dropdown-item" href="boi-rd-calculator">BOI RD Calculator</a></li>
<li><a class="dropdown-item" href="pnb-rd-calculator">PNB RD Calculator</a></li>
<li><a class="dropdown-item" href="sbi-rd-calculator">SBI RD Calculator</a></li>
<li><a class="dropdown-item" href="ubi-rd-calculator">UBI RD Calculator</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="sb-calculator">SB Calculator</a></li>
<li><a class="dropdown-item" href="bob-sb-calculator">BOB SB Calculator</a></li>
<li><a class="dropdown-item" href="boi-sb-calculator">BOI SB Calculator</a></li>
<li><a class="dropdown-item" href="pnb-sb-calculator">PNB SB Calculator</a></li>
<li><a class="dropdown-item" href="sbi-sb-calculator">SBI SB Calculator</a></li>
<li><a class="dropdown-item" href="ubi-sb-calculator">UBI SB Calculator</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
About
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="about-us">About us</a></li>
<li><a class="dropdown-item" href="contact-us">Contact us</a></li>
<li><a class="dropdown-item" href="faq-page">FAQ</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
<span class="d-inline-block">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" class="bi bi-translate" viewBox="0 0 16 16">
<path
d="M4.545 6.714 4.11 8H3l1.862-5h1.284L8 8H6.833l-.435-1.286zm1.634-.736L5.5 3.956h-.049l-.679 2.022z">
</path>
<path
d="M0 2a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v3h3a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-3H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm7.138 9.995q.289.451.63.846c-.748.575-1.673 1.001-2.768 1.292.178.217.451.635.555.867 1.125-.359 2.08-.844 2.886-1.494.777.665 1.739 1.165 2.93 1.472.133-.254.414-.673.629-.89-1.125-.253-2.057-.694-2.82-1.284.681-.747 1.222-1.651 1.621-2.757H14V8h-3v1.047h.765c-.318.844-.74 1.546-1.272 2.13a6 6 0 0 1-.415-.492 2 2 0 0 1-.94.31">
</path>
</svg>
</span>
</a>
<ul class="dropdown-menu" data-bs-popper="static">
<li><a class="dropdown-item" href="./apy-calculator">English</a></li>
<li><a class="dropdown-item" href="./hi/apy-calculator">हिंदी</a></li>
<li><a class="dropdown-item" href="./bn/apy-calculator">বাংলা</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div class="container py-5">
<div class="row">
<div class="col-lg-6 col-12">
<div class="card shadow mb-3 h-100 border-0">
<div class="card-body">
<div class="px-5 pt-5">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="./">Home </a></li>
<li class="breadcrumb-item active" aria-current="apy-calculator">APY
Calculator</li>
</ol>
</nav>
</div>
<h1 class="lead fw-bold px-5 mb-5 fs-3">APY Calculator online for Atal Pension Yojana by
Nivesguru</h1>
<form class="px-5 lead fs-6">
<div class="row">
<div class="col">
<label for="totinv" class="form-label">Pension/month</label>
</div>
<div class="col">
<label for="totinv" class="form-label float-end">₹
<strong class="fs-4" id="inv-disp">1000</strong>
</label>
</div>
</div>
<div class="row">
<div class="col">
<div class="mb-3">
<input type="range" class="form-range" min="1000" max="5000" step="1000"
value="1000" id="totinv" onchange="dispInv()">
<div class="row">
<span class="col">₹1000</span>
<span class="text-end col">₹5000</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<label for="dage" class="form-label">Starting Age </label>
</div>
<div class="col">
<label for="dage" class="form-label float-end">
<strong class="fs-4" id="age-disp">37</strong>
</label>
</div>
</div>
<div class="row">
<div class="col">
<div class="mb-3">
<input type="range" class="form-range" min="18" max="40" step="1"
value="37" id="dage" onchange="dispAge()">
<div class="row">
<span class="col">18</span>
<span class="text-end col">40</span>
</div>
</div>
</div>
</div>
<div class="mb-3">
<label class="form-label">Monthly investment : ₹<strong
id="pminv"></strong></label>
</div>
<div class="my-4">
<button type="button" onclick="npsCalc();"
class="btn btn-primary rounded-pill shadow-none px-5">Calculate</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-lg-6 col-12">
<div class="card bg-pattern shadow h-100 border-0">
<div class="card-body">
<div class="px-5">
<div class="card border-0">
<div class="card-body">
<table id="myTbl" class="lead table table-borderless fs-6 mb-0"></table>
</div>
</div>
<canvas id="myChart"></canvas>
</div>
</div>
</div>
<div class="p-5">
<lottie-player src="https://assets4.lottiefiles.com/packages/lf20_06a6pf9i.json"
background="transparent" speed="1" class="img-fluid" loop autoplay></lottie-player>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- <section class="g-adsense">
<div class="container">
<div class="row">
<div class="col-12">
<div class="g-in-article-adsense">
<ins class="adsbygoogle" style="display:block; text-align:center;" data-ad-layout="in-article"
data-ad-format="fluid" data-ad-client="ca-pub-1195438021979002"
data-ad-slot="8059393466"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
</div>
</div>
</section> -->
<section id="intro">
<div class="container">
<div class="row">
<div class="col-12">
<ul class="list-group list-group-flush">
<li class="list-group-item lead text-secondary py-1 px-0 border-0">
<time pubdate="pubdate" datetime="2023-05-23">Published : May 23, 2023</time>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-12">
<h2 class="h3 mb-5">Introduction : Atal Pension Yojana</h2>
<p class="lead fs-6">Welcome to our comprehensive guide on Atal Pension Yojana (APY), a
government-backed pension scheme designed to provide financial security to the unorganized
sector of India. In this blog, we will delve deep into the intricacies of APY, covering aspects
such as the scheme's benefits, details, calculator, and the APY chart for a clearer financial
future.</p>
<p class="lead fs-6">Atal Pension Yojana (APY) is aimed at providing a guaranteed minimum pension to
the unorganized sector workers. It is a voluntary contribution-based scheme that allows
individuals to save for their retirement and receive a regular income after they retire. An Atal
Pension Yojana investment calculator is a tool that can help investors estimate the amount of
money they can save under the scheme and plan their finances accordingly.</p>
</div>
</div>
</div>
</section>
<!-- <section id="toc">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h3 my-5">Table of Contents</h2>
<ul class="list-group list-group-flush">
<li class="list-group-item">1. What is Atal Pension Yojana?
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">Definition and purpose</li>
<li class="list-group-item">Eligibility criteria</li>
<li class="list-group-item">Contribution levels</li>
</ul>
</li>
<li class="list-group-item">2. Benefits of Atal Pension Yojana
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">Guaranteed pension</li>
<li class="list-group-item">Death and disability benefits</li>
<li class="list-group-item">Tax benefits</li>
<li class="list-group-item">Easy enrollment</li>
</ul>
</li>
<li class="list-group-item">3. Atal Pension Yojana Calculator: Plan Your Retirement
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">How the APY calculator works</li>
<li class="list-group-item">Step-by-step guide to using the calculator</li>
<li class="list-group-item">Real-life examples</li>
</ul>
</li>
<li class="list-group-item">4. Understanding the Atal Pension Yojana Chart
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">APY contribution chart</li>
<li class="list-group-item">Age vs. contribution</li>
<li class="list-group-item">Maturity benefits</li>
</ul>
</li>
<li class="list-group-item">5. Steps to Enroll in Atal Pension Yojana
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">Registering through a bank</li>
<li class="list-group-item">Online registration process</li>
<li class="list-group-item">Required documents</li>
</ul>
</li>
<li class="list-group-item">6. Atal Pension Yojana vs. Other Retirement Plans
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">APY vs. EPF</li>
<li class="list-group-item">APY vs. PPF</li>
<li class="list-group-item">Advantages of choosing APY</li>
</ul>
</li>
<li class="list-group-item">7. Frequently Asked Questions (FAQs)
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">Common queries about APY</li>
<li class="list-group-item">Detailed answers for clarity</li>
</ul>
</li>
<li class="list-group-item">8. Conclusion: Secure Your Future with Atal Pension Yojana
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">Summarizing the key points</li>
<li class="list-group-item">Encouraging readers to take advantage of APY</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</section> -->
<section id="understand">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h3 my-5">Understanding Atal Pension Yojana (APY) Chart</h2>
<p class="lead fs-6">Atal Pension Yojana, launched by the Government of India, is a voluntary
pension scheme aimed at providing a steady income post-retirement. The scheme encourages workers
from the unorganized sector to save for their retirement years. The APY chart is a visual
representation of how the scheme works. It outlines the contributions required at different ages
to receive a specific pension amount after retirement.</p>
</div>
</div>
<div class="row">
<div class="col-lg-7 col-md-6 col-12">
<h3 class="h4 my-4">APY Contribution Chart</h3>
<p class="lead fs-6">The contribution chart typically includes columns for age, monthly
contribution, and the corresponding pension amount. It serves as a quick reference guide for
individuals planning their contributions.</p>
<h3 class="h4 my-4">Age vs. Contribution</h3>
<p class="lead fs-6">The APY chart shows that the earlier you start contributing to the scheme,
the lower your monthly contributions will be. This incentivizes young individuals to enroll in
APY and secure their retirement at a lower cost.</p>
<h3 class="h4 my-4">Maturity Benefits</h3>
<p class="lead fs-6">The chart also highlights the maturity benefits, indicating the pension amount
that will be received monthly after retirement based on the chosen contribution level.</p>
</div>
<div class="col-lg-5 col-md-6 col-12">
<img src="apy-calculator-atal-pension-yojana-nivesguru.svg"
alt="Online Atal Pension Yojana / APY Calculator"
title="Online Atal Pension Yojana / APY Calculator">
</div>
</div>
<div class="row">
<div class="col-12">
<h5 class="text-danger my-3">Try other Investment Calculators for Retirement</h5>
</div>
<div class="col-md-4 col-12">
<div class="card mb-4 p-3">
<div class="row g-0">
<div class="col-md-4">
<img src="res/icon/pension-plan.webp" class="img-fluid d-block mx-auto"
alt="Atal Pension Yojana / APY Calculator"
title="Atal Pension Yojana / APY Calculator" width="105" height="105"
loading="lazy">
</div>
<div class="col-md-8">
<div class="card-body">
<h3 class="card-title h5 my-2">APY Calculator</h3>
<a href="apy-calculator" class="stretched-link shadow-none lead fs-6">Atal
Pension Yojana</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-4 p-3">
<div class="row g-0">
<div class="col-md-4">
<img src="res/icon/post-office-scss.webp" class="img-fluid d-block mx-auto"
alt="Senior Citizens Savings Scheme / SCSS Calculator"
title="Senior Citizens Savings Scheme / SCSS Calculator" width="105" height="105"
loading="lazy">
</div>
<div class="col-md-8">
<div class="card-body">
<h3 class="card-title h5 mb-0">SCSS Calculator</h3>
<a href="senior-citizens-savings-scheme-scss-calculator"
class="stretched-link shadow-none lead fs-6"
title="Senior Citizens Savings Scheme / SCSS Calculator">Senior Citizens
Savings Scheme</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card mb-4 p-3">
<div class="row g-0">
<div class="col-md-4">
<img src="res/icon/pension-plan.webp" class="img-fluid d-block mx-auto"
alt="National Pension System / NPS Calculator"
title="National Pension System / NPS Calculator" width="105" height="105"
loading="lazy">
</div>
<div class="col-md-8">
<div class="card-body">
<h3 class="card-title h5 my-2">NPS Calculator</h3>
<a href="national-pension-system-nps-calculator"
class="stretched-link shadow-none lead fs-6">National Pension System</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<h3 class="h4 my-4">Understanding the APY Chart</h3>
<p class="lead fs-6">The APY chart displays the monthly contributions and the corresponding pension
amount based on age. It is a useful visual tool to plan your contributions and estimate the
pension you will receive.</p>
</div>
<div class="col-md-6 col-12">
<h3 class="h4 my-4">Interpretation of the APY Chart</h3>
<p class="lead fs-6">The younger you start, the lower the monthly contribution required for the same
pension amount. The pension amount increases as the contribution amount and starting age are
higher.</p>
</div>
</div>
</div>
</section>
<section id="benifits">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h3 my-5">Benefits of Atal Pension Yojana</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<h3 class="h4 my-4">Guaranteed Pension</h3>
<p class="lead fs-6">One of the primary benefits of APY is the assurance of a fixed pension
amount after retirement. The scheme offers pension options of Rs. 1,000, Rs. 2,000, Rs. 3,000,
Rs. 4,000, or Rs. 5,000, depending on the chosen contribution.</p>
</div>
<div class="col-md-6 col-12">
<h3 class="h4 my-4">Death and Disability Benefits</h3>
<p class="lead fs-6">In the unfortunate event of the contributor's demise before the maturity
of the scheme, the spouse is entitled to receive the pension. Additionally, in case of
disability due to any reason, the contributor can claim the pension amount.</p>
</div>
<div class="col-md-6 col-12">
<h3 class="h4 my-4">Tax Benefits</h3>
<p class="lead fs-6">Atal Pension Yojana APY contributions are eligible for tax benefits under
Section 80CCD of the Income Tax Act, 1961 of India. This makes the scheme even more attractive
from a tax planning perspective.</p>
<h3 class="h4 my-4">Easy Enrollment</h3>
<p class="lead fs-6">Enrolling in APY is a hassle-free process. It can be done through
authorized banks or online platforms, ensuring that the scheme is accessible to all.</p>
</div>
<div class="col-md-6 col-12">
<div class="card my-3">
<div class="card-body">
<h4 class="h5 my-3 px-3">Advantages of Choosing APY</h4>
<hr>
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">APY ensures a steady income during retirement.</li>
<li class="list-group-item">The scheme is accessible to a wider demographic.</li>
<li class="list-group-item">Tax benefits make it a financially prudent choice.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<h3 class="h4 my-4">Some more Benefits of Atal Pension Yojana</h3>
<p class="lead fs-6"><strong>1. Fixed Contributions : </strong> Contributions are fixed and
affordable, making it easier for individuals with varying income levels to participate.</p>
<p class="lead fs-6"><strong>2. Co-contributions by the Government : </strong> Government
contributes 50% of the subscriber's contribution or Rs. 1000 per year / annum, for 5 years
period, whichever is lower.</p>
</div>
</div>
</div>
</section>
<section id="eligiblity">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h3 my-5">Atal Pension Yojana Eligibility, Enrollment Details</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-12">
<div class="card">
<div class="card-body">
<h3 class="h4 my-4">Process</h3>
<p class="lead fs-6"><strong>1. Visit a Bank or Post Office : </strong> Visit a
participating bank or post office to open an APY account.</p>
<p class="lead fs-6"><strong>2. Provide Necessary Documents : </strong> Submit your Aadhar
card and savings bank account details.</p>
<p class="lead fs-6"><strong>3. Choose Pension Amount : </strong> Select the desired pension
amount based on your contribution capacity and age.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-12">
<div class="card my-3">
<div class="card-body">
<h3 class="h4 my-4">Required Documents</h3>
<p class="lead fs-6">To enroll in APY, you will need the following documents:</p>
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">Aadhar card</li>
<li class="list-group-item">Savings bank account</li>
<li class="list-group-item">Address proof</li>
<li class="list-group-item">Identity proof</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-12">
<div class="card">
<div class="card-body">
<h3 class="h4 my-4">Eligibility Criteria for APY</h3>
<p class="lead fs-6">For the Atal Pension Yojana, an individual must be eligible for :</p>
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">Be an Indian citizen.</li>
<li class="list-group-item">Age must be within the group of 18 to 40 years.</li>
<li class="list-group-item">Have a valid savings bank account.</li>
<li class="list-group-item">Not be a member of any statutory social security scheme.
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<h3 class="h4 mt-5">5. Steps to Enroll in Atal Pension Yojana</h3>
<p class="lead fs-6 mb-5">Enrolling in APY is a straightforward process, and there are two primary
methods to do so:</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<div class="card">
<div class="card-body">
<h4 class="h5 my-3 ps-3">Registering Through a Bank</h4>
<hr>
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">1. Visit your nearest bank branch that offers APY services.
</li>
<li class="list-group-item">2. Fill out the APY registration form.</li>
<li class="list-group-item">3. Provide your Aadhar card and bank account details.</li>
<li class="list-group-item">4. Choose your preferred pension amount and contribution
frequency.</li>
<li class="list-group-item">5. Ensure sufficient funds in your account for the first
contribution.</li>
<li class="list-group-item">6. Your bank will provide an acknowledgment number for
future reference.</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card">
<div class="card-body">
<h4 class="h5 my-3 ps-3">Online Registration Process</h4>
<hr>
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">1. Visit the official APY website or your bank's
internet
banking portal.</li>
<li class="list-group-item">2. Complete the online registration form.</li>
<li class="list-group-item">3. Authenticate your Aadhar number.</li>
<li class="list-group-item">4. Select your desired pension amount and contribution
frequency.</li>
<li class="list-group-item">5. Make the initial contribution from your linked bank
account.</li>
<li class="list-group-item">6. Receive an acknowledgment and PRAN (Permanent
Retirement
Account Number) on successful registration.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="how">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h3 my-5">Atal Pension Yojana Calculator: Plan Your Retirement</h2>
<p class="lead fs-6">The APY calculator is a valuable tool for individuals looking to plan
their retirement effectively. It helps in determining the monthly contribution required to
achieve the desired pension amount. Here's how it works:</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<h3 class="h4 my-4">How the APY Calculator Works</h3>
<p class="lead fs-6">The APY calculator takes into account factors such as your current age,
the age at which you want to retire, the desired pension amount, and the frequency of your
contributions (monthly). It then calculates the monthly contribution needed to reach your
retirement goal.</p>
<h3 class="h4 my-4">Real-Life Examples</h3>
<p class="lead fs-6">To illustrate how the APY calculator works, let's consider a real-life
scenario. Suppose you're 30 years old, wish to retire at 60, and aim for a monthly pension of
Rs. 3,000. Using the calculator, you can determine the monthly contribution needed to achieve
this goal.</p>
</div>
<div class="col-md-6 col-12">
<h3 class="h4 my-4">Step-by-Step Guide to Using the Calculator</h3>
<p class="lead fs-6"><strong>1. Enter Your Age : </strong>Begin by entering your current age.</p>
<p class="lead fs-6"><strong>2. Choose Retirement Age : </strong>Specify the age at which you
want to retire. Remember that the age must be between 60 and 70 years.</p>
<p class="lead fs-6"><strong>3. Select Desired Pension Amount : </strong>Indicate the amount you
wish to receive as a monthly pension.</p>
<p class="lead fs-6"><strong>4. Frequency of Contributions : </strong>Decide whether you want to
make monthly contributions.</p>
<p class="lead fs-6"><strong>5. View Results : </strong>Once you've filled in the details, the
calculator will display the required monthly contribution to achieve your chosen pension amount.
</p>
</div>
</div>
</div>
</section>
<section id="vs-others">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h3 my-5">Atal Pension Yojana vs. Other Retirement Plans</h2>
<p class="lead fs-6">APY offers several advantages compared to other retirement plans, such as the
Employee Provident Fund (EPF) and Public Provident Fund (PPF). Here's a brief comparison:</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<div class="card mb-3">
<div class="card-body">
<h4 class="h5 my-3 px-3">APY vs. EPF</h4>
<hr>
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">APY is open to all individuals, including those in the
unorganized sector, while EPF is primarily</li>
<li class="list-group-item"><strong>for salaried employees - </strong>APY provides a
fixed pension, whereas EPF offers lump-sum savings.</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mb-3">
<div class="card-body">
<h4 class="h5 my-3 px-3">APY vs. PPF</h4>
<hr>
<ul class="list-group list-group-flush lead fs-6">
<li class="list-group-item">APY is a pension-focused scheme, while PPF is a long-term
savings plan.</li>
<li class="list-group-item">APY offers a guaranteed pension amount, whereas PPF provides
tax-free interest on savings.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="what">
<div class="container">
<div class="row">
<div class="col-md-6 col-12">
<h2 class="h3 my-5">What is Atal Pension Yojana?</h2>
<p class="lead fs-6">Atal Pension Yojana (APY) is a government-initiated pension scheme aimed at
providing financial security to the unorganized sector of the workforce in India. Launched by
the Government of India, this scheme is particularly beneficial for individuals who work in the
private sector or are self-employed and do not have access to formal pension plans.</p>
<p class="lead fs-6">Ensure that you have these documents ready when you apply for APY.</p>
<h3 class="h4 my-4">Contribution Levels</h3>
<p class="lead fs-6">The Atal Pension Yojana allows contributors to choose their pension amount
by specifying their monthly contribution. The pension amount can range from Rs. 1,000 to Rs.
5,000, depending on the individual's preference and affordability.</p>
</div>
<div class="col-md-6 col-12">
<div class="card border-0">
<div class="card-body px-5">
<img src="atal-pension-yojana-apy-calculator-nivesguru.svg"
alt="Atal Pension Yojana / APY Calculator - Nivesguru"
title="Atal Pension Yojana / APY Calculator - Nivesguru">
</div>
</div>
</div>
</div>
</div>
</section>
<section id="formula">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h3 my-5">Atal Pension Yojana Calculator (APY Calculator)</h2>
</div>
</div>
<div class="row">
<div class="col-md-4 col-12">