File size: 234,965 Bytes
0c1b211 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 |
<!DOCTYPE html><html lang="en"><head><meta http-equiv="origin-trial" content="Az520Inasey3TAyqLyojQa8MnmCALSEU29yQFW8dePZ7xQTvSt73pHazLFTK5f7SyLUJSo2uKLesEtEa9aUYcgMAAACPeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZS5jb206NDQzIiwiZmVhdHVyZSI6IkRpc2FibGVUaGlyZFBhcnR5U3RvcmFnZVBhcnRpdGlvbmluZyIsImV4cGlyeSI6MTcyNTQwNzk5OSwiaXNTdWJkb21haW4iOnRydWUsImlzVGhpcmRQYXJ0eSI6dHJ1ZX0=">
<!-- Google tag (gtag.js) -->
<script type="text/javascript" async="" src="https://www.gstatic.com/recaptcha/releases/rz4DvU-cY2JYCwHSTck0_qm-/recaptcha__en.js" crossorigin="anonymous" integrity="sha384-eZG8e4nRp0gEpRB75JBNzhS0vVseDRBVprGQYHJNXJCYwHihzdLYpvGhxa6VAhNb"></script><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-NSGQW6G"></script><script async="" src="https://www.googletagmanager.com/gtag/js?id=G-X3HPQGKHJS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-X3HPQGKHJS');
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/crypto-js.js"></script>
<!-- https://www.googletagmanager.com/gtag/js?id=G-X3HPQGKHJS -->
<!-- Install the Google tag manually
Below is the Google tag for this account. Copy and paste it in the code of every page of your website, immediately after the <head> element. Don’t add more than one Google tag to each page. -->
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-NSGQW6G');</script>
<!-- End Google Tag Manager -->
<meta charset="utf-8">
<title>WEP</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="assets/favicon.png">
<script src="https://www.google.com/recaptcha/api.js?render=reCAPTCHA_site_key"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link href="//cdnjs.cloudflare.com/ajax/libs/animate.css/3.4.0/animate.min.css" rel="stylesheet">
<script>
document.addEventListener('DOMContentLoaded', function () {
if (window.location.href.includes('/news-letter')) {
document.body.id = 'yourDynamicId';
}
});
</script>
<style>@charset "UTF-8";:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-font-sans-serif:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0)) }*,:after,:before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h5,h5{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h5,h5{font-size:1.25rem}p{margin-top:0;margin-bottom:1rem}ul{padding-left:2rem}ul{margin-top:0;margin-bottom:1rem}b{font-weight:bolder}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}img{vertical-align:middle}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button{text-transform:none}[type=button],button{-webkit-appearance:button}[type=button]:not(:disabled),button:not(:disabled){cursor:pointer}textarea{resize:vertical}.img-fluid{max-width:100%;height:auto}.container-fluid{width:100%;padding-right:var(--bs-gutter-x, .75rem);padding-left:var(--bs-gutter-x, .75rem);margin-right:auto;margin-left:auto}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.gy-3{--bs-gutter-y:1rem }@media (min-width:768px){.col-md-12{flex:0 0 auto;width:100%}}.form-label{margin-bottom:.5rem}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40}.btn:disabled{pointer-events:none;opacity:.65}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem #42464980}.btn-dark:active{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-dark:active:focus{box-shadow:0 0 0 .25rem #42464980}.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem #6c757d80}.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-dark:focus{box-shadow:0 0 0 .25rem #21252980}.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem #21252980}.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link:disabled{color:#6c757d}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem #0d6efd40;opacity:1}.btn-close:disabled{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.25}.modal{position:fixed;top:0;left:0;z-index:1049;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}}@media (min-width:992px){.modal-lg{max-width:800px}}.d-flex{display:flex!important}.d-none{display:none!important}.border-end-0{border-right:0!important}.border-start-0{border-left:0!important}.justify-content-start{justify-content:flex-start!important}.justify-content-between{justify-content:space-between!important}.align-items-center{align-items:center!important}.m-0{margin:0!important}.mt-3{margin-top:1rem!important}.me-2{margin-right:.5rem!important}.mb-0{margin-bottom:0!important}.mb-3{margin-bottom:1rem!important}.ms-2{margin-left:.5rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.px-0{padding-right:0!important;padding-left:0!important}.text-decoration-none{text-decoration:none!important}.text-danger{color:#dc3545!important}.text-dark{color:#212529!important}@font-face{font-family:Poppins;src:url(Poppins-Black.e7e8f018f73fed8c.eot);src:url(Poppins-Black.e7e8f018f73fed8c.eot?#iefix) format("embedded-opentype"),url(Poppins-Black.b178dc3bb0edc85e.woff2) format("woff2"),url(Poppins-Black.62ed8807c6a3d1c6.woff) format("woff"),url(Poppins-Black.f9351a2c2ddac1c3.svg#Poppins-Black) format("svg");font-weight:900;font-style:normal;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-BlackItalic.4fa1112a25bb0a29.eot);src:url(Poppins-BlackItalic.4fa1112a25bb0a29.eot?#iefix) format("embedded-opentype"),url(Poppins-BlackItalic.7b24f3bc91f41dc5.woff2) format("woff2"),url(Poppins-BlackItalic.9271be19389f33f2.woff) format("woff"),url(Poppins-BlackItalic.543695b7d23f45b2.svg#Poppins-BlackItalic) format("svg");font-weight:900;font-style:italic;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-ExtraBold.85123b789c535268.eot);src:url(Poppins-ExtraBold.85123b789c535268.eot?#iefix) format("embedded-opentype"),url(Poppins-ExtraBold.fe109eb2a7ff0e84.woff2) format("woff2"),url(Poppins-ExtraBold.7f975ccb4307fff1.woff) format("woff"),url(Poppins-ExtraBold.d9f83dfc941e4a7a.svg#Poppins-ExtraBold) format("svg");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-ExtraLight.0cca8efa59351107.eot);src:url(Poppins-ExtraLight.0cca8efa59351107.eot?#iefix) format("embedded-opentype"),url(Poppins-ExtraLight.ea20bf9d5df5c409.woff2) format("woff2"),url(Poppins-ExtraLight.8c294c843bef5ec2.woff) format("woff"),url(Poppins-ExtraLight.39cea1f13f5ed9fb.svg#Poppins-ExtraLight) format("svg");font-weight:200;font-style:normal;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-ExtraBoldItalic.b818acd0e5ad892f.eot);src:url(Poppins-ExtraBoldItalic.b818acd0e5ad892f.eot?#iefix) format("embedded-opentype"),url(Poppins-ExtraBoldItalic.3113ab8df8ae9a44.woff2) format("woff2"),url(Poppins-ExtraBoldItalic.9f369ff513f4b74c.woff) format("woff"),url(Poppins-ExtraBoldItalic.b87643ddd5de0606.svg#Poppins-ExtraBoldItalic) format("svg");font-weight:700;font-style:italic;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-ExtraLightItalic.40ed9322cc92e591.eot);src:url(Poppins-ExtraLightItalic.40ed9322cc92e591.eot?#iefix) format("embedded-opentype"),url(Poppins-ExtraLightItalic.3500abe20f768c85.woff2) format("woff2"),url(Poppins-ExtraLightItalic.92ba8ffea4fb44e7.woff) format("woff"),url(Poppins-ExtraLightItalic.ed1e0dcc8e994216.svg#Poppins-ExtraLightItalic) format("svg");font-weight:200;font-style:italic;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-Italic.fa1aee6f949dbf8f.eot);src:url(Poppins-Italic.fa1aee6f949dbf8f.eot?#iefix) format("embedded-opentype"),url(Poppins-Italic.d011518f7eaddb0a.woff2) format("woff2"),url(Poppins-Italic.27dbb3340deb8d2c.woff) format("woff"),url(Poppins-Italic.4f64bba9d9ab6921.svg#Poppins-Italic) format("svg");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-Medium.9b5c31d9a173fce9.eot);src:url(Poppins-Medium.9b5c31d9a173fce9.eot?#iefix) format("embedded-opentype"),url(Poppins-Medium.76d77c93e342967b.woff2) format("woff2"),url(Poppins-Medium.75fdb305a1c41ddc.woff) format("woff"),url(Poppins-Medium.7bb74cf3671c9774.svg#Poppins-Medium) format("svg");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-Light.bf277fa197fdb3cf.eot);src:url(Poppins-Light.bf277fa197fdb3cf.eot?#iefix) format("embedded-opentype"),url(Poppins-Light.476d1998422a3a39.woff2) format("woff2"),url(Poppins-Light.1800dceac96563b2.woff) format("woff"),url(Poppins-Light.490dffde44216fd1.svg#Poppins-Light) format("svg");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-LightItalic.9ffb5f96bf6b25e2.eot);src:url(Poppins-LightItalic.9ffb5f96bf6b25e2.eot?#iefix) format("embedded-opentype"),url(Poppins-LightItalic.98ffa23b6707dae5.woff2) format("woff2"),url(Poppins-LightItalic.fb2d861256ee0f92.woff) format("woff"),url(Poppins-LightItalic.e4be8158ca505082.svg#Poppins-LightItalic) format("svg");font-weight:300;font-style:italic;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-MediumItalic.a6191cc7f461eb63.eot);src:url(Poppins-MediumItalic.a6191cc7f461eb63.eot?#iefix) format("embedded-opentype"),url(Poppins-MediumItalic.681fa66f6dc7a159.woff2) format("woff2"),url(Poppins-MediumItalic.6eeadadf63b69069.woff) format("woff"),url(Poppins-MediumItalic.f369c1d277e4292a.svg#Poppins-MediumItalic) format("svg");font-weight:500;font-style:italic;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-Regular.b275774b0ca6a044.eot);src:url(Poppins-Regular.b275774b0ca6a044.eot?#iefix) format("embedded-opentype"),url(Poppins-Regular.93b9c380a5bca81b.woff2) format("woff2"),url(Poppins-Regular.3fdf71d7746bc788.woff) format("woff"),url(Poppins-Regular.049efe03e4edeb36.svg#Poppins-Regular) format("svg");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-SemiBold.cf18f25b22630351.eot);src:url(Poppins-SemiBold.cf18f25b22630351.eot?#iefix) format("embedded-opentype"),url(Poppins-SemiBold.6b1e57f3126fccb5.woff2) format("woff2"),url(Poppins-SemiBold.7aeaae7431cc8a06.woff) format("woff"),url(Poppins-SemiBold.c757a9bfc4b20dcd.svg#Poppins-SemiBold) format("svg");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-ThinItalic.a4702c2ab3f59b98.eot);src:url(Poppins-ThinItalic.a4702c2ab3f59b98.eot?#iefix) format("embedded-opentype"),url(Poppins-ThinItalic.56033c2123f2aa7f.woff2) format("woff2"),url(Poppins-ThinItalic.1ad34be2fbabc937.woff) format("woff"),url(Poppins-ThinItalic.8a27eb66f8aac42a.svg#Poppins-ThinItalic) format("svg");font-weight:100;font-style:italic;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-Thin.acfd6173877f244a.eot);src:url(Poppins-Thin.acfd6173877f244a.eot?#iefix) format("embedded-opentype"),url(Poppins-Thin.a916ff2f5c9eef5c.woff2) format("woff2"),url(Poppins-Thin.048dc39f9efa0584.woff) format("woff"),url(Poppins-Thin.46b262d769c85447.svg#Poppins-Thin) format("svg");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:Poppins;src:url(Poppins-SemiBoldItalic.17b6f7cecee6af4e.eot);src:url(Poppins-SemiBoldItalic.17b6f7cecee6af4e.eot?#iefix) format("embedded-opentype"),url(Poppins-SemiBoldItalic.4561594be2b5b716.woff2) format("woff2"),url(Poppins-SemiBoldItalic.4d476d3a3c268108.woff) format("woff"),url(Poppins-SemiBoldItalic.7bf040cf4c883d41.svg#Poppins-SemiBoldItalic) format("svg");font-weight:600;font-style:italic;font-display:swap}html{scroll-behavior:smooth}h5{font-family:Poppins}p,h5{cursor:inherit!important}body{font-size:14px}ul{padding:0}label.form-label{opacity:.6}.fw-600{font-weight:600}.btn{padding:9px 15px;border-radius:0}input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}.form-control{height:45px;border:1px solid #000;border-radius:0}.modal-body .form_field{margin-bottom:16px}.verifymobile .form-control{padding:0;text-align:center}.modal-content{border-radius:0;border:0;background:#d9d9d9;padding:0}.modal-header h5{font-size:1.1429em;font-weight:400}.modal-header{background:#000;color:#fff;border-radius:0;padding:15px 25px}.modal-body{padding:27px}.modal .btn-close{background-color:#000;opacity:1;filter:invert(1)}textarea.height{height:150px;word-spacing:normal!important}textarea.height{height:150px}.modal-footer{border:0}.btn-dark{transition:.4s linear;letter-spacing:1px;font-weight:500}.btn-dark:hover{background-color:#484848;border-color:#484848}.btn-dark:disabled{color:#fff;background-color:#747474!important;border-color:#a5a5a5!important;cursor:not-allowed!important;pointer-events:auto!important}.jiomodal .modal-content{background-color:#f1f1fa}.jiomodal .modal-header{background-color:transparent}.jiomodal.modal .btn-close{background-color:transparent!important;filter:none!important}.jiomodal .form-control{background-color:transparent}.jiomodal hr{margin:5px 0}.jiomodal h5{font-weight:600!important;font-size:20px!important;color:#393f90}.starfeed ul li{display:inline-block;list-style:none}.starfeed ul li i{font-size:26px}.m-img img{width:90px;height:90px;border-radius:10px}.meeting-mentor-details{background:#fff;padding:7px;margin:10px 0}.spinner1{position:fixed;top:0;left:0;right:0;height:100%;background-color:#0009;z-index:1520}.loader1{position:absolute;text-align:center;top:50%;transform:translateY(-50%);width:100%}.la-ball-clip-rotate{display:block;margin:auto;width:64px;height:64px;font-size:0;color:#fff}.la-ball-clip-rotate>div{width:64px;height:64px;border-width:4px;display:inline-block;float:none;border:2px solid currentColor;background:0 0;border-bottom-color:transparent;border-radius:100%;animation:.75s linear infinite ball-clip-rotate}@keyframes ball-clip-rotate{0%{transform:rotate(0)}50%{transform:rotate(180deg)}to{transform:rotate(360deg)}}*{margin:0;padding:0;box-sizing:border-box}body{font-family:Poppins,sans-serif;overflow-x:hidden}h5{font-family:Poppins,sans-serif}a{text-decoration:none;color:#000}.dropdown-toggle:after{content:"\f107";font-family:fontAwesome;border:0;font-weight:400;top:5px;position:relative;font-size:1.2142em;line-height:normal}a:hover{color:#454545}@media screen and (max-width:767px){body,span{font-size:12px}.btn{padding:7px 10px;border-radius:0;font-size:.9285em}}@media only screen and (max-width:575px){.form-control{font-size:14px}.form-control{height:auto}}@media screen and (max-width:480px){h5{font-size:16px!important}}@charset "UTF-8"</style><link rel="stylesheet" href="styles.97f323ea04ad2333.css" media="all" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.97f323ea04ad2333.css"></noscript><style>.devnagri_container {
width: 9rem;
max-height: 800px;
margin-bottom: 10px;
/* position: fixed;
bottom: 70px;
right: 18px; */
padding: 1px;
display: none;
z-index: 99999999999999;
border-radius: 6px;
display: flex, none;
justify-content: center;
}
.devnagri_outermostdivclass {
max-width: fit-content;
}
.devnagri_container > ul {
background-color: white;
border: 1px solid #e3e3e3;
border-radius: 6px;
padding: 6px;
width: 100%;
max-height: 800px;
}
.devnagri_container > ul > li {
padding: 0;
display: flex;
justify-content: center;
line-height: 35px;
cursor: pointer;
font-size: 16px;
font-weight: 500;
font-family: 'Verdana', sans-serif;
}
.devnagri_open_button {
border: 1px solid #e3e3e3;
border-radius: 8px;
margin-bottom: 10px;
/* position: fixed; */
outline: none;
/* bottom: 23px; */
/* right: 18px; */
height: 40px;
max-width: 393px;
z-index: 9999999999999;
background-color: #ffffff;
}
.devnagri_owner_button {
outline: none;
cursor: pointer;
height: 27px;
width: 27px;
margin: 5px;
margin-left: 7px;
/* background-image: url(https://i.ibb.co/7vDdcRk/Edit-01.png); */
background-repeat: no-repeat;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
.devnagri_owner_cancel_button {
border: 0;
outline: none;
cursor: pointer;
height: 27px;
width: 27px;
margin: 5px 0;
margin-left: 5px;
margin-right: 4px;
z-index: 99999999999999;
/* background-image: url(https://i.ibb.co/wQfhYSN/Cross-01.png); */
background-repeat: no-repeat;
background-size: cover;
display: flex;
}
.devnagri_owner_send_button {
outline: none;
cursor: pointer;
height: 27px;
width: 27px;
margin: 5px 0;
margin-left: 4px;
margin-right: 5px;
z-index: 99999999999999;
/* background-image: url(https://i.ibb.co/M5YHpVz/Save-01.png); */
background-repeat: no-repeat;
background-size: cover;
}
.devnagri_border {
border: 2px solid #ff0404;
}
.Devnagri-ring {
display: inline-block;
width: 40px;
height: 40px;
}
.button {
background-color: white;
}
.Devnagri-ring:after {
content: ' ';
display: block;
/* position: fixed; */
/* bottom: 65px; */
/* right: 165px; */
height: 40px;
width: 40px;
color: #082dfc;
z-index: 99999999999999;
border-radius: 50%;
border: 2px solid #082dfc;
border-color: #082dfc transparent #082dfc transparent;
animation: Devnagri-ring 1.5s linear infinite;
}
@keyframes Devnagri-ring {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.devnagri_dynamic_container {
position: fixed;
bottom: 15px;
right: 50px;
left: 50px;
top: 15px;
width: 600px;
max-height: 390px;
background-color: #ffffff;
border: 2px solid #adacac;
border-radius: 5px;
flex-wrap: wrap;
margin: 10px auto;
padding: 0 15px;
overflow-y: scroll;
z-index: 99999999999999999999999999999999;
}
.devnagri_div_lable_input {
padding: 0 5px;
display: inline-block;
}
.devnagri_label {
font-weight: 600;
line-height: 2;
font-size: larger;
}
.devnagri_h1_eng {
padding-left: 5px;
display: inline-block;
line-height: 1;
font-weight: 600;
font-size: larger;
}
.devnagri_h1_def_lang {
display: inline-block;
line-height: 2;
font-size: large;
}
.devnagri_seo_submit {
margin-left: 225px;
margin-top: 3px;
outline: none;
cursor: pointer;
border: 0;
float: left;
height: 30px;
width: 30px;
z-index: 99999999999999;
background-image: url(https://i.ibb.co/M5YHpVz/Save-01.png);
background-repeat: no-repeat;
background-size: cover;
}
.devnagri_seo_cancel {
margin-left: 10px;
margin-top: 3px;
float: left;
cursor: pointer;
outline: none;
border: 0;
height: 30px;
width: 30px;
z-index: 99999999999999;
background-image: url(https://i.ibb.co/wQfhYSN/Cross-01.png);
background-repeat: no-repeat;
background-size: cover;
}
.devnagri_form-control {
padding: 1px;
font-family: Arial;
font-size: 16px;
font-weight: 500;
border: 1px solid #cccccc;
display: block;
}
.devnagri_seo_cancel:hover {
opacity: 0.8;
}
.devnagri_seo_submit:hover {
opacity: 0.8;
}
.devnagri_divForArrow {
padding-top: 15px;
margin-left: 15px;
margin-right: 20px;
display: inline-block;
height: 33px;
width: 49px;
background-image: url(https://www.svgrepo.com/show/24357/right-arrow.svg);
background-repeat: no-repeat;
background-size: cover;
line-height: 1;
}
.devnagri_seo {
outline: none;
cursor: pointer;
height: 27px;
width: 27px;
margin-top: 5px;
margin-right: 5px;
margin-left: 7px;
/* background-image: url(https://i.ibb.co/m418FWD/SEO-01.png); */
background-repeat: no-repeat;
background-size: cover;
}
.devnagri_seo:hover {
opacity: 0.9;
}
.devnagri_logo {
outline: none;
cursor: pointer;
width: 27px;
height: 27px;
margin: 5px 0;
margin-left: 5px;
margin-right: 7px;
/* background-image: url(https://i.ibb.co/GF54nQh/Devnagri-Logo-01.png); */
background-repeat: no-repeat;
background-size: cover;
}
.devnagri_written_lang {
font-family: 'Verdana', sans-serif;
line-height: 37px;
cursor: pointer;
font-size: 14px;
margin: 0 !important;
}
.devnagri_upArrow {
cursor: pointer;
margin: 10px 7px;
width: 17px;
height: 17px;
/* background-image: url(https://i.ibb.co/4tXB2Xw/up-arrow.png); */
background-repeat: no-repeat;
background-color: #ffffff;
background-size: cover;
display: flex;
}
.Devnagri-tooltip-toggle {
position: relative;
}
.Devnagri-tooltip-toggle:before {
content: attr(data-tooltip);
/* here's the magic */
position: absolute;
/* vertically center */
top: 50%;
transform: translateY(-50%);
/* move to right */
left: 100%;
margin-left: 0px;
/* and add a small left margin */
/* basic styles */
width: 50px;
padding: 2px;
margin: 0px;
border-radius: 3px;
text-align: center;
display: none;
/* hide by default */
font-size: 10px;
font-weight: 500;
font-family: 'Verdana', sans-serif;
background-color: #3184c0;
color: #fff;
}
.Devnagri-tooltip-toggle:hover:before {
display: block;
}
.Devnagri-tooltip-toggle:before {
top: initial;
right: initial;
left: initial;
margin: initial;
/* set new values */
bottom: 78%;
transform: translate(-23%, -50%);
}
.Devnagri-tooltip-toggle:after {
content: '';
position: absolute;
/* position tooltip correctly */
bottom: 105%;
/* vertically center */
left: 50%;
transform: translateX(-47%);
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #3184c0;
display: none;
}
.Devnagri-tooltip-toggle:hover:before,
.Devnagri-tooltip-toggle:hover:after {
display: block;
}
/* new for devngari logo */
.Devnagri-tooltip-toggle-pencil {
position: relative;
}
.Devnagri-tooltip-toggle-pencil:before {
content: attr(data-tooltip);
/* here's the magic */
position: absolute;
/* vertically center */
top: 50%;
transform: translateY(-50%);
/* move to right */
left: 100%;
margin-left: 0px;
/* and add a small left margin */
/* basic styles */
width: 130px;
padding: 4px;
margin: 0px;
border-radius: 3px;
text-align: center;
display: none;
/* hide by default */
font-size: 10px;
font-weight: 500;
font-family: 'Verdana', sans-serif;
background-color: #3184c0;
color: #fff;
}
.Devnagri-tooltip-toggle-pencil:hover:before {
display: block;
}
.Devnagri-tooltip-toggle-pencil:before {
top: initial;
right: initial;
left: initial;
margin: initial;
bottom: 68%;
transform: translate(-37%, -50%);
}
.Devnagri-tooltip-toggle-pencil:after {
content: '';
position: absolute;
/* position tooltip correctly */
bottom: 101%;
/* vertically center */
left: 50%;
transform: translateX(-50%);
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #3184c0;
display: none;
}
.Devnagri-tooltip-toggle-pencil:hover:before,
.Devnagri-tooltip-toggle-pencil:hover:after {
display: block;
}
.devnagri_vl {
border-left: 1px solid #a0a0a0;
height: 27px;
margin-right: 6px;
margin-top: 5px;
margin-left: 5px;
}
.devnagri_uiErrorEditor {
border-radius: 5px;
/* position: fixed; */
outline: none;
/* bottom: 0px; */
/* right: 18px; */
height: 24px;
padding: 0px 12px;
max-width: 300px;
z-index: 9999999999999999999;
background-color: blanchedalmond;
color: red;
font-size: 12px;
}
.devnagri_unsavedChanges {
border-radius: 5px;
/* position: fixed; */
outline: none;
/* bottom: 0px; */
/* right: 18px; */
height: 24px;
padding: 0px 12px;
width: 190px;
z-index: 9999999999999;
background-color: #dcda0d;
font-size: 12px;
}
.devnagri_savedChanges {
border-radius: 5px;
/* position: fixed; */
outline: none;
/* bottom: 0px; */
/* right: 18px; */
height: 25px;
padding: 0px 4px;
max-width: 110px;
color: #fdfafa;
z-index: 99999999999;
background-color: #08eebc;
font-size: 12px;
}
#devnagri_subdomain {
text-decoration: none;
color: black;
}
main header {
top: 0px;
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Nkay9sZXNzL21haW4uY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0VBQ0UsV0FBQTtFQUNBLGlCQUFBO0VBQ0EsbUJBQUE7RUFDQTs7a0JBRWdCO0VBQ2hCLFlBQUE7RUFDQSxhQUFBO0VBQ0EsdUJBQUE7RUFDQSxrQkFBQTtFQUNBLG1CQUFBO0VBQ0EsdUJBQUE7QUFDRjtBQUVBO0VBQ0Usc0JBQUE7QUFBRjtBQUdBO0VBQ0UsdUJBQUE7RUFDQSx5QkFBQTtFQUNBLGtCQUFBO0VBQ0EsWUFBQTtFQUNBLFdBQUE7RUFDQSxpQkFBQTtBQURGO0FBR0E7RUFDRSxVQUFBO0VBQ0EsYUFBQTtFQUNBLHVCQUFBO0VBQ0EsaUJBQUE7RUFDQSxlQUFBO0VBQ0EsZUFBQTtFQUNBLGdCQUFBO0VBQ0Esa0NBQUE7QUFERjtBQUlBO0VBQ0UseUJBQUE7RUFDQSxrQkFBQTtFQUNBLG1CQUFBO0VBRkEscUJBQXFCO0VBSXJCLGFBQUE7RUFGQSxrQkFBa0I7RUFDbEIsaUJBQWlCO0VBSWpCLFlBQUE7RUFDQSxnQkFBQTtFQUNBLHNCQUFBO0VBQ0EseUJBQUE7QUFGRjtBQUtBO0VBQ0UsYUFBQTtFQUNBLGVBQUE7RUFDQSxZQUFBO0VBQ0EsV0FBQTtFQUNBLFdBQUE7RUFDQSxnQkFBQTtFQUhBLGlFQUFpRTtFQUtqRSw0QkFBQTtFQUNBLHNCQUFBO0VBQ0EsYUFBQTtFQUNBLHVCQUFBO0VBQ0EsbUJBQUE7QUFIRjtBQUtBO0VBQ0UsU0FBQTtFQUNBLGFBQUE7RUFDQSxlQUFBO0VBQ0EsWUFBQTtFQUNBLFdBQUE7RUFDQSxhQUFBO0VBQ0EsZ0JBQUE7RUFDQSxpQkFBQTtFQUNBLHVCQUFBO0VBSEEsa0VBQWtFO0VBS2xFLDRCQUFBO0VBQ0Esc0JBQUE7RUFDQSxhQUFBO0FBSEY7QUFLQTtFQUNFLGFBQUE7RUFDQSxlQUFBO0VBQ0EsWUFBQTtFQUNBLFdBQUE7RUFDQSxhQUFBO0VBQ0EsZ0JBQUE7RUFDQSxpQkFBQTtFQUNBLHVCQUFBO0VBSEEsaUVBQWlFO0VBS2pFLDRCQUFBO0VBQ0Esc0JBQUE7QUFIRjtBQU1BO0VBQ0UseUJBQUE7QUFKRjtBQU1BO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtBQUpGO0FBTUE7RUFDRSx1QkFBQTtBQUpGO0FBTUE7RUFDRSxZQUFBO0VBQ0EsY0FBQTtFQUpBLHFCQUFxQjtFQUNyQixrQkFBa0I7RUFDbEIsa0JBQWtCO0VBTWxCLFlBQUE7RUFDQSxXQUFBO0VBQ0EsY0FBQTtFQUNBLHVCQUFBO0VBQ0Esa0JBQUE7RUFDQSx5QkFBQTtFQUNBLHFEQUFBO0VBQ0EsNkNBQUE7QUFKRjtBQU1BO0VBQ0U7SUFDRSx1QkFBQTtFQUpGO0VBTUE7SUFDRSx5QkFBQTtFQUpGO0FBQ0Y7QUFPQTtFQUNFLGVBQUE7RUFDQSxZQUFBO0VBQ0EsV0FBQTtFQUNBLFVBQUE7RUFDQSxTQUFBO0VBQ0EsWUFBQTtFQUNBLGlCQUFBO0VBQ0EseUJBQUE7RUFDQSx5QkFBQTtFQUNBLGtCQUFBO0VBQ0EsZUFBQTtFQUNBLGlCQUFBO0VBQ0EsZUFBQTtFQUNBLGtCQUFBO0VBQ0EseUNBQUE7QUFMRjtBQU9BO0VBQ0UsY0FBQTtFQUNBLHFCQUFBO0FBTEY7QUFPQTtFQUVFLGdCQUFBO0VBQ0EsY0FBQTtFQUNBLGlCQUFBO0FBTkY7QUFRQTtFQUNFLGlCQUFBO0VBQ0EscUJBQUE7RUFDQSxjQUFBO0VBQ0EsZ0JBQUE7RUFDQSxpQkFBQTtBQU5GO0FBUUE7RUFDRSxxQkFBQTtFQUNBLGNBQUE7RUFDQSxnQkFBQTtBQU5GO0FBUUE7RUFDRSxrQkFBQTtFQUNBLGVBQUE7RUFDQSxhQUFBO0VBQ0EsZUFBQTtFQUNBLFNBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLFdBQUE7RUFDQSx1QkFBQTtFQUNBLDJEQUFBO0VBQ0EsNEJBQUE7RUFDQSxzQkFBQTtBQU5GO0FBUUE7RUFDRSxpQkFBQTtFQUNBLGVBQUE7RUFDQSxXQUFBO0VBQ0EsZUFBQTtFQUNBLGFBQUE7RUFDQSxTQUFBO0VBQ0EsWUFBQTtFQUNBLFdBQUE7RUFDQSx1QkFBQTtFQUNBLDREQUFBO0VBQ0EsNEJBQUE7RUFDQSxzQkFBQTtBQU5GO0FBUUE7RUFDRSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxlQUFBO0VBQ0EsZ0JBQUE7RUFDQSx5QkFBQTtFQUNBLGNBQUE7QUFORjtBQVFBO0VBQ0UsWUFBQTtBQU5GO0FBUUE7RUFDRSxZQUFBO0FBTkY7QUFRQTtFQUNFLGlCQUFBO0VBQ0EsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLHFCQUFBO0VBQ0EsWUFBQTtFQUNBLFdBQUE7RUFDQSx5RUFBQTtFQUNBLDRCQUFBO0VBQ0Esc0JBQUE7RUFDQSxjQUFBO0FBTkY7QUFRQTtFQUNFLGFBQUE7RUFDQSxlQUFBO0VBQ0EsWUFBQTtFQUNBLFdBQUE7RUFDQSxlQUFBO0VBQ0EsaUJBQUE7RUFDQSxnQkFBQTtFQU5BLGdFQUFnRTtFQVFoRSw0QkFBQTtFQUNBLHNCQUFBO0FBTkY7QUFRQTtFQUNFLFlBQUE7QUFORjtBQVNBO0VBQ0UsYUFBQTtFQUNBLGVBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLGFBQUE7RUFDQSxnQkFBQTtFQUNBLGlCQUFBO0VBUEEsMEVBQTBFO0VBUzFFLDRCQUFBO0VBQ0Esc0JBQUE7QUFQRjtBQVNBO0VBQ0Usa0NBQUE7RUFDQSxpQkFBQTtFQUNBLGVBQUE7RUFDQSxlQUFBO0VBQ0Esb0JBQUE7QUFQRjtBQVVBO0VBQ0UsZUFBQTtFQUNBLGdCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFSQSxrRUFBa0U7RUFVbEUsNEJBQUE7RUFDQSx5QkFBQTtFQUNBLHNCQUFBO0VBQ0EsYUFBQTtBQVJGO0FBV0E7RUFDRSxrQkFBQTtBQVRGO0FBWUE7RUFDRSwyQkFBQTtFQVZBLHFCQUFxQjtFQVdyQixrQkFBQTtFQVRBLHNCQUFzQjtFQVl0QixRQUFBO0VBQ0EsMkJBQUE7RUFWQSxrQkFBa0I7RUFhbEIsVUFBQTtFQUNBLGdCQUFBO0VBWEEsZ0NBQWdDO0VBQ2hDLGlCQUFpQjtFQWFqQixXQUFBO0VBQ0EsWUFBQTtFQUNBLFdBQUE7RUFDQSxrQkFBQTtFQUNBLGtCQUFBO0VBRUEsYUFBQTtFQVpBLG9CQUFvQjtFQWNwQixlQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQ0FBQTtFQUNBLHlCQUFBO0VBQ0EsV0FBQTtBQVpGO0FBZUE7RUFDRSxjQUFBO0FBYkY7QUFlQTtFQUNFLFlBQUE7RUFDQSxjQUFBO0VBQ0EsYUFBQTtFQUNBLGVBQUE7RUFiQSxtQkFBbUI7RUFnQm5CLFdBQUE7RUFDQSxnQ0FBQTtBQWRGO0FBaUJBO0VBQ0UsV0FBQTtFQUNBLGtCQUFBO0VBZkEsK0JBQStCO0VBa0IvQixZQUFBO0VBaEJBLHNCQUFzQjtFQWtCdEIsU0FBQTtFQUNBLDJCQUFBO0VBQ0EsbUNBQUE7RUFDQSxvQ0FBQTtFQUVBLDhCQUFBO0VBRUEsYUFBQTtBQWxCRjtBQW9CQTs7RUFFRSxjQUFBO0FBbEJGO0FBQ0EsMEJBQTBCO0FBcUIxQjtFQUNFLGtCQUFBO0FBbkJGO0FBc0JBO0VBQ0UsMkJBQUE7RUFwQkEscUJBQXFCO0VBcUJyQixrQkFBQTtFQW5CQSxzQkFBc0I7RUFzQnRCLFFBQUE7RUFDQSwyQkFBQTtFQXBCQSxrQkFBa0I7RUF1QmxCLFVBQUE7RUFDQSxnQkFBQTtFQXJCQSxnQ0FBZ0M7RUFDaEMsaUJBQWlCO0VBdUJqQixZQUFBO0VBQ0EsWUFBQTtFQUNBLFdBQUE7RUFDQSxrQkFBQTtFQUNBLGtCQUFBO0VBRUEsYUFBQTtFQXRCQSxvQkFBb0I7RUF3QnBCLGVBQUE7RUFDQSxnQkFBQTtFQUNBLGtDQUFBO0VBQ0EseUJBQUE7RUFDQSxXQUFBO0FBdEJGO0FBeUJBO0VBQ0UsY0FBQTtBQXZCRjtBQXlCQTtFQUNFLFlBQUE7RUFDQSxjQUFBO0VBQ0EsYUFBQTtFQUNBLGVBQUE7RUFDQSxXQUFBO0VBQ0EsZ0NBQUE7QUF2QkY7QUEwQkE7RUFDRSxXQUFBO0VBQ0Esa0JBQUE7RUF4QkEsK0JBQStCO0VBMEIvQixZQUFBO0VBeEJBLHNCQUFzQjtFQTBCdEIsU0FBQTtFQUNBLDJCQUFBO0VBRUEsbUNBQUE7RUFDQSxvQ0FBQTtFQUVBLDhCQUFBO0VBRUEsYUFBQTtBQTNCRjtBQTZCQTs7RUFFRSxjQUFBO0FBM0JGO0FBOEJBO0VBQ0UsOEJBQUE7RUFDQSxZQUFBO0VBRUEsaUJBQUE7RUFDQSxlQUFBO0VBQ0EsZ0JBQUE7QUE3QkY7QUErQkE7RUFDRSxrQkFBQTtFQTdCQSxxQkFBcUI7RUErQnJCLGFBQUE7RUE3QkEsaUJBQWlCO0VBQ2pCLGlCQUFpQjtFQStCakIsWUFBQTtFQUNBLGlCQUFBO0VBQ0EsZ0JBQUE7RUFDQSw0QkFBQTtFQUNBLGdDQUFBO0VBQ0EsVUFBQTtFQUNBLGVBQUE7QUE3QkY7QUFnQ0E7RUFDRSxrQkFBQTtFQTlCQSxxQkFBcUI7RUFnQ3JCLGFBQUE7RUE5QkEsaUJBQWlCO0VBQ2pCLGlCQUFpQjtFQWdDakIsWUFBQTtFQUNBLGlCQUFBO0VBQ0EsWUFBQTtFQUNBLHNCQUFBO0VBQ0EseUJBQUE7RUFDQSxlQUFBO0FBOUJGO0FBZ0NBO0VBQ0Usa0JBQUE7RUE5QkEscUJBQXFCO0VBZ0NyQixhQUFBO0VBOUJBLGlCQUFpQjtFQUNqQixpQkFBaUI7RUFnQ2pCLFlBQUE7RUFDQSxnQkFBQTtFQUNBLGdCQUFBO0VBQ0EsY0FBQTtFQUNBLG9CQUFBO0VBQ0EseUJBQUE7RUFDQSxlQUFBO0FBOUJGO0FBZ0NBO0VBQ0UscUJBQUE7RUFDQSxZQUFBO0FBOUJGO0FBZ0NBO0VBQ0UsUUFBQTtBQTlCRiIsInNvdXJjZXNDb250ZW50IjpbIi5kZXZuYWdyaV9jb250YWluZXIge1xuICB3aWR0aDogOXJlbTtcbiAgbWF4LWhlaWdodDogODAwcHg7XG4gIG1hcmdpbi1ib3R0b206IDEwcHg7XG4gIC8qIHBvc2l0aW9uOiBmaXhlZDtcbiAgICBib3R0b206IDcwcHg7XG4gICAgcmlnaHQ6IDE4cHg7ICovXG4gIHBhZGRpbmc6IDFweDtcbiAgZGlzcGxheTogbm9uZTtcbiAgei1pbmRleDogOTk5OTk5OTk5OTk5OTk7XG4gIGJvcmRlci1yYWRpdXM6IDZweDtcbiAgZGlzcGxheTogZmxleCwgbm9uZTtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG59XG5cbi5kZXZuYWdyaV9vdXRlcm1vc3RkaXZjbGFzcyB7XG4gIG1heC13aWR0aDogZml0LWNvbnRlbnQ7XG59XG5cbi5kZXZuYWdyaV9jb250YWluZXIgPiB1bCB7XG4gIGJhY2tncm91bmQtY29sb3I6IHdoaXRlO1xuICBib3JkZXI6IDFweCBzb2xpZCAjZTNlM2UzO1xuICBib3JkZXItcmFkaXVzOiA2cHg7XG4gIHBhZGRpbmc6IDZweDtcbiAgd2lkdGg6IDEwMCU7XG4gIG1heC1oZWlnaHQ6IDgwMHB4O1xufVxuLmRldm5hZ3JpX2NvbnRhaW5lciA+IHVsID4gbGkge1xuICBwYWRkaW5nOiAwO1xuICBkaXNwbGF5OiBmbGV4O1xuICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcbiAgbGluZS1oZWlnaHQ6IDM1cHg7XG4gIGN1cnNvcjogcG9pbnRlcjtcbiAgZm9udC1zaXplOiAxNnB4O1xuICBmb250LXdlaWdodDogNTAwO1xuICBmb250LWZhbWlseTogJ1ZlcmRhbmEnLCBzYW5zLXNlcmlmO1xufVxuXG4uZGV2bmFncmlfb3Blbl9idXR0b24ge1xuICBib3JkZXI6IDFweCBzb2xpZCAjZTNlM2UzO1xuICBib3JkZXItcmFkaXVzOiA4cHg7XG4gIG1hcmdpbi1ib3R0b206IDEwcHg7XG4gIC8qIHBvc2l0aW9uOiBmaXhlZDsgKi9cbiAgb3V0bGluZTogbm9uZTtcbiAgLyogYm90dG9tOiAyM3B4OyAqL1xuICAvKiByaWdodDogMThweDsgKi9cbiAgaGVpZ2h0OiA0MHB4O1xuICBtYXgtd2lkdGg6IDM5M3B4O1xuICB6LWluZGV4OiA5OTk5OTk5OTk5OTk5O1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmZmZmO1xufVxuXG4uZGV2bmFncmlfb3duZXJfYnV0dG9uIHtcbiAgb3V0bGluZTogbm9uZTtcbiAgY3Vyc29yOiBwb2ludGVyO1xuICBoZWlnaHQ6IDI3cHg7XG4gIHdpZHRoOiAyN3B4O1xuICBtYXJnaW46IDVweDtcbiAgbWFyZ2luLWxlZnQ6IDdweDtcbiAgLyogYmFja2dyb3VuZC1pbWFnZTogdXJsKGh0dHBzOi8vaS5pYmIuY28vN3ZEZGNSay9FZGl0LTAxLnBuZyk7ICovXG4gIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG4gIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xufVxuLmRldm5hZ3JpX293bmVyX2NhbmNlbF9idXR0b24ge1xuICBib3JkZXI6IDA7XG4gIG91dGxpbmU6IG5vbmU7XG4gIGN1cnNvcjogcG9pbnRlcjtcbiAgaGVpZ2h0OiAyN3B4O1xuICB3aWR0aDogMjdweDtcbiAgbWFyZ2luOiA1cHggMDtcbiAgbWFyZ2luLWxlZnQ6IDVweDtcbiAgbWFyZ2luLXJpZ2h0OiA0cHg7XG4gIHotaW5kZXg6IDk5OTk5OTk5OTk5OTk5O1xuICAvKiBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoaHR0cHM6Ly9pLmliYi5jby93UWZoWVNOL0Nyb3NzLTAxLnBuZyk7ICovXG4gIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG4gIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG4gIGRpc3BsYXk6IGZsZXg7XG59XG4uZGV2bmFncmlfb3duZXJfc2VuZF9idXR0b24ge1xuICBvdXRsaW5lOiBub25lO1xuICBjdXJzb3I6IHBvaW50ZXI7XG4gIGhlaWdodDogMjdweDtcbiAgd2lkdGg6IDI3cHg7XG4gIG1hcmdpbjogNXB4IDA7XG4gIG1hcmdpbi1sZWZ0OiA0cHg7XG4gIG1hcmdpbi1yaWdodDogNXB4O1xuICB6LWluZGV4OiA5OTk5OTk5OTk5OTk5OTtcbiAgLyogYmFja2dyb3VuZC1pbWFnZTogdXJsKGh0dHBzOi8vaS5pYmIuY28vTTVZSHBWei9TYXZlLTAxLnBuZyk7ICovXG4gIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG4gIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG59XG5cbi5kZXZuYWdyaV9ib3JkZXIge1xuICBib3JkZXI6IDJweCBzb2xpZCByZ2IoMjU1LCA0LCA0KTtcbn1cbi5EZXZuYWdyaS1yaW5nIHtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICB3aWR0aDogNDBweDtcbiAgaGVpZ2h0OiA0MHB4O1xufVxuLmJ1dHRvbiB7XG4gIGJhY2tncm91bmQtY29sb3I6IHdoaXRlO1xufVxuLkRldm5hZ3JpLXJpbmc6YWZ0ZXIge1xuICBjb250ZW50OiAnICc7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICAvKiBwb3NpdGlvbjogZml4ZWQ7ICovXG4gIC8qIGJvdHRvbTogNjVweDsgKi9cbiAgLyogcmlnaHQ6IDE2NXB4OyAqL1xuICBoZWlnaHQ6IDQwcHg7XG4gIHdpZHRoOiA0MHB4O1xuICBjb2xvcjogcmdiKDgsIDQ1LCAyNTIpO1xuICB6LWluZGV4OiA5OTk5OTk5OTk5OTk5OTtcbiAgYm9yZGVyLXJhZGl1czogNTAlO1xuICBib3JkZXI6IDJweCBzb2xpZCByZ2IoOCwgNDUsIDI1Mik7XG4gIGJvcmRlci1jb2xvcjogcmdiKDgsIDQ1LCAyNTIpIHRyYW5zcGFyZW50IHJnYig4LCA0NSwgMjUyKSB0cmFuc3BhcmVudDtcbiAgYW5pbWF0aW9uOiBEZXZuYWdyaS1yaW5nIDEuNXMgbGluZWFyIGluZmluaXRlO1xufVxuQGtleWZyYW1lcyBEZXZuYWdyaS1yaW5nIHtcbiAgMCUge1xuICAgIHRyYW5zZm9ybTogcm90YXRlKDBkZWcpO1xuICB9XG4gIDEwMCUge1xuICAgIHRyYW5zZm9ybTogcm90YXRlKDM2MGRlZyk7XG4gIH1cbn1cblxuLmRldm5hZ3JpX2R5bmFtaWNfY29udGFpbmVyIHtcbiAgcG9zaXRpb246IGZpeGVkO1xuICBib3R0b206IDE1cHg7XG4gIHJpZ2h0OiA1MHB4O1xuICBsZWZ0OiA1MHB4O1xuICB0b3A6IDE1cHg7XG4gIHdpZHRoOiA2MDBweDtcbiAgbWF4LWhlaWdodDogMzkwcHg7XG4gIGJhY2tncm91bmQtY29sb3I6IHJnYigyNTUsIDI1NSwgMjU1KTtcbiAgYm9yZGVyOiAycHggc29saWQgcmdiKDE3MywgMTcyLCAxNzIpO1xuICBib3JkZXItcmFkaXVzOiA1cHg7XG4gIGZsZXgtd3JhcDogd3JhcDtcbiAgbWFyZ2luOiAxMHB4IGF1dG87XG4gIHBhZGRpbmc6IDAgMTVweDtcbiAgb3ZlcmZsb3cteTogc2Nyb2xsO1xuICB6LWluZGV4OiA5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTtcbn1cbi5kZXZuYWdyaV9kaXZfbGFibGVfaW5wdXQge1xuICBwYWRkaW5nOiAwIDVweDtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuLmRldm5hZ3JpX2xhYmVsIHtcbiAgZm9udC1zaXplOiBsYXJnZXI7XG4gIGZvbnQtd2VpZ2h0OiA2MDA7XG4gIGxpbmUtaGVpZ2h0OiAyO1xuICBmb250LXNpemU6IGxhcmdlcjtcbn1cbi5kZXZuYWdyaV9oMV9lbmcge1xuICBwYWRkaW5nLWxlZnQ6IDVweDtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICBsaW5lLWhlaWdodDogMTtcbiAgZm9udC13ZWlnaHQ6IDYwMDtcbiAgZm9udC1zaXplOiBsYXJnZXI7XG59XG4uZGV2bmFncmlfaDFfZGVmX2xhbmcge1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gIGxpbmUtaGVpZ2h0OiAyO1xuICBmb250LXNpemU6IGxhcmdlO1xufVxuLmRldm5hZ3JpX3Nlb19zdWJtaXQge1xuICBtYXJnaW4tbGVmdDogMjI1cHg7XG4gIG1hcmdpbi10b3A6IDNweDtcbiAgb3V0bGluZTogbm9uZTtcbiAgY3Vyc29yOiBwb2ludGVyO1xuICBib3JkZXI6IDA7XG4gIGZsb2F0OiBsZWZ0O1xuICBoZWlnaHQ6IDMwcHg7XG4gIHdpZHRoOiAzMHB4O1xuICB6LWluZGV4OiA5OTk5OTk5OTk5OTk5OTtcbiAgYmFja2dyb3VuZC1pbWFnZTogdXJsKGh0dHBzOi8vaS5pYmIuY28vTTVZSHBWei9TYXZlLTAxLnBuZyk7XG4gIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG4gIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG59XG4uZGV2bmFncmlfc2VvX2NhbmNlbCB7XG4gIG1hcmdpbi1sZWZ0OiAxMHB4O1xuICBtYXJnaW4tdG9wOiAzcHg7XG4gIGZsb2F0OiBsZWZ0O1xuICBjdXJzb3I6IHBvaW50ZXI7XG4gIG91dGxpbmU6IG5vbmU7XG4gIGJvcmRlcjogMDtcbiAgaGVpZ2h0OiAzMHB4O1xuICB3aWR0aDogMzBweDtcbiAgei1pbmRleDogOTk5OTk5OTk5OTk5OTk7XG4gIGJhY2tncm91bmQtaW1hZ2U6IHVybChodHRwczovL2kuaWJiLmNvL3dRZmhZU04vQ3Jvc3MtMDEucG5nKTtcbiAgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDtcbiAgYmFja2dyb3VuZC1zaXplOiBjb3Zlcjtcbn1cbi5kZXZuYWdyaV9mb3JtLWNvbnRyb2wge1xuICBwYWRkaW5nOiAxcHg7XG4gIGZvbnQtZmFtaWx5OiBBcmlhbDtcbiAgZm9udC1zaXplOiAxNnB4O1xuICBmb250LXdlaWdodDogNTAwO1xuICBib3JkZXI6IDFweCBzb2xpZCAjY2NjY2NjO1xuICBkaXNwbGF5OiBibG9jaztcbn1cbi5kZXZuYWdyaV9zZW9fY2FuY2VsOmhvdmVyIHtcbiAgb3BhY2l0eTogMC44O1xufVxuLmRldm5hZ3JpX3Nlb19zdWJtaXQ6aG92ZXIge1xuICBvcGFjaXR5OiAwLjg7XG59XG4uZGV2bmFncmlfZGl2Rm9yQXJyb3cge1xuICBwYWRkaW5nLXRvcDogMTVweDtcbiAgbWFyZ2luLWxlZnQ6IDE1cHg7XG4gIG1hcmdpbi1yaWdodDogMjBweDtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICBoZWlnaHQ6IDMzcHg7XG4gIHdpZHRoOiA0OXB4O1xuICBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoaHR0cHM6Ly93d3cuc3ZncmVwby5jb20vc2hvdy8yNDM1Ny9yaWdodC1hcnJvdy5zdmcpO1xuICBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVwZWF0O1xuICBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyO1xuICBsaW5lLWhlaWdodDogMTtcbn1cbi5kZXZuYWdyaV9zZW8ge1xuICBvdXRsaW5lOiBub25lO1xuICBjdXJzb3I6IHBvaW50ZXI7XG4gIGhlaWdodDogMjdweDtcbiAgd2lkdGg6IDI3cHg7XG4gIG1hcmdpbi10b3A6IDVweDtcbiAgbWFyZ2luLXJpZ2h0OiA1cHg7XG4gIG1hcmdpbi1sZWZ0OiA3cHg7XG4gIC8qIGJhY2tncm91bmQtaW1hZ2U6IHVybChodHRwczovL2kuaWJiLmNvL200MThGV0QvU0VPLTAxLnBuZyk7ICovXG4gIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG4gIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG59XG4uZGV2bmFncmlfc2VvOmhvdmVyIHtcbiAgb3BhY2l0eTogMC45O1xufVxuXG4uZGV2bmFncmlfbG9nbyB7XG4gIG91dGxpbmU6IG5vbmU7XG4gIGN1cnNvcjogcG9pbnRlcjtcbiAgd2lkdGg6IDI3cHg7XG4gIGhlaWdodDogMjdweDtcbiAgbWFyZ2luOiA1cHggMDtcbiAgbWFyZ2luLWxlZnQ6IDVweDtcbiAgbWFyZ2luLXJpZ2h0OiA3cHg7XG4gIC8qIGJhY2tncm91bmQtaW1hZ2U6IHVybChodHRwczovL2kuaWJiLmNvL0dGNTRuUWgvRGV2bmFncmktTG9nby0wMS5wbmcpOyAqL1xuICBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVwZWF0O1xuICBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyO1xufVxuLmRldm5hZ3JpX3dyaXR0ZW5fbGFuZyB7XG4gIGZvbnQtZmFtaWx5OiAnVmVyZGFuYScsIHNhbnMtc2VyaWY7XG4gIGxpbmUtaGVpZ2h0OiAzN3B4O1xuICBjdXJzb3I6IHBvaW50ZXI7XG4gIGZvbnQtc2l6ZTogMTRweDtcbiAgbWFyZ2luOiAwICFpbXBvcnRhbnQ7XG59XG5cbi5kZXZuYWdyaV91cEFycm93IHtcbiAgY3Vyc29yOiBwb2ludGVyO1xuICBtYXJnaW46IDEwcHggN3B4O1xuICB3aWR0aDogMTdweDtcbiAgaGVpZ2h0OiAxN3B4O1xuICAvKiBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoaHR0cHM6Ly9pLmliYi5jby80dFhCMlh3L3VwLWFycm93LnBuZyk7ICovXG4gIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmZmZmY7XG4gIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG4gIGRpc3BsYXk6IGZsZXg7XG59XG5cbi5EZXZuYWdyaS10b29sdGlwLXRvZ2dsZSB7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbn1cblxuLkRldm5hZ3JpLXRvb2x0aXAtdG9nZ2xlOmJlZm9yZSB7XG4gIGNvbnRlbnQ6IGF0dHIoZGF0YS10b29sdGlwKTsgLyogaGVyZSdzIHRoZSBtYWdpYyAqL1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG5cbiAgLyogdmVydGljYWxseSBjZW50ZXIgKi9cbiAgdG9wOiA1MCU7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlWSgtNTAlKTtcblxuICAvKiBtb3ZlIHRvIHJpZ2h0ICovXG4gIGxlZnQ6IDEwMCU7XG4gIG1hcmdpbi1sZWZ0OiAwcHg7IC8qIGFuZCBhZGQgYSBzbWFsbCBsZWZ0IG1hcmdpbiAqL1xuXG4gIC8qIGJhc2ljIHN0eWxlcyAqL1xuICB3aWR0aDogNTBweDtcbiAgcGFkZGluZzogMnB4O1xuICBtYXJnaW46IDBweDtcbiAgYm9yZGVyLXJhZGl1czogM3B4O1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG5cbiAgZGlzcGxheTogbm9uZTsgLyogaGlkZSBieSBkZWZhdWx0ICovXG5cbiAgZm9udC1zaXplOiAxMHB4O1xuICBmb250LXdlaWdodDogNTAwO1xuICBmb250LWZhbWlseTogJ1ZlcmRhbmEnLCBzYW5zLXNlcmlmO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjMzE4NGMwO1xuICBjb2xvcjogI2ZmZjtcbn1cblxuLkRldm5hZ3JpLXRvb2x0aXAtdG9nZ2xlOmhvdmVyOmJlZm9yZSB7XG4gIGRpc3BsYXk6IGJsb2NrO1xufVxuLkRldm5hZ3JpLXRvb2x0aXAtdG9nZ2xlOmJlZm9yZSB7XG4gIHRvcDogaW5pdGlhbDtcbiAgcmlnaHQ6IGluaXRpYWw7XG4gIGxlZnQ6IGluaXRpYWw7XG4gIG1hcmdpbjogaW5pdGlhbDtcblxuICAvKiBzZXQgbmV3IHZhbHVlcyAqL1xuICBib3R0b206IDc4JTtcbiAgdHJhbnNmb3JtOiB0cmFuc2xhdGUoLTIzJSwgLTUwJSk7XG59XG5cbi5EZXZuYWdyaS10b29sdGlwLXRvZ2dsZTphZnRlciB7XG4gIGNvbnRlbnQ6ICcnO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG5cbiAgLyogcG9zaXRpb24gdG9vbHRpcCBjb3JyZWN0bHkgKi9cbiAgYm90dG9tOiAxMDUlO1xuICAvKiB2ZXJ0aWNhbGx5IGNlbnRlciAqL1xuICBsZWZ0OiA1MCU7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNDclKTtcbiAgYm9yZGVyLWxlZnQ6IDEwcHggc29saWQgdHJhbnNwYXJlbnQ7XG4gIGJvcmRlci1yaWdodDogMTBweCBzb2xpZCB0cmFuc3BhcmVudDtcblxuICBib3JkZXItdG9wOiAxMHB4IHNvbGlkICMzMTg0YzA7XG5cbiAgZGlzcGxheTogbm9uZTtcbn1cbi5EZXZuYWdyaS10b29sdGlwLXRvZ2dsZTpob3ZlcjpiZWZvcmUsXG4uRGV2bmFncmktdG9vbHRpcC10b2dnbGU6aG92ZXI6YWZ0ZXIge1xuICBkaXNwbGF5OiBibG9jaztcbn1cblxuLyogbmV3IGZvciBkZXZuZ2FyaSBsb2dvICovXG4uRGV2bmFncmktdG9vbHRpcC10b2dnbGUtcGVuY2lsIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuXG4uRGV2bmFncmktdG9vbHRpcC10b2dnbGUtcGVuY2lsOmJlZm9yZSB7XG4gIGNvbnRlbnQ6IGF0dHIoZGF0YS10b29sdGlwKTsgLyogaGVyZSdzIHRoZSBtYWdpYyAqL1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG5cbiAgLyogdmVydGljYWxseSBjZW50ZXIgKi9cbiAgdG9wOiA1MCU7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlWSgtNTAlKTtcblxuICAvKiBtb3ZlIHRvIHJpZ2h0ICovXG4gIGxlZnQ6IDEwMCU7XG4gIG1hcmdpbi1sZWZ0OiAwcHg7IC8qIGFuZCBhZGQgYSBzbWFsbCBsZWZ0IG1hcmdpbiAqL1xuXG4gIC8qIGJhc2ljIHN0eWxlcyAqL1xuICB3aWR0aDogMTMwcHg7XG4gIHBhZGRpbmc6IDRweDtcbiAgbWFyZ2luOiAwcHg7XG4gIGJvcmRlci1yYWRpdXM6IDNweDtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xuXG4gIGRpc3BsYXk6IG5vbmU7IC8qIGhpZGUgYnkgZGVmYXVsdCAqL1xuXG4gIGZvbnQtc2l6ZTogMTBweDtcbiAgZm9udC13ZWlnaHQ6IDUwMDtcbiAgZm9udC1mYW1pbHk6ICdWZXJkYW5hJywgc2Fucy1zZXJpZjtcbiAgYmFja2dyb3VuZC1jb2xvcjogIzMxODRjMDtcbiAgY29sb3I6ICNmZmY7XG59XG5cbi5EZXZuYWdyaS10b29sdGlwLXRvZ2dsZS1wZW5jaWw6aG92ZXI6YmVmb3JlIHtcbiAgZGlzcGxheTogYmxvY2s7XG59XG4uRGV2bmFncmktdG9vbHRpcC10b2dnbGUtcGVuY2lsOmJlZm9yZSB7XG4gIHRvcDogaW5pdGlhbDtcbiAgcmlnaHQ6IGluaXRpYWw7XG4gIGxlZnQ6IGluaXRpYWw7XG4gIG1hcmdpbjogaW5pdGlhbDtcbiAgYm90dG9tOiA2OCU7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlKC0zNyUsIC01MCUpO1xufVxuXG4uRGV2bmFncmktdG9vbHRpcC10b2dnbGUtcGVuY2lsOmFmdGVyIHtcbiAgY29udGVudDogJyc7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgLyogcG9zaXRpb24gdG9vbHRpcCBjb3JyZWN0bHkgKi9cbiAgYm90dG9tOiAxMDElO1xuICAvKiB2ZXJ0aWNhbGx5IGNlbnRlciAqL1xuICBsZWZ0OiA1MCU7XG4gIHRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNTAlKTtcblxuICBib3JkZXItbGVmdDogMTBweCBzb2xpZCB0cmFuc3BhcmVudDtcbiAgYm9yZGVyLXJpZ2h0OiAxMHB4IHNvbGlkIHRyYW5zcGFyZW50O1xuXG4gIGJvcmRlci10b3A6IDEwcHggc29saWQgIzMxODRjMDtcblxuICBkaXNwbGF5OiBub25lO1xufVxuLkRldm5hZ3JpLXRvb2x0aXAtdG9nZ2xlLXBlbmNpbDpob3ZlcjpiZWZvcmUsXG4uRGV2bmFncmktdG9vbHRpcC10b2dnbGUtcGVuY2lsOmhvdmVyOmFmdGVyIHtcbiAgZGlzcGxheTogYmxvY2s7XG59XG5cbi5kZXZuYWdyaV92bCB7XG4gIGJvcmRlci1sZWZ0OiAxcHggc29saWQgI2EwYTBhMDtcbiAgaGVpZ2h0OiAyN3B4O1xuXG4gIG1hcmdpbi1yaWdodDogNnB4O1xuICBtYXJnaW4tdG9wOiA1cHg7XG4gIG1hcmdpbi1sZWZ0OiA1cHg7XG59XG4uZGV2bmFncmlfdWlFcnJvckVkaXRvciB7XG4gIGJvcmRlci1yYWRpdXM6IDVweDtcbiAgLyogcG9zaXRpb246IGZpeGVkOyAqL1xuICBvdXRsaW5lOiBub25lO1xuICAvKiBib3R0b206IDBweDsgKi9cbiAgLyogcmlnaHQ6IDE4cHg7ICovXG4gIGhlaWdodDogMjRweDtcbiAgcGFkZGluZzogMHB4IDEycHg7XG4gIG1heC13aWR0aDogMzAwcHg7XG4gIHotaW5kZXg6IDk5OTk5OTk5OTk5OTk5OTk5OTk7XG4gIGJhY2tncm91bmQtY29sb3I6IGJsYW5jaGVkYWxtb25kO1xuICBjb2xvcjogcmVkO1xuICBmb250LXNpemU6IDEycHg7XG59XG5cbi5kZXZuYWdyaV91bnNhdmVkQ2hhbmdlcyB7XG4gIGJvcmRlci1yYWRpdXM6IDVweDtcbiAgLyogcG9zaXRpb246IGZpeGVkOyAqL1xuICBvdXRsaW5lOiBub25lO1xuICAvKiBib3R0b206IDBweDsgKi9cbiAgLyogcmlnaHQ6IDE4cHg7ICovXG4gIGhlaWdodDogMjRweDtcbiAgcGFkZGluZzogMHB4IDEycHg7XG4gIHdpZHRoOiAxOTBweDtcbiAgei1pbmRleDogOTk5OTk5OTk5OTk5OTtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2RjZGEwZDtcbiAgZm9udC1zaXplOiAxMnB4O1xufVxuLmRldm5hZ3JpX3NhdmVkQ2hhbmdlcyB7XG4gIGJvcmRlci1yYWRpdXM6IDVweDtcbiAgLyogcG9zaXRpb246IGZpeGVkOyAqL1xuICBvdXRsaW5lOiBub25lO1xuICAvKiBib3R0b206IDBweDsgKi9cbiAgLyogcmlnaHQ6IDE4cHg7ICovXG4gIGhlaWdodDogMjVweDtcbiAgcGFkZGluZzogMHB4IDRweDtcbiAgbWF4LXdpZHRoOiAxMTBweDtcbiAgY29sb3I6IHJnYigyNTMgMjUwIDI1MCk7XG4gIHotaW5kZXg6IDk5OTk5OTk5OTk5O1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjMDhlZWJjO1xuICBmb250LXNpemU6IDEycHg7XG59XG4jZGV2bmFncmlfc3ViZG9tYWluIHtcbiAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xuICBjb2xvcjogYmxhY2s7XG59XG5tYWluIGhlYWRlciB7XG4gIHRvcDogMHB4O1xufVxuIl0sInNvdXJjZVJvb3QiOiIifQ== */</style><style type="text/css"></style><style>.page-container[_ngcontent-kic-c8]{min-height:400px}</style><style>.spinner[_ngcontent-kic-c163]{position:fixed;top:0;left:0;right:0;height:100%;background-color:#0009;z-index:1520}.spinner[_ngcontent-kic-c163] .loader[_ngcontent-kic-c163]{position:absolute;text-align:center;top:50%;transform:translateY(-50%);width:100%}.spinner[_ngcontent-kic-c163] .loader[_ngcontent-kic-c163] h3[_ngcontent-kic-c163]{margin-top:10px;font-size:26px;font-weight:300;color:#fff}.spinner[_ngcontent-kic-c163] .loader[_ngcontent-kic-c163] p[_ngcontent-kic-c163]{margin-top:10px;font-size:16px;font-weight:400;color:#fff}.spinner[_ngcontent-kic-c163] .loader[_ngcontent-kic-c163] p[_ngcontent-kic-c163] a[_ngcontent-kic-c163]{color:#fff;text-decoration:none}.spinner[_ngcontent-kic-c163] .loader[_ngcontent-kic-c163] .la-ball-clip-rotate[_ngcontent-kic-c163]{display:block;margin:auto;width:64px;height:64px;font-size:0;color:#fff}.spinner[_ngcontent-kic-c163] .loader[_ngcontent-kic-c163] .la-ball-clip-rotate[_ngcontent-kic-c163] > div[_ngcontent-kic-c163]{width:64px;height:64px;border-width:4px;display:inline-block;float:none;border:2px solid currentColor;background:0 0;border-bottom-color:transparent;border-radius:100%;animation:.75s linear infinite ball-clip-rotate}@keyframes ball-clip-rotate{0%{transform:rotate(0)}50%{transform:rotate(180deg)}to{transform:rotate(360deg)}}</style></head>
<body data-aos-easing="ease" data-aos-duration="400" data-aos-delay="0">
<!-- Haptik Script -->
<script>
window.haptikInitSettings = {
// "widget-positioning": "bottom-right",
// "custom-css": "./overrides.css",
"business-id": "2006",
"client-id": "75ab416ddd23e51ecc6d690bf118186bfe13b9b3",
"base-url": "https://jio-api.haptikapi.com/",
};
</script>
<script type="text/javascript" charset="UTF-8" src="https://toolassets.haptikapi.com/platform/javascript-xdk/production/loader.js"></script>
<!-- Haptik Script -->
<!-- Devnagri - Old Code -->
<!-- <script type='text/javascript' id="dota_js" src='https://dns.devnagri.com/dota.js'></script>
<script id="dota_init">
var devnagri = Devnagri.initializeTranslation({
apiKey: "devnagri_ddea4af2005a11eebd5e023671beae38"
});
</script> -->
<!-- Devnagri - Old Code -->
<!-- Devnagri - New Code -->
<!-- <script type='text/javascript' id="dota_js" src='https://proxy-next.devnagri.com/dota.js'></script>-->
<!-- <script id="dota_init">
var devnagri = Devnagri.initializeTranslation({
apiKey: "devnagri_ddea4af2005a11eebd5e023671beae38"
});
// localStorage.getItem('devnagri_selected_lang_code');
// localStorage.setItem('language_prev',localStorage.getItem('devnagri_selected_lang_code'))
</script> -->
<!-- Devnagri - New Code -->
<script type="text/javascript" id="dota_js" src="https://dns-next.devnagri.com/dota.js"> </script><script type="text/javascript" src="https://toolassets.haptikapi.com/platform/javascript-xdk/production/commons.js" crossorigin="anonymous"></script><script type="text/javascript" src="https://toolassets.haptikapi.com/platform/javascript-xdk/production/app.js" crossorigin="anonymous"></script><script type="text/javascript" src="https://toolassets.haptikapi.com/platform/javascript-xdk/production/styles.js" crossorigin="anonymous"></script>
<script id="dota_init">
var devnagri = Devnagri.initializeTranslation({
apiKey: "devnagri_ddea4af2005a11eebd5e023671beae38" , default_lang_code: "en"
});
</script>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NSGQW6G" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<app-root _nghost-kic-c8="" ng-version="14.3.0"><!----><app-header-old _ngcontent-kic-c8=""><span id="url_constant1" class="d-none">eyJpdiI6Im15YzBrcW9kVlYyTEM5a0xhSi96V2c9PSIsInZhbHVlIjoiVlY2R0I4OEkxRXBzSmN0YmEvWDVvUUlTR2NtRkc0d2J4VW90M3YvbXBIST0ifQ==</span><div class="top_head banner-img d-none"><a href="events"><img src="assets/images/top_banner_2.png?v=0.0.4" alt="Banner Img" class="img-fluid"></a></div><header class="sticky-top"><div class="upper_head"><div tabindex="-1" class="d-flex justify-content-end align-items-center"><p class="mb-0 alpha"><span id="decreasetext">-A </span> | <span id="resettext">A</span> | <span id="increasetext"> A+ </span></p><ul class="navbar-nav align-self-center"><li class="nav-item dropdown"><a href="" id="language" role="button" data-bs-toggle="dropdown" aria-expanded="false" class="nav-link dropdown-toggle"> English </a><ul aria-labelledby="language" class="dropdown-menu"><li><a href="#" class="dropdown-item">English</a></li></ul></li></ul></div></div><nav class="navbar navbar-expand-lg"><div class="container"><button id="closeDropdown" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler me-3"><span class="navbar-toggler-icon"><svg width="16" height="10" viewBox="0 0 16 10" fill="none"><path d="M0 1H16" stroke="black" stroke-width="1.5"></path><path d="M0 5H16" stroke="black" stroke-width="1.5"></path><path d="M0 9H10" stroke="black" stroke-width="1.5"></path></svg></span></button><a routerlink="/" class="navbar-brand left" href="/"><img src="assets/images/niti-logo.png?v=0.0.1" alt="WEP Logo" class="img-fluid w-50"></a><div id="navbar" class="collapse navbar-collapse justify-content-center"><ul class="navbar-nav center"><li class="nav-item"><a routerlink="/" class="nav-link" href="/"><i aria-hidden="true" class="fas fa-home"></i></a></li><li class="nav-item dropdown has-megamenu"><a href="#" data-bs-auto-close="outside" data-bs-toggle="dropdown" class="nav-link dropdown-toggle"> Explore </a><div role="menu" class="dropdown-menu megamenu"><div class="row g-3"><div class="col-md-12 my-3"><h2 class="text-white"> What would you like to explore today? </h2></div><div class="col-lg-6"><div class="col-megamenu"><h6 class="title">INTEREST AREAS</h6><ul class="list-unstyled" style="display: grid; grid-template-columns: auto auto;"><li><a id="goToAccess" href="access-finance?slug=funding">Funding</a></li><li><a id="goToAccess" href="access-finance?slug=incubation-and-acceleration">Incubation and Acceleration</a></li><li><a id="goToAccess" href="access-finance?slug=mentoring-and-networking">Mentoring and Networking</a></li><li><a id="goToAccess" href="access-finance?slug=market-linkages">Market Linkages</a></li><li><a id="goToAccess" href="access-finance?slug=business-development-services">Business Development Services</a></li><li><a id="goToAccess" href="access-finance?slug=research-innovation">Research & Innovation</a></li><!----></ul></div></div><div class="col-lg-3"><div class="col-megamenu"><h6 class="title">Resource Type</h6><ul class="list-unstyled"><li><a href="javascript::void(0)">Schemes</a></li><li><a href="javascript::void(0)">Incubators & Accelerators</a></li><li><a href="javascript::void(0)">Publications & Articles</a></li></ul></div></div><div class="col-lg-3 align-self-end mt-auto mt-xs-0"><div class="col-megamenu"><ul class="list-unstyled"><li><a href="javascript::void(0)">Videos</a></li><li><a href="javascript::void(0)">Toolkits <span class="ms-1">( Coming Soon )</span></a></li><li style="visibility: hidden;"><a href="#">Coming Soon <span class="ms-1">( Coming Soon )</span></a></li></ul></div></div></div></div></li><li class="nav-item dropdown has-megamenu"><a href="#" data-bs-auto-close="outside" data-bs-toggle="dropdown" class="nav-link dropdown-toggle"> Community </a><div role="menu" class="dropdown-menu megamenu"><div class="row g-3"><div class="col-md-12 my-3"><h2 class="text-white">Engage with the Community</h2></div><div class="col-lg-4 col-sm-6"><div class="col-megamenu"><h6 class="title">Network</h6><ul class="list-unstyled"><li><a href="community-list">We Community</a></li><li><a href="#"> Mentors <span class="ms-1">( Coming Soon )</span></a></li><li><a href="#">Stories <span class="ms-1">( Coming Soon )</span></a></li></ul></div></div><div class="col-lg-8 col-sm-6"><div class="col-megamenu"><h6 class="title">Events</h6><ul class="list-unstyled d-flex"><li class="me-2"><a href="event-details?slug=undp-villgro-women-entrepreneurship-program-empow-1"><input type="hidden" value="95"><img alt="Recent Event Image" style="height: 20vh;" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/event/admin/7e06K5HFnct3tKv6UkgNMzUwS6Bv8w1707486646.png"></a></li><li class="me-2"><a href="event-details?slug=we-win"><input type="hidden" value="96"><img alt="Recent Event Image" style="height: 20vh;" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/event/admin/dmUoKM65cpEhnS1dQ772aOhdzosuyi1710493369.png"></a></li><li class="me-2"><a href="event-details?slug=catalyse-tech-entrepreneur-innovation-challenge"><input type="hidden" value="87"><img alt="Recent Event Image" style="height: 20vh;" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/event/admin/N1cvMd9IMMluWjDZXP06z81UxV48dI1700733302.png"></a></li><!----></ul><a href="events" class="mt-3 d-block"><img src="assets/images/arrow1.svg" alt="Right Arrow Image"></a></div></div></div></div></li><li class="nav-item"><a routerlink="/partners" class="nav-link" href="/partners">Partners</a></li><li class="nav-item"><a routerlink="about" class="nav-link border-0" href="/about">about</a></li><li class="nav-item" style="visibility: hidden;"><a href="/wep-mentorship-home" class="nav-link border-0">Mentorship</a></li></ul></div><ul class="right d-flex justify-content-around mb-0" style="width: 20%;"><li></li><!----><!----><li class="dropdown profilemenu"><a href="#" id="profile" role="button" data-bs-toggle="dropdown" aria-expanded="false" class="dropdown-toggle" style="justify-content: flex-end;"><!----><img alt="user-logo" class="user_imageprofile" src="https://api.wep.gov.in/public/default.png "><!----> <b>yolo oloy</b><i aria-hidden="true" class="fas fa-chevron-down ms-3"></i></a><ul aria-labelledby="" class="dropdown-menu usermenus"><li><!----><!----><!----><a routerlink="dashboard-my-feeds" class="dropdown-item" href="/dashboard-my-feeds">Dashboard</a><!----></li><li><!----><a routerlink="mentee-meeting-calender" class="dropdown-item" href="/mentee-meeting-calender">Meeting Calendar</a><!----></li><li><a routerlink="blogs" class="dropdown-item" href="/blogs">Blogs</a><!----></li><li><a routerlink="events" class="dropdown-item" href="/events">Events</a><!----></li><li><!----><a routerlink="wep-profile" class="dropdown-item" href="/wep-profile">My Profile</a><!----></li><li><a href="javascript:void(0)" class="dropdown-item">Log out</a></li></ul></li><!----><li class="d-none mobile-menu dropdown"><a href="#" id="accountbar" role="button" data-bs-toggle="dropdown" aria-expanded="false"><i aria-hidden="true" class="fas fa-user"></i></a><ul aria-labelledby="navbarDropdown" class="dropdown-menu usermenus"><li><a href="#" data-bs-toggle="offcanvas" role="button" data-bs-target="#register_menu" aria-controls="register_menu" class="dropdown-item">Register</a></li><li><a href="#" data-bs-toggle="offcanvas" role="button" data-bs-target="#login_menu" aria-controls="login_menu" class="dropdown-item">Login</a></li></ul></li></ul></div></nav></header><div id="event_register" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true" class="modal fade"><div class="modal-dialog modal-dialog-centered modal-dialog-scrollable"><div class="modal-content"><div class="modal-header"><h5 id="exampleModalLabel" class="modal-title">Event Register</h5><button type="button" data-bs-dismiss="modal" aria-label="Close" class="btn-close text-white"><i aria-hidden="true" class="fas fa-close"></i></button></div><div class="modal-body"><div class="container px-0"><div class="row"><div class="col-md-12"><div class="offcanvas-body p-0"><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-valid"><!----><div><h4 class="fw-18 fw-600"> Do you want to register in this event? </h4></div><!----><div class="form_button modal-formBtn"><button type="submit" class="btn btn-dark">Register</button><a id="fireMe"></a><a href="javascript::void(0)" id="eventRegister" role="button" data-bs-toggle="modal" data-bs-target="#event_register"></a></div><!----></form></div></div></div></div></div></div></div></div><div tabindex="-1" id="register_menu" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Image Logo" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Start your entrepreneurial journey with us!</h5><form novalidate="" class="register_form needs-validation ng-untouched ng-pristine ng-invalid"><div class="form_field"><label for="" class="form-label">First Name <span class="text-danger">*</span></label><input type="text" formcontrolname="first_name" id="avalidationCustom12" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid"><!----></div><div class="form_field"><label for="" class="form-label">Last Name</label><input type="text" formcontrolname="last_name" id="avalidationCustom01" value="" class="form-control ng-untouched ng-pristine ng-valid"><!----></div><div class="radios"><label for="" class="d-block form-label">Sign up by<span class="text-danger">*</span></label><div class="form-check form-check-inline"><input type="radio" formcontrolname="type" id="inlineRadio2" value="phone" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="inlineRadio2" class="form-check-label">Mobile</label></div><div class="form-check form-check-inline"><input type="radio" formcontrolname="type" id="inlineRadio1" value="email" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="inlineRadio1" class="form-check-label">Email</label></div><div class="form-check form-check-inline"><input type="radio" formcontrolname="type" id="inlineRadio3" value="both" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="inlineRadio3" class="form-check-label">Both</label></div><!----></div><div class="form_field"><label for="" class="form-label">Email <span class="text-danger">*</span></label><input type="email" formcontrolname="email" id="avalidationCustom02" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid"><!----><div><span class="text-danger"></span></div></div><!----><div class="form_field"><label for="" class="form-label">Mobile Number <span class="text-danger">*</span></label><div class="input-group"><button type="button" data-bs-toggle="dropdown" aria-expanded="false" class="btn btn-outline-secondary dropdown-toggle border-end-0"> +91 </button><input type="number" formcontrolname="phone" id="avalidationCustom03" value="" maxlength="10" oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);" required="" class="form-control border-start-0 ng-untouched ng-pristine ng-invalid"><!----></div><div><span class="text-danger"></span></div></div><!----><div class="form_field"><label for="" class="form-label">Set Password <span class="text-danger">*</span></label><div class="d-flex"><input formcontrolname="password" id="avalidationCustom41" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid" type="password"><span class="input-group-text"><i class="fa-solid fa-eye-slash"></i></span></div><!----></div><div class="form_field"><label for="" class="form-label">Confirm Password <span class="text-danger">*</span></label><div class="d-flex"><input formcontrolname="cnf_password" id="avalidationCustom05" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid" type="password"><span class="input-group-text"><i class="fa-solid fa-eye-slash"></i></span></div><!----><!----></div><div class="form_button"><button role="submit" class="btn btn-dark">Create Account</button><a id="clickVerified" data-bs-toggle="offcanvas" data-bs-target="#verified" aria-controls="verified" class="btn btn-dark" hidden=""></a><p> Already a member? <a href="" data-bs-toggle="offcanvas" role="button" data-bs-target="#login_menu" aria-controls="login_menu"><u><b> Login </b></u></a></p></div></form></div></div></div></div></div><div tabindex="-1" id="verified" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Enter OTP for verification</h5><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-invalid"><!----><hr><!----><div><span class="text-danger"></span></div><div class="form_button"><button type="submit" class="btn btn-dark">Verify</button><a href="javascript::void(0)" id="hideVerifyToggle" data-bs-toggle="offcanvas"></a><a id="goToLoginPage" data-bs-toggle="offcanvas" data-bs-target="#login_menu" aria-controls="login_menu" class="btn btn-dark" hidden=""></a><a id="goToRegisterPage" data-bs-toggle="offcanvas" data-bs-target="#register_menu" aria-controls="register_menu" class="btn btn-dark" hidden=""></a></div></form></div></div></div></div></div><div tabindex="-1" id="login_menu" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Welcome back to WEP</h5><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-invalid"><div class="form_field"><label for="" class="form-label">Email/Mobile <span class="text-danger">*</span></label><input type="text" formcontrolname="email" id="avalidationCustom07" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid"><!----></div><div class="form_field"><label for="" class="form-label">Password <span class="text-danger">*</span></label><div class="d-flex"><input formcontrolname="password" id="avalidationCustom04" value="" class="form-control ng-untouched ng-pristine ng-invalid" type="password"><span class="input-group-text"><i class="fa-solid fa-eye-slash"></i></span></div><!----></div><div class="text-center"><span id="errorMesg" class="text-danger"></span></div><a href="#" data-bs-toggle="offcanvas" role="button" data-bs-target="#forgot_pw" aria-controls="forgot_pw"><u><b> Forgot Password?</b></u></a><div class="form_button"><button class="btn btn-dark">Login</button><a href="javascript::void(0)" id="hideLoginToggle" data-bs-toggle="offcanvas"></a><p> Not a member yet? <a href="" data-bs-toggle="offcanvas" role="button" data-bs-target="#register_menu" aria-controls="register_menu"><u><b> Register Now </b></u></a></p></div></form></div></div></div></div></div><div tabindex="-1" id="search" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-valid"><div class="form_field"><label for="" class="form-label">Search anything here..</label><input type="text" class="form-control"></div><div class="form_button"><button class="btn btn-dark">Search</button></div></form></div></div></div></div></div><div tabindex="-1" id="forgot_pw" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Welcome back to WEP</h5><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-invalid"><div class="radios"><div class="form-check form-check-inline"><input type="radio" formcontrolname="forgot_pass_type" id="radioEmail" value="email" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="radioEmail" class="form-check-label">By Email</label></div><div class="form-check form-check-inline"><input type="radio" formcontrolname="forgot_pass_type" id="radioMobile" value="phone" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="radioMobile" class="form-check-label">By Mobile</label></div><!----></div><div class="form_field"><label for="" class="form-label">Email*</label><input type="text" formcontrolname="email" id="forgotemail" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid"><!----></div><!----><!----><div class="form_button"><a id="goForgetPasswordOTP" data-bs-toggle="offcanvas" data-bs-target="#password_otp" aria-controls="password_otp" class="btn btn-dark d-none"></a><button type="submit" class="btn btn-dark"> Forgot Password </button></div></form></div></div></div></div></div><div tabindex="-1" id="password_otp" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Enter OTP for verification</h5><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-invalid"><!----><!----><div class="form_button"><a id="forgetPasswordOTPVerify" data-bs-toggle="offcanvas" data-bs-target="#change_pw" aria-controls="change_pw" class="btn btn-dark d-none"></a><button class="btn btn-dark">Verify</button><a href="javascript::void(0)" id="" data-bs-toggle="offcanvas"></a><a id="goToLoginPage" data-bs-toggle="offcanvas" data-bs-target="#login_menu" aria-controls="login_menu" class="btn btn-dark" hidden=""></a></div></form></div></div></div></div></div><div tabindex="-1" id="change_pw" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Add New Password</h5><form novalidate="" class="login_form ng-untouched ng-pristine ng-invalid"><div class="form_field"><label for="" class="form-label">New Password*</label><div class="d-flex"><input formcontrolname="new_password" id="avalidationCustom14" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid" type="password"><span class="input-group-text"><i class="fa-solid fa-eye-slash"></i></span></div><!----></div><div class="form_field"><label for="" class="form-label">Confirm Password*</label><div class="d-flex"><input formcontrolname="confirm_new_password" id="avalidationCustom24" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid" type="password"><span class="input-group-text"><i class="fa-solid fa-eye-slash"></i></span></div><!----><span class="text-danger"></span></div><span class="text-success"></span><div class="form_button"><button type="submit" class="btn btn-dark">Confirm</button></div></form></div></div></div></div></div><button type="button" data-bs-toggle="modal" data-bs-target="#successModalLabel" class="btn btn-primary d-none"> Launch demo modal
</button><div id="successModalLabel" tabindex="-1" aria-labelledby="successModalLabel" aria-hidden="true" class="modal fade"><div class="modal-dialog modal-dialog-centered modal-dialog-scrollable"><div class="modal-content"><div class="modal-header"><h5 id="successModalLabel" class="modal-title">Popup Label</h5><button type="button" data-bs-dismiss="modal" aria-label="Close" class="btn-close text-white"><i aria-hidden="true" class="fas fa-close"></i></button></div><div class="modal-body"><h5 class="mb-4">Are you sure you want to delete!</h5></div><div class="modal-footer d-flex justify-content-between"><button type="button" class="btn btn-dark">Close</button></div></div></div></div><div id="cookies_modal" class="d-block"><div><button type="button" class="btn_"><i class="fas fa-times"></i></button></div><div class="cookie_content"><h4>We respect your privacy </h4><p>We use cookies to ensure that we give you the best experience on our website. We also use cookies to show you relevant resources to you, You can change your cookie settings at any time.</p><button class="btn btn-dark mt-md-4">Accept Cookies</button></div></div><button type="button" id="cannotBrowseModal" data-bs-toggle="modal" data-bs-target="#accesssmore" class="btn btn-primary d-none"> Launch demo modal
</button><div id="accesssmore" tabindex="-1" aria-labelledby="accesssmoreLabel" aria-hidden="true" class="modal fade closeBrowseModal"><div class="modal-dialog modal-lg modal-dialog-centered"><div class="modal-content bg-white"><div class="modal-body"><button type="button" data-bs-dismiss="modal" aria-label="Close" class="btn-close bg-light float-end"><i aria-hidden="true" class="fas fa-close text-dark"></i></button><div class="row"><div class="col-md-12 mb-5"><div class="access-instaruction"><h4>Looks like you’ve already viewed your 2 free pre-registration resources.</h4></div></div><div class="col-md-9"><p>Please join us to get complete access to over 300+ resources to get your journey started!</p></div><div class="col-md-3 text-end"><div class="register-btn"><button data-bs-toggle="offcanvas" role="button" data-bs-target="#register_menu" aria-controls="register_menu" class="btn btn-dark text-uppercase fw-600"> Register </button></div></div></div></div><div class="modal-footer schemes-access-footer justify-content-start"><div class="sm-icon" style="width: 8%; margin: 15px;"><img src="assets/images/smart-icon.svg" alt="" class="img-fluid w-100"></div><div style="width: 60%;"><h5><b>Tried Smart Match yet?</b></h5><p>Use Smart Match to get personalised recommendations of partners to connect with.</p></div><a href="javascript::void(0)" data-bs-toggle="offcanvas" role="button" data-bs-target="#login_menu" class="sm-link"><img src="assets/images/arrow.svg" alt="Arrow Image" class="arrow_animation"></a></div></div></div></div><button type="button" id="successContactModalButton" data-bs-toggle="modal" data-bs-target="#successContactModal" class="btn btn-primary d-none"> Launch demo modal
</button><div id="successContactModal" tabindex="-1" aria-labelledby="successContactModal" aria-hidden="true" class="modal fade"><div class="modal-dialog modal-dialog-centered modal-dialog-scrollable"><div class="modal-content"><div class="modal-header"><h5 id="successContactModal" class="modal-title">Success</h5><button type="button" data-bs-dismiss="modal" aria-label="Close" class="btn-close text-white"><i aria-hidden="true" class="fas fa-close"></i></button></div><div class="modal-body"><h5 class="mb-4 text-dark" style="text-align: center; font-size: 20px; text-transform: capitalize;"> Registration Successful </h5></div><div class="modal-footer d-flex justify-content-between" style="flex-direction: row-reverse;"><button type="button" data-bs-dismiss="modal" class="btn btn-dark" style="padding: 10px 45px!important;">OK</button></div></div></div></div></app-header-old><!----><div _ngcontent-kic-c8="" id="main_container" class="page-container"><router-outlet _ngcontent-kic-c8=""></router-outlet><app-access-finance><section class="resources-intro-tile section-paading access-finance-section"><div class="container"><div class="row"><div class="col-md-12"><div class="intro-heading"><div><h1> </h1></div><p> Everything from government schemes to templates for your entrepreneurial journey. </p></div><div type="button" data-bs-toggle="collapse" data-bs-target="#filters" aria-expanded="false" aria-controls="filters" class="filter mt-3"><i class="fas fa-filter"></i> Filter By </div><div id="filters" class="intro-filters collapse mt-3"><form novalidate="" class="ng-untouched ng-pristine ng-valid"><div class="row gy-3"><div class="col-md-8"><div class="row gy-3"><div class="col-lg-4"><div class="intro-select"><div class="input-group"><span id="basic-addon1" class="input-group-text bg-white"><i aria-hidden="true" class="fas fa-search"></i></span><input formcontrolname="search_string" type="text" placeholder="Search" aria-label="" aria-describedby="basic-addon1" class="form-control ng-untouched ng-pristine ng-valid"></div></div></div><div class="col-lg-4 col-sm-6"><div class="intro-select"><select formcontrolname="gender" aria-label="" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Gender</option><option value="female"> Female </option><option value="others"> Others </option><!----></select></div></div><div class="col-lg-4 col-sm-6 d-none"><div class="intro-select"><select formcontrolname="category" aria-label="" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Category</option><option value="4"> Funding </option><option value="5"> Incubation and Acceleration </option><option value="6"> Mentoring and Networking </option><option value="7"> Market Linkages </option><option value="8"> Business Development Services </option><option value="43"> Research & Innovation </option><!----></select></div></div><div class="col-lg-4 col-sm-6"><div class="intro-select"><select formcontrolname="targetAudiences" aria-label="" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Target Audiences</option><option value="1"> Labor in enterprise </option><option value="2"> Enterprises </option><option value="3"> Third Parties </option><option value="4"> Entrepreneurs </option><!----></select></div></div><div class="col-lg-4 col-sm-6 all_inputbox"><div class="intro-select"><select formcontrolname="states" aria-label="" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">State/UT</option><option value="4087"> Andaman and Nicobar Islands </option><option value="1"> Andhra Pradesh </option><option value="2"> Arunachal Pradesh </option><option value="3"> Assam </option><option value="4"> Bihar </option><option value="4086"> Chandigarh </option><option value="5"> Chhattisgarh </option><option value="4085"> Dadra and Nagar Haveli and Dam </option><option value="30"> Delhi </option><option value="6"> Goa </option><option value="7"> Gujarat </option><option value="8"> Haryana </option><option value="9"> Himachal Pradesh </option><option value="10"> Jammu and Kashmir </option><option value="11"> Jharkhand </option><option value="12"> Karnataka </option><option value="13"> Kerala </option><option value="4084"> Ladakh </option><option value="4083"> Lakshadweep </option><option value="14"> Madhya Pradesh </option><option value="15"> Maharashtra </option><option value="16"> Manipur </option><option value="17"> Meghalaya </option><option value="18"> Mizoram </option><option value="19"> Nagaland </option><option value="20"> Orissa </option><option value="31"> Outside India </option><option value="4082"> Puducherry </option><option value="21"> Punjab </option><option value="22"> Rajasthan
</option><option value="23"> Sikkim
</option><option value="24"> Tamil Nadu
</option><option value="25"> Telangana </option><option value="26"> Tripura </option><option value="27"> Uttar Pradesh </option><option value="28"> Uttarakhand </option><option value="29"> West Bengal
</option><!----></select></div></div><div class="col-lg-4 col-sm-6 all_inputbox"><div class="intro-select"><select formcontrolname="sectorOfEnterprise" aria-label="" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Sector of Enterprise</option><option value="5"> Accounting </option><option value="6"> Advertising </option><option value="160"> Aeronautics Aerospace & Defence </option><option value="187"> Agri and allied activities </option><option value="63"> Agri: Schemes operating in the agriculture sector </option><option value="7"> Agriculture </option><option value="147"> AI </option><option value="177"> Airport Operations </option><option value="62"> All: Sector agnostic </option><option value="8"> Analytics </option><option value="165"> Animation </option><option value="145"> AR VR (Augmented + Virtual Reality) </option><option value="9"> Architecture and Interior Design </option><option value="166"> Architecture Interior Design </option><option value="167"> Art & Photography </option><option value="66"> Art and craft </option><option value="154"> Automotive </option><option value="10"> Banking and Financial Services </option><option value="11"> Beauty and Wellness </option><option value="2"> Big Data </option><option value="12"> Biometrics </option><option value="13"> Biotech </option><option value="182"> Biotechnology </option><option value="14"> Blockchain </option><option value="15"> BPO </option><option value="1"> Business Intelligence </option><option value="168"> Chemicals </option><option value="16"> Coaching And Mentoring </option><option value="68"> Coir </option><option value="161"> Computer Vision </option><option value="169"> Construction </option><option value="17"> Consumer Goods </option><option value="18"> Creative/ Performing Arts </option><option value="3"> Data Science </option><option value="19"> Dating And Matrimonial </option><option value="175"> Dating Matrimonial </option><option value="170"> Design </option><option value="152"> Development sector </option><option value="20"> Digital And Social Media </option><option value="21"> E-commerce </option><option value="148"> Education </option><option value="22"> Education And Ed Tech </option><option value="23"> Energy </option><option value="153"> Enterprise Software </option><option value="24"> Events </option><option value="25"> Fashion </option><option value="26"> Film And Media Production </option><option value="158"> Finance Technology </option><option value="27"> Financial Services </option><option value="28"> Fitness And Sports </option><option value="150"> Food & Beverages </option><option value="29"> Graphic Design </option><option value="30"> Green Technology </option><option value="31"> Healthcare </option><option value="156"> Healthcare & Lifesciences </option><option value="32"> Hospitality </option><option value="185"> House Hold Services </option><option value="33"> Human Resources </option><option value="173"> Indic Language Startups </option><option value="36"> Insurance </option><option value="34"> Internet Of Things </option><option value="35"> IT Services </option><option value="67"> Khadi </option><option value="37"> Legal Services </option><option value="38"> Logistics </option><option value="39"> Management Consulting </option><option value="64"> Manufacturing </option><option value="40"> Market Research </option><option value="41"> Marketing </option><option value="42"> Media </option><option value="172"> Media & Entertainment </option><option value="43"> Medical Equipment </option><option value="151"> NA </option><option value="44"> Nanotechnology </option><option value="45"> Non Profit Or Social Organisation </option><option value="46"> Non Renewable Energy </option><option value="69"> Non-farm based </option><option value="155"> Not available </option><option value="61"> Others </option><option value="179"> Passenger Experience </option><option value="174"> Pets & Animals </option><option value="146"> Pharma </option><option value="49"> Pharmaceutical </option><option value="50"> Philanthropy </option><option value="184"> Professional & Commercial Services </option><option value="47"> Professional Services </option><option value="48"> Publishing </option><option value="149"> Real Estate </option><option value="51"> Real Estate and Property Management </option><option value="157"> Renewable Energy </option><option value="52"> Renewables And Environment </option><option value="53"> Retail </option><option value="54"> Robotics </option><option value="55"> Saas </option><option value="176"> Safety </option><option value="178"> Security Solutions </option><option value="188"> Service </option><option value="163"> Social development </option><option value="71"> Social Impact </option><option value="162"> Social Network </option><option value="183"> Specialty Retailers </option><option value="171"> Sports </option><option value="70"> Technology </option><option value="56"> Technology Hardware </option><option value="159"> Telecommunication & Networking </option><option value="57"> Telecommunication and Network </option><option value="65"> Textile </option><option value="186"> Textiles & Apparel </option><option value="180"> Toys and Games </option><option value="181"> Transportation & Storage </option><option value="58"> Transportation And Storage </option><option value="164"> Travel & Tourism </option><option value="59"> Travel and Tourism </option><option value="60"> Waste Management </option><!----></select></div></div></div></div><div class="col-md-4"><div class="d-flex justify-content-between align-items-end"><div class="add_input"><button type="button" class="btn btn-light"><svg width="25" height="25" fill="currentColor" viewBox="0 0 16 16" class="bi bi-funnel"><path d="M1.5 1.5A.5.5 0 0 1 2 1h12a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.128.334L10 8.692V13.5a.5.5 0 0 1-.342.474l-3 1A.5.5 0 0 1 6 14.5V8.692L1.628 3.834A.5.5 0 0 1 1.5 3.5v-2zm1 .5v1.308l4.372 4.858A.5.5 0 0 1 7 8.5v5.306l2-.666V8.5a.5.5 0 0 1 .128-.334L13.5 3.308V2h-11z"></path></svg><small> +2 More </small></button></div><div><div class="intro-select"><button type="submit" id="autoSeach" class="btn btn-dark"> Search </button></div></div><div><div class="intro-select"><button type="reset" data-bs-toggle="tooltip" data-bs-placement="top" title="" class="btn btn-link text-dark fw-bold text-decoration-none" data-bs-original-title="Reset">Reset</button></div></div></div></div></div></form></div></div><!----><!----></div></div></section><div class="container"><div class="row"><div class="col-md-12"><ul class="nav nav-pills feednav"><li class="nav-item"><a href="javascript::void(0)" class="nav-link access-active active"> Top Trending(15) </a></li><li class="nav-item"><a href="javascript::void(0)" class="nav-link access-active"> Central Schemes(151) </a></li><li class="nav-item"><a href="javascript::void(0)" class="nav-link access-active"> SIDBI+NABARD(50) </a></li><li class="nav-item"><a href="javascript::void(0)" class="nav-link access-active"> State Schemes(634) </a></li><li class="nav-item"><a href="javascript::void(0)" class="nav-link access-active"> Knowledge Bank(99) </a></li><!----><!----><li class="nav-item"><a href="javascript::void(0)" class="nav-link access-active"> Events(0) </a></li><li class="nav-item"><a href="javascript::void(0)" class="nav-link access-active"> Videos(3) </a></li><li class="nav-item"><a href="javascript::void(0)" class="nav-link access-active"> Partners(10) </a></li></ul></div></div></div><section class="resource access-finance-section"><div class="container-fluid"><div id="top_recommend" class="row"><div class="col-md-1"></div><div class="col-md-11"><div class="resource-head mb-3"><div class="row align-items-center"><div class="col-lg-9 col-md-8 col-sm-7"><div class="resource-title"><h3>Top trending (15)</h3></div></div><div class="col-lg-3 col-md-4 col-sm-5"><div class="slider-navs"><button aria-label="Previous" type="button" class="slick-prev slick-arrow pp31 slick-disabled" aria-disabled="true" style=""><img src="assets/images/left-arrow.svg" alt="Left Arrow Image" class="left_arrow"></button><button aria-label="Next" type="button" class="slick-next slick-arrow nn31" aria-disabled="false" style=""><img src="assets/images/arrow.svg" alt="Arrow Image" class="arrow_animation"></button></div></div></div></div><div class="resource-body"><div class="resource-slider"><div class="top-trending-slides slider slick-initialized slick-slider"><div class="slick-list draggable"><div class="slick-track" style="opacity: 1; width: 5832px; transform: translate3d(0px, 0px, 0px);"><div class="item class-col-4 slick-slide slick-current slick-active" data-slick-index="0" aria-hidden="false" tabindex="0" style="width: 309px;"><a href="resource-details?slug=women-enterprise-development" tabindex="0"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Women Enterprise Development </h5><p><b>North Eastern Development Finance Corporation Limited has introduced the Women Enterprise Development Scheme for women entrepreneurs. As the name suggests, the scheme helps in motivating women entrepreneurship by financially supporting the project. It allows women to elevate their status by participating in the business and development of micro-enterprises.</b></p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide slick-active" data-slick-index="1" aria-hidden="false" tabindex="0" style="width: 309px;"><a href="resource-details?slug=stand-up-india-scheme" tabindex="0"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Stand Up India Scheme </h5><p><b>Stand-Up India was launched by Government of India on 5 April 2016 to support entrepreneurship among women and SC & ST communities.</b></p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide slick-active" data-slick-index="2" aria-hidden="false" tabindex="0" style="width: 309px;"><a href="resource-details?slug=national-initiative-for-developing-and-harnessing" tabindex="0"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> National Initiative for Developing and Harnessing Innovations (NIDHI) </h5><p><b>National Initiative for Developing and Harnessing Innovations (NIDHI) is an umbrella programme conceived and developed by the Innovation & Entrepreneurship division,Department of Science & Technology, Government of India, for nurturing ideas and innovations (knowledge-based and technology-driven) into successful startups. The programme would work in line with the national priorities and goals and its focus would beto build an innovation driven entrepreneurial ecosystem with an objective of socioeconomic development through wealth and job creation.</b></p><!----><div class="resouce-tag"><ul><li> Mentoring and Networking </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="3" aria-hidden="true" tabindex="0" style="width: 309px;"><a href="resource-details?slug=start-up-india-scheme" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Start Up India Scheme </h5><p><b>Startup India is an initiative of the Government of India. The campaign was first announced by Indian Prime Minister, Narendra Modi during his speech in 15 August 2015. The action plan of this initiative is focussing on three areas: Simplification and Handholding, Funding Support, and Incentives. It intends to catalyze startup culture and build a strong and inclusive ecosystem for innovation and entrepreneurship in India.</b></p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="4" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=dual-system-of-training-scheme" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Dual System of Training Scheme </h5><p><b>The scheme was introduced in 2016 with the objective of enabling industries and establishments to partner with the Government and Private ITIs for conducting training programmes towards fulfilling skilled manpower requirements. The DST combines theoretical training from ITIs and practical training from Industry Partners thereby strengthening industry linkages and providing hand-on experience to students on industries latest technologies and techniques. The revised DST Scheme meets the industry’s skilled workforce requirements with greater adaptability towards industry expectations and wider coverage of Industrial Training Institutes (ITIs). After the successful completion of training, trainees are awarded National Trade Certificate (NTC) that gives them an edge with regard to employability.</b></p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="5" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=amended-technology-upgradation-funds-scheme-atufs" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Amended Technology Upgradation Funds Scheme (ATUFS) </h5><p><b>It is a credit linked Capital Investment Subsidy (CIS) scheme during 2016 to 2022 to catalyze capital investments for technology upgradation and modernization of the textile industry.</b></p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="6" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=training-scheme" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Training Scheme </h5><p><b>The objective of this scheme is to provide training to the target group to make them capable and self-dependant through appropriate technical training in the field of traditional and technical occupations and entrepreneurship, Financial assistance is provided in the form of grant through SCA/Institution. The trainee are encouraged to get wage employment and also can obtain loan under NBCFDC general loan schemes to start his/her business after successful completion of the training.
Eligibility:
The applicant should belong to the Backward Classes as notified by Central Government/ State Government from time to time. The annual family income of the applicant should be less than Rs.1,03,000/- p.a. in urban areas and Rs.81,000/- p.a. in rural areas.
Under this scheme the eligible youths of the target group are trained to meet the market demands of various industries/sectors and also for up-grading the skills of traditional Craftsman/Artisans, who have inherited the trade/occupations from the generations. NBCFDC has established training linkages with reputed training institutions in the country and arrange training in specialized trades for eligible candidates through these training institutions.
Expenditure borne by NBCFDC - 100% of the training cost
Duration - Upto Six months</b></p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="7" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=mmsme-champions-scheme" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> MMSME Champions scheme </h5><p><b>Ministry of MSME has been implementing Credit Linked Capital Subsidy and Technology Upgradation Scheme (CLCS-TUS) for promoting competitiveness amongst Micro, Small and Medium Enterprises (MSMEs) by the way of wastage reduction through Lean Manufacturing, support for Design improvement, building awareness on Intellectual Property Rights, Zero Defect Zero Effect (ZED) Scheme, digitally empowerment of MSME through Digital MSME and to promote & support untapped creativity of individual and to promote adoption of latest technologies in manufacturing as well as knowledge-based innovation MSMEs through Incubation across India.
MSME Champions scheme has been formulated through Standing Finance Committee (SFC) by merging all 6 components of erstwhile Technology Upgradation Scheme (TUS) for a period of 5 years i.e. 2021-22 to 2025-26. It is a Holistic Approach to unify, synergize and converge various schemes and Interventions with a single purpose. The end objective is to pick up clusters and enterprises and modernize their processes, reduce wastages, sharpen business competitiveness and facilitate their National and Global reach and excellence. There are 3 components under the new MSME Champions scheme, the details of which are as below:
1) - MSME-Sustainable (ZED)
2) - MSME-Innovative(for Incubation, IPR, Design)
3) - MSME-Competitive (Lean) </b></p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="8" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=entrepreneurship-and-skill-development-programme" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Entrepreneurship and Skill Development Programme </h5><p><b>Entrepreneurship Skill Development Programme (ESDP): It is an entrepreneurship scheme that nurtures the talent of youth by enlightening them on several aspects of industrial or business activity that are required for setting up MSEs.</b></p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="9" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=self-reliant-india-sri-fund-empowering-msmes" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Self Reliant India (SRI) Fund - Empowering MSMEs for Aatmanirbhar Bharat </h5><p><b>Objective:
The Fund aims to provide capital support to the Daughter Funds for onward provision to MSMEs as growth capital, through equity, quasi-equity and debt to achieve the
following:
- Supporting faster growth of MSME businesses, thereby igniting the economy & creating several employment opportunities.
- Supporting enterprises which have the potential to graduate beyond the MSME bracket and become National/International champions.
- Supporting MSMEs which will help make India self-reliant by producing relevant technologies, goods and services.</b></p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="10" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=credit-guarantee-fund-trust-for-micro-and-small-en" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Credit Guarantee Fund Trust for Micro and Small Enterprises (CGTMSE) </h5><p><b>Credit Guarantee Fund Trust for Micro and Small Enterprises (CGTMSE) is jointly set up by Ministry of Micro, Small & Medium Enterprises (MSME), Government of India and Small Industries Development Bank of India (SIDBI) to catalyse flow of institutional credit to Micro & Small Enterprises (MSEs).</b></p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="11" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=scheme-for-venture-capital-fund-for-backward-class" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Scheme for Venture Capital Fund for Backward Classes </h5><p><b>Ministry of Social Justice and Empowerment, Venture Capital Fund for Backward Classes (VCF-BC) was included as a separate scheme under the ongoing scheme of Venture Capital Fund for Scheduled Castes (VCF-SC). Venture Capital Fund launched to promote entrepreneurship in India among the Backward Classes by providing concessional finance to them.</b></p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="12" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=prime-ministers-employment-generation-programme" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Prime Minister’s Employment Generation Programme (PMEGP) </h5><p><b>Ministry of Micro, Small and Medium Enterprises (MSME) is implementing Prime Minister’s Employment Generation Programme (PMEGP), which is a major credit-linked subsidy programme, aimed at generating self-employment opportunities through establishment of micro-enterprises in the non-farm sector by helping traditional artisans and unemployed youth.</b></p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="13" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=fund-of-funds-1" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Fund of Funds </h5><p><b>Fund of Funds for Start-ups (FFS) was unveiled by the Hon’ble Prime Minister on the January 16, 2016 in line with the Start-up India Action Plan. . Introduced with a focused objective of supporting development and growth of innovation driven enterprises, FFS facilitates funding needs for Start-ups through participation in capital of SEBI registered Alternative Investment Funds. Fund of Funds does not directly invest into startups but provides capital to SEBI-registered Alternate Investment Funds (AIFs), known as daughter funds, who in turn invest money in growing Indian startups through equity and equity-linked instruments. Thus, there is no direct fund allocation from DPIIT to States/UTs under Startup India initiative.</b></p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" data-slick-index="14" aria-hidden="true" tabindex="-1" style="width: 309px;"><a href="resource-details?slug=vocational-training-programme-for-women" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" class="img-fluid w-100" src="" style="display: none;"><h5 style="margin-top: 15px;"> Vocational Training Programme for Women </h5><p><b>Women’s Vocational Training Programme (WVTP) was designed and launched in 1977 to mainstream women into economic activities. This project on women’s vocational training was formulated with the assistance of Swedish International Development Authority (SIDA) and the International Labour Organization (ILO) in March, 1977. Under this project, vocational trades were identified that were particularly suitable for women and their implementation planned.</b></p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a><!----><!----><!----></div><div class="item class-col-4 slick-slide" style="visibility: hidden; width: 309px;" data-slick-index="15" aria-hidden="true" tabindex="-1"><a href="resource-details?slug=we-hub" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" src="" class="img-fluid w-100" style="display: none;"><h5 style="margin-top: 15px;"></h5><p><b></b></p><div class="resouce-tag"><ul><li></li><li></li></ul></div></div></div></a></div><div class="item class-col-4 slick-slide" style="visibility: hidden; width: 309px;" data-slick-index="16" aria-hidden="true" tabindex="-1"><a href="resource-details?slug=we-hub" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" src="" class="img-fluid w-100" style="display: none;"><h5 style="margin-top: 15px;"></h5><p><b></b></p><div class="resouce-tag"><ul><li></li><li></li></ul></div></div></div></a></div><div class="item class-col-4 slick-slide" style="visibility: hidden; width: 309px;" data-slick-index="17" aria-hidden="true" tabindex="-1"><a href="resource-details?slug=we-hub" tabindex="-1"><div class="resource-box"><div class="resource-detail"><img alt="Resources Image" src="" class="img-fluid w-100" style="display: none;"><h5 style="margin-top: 15px;"></h5><p><b></b></p><div class="resouce-tag"><ul><li></li><li></li></ul></div></div></div></a></div></div></div><!----></div></div></div></div></div><div id="gov_scheme" class="row justify-content-center"><div class="col-md-10"><div class="government-scheme section-paading"><div class="scheme-head row align-items-center"><div class="resource-title col-md-7"><h3>Central Schemes (15)</h3></div></div><!----><div class="scheme-body"><div class="list row gy-4"><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=women-enterprise-development" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=women-enterprise-development"> Women Enterprise Development </a></h5><p>North Eastern Development Finance Corporation Limited has introduced the Women Enterprise Development Scheme for women entrepreneurs. As the name suggests, the scheme helps in motivating women entrepreneurship by financially supporting the project. It allows women to elevate their status by participating in the business and development of micro-enterprises.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=stand-up-india-scheme" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=stand-up-india-scheme"> Stand Up India Scheme </a></h5><p>Stand-Up India was launched by Government of India on 5 April 2016 to support entrepreneurship among women and SC & ST communities.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=national-initiative-for-developing-and-harnessing" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=national-initiative-for-developing-and-harnessing"> National Initiative for Developing and Harnessing Innovations (NIDHI) </a></h5><p>National Initiative for Developing and Harnessing Innovations (NIDHI) is an umbrella programme conceived and developed by the Innovation & Entrepreneurship division,Department of Science & Technology, Government of India, for nurturing ideas and innovations (knowledge-based and technology-driven) into successful startups. The programme would work in line with the national priorities and goals and its focus would beto build an innovation driven entrepreneurial ecosystem with an objective of socioeconomic development through wealth and job creation.</p><!----><div class="resouce-tag"><ul><li> Mentoring and Networking </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=start-up-india-scheme" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=start-up-india-scheme"> Start Up India Scheme </a></h5><p>Startup India is an initiative of the Government of India. The campaign was first announced by Indian Prime Minister, Narendra Modi during his speech in 15 August 2015. The action plan of this initiative is focussing on three areas: Simplification and Handholding, Funding Support, and Incentives. It intends to catalyze startup culture and build a strong and inclusive ecosystem for innovation and entrepreneurship in India.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=dual-system-of-training-scheme" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=dual-system-of-training-scheme"> Dual System of Training Scheme </a></h5><p>The scheme was introduced in 2016 with the objective of enabling industries and establishments to partner with the Government and Private ITIs for conducting training programmes towards fulfilling skilled manpower requirements. The DST combines theoretical training from ITIs and practical training from Industry Partners thereby strengthening industry linkages and providing hand-on experience to students on industries latest technologies and techniques. The revised DST Scheme meets the industry’s skilled workforce requirements with greater adaptability towards industry expectations and wider coverage of Industrial Training Institutes (ITIs). After the successful completion of training, trainees are awarded National Trade Certificate (NTC) that gives them an edge with regard to employability.</p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=amended-technology-upgradation-funds-scheme-atufs" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=amended-technology-upgradation-funds-scheme-atufs"> Amended Technology Upgradation Funds Scheme (ATUFS) </a></h5><p>It is a credit linked Capital Investment Subsidy (CIS) scheme during 2016 to 2022 to catalyze capital investments for technology upgradation and modernization of the textile industry.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=training-scheme" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=training-scheme"> Training Scheme </a></h5><p>The objective of this scheme is to provide training to the target group to make them capable and self-dependant through appropriate technical training in the field of traditional and technical occupations and entrepreneurship, Financial assistance is provided in the form of grant through SCA/Institution. The trainee are encouraged to get wage employment and also can obtain loan under NBCFDC general loan schemes to start his/her business after successful completion of the training.
Eligibility:
The applicant should belong to the Backward Classes as notified by Central Government/ State Government from time to time. The annual family income of the applicant should be less than Rs.1,03,000/- p.a. in urban areas and Rs.81,000/- p.a. in rural areas.
Under this scheme the eligible youths of the target group are trained to meet the market demands of various industries/sectors and also for up-grading the skills of traditional Craftsman/Artisans, who have inherited the trade/occupations from the generations. NBCFDC has established training linkages with reputed training institutions in the country and arrange training in specialized trades for eligible candidates through these training institutions.
Expenditure borne by NBCFDC - 100% of the training cost
Duration - Upto Six months</p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=mmsme-champions-scheme" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=mmsme-champions-scheme"> MMSME Champions scheme </a></h5><p>Ministry of MSME has been implementing Credit Linked Capital Subsidy and Technology Upgradation Scheme (CLCS-TUS) for promoting competitiveness amongst Micro, Small and Medium Enterprises (MSMEs) by the way of wastage reduction through Lean Manufacturing, support for Design improvement, building awareness on Intellectual Property Rights, Zero Defect Zero Effect (ZED) Scheme, digitally empowerment of MSME through Digital MSME and to promote & support untapped creativity of individual and to promote adoption of latest technologies in manufacturing as well as knowledge-based innovation MSMEs through Incubation across India.
MSME Champions scheme has been formulated through Standing Finance Committee (SFC) by merging all 6 components of erstwhile Technology Upgradation Scheme (TUS) for a period of 5 years i.e. 2021-22 to 2025-26. It is a Holistic Approach to unify, synergize and converge various schemes and Interventions with a single purpose. The end objective is to pick up clusters and enterprises and modernize their processes, reduce wastages, sharpen business competitiveness and facilitate their National and Global reach and excellence. There are 3 components under the new MSME Champions scheme, the details of which are as below:
1) - MSME-Sustainable (ZED)
2) - MSME-Innovative(for Incubation, IPR, Design)
3) - MSME-Competitive (Lean) </p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=entrepreneurship-and-skill-development-programme" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=entrepreneurship-and-skill-development-programme"> Entrepreneurship and Skill Development Programme </a></h5><p>Entrepreneurship Skill Development Programme (ESDP): It is an entrepreneurship scheme that nurtures the talent of youth by enlightening them on several aspects of industrial or business activity that are required for setting up MSEs.</p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=self-reliant-india-sri-fund-empowering-msmes" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=self-reliant-india-sri-fund-empowering-msmes"> Self Reliant India (SRI) Fund - Empowering MSMEs for Aatmanirbhar Bharat </a></h5><p>Objective:
The Fund aims to provide capital support to the Daughter Funds for onward provision to MSMEs as growth capital, through equity, quasi-equity and debt to achieve the
following:
- Supporting faster growth of MSME businesses, thereby igniting the economy & creating several employment opportunities.
- Supporting enterprises which have the potential to graduate beyond the MSME bracket and become National/International champions.
- Supporting MSMEs which will help make India self-reliant by producing relevant technologies, goods and services.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=credit-guarantee-fund-trust-for-micro-and-small-en" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=credit-guarantee-fund-trust-for-micro-and-small-en"> Credit Guarantee Fund Trust for Micro and Small Enterprises (CGTMSE) </a></h5><p>Credit Guarantee Fund Trust for Micro and Small Enterprises (CGTMSE) is jointly set up by Ministry of Micro, Small & Medium Enterprises (MSME), Government of India and Small Industries Development Bank of India (SIDBI) to catalyse flow of institutional credit to Micro & Small Enterprises (MSEs).</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=scheme-for-venture-capital-fund-for-backward-class" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=scheme-for-venture-capital-fund-for-backward-class"> Scheme for Venture Capital Fund for Backward Classes </a></h5><p>Ministry of Social Justice and Empowerment, Venture Capital Fund for Backward Classes (VCF-BC) was included as a separate scheme under the ongoing scheme of Venture Capital Fund for Scheduled Castes (VCF-SC). Venture Capital Fund launched to promote entrepreneurship in India among the Backward Classes by providing concessional finance to them.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=prime-ministers-employment-generation-programme" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=prime-ministers-employment-generation-programme"> Prime Minister’s Employment Generation Programme (PMEGP) </a></h5><p>Ministry of Micro, Small and Medium Enterprises (MSME) is implementing Prime Minister’s Employment Generation Programme (PMEGP), which is a major credit-linked subsidy programme, aimed at generating self-employment opportunities through establishment of micro-enterprises in the non-farm sector by helping traditional artisans and unemployed youth.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=fund-of-funds-1" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=fund-of-funds-1"> Fund of Funds </a></h5><p>Fund of Funds for Start-ups (FFS) was unveiled by the Hon’ble Prime Minister on the January 16, 2016 in line with the Start-up India Action Plan. . Introduced with a focused objective of supporting development and growth of innovation driven enterprises, FFS facilitates funding needs for Start-ups through participation in capital of SEBI registered Alternative Investment Funds. Fund of Funds does not directly invest into startups but provides capital to SEBI-registered Alternate Investment Funds (AIFs), known as daughter funds, who in turn invest money in growing Indian startups through equity and equity-linked instruments. Thus, there is no direct fund allocation from DPIIT to States/UTs under Startup India initiative.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=vocational-training-programme-for-women" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=vocational-training-programme-for-women"> Vocational Training Programme for Women </a></h5><p>Women’s Vocational Training Programme (WVTP) was designed and launched in 1977 to mainstream women into economic activities. This project on women’s vocational training was formulated with the assistance of Swedish International Development Authority (SIDA) and the International Labour Organization (ILO) in March, 1977. Under this project, vocational trades were identified that were particularly suitable for women and their implementation planned.</p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a></div><!----></div></div><!----><div class="scheme-footers pt-5 mx-2"><a href="javascript::void(0)" class="d-block fw-bold text-uppercase">LOAD MORE CENTRAL SCHEMES <img src="assets/images/arrow.svg" alt="Arrow Image" class="ms-2 arrow_animation"></a></div><!----></div></div></div><div id="sidbi" class="row justify-content-center"><div class="col-md-10"><div class="government-scheme section-paading pt-0"><div class="scheme-head row align-items-center"><div class="resource-title col-md-7"><h3>SIDBI+NABARD (15)</h3></div></div><!----><div class="scheme-body"><div class="list row gy-4"><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=working-capital-cash-credit" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=working-capital-cash-credit"> Working Capital (CASH CREDIT) </a></h5><p>Working Capital (CASH CREDIT)</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=advisory-handholding-services-certified-credit" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=advisory-handholding-services-certified-credit"> Advisory / Handholding Services ( Certified Credit Counsellors ) </a></h5><p>Advisory / Handholding Services ( Certified Credit Counsellors )</p><!----><div class="resouce-tag"><ul><li> Mentoring and Networking </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=sidbi-and-google-partnership-for-assistance-to-mic" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=sidbi-and-google-partnership-for-assistance-to-mic"> SIDBI and Google Partnership for Assistance to Micro Enterprises (SANGAM) </a></h5><p>SIDBI and Google Partnership for Assistance to Micro Enterprises (SANGAM)</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=a-scheme-for-promotion-of-innovation-rural-indust" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=a-scheme-for-promotion-of-innovation-rural-indust"> A Scheme for Promotion of Innovation, Rural Industry & Entrepreneurship (ASPIRE) </a></h5><p>A Scheme for Promotion of Innovation, Rural Industry & Entrepreneurship (ASPIRE)</p><!----><div class="resouce-tag"><ul><li> Mentoring and Networking </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=fund-of-funds" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=fund-of-funds"> Fund of Funds </a></h5><p>Fund of Funds</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=secured-business-loans-for-msmes" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=secured-business-loans-for-msmes"> Secured Business Loans for MSMEs </a></h5><p>Secured Business Loans for MSMEs</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=top-up-loan-for-immediate-purposes-tulip" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=top-up-loan-for-immediate-purposes-tulip"> Top Up Loan For Immediate Purposes (Tulip) </a></h5><p>Top Up Loan For Immediate Purposes (Tulip)</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=micro-enterprises-promotion-programmes" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=micro-enterprises-promotion-programmes"> Micro Enterprises Promotion Programmes </a></h5><p>Micro Enterprises Promotion Programmes</p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=entrepreneurs-world-smallbin-smallbin" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=entrepreneurs-world-smallbin-smallbin"> Entrepreneur’s World (SmallB.in)
SmallB.in – A knowledge Hub for MSMEs </a></h5><p>Entrepreneur’s World (SmallB.in)
SmallB.in – A knowledge Hub for MSMEs</p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=swarozgaar-credit-card" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=swarozgaar-credit-card"> Swarozgaar Credit Card </a></h5><p>Swarozgaar Credit Card</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=comprehensive-handlooms-development-scheme-chds" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=comprehensive-handlooms-development-scheme-chds"> Comprehensive Handlooms Development Scheme (CHDS) - National Handloom Development Programme </a></h5><p>Comprehensive Handlooms Development Scheme (CHDS) - National Handloom Development Programme</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=tifac-sidbi-technology-innovation-programme-srija" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=tifac-sidbi-technology-innovation-programme-srija"> TIFAC-SIDBI Technology Innovation Programme (Srijan) </a></h5><p>TIFAC-SIDBI Technology Innovation Programme (Srijan)</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=small-industries-management-assistants-programm" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=small-industries-management-assistants-programm"> Small Industries Management Assistants’ Programme(SIMAP) </a></h5><p>Small Industries Management Assistants’ Programme(SIMAP)</p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=agri-clinics-and-agri-business-centres" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=agri-clinics-and-agri-business-centres"> Agri-Clinics and Agri-Business Centres </a></h5><p>Agri-Clinics and Agri-Business Centres</p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=interest-subvention-scheme" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=interest-subvention-scheme"> Interest Subvention Scheme </a></h5><p>Interest Subvention Scheme</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><!----></div></div><!----><div class="scheme-footers pt-5 mx-2"><a href="javascript::void(0)" class="d-block fw-bold text-uppercase">LOAD MORE SIDBI+NABARD SCHEMES <img src="assets/images/arrow.svg" alt="Arrow Image" class="ms-2 arrow_animation"></a></div><!----></div></div></div><div id="state_scheme" class="row justify-content-center"><div class="col-md-10"><div class="government-scheme section-paading pt-0"><div class="scheme-head row align-items-center"><div class="resource-title col-md-7"><h3>STATE SCHEMES (15)</h3></div></div><!----><div class="scheme-body"><div class="list row gy-4"><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=general-scheme" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=general-scheme"> General Scheme </a></h5><p>Purpose:
- Loan is available for acquiring fixed and/or current assets for setting up new manufacturing/service unit/ for expanding/ modernising/ diversifying extant manufacturing/ service unit.
- Loan is also available for professional practice/consultancy venture/tourism-related activities/rendering medical services/setting up restaurantsIinfrastructure and information technology projects/construction projects/transport sector/ infrastructure projects etc.
Eligibility:
- The borrowing unit may be in MCR-M(Micro enterprise-Manufacturing)/MCR-S(Micro enterprise-Service)/SE-M(Small enterprise-Manufacturing)/SE-S(Small enterprise-Service)/ME-M(Medium enterprise-Manufacturing)/ME-S(Medium enterprise-Service)
- The concern may be proprietary/partnership/ private/public limited co./cooperative society/ limited liability partnership
Loan Limit:
- For proprietoryIpartnership concern : Rs. 4 crore (may rise upto Rs. 8 crore). - For others : Rs. 10 crore (may rise upto Rs. 20 crore, on case to case basis & subject to availability of clearance from S.I.D.B.I.)
Project cost: - No ceiling for Non S.M.E. Fund.
- Rs. 20 crore for S.M.E. Fund.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=scheme-for-assistance-for-start-upsinnovation" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=scheme-for-assistance-for-start-upsinnovation"> Scheme for Assistance for Start Ups/Innovation </a></h5><p>Quantum of Assistance
1. Sustenence allowance of Rs 20,000 per month.
2. Seed support of upto Rs 30 lakhs
3. Pre Series A funding
4. Interest subsidy
5. Assistance to enrol and participate in acceleration programs
6. Assistance for skill development</p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=composite-loan-scheme-cls" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=composite-loan-scheme-cls"> Composite Loan Scheme (CLS) </a></h5><p>Purpose: Loan available for acquiring fixed assets and/ or working capital.
Eligibility:
- May be proprietary/ partnership unit.
- Loan available to tiny sector.
Loan Limit:
- Rs. 1.50 lakh (Max.) (only under BSKP*)
- Rs. 0.50 lakh (Max.) in other cases.
Project cost: Rs. 2.00 lakh (Max.) (Only under BSKP*)
*Bangla Swanirbhar Karmasansthan Prakalpa</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=scheme-for-working-capital-term-loan-wctl" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=scheme-for-working-capital-term-loan-wctl"> Scheme for Working Capital Term Loan (WCTL) </a></h5><p>Purpose: For Financing Working Capital.
Eligibility: Small & Medium Enterprises. Existing borrowers of the Corporation having excellent track records are primarily
eligible. However, existing good units not assisted by us earlier may also be considered on merit.
Loan limit: Need based Working Capital Term Loan requirement less margin of 25%.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=single-window-scheme-sws" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=single-window-scheme-sws"> Single Window Scheme (SWS) </a></h5><p>Purpose: Loan available for acquiring both fixed assets and as working capital for acquiring current assets.
Sector: Loan available to tiny sector, SSI and to service sector.
Eligibility: May be proprietary/partnership/body corporate/cooperative society.
Loan Limit: Rs. 1.34 crore (Max.) with a max. DER of 2:1. (including term and working capital loan).</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=idea2poc-proof-of-concept-grant" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=idea2poc-proof-of-concept-grant"> Idea2poc (Proof of Concept) Grant </a></h5><p>‘Idea2POC’ initiative is part of India’s first multi-sector Startup Policy launched by the Government of Karnataka in November, 2015. The objective is to encourage innovators who may need early-stage funding to stimulate commercialization of their inventions and to help in validating Proof of Concept. The scheme enables technology innovators and entrepreneurs to pursue a promising technology idea and validate proof
of concept (PoC). Idea2POC is given in the form of Grant-in-aid but limited to a one time grant of up to Rs. 50 lakhs. Funding shall be released in tranches as per the Project milestones agreed in the MoA between Startup and KBITS.
Support under the scheme:
o The funding support offered by the Department under this scheme is in the form of grant-in-aid.
o The funding level is up to Rs. 50 lakhs.
o The fund disbursement is milestone based and is released in installments over a maximum period of 2 years. Proposed project duration cannot exceed 2 years.
o Scheme Implementation Partner will be identified for non-BT startups herein after referred to as Implementation Partner (IP)
o Scheme Implementation Partner will be Bangalore Bio Innovation Centre for BT startups herein after referred to as Implementation Partner (IP)
o MOU will be signed between KBITS and the Implementation Partner
Eligibility Criteria for Start-ups and Individual Applicants
o The Applicant shall be a Startup as per definition in Startup Policy.
o The Applicant need not necessarily be incubated for being eligible for the Idea2POC grant assistance.
o For BT startups: The startup must own functional in-house R&D facilities that are adequate to implement the project. If not, then on selection it shall get incubated at an incubator (in biotech area like BBC/CCAMP/IISC) with functional and adequate laboratory facilities.
o The startup that has already received support under this scheme once is not eligible for receiving funding again under this scheme.</p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=marketing-assistance-publicity" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=marketing-assistance-publicity"> Marketing Assistance & Publicity </a></h5><p>Marketing assistance is provided to Cooperatives/ SHGs/ individual artisans through participation in exhibitions organized inside and outside the state. Assistance is also provided for participation in GIFT Fair/ Organization of Buyer-Seller Meet/Fairs/Exhibitions being organized by other agencies. Besides, marketing assistance is also provided through sales by Utkalika branches located inside and outside the State.
Benefits provided under this scheme are:
Stalls are provided free of cost
Travel Expenses as per actual are provided
DA @ Rs.200/- per day inside the State and @ Rs.300/- per day outside the State for the period of exhibition are provided
Transportation Charges from Rs.600/- to Rs.1200/- provided
Assistance for Participation in International Fairs
Stall Rent for stalls up to 9 Sq. Metres (Maximum Rs.1.00 lakh)
100% reimbursement of Travel Expenses (Air Fare in Economy Class) (Maximum Rs.75,000/)
50% of the Fright Charges (Maximum Rs.25,000/-)
Reimbursement of 50% of Lodging & Boarding Charges (Maximum Rs.5000/- per day for exhibition period)</p><!----><div class="resouce-tag"><ul><li> Market Linkages </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=seed-money-scheme-sms" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=seed-money-scheme-sms"> Seed Money Scheme (SMS) </a></h5><p>The objective of the scheme is to encourage unemployed person to take up self-employment ventures through industry, service and business, by providing soft loans to meet part of the margin money to avail institutional finance.
Seed Money assistance at 15 per cent of the project cost approved by financial institutions is offered. In case of projects costing up to Rs. 10 lakhs, the quantum of assistance ranges upto 15 per cent for General category, 20% for SC/ST and OBC/NT/VT/Handicapped upto 20 per cent.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=chief-minister-scstobcwomenyoung-entrepreneur" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=chief-minister-scstobcwomenyoung-entrepreneur"> Chief Minister SC/ST/OBC/Women/Young Entrepreneur Scheme </a></h5><p>The scheme provides 50 percent of the total project cost (per unit) to the young girls of the concerned field, up to a maximum of Rs 5,00,000 (five lakhs) interest free loan to be repaid in 7 years (84 equal installments)
50% of the sanctioned amount, up to a maximum of Rs 5,00,000 (five lakhs) will be given as a grant/subsidy under the special incentive scheme.
It also provides Rs 25,000 per unit for training of beneficiaries after selection
Under this scheme, benefit will be payable only for the establishment of new industries. The benefit of Bihar Industrial Investment Promotion Policy 2016 will also be payable to these units.</p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=scheme-for-small-road-transport-operators-srto" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=scheme-for-small-road-transport-operators-srto"> Scheme for Small Road Transport Operators (SRTO) </a></h5><p>Purpose:
For acquiring new passenger/commercial vehicles and for meeting initial taxes insurance etc.
Eligibility:
- Loan available to service sector.
- May be proprietary/partnership/body corporate/cooperative society.
Loan limit: 75% of P.C. (Max.)</p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=new-entrepreneur-cum-enterprise-development-scheme" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=new-entrepreneur-cum-enterprise-development-scheme"> New Entrepreneur cum Enterprise Development Scheme (NEEDS) </a></h5><p>The Government of Tamil Nadu have formulated a new Scheme called NEW ENTREPRENEUR CUM ENTERPRISE DEVELOPMENT SCHEME (NEEDS). It has been specially devised and specifically implemented for promoting new (and not existing) first entrepreneurial projects of first generation entrepreneurs. First Generation Individual Entrepreneur (Proprietorship) or Group of entrepreneurs (Partnership), provided that all members of the partnership should be First Generation Entrepreneurs to be eligible to apply for this scheme. The scheme offers a 25% subsidy of the eligible components of the project cost subject to maximum amount of Rs.25.00 lakhs. In this, the building cost should not exceed 25% of project Cost and the equipments value should exceed 25% of the project cost for service entity. The subsidy will be released phase wise, and only post completion of the 1 month mandatory EDP training provided.
First Generation Entrepreneurs who are unemployed, educated youth would be given entrepreneurial training in conceiving, planning, initiating and launching of a Manufacturing or Service enterprise successfully. Key details include:
1 Aspirants must be of age between 21 -35 in general and for special (Women/BC/MBC/SC/ST/Ex-servicemen/Transgenders/Differently abled), age relaxation upto 45 years
2. Degree / Diploma / ITI / Vocational Training
3. Manufacturing or Service projects with Project cost from Rs.10.00 lakhs upto Rs.5.00 crore
4. Promoter’s contribution 10% for General and 5% for Special Category
5. Loan assistance from TIIC / Commercial Banks / TAICO Banks
6. Individual Based Capital Subsidy @ 25% of the Project cost (Maximum Rs.75.00 lakhs)
7. 3% Interest subvention through-out the entire repayment period
8. Should be resident of Tamil Nadu for last 3 years</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=start-in-up" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=start-in-up"> Start in UP </a></h5><p>The Uttar Pradesh Start-up Policy gives thrust to “START IN UP”, to nurture startup culture using INFUSE model (INcubators – FUnd of Funds – Startup Entrepreneurs). Various incentives shall be provided by the Government to Incubators, Startups and Investors funding UP based startups.
Startup Incentives:
1. Sustenance allowance for startups
2. Seed Capital/Marketing Assistance
Additional 50% shall be given to startups founded/co-founded by women/divyangjan/ transgender or startups having 50% or more women/ divyangjan/Transgender employees or startups having registered offices/operations in Purvanchal/ Bundelkhand regions for both Sustenance Allowance and Seed Capital/Marketing Assistance, or Startups founded/co-founded by persons from Economically Weaker Section (EWS).
Incentives for incubators:
1. Capital grant
2. Operational expenditure
3. Acceleration programs</p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=market-development-support" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=market-development-support"> Market Development Support </a></h5><p>Assistance to MSME and Incubation units for participation in international trade fairs within and outside India at the rate of 50% of expenditure</p><!----><div class="resouce-tag"><ul><li> Market Linkages </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=equipment-refinance-scheme-ers" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=equipment-refinance-scheme-ers"> Equipment Refinance Scheme (ERS) </a></h5><p>Purpose:
- Acquisition of machinery/equipment, including DG set, indigenous/imported, which are not related to any specific project.
- Additional need based civil work at the existing location, miscelleneous fixed assets, additional MWC (not exceeding 25% of the PC) may also be considered.
Eligibility: Units should:
- be in operation for at least the last 4 years.
- have declared dividend has earned profit in the last two financial years.
- not have any overdue with any institution,
- should be the actual user of the proposed equipment.
Loan limit:
- For proprietory/partnership concern : Rs. 4 crore (mayrise upto Rs. 8 crore).
- For others : Rs. 10 crore (may rise upto Rs. 20 crore, on case to case basis & subject to availability of clearance from S.I.D.B.I.)</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=co-working-spaces-incubators-accelerators-subsid" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=co-working-spaces-incubators-accelerators-subsid"> Co-Working Spaces/ Incubators/ Accelerators Subsidy Scheme </a></h5><p>1. Start-ups will be reimbursed a fixed amount for the seats occupied by them at co-working spaces/ incubators/ accelerators listed by the SPC. The benefits at the co-working spaces can be availed maximum for a period of two years per startup, at incubators can be availed maximum for a period of 1 year per startup and at accelerators will be for a period of 3 months per startup.
2. The startup will be reimbursed 50% per seat cost offered by the co-working spaces listed by
the SPC or a maximum benefit of INR 3000 per seat and can claim this benefit for a maximum cap of 8 seats only.
3. The startup will be reimbursed 50% per seat cost offered by the incubators listed by the SPC or a maximum benefit of INR 5000 per seat and can claim this benefit for a maximum cap of 8 seats only.
4. The startup will be reimbursed 50% per seat cost offered by accelerators listed by the SPC or a maximum benefit of INR 6000 per seat and can claim this benefit for a maximum cap of 8 seats only.
5. The reimbursement in this scheme can be claimed on any of the plans offered by the coworking spaces/ incubators/ accelerators listed by the SPC.
6. A total of 100 seats in co-working, 50 seats each in incubator and accelerator will be subsidized
under this scheme each year.
3.7. For certain deserving startups determined through the internal guidelines of the SPC, the SPC
may choose to reimburse up to 100% of the amount paid to co-working/incubator/accelerator
by the startups.
3.8. Under no circumstance shall the benefits under this scheme be considered an entitlement. The
SPC shall reserve the sole right to accept or reject applications.</p><!----><div class="resouce-tag"><ul><li> Mentoring and Networking </li><!----><!----></ul></div></div></div></a></div><!----></div></div><!----><div class="scheme-footers pt-5 mx-2"><a href="javascript::void(0)" class="d-block fw-bold text-uppercase">LOAD MORE STATE SCHEMES SCHEMES <img src="assets/images/arrow.svg" alt="Arrow Image" class="ms-2 arrow_animation"></a></div><!----></div></div></div><div id="knowledgebank" class="row justify-content-center"><div class="col-md-10"><div class="government-scheme section-paading pt-0"><div class="scheme-head row align-items-center"><div class="resource-title col-md-7"><h3>Knowledge Bank (15)</h3></div></div><!----><div class="scheme-body"><div class="list row gy-4"><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=the-glorious-lamp-of-heaven-the-sun" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><a href="resource-details?slug=the-glorious-lamp-of-heaven-the-sun"><img alt="Resources Image" class="img-fluid w-100" src="https://nitiprod.s3.ap-south-1.amazonaws.com/uploads/blog/admin/dNiKB32eMalrwNBaTzuYfU6FMgoMdIoQvX2xHoF3.jpg"></a><!----><h5><a href="resource-details?slug=the-glorious-lamp-of-heaven-the-sun"> The glorious lamp of heaven, The Sun. </a></h5><!----><div class="resouce-tag"><ul><li> Research & Innovation </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=upcycle-for-better-future" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><a href="resource-details?slug=upcycle-for-better-future"><img alt="Resources Image" class="img-fluid w-100" src="https://nitiprod.s3.ap-south-1.amazonaws.com/uploads/blog/admin/G8tvWM6zD6ensuimc0xUxtsOKkKb5eimpbgeCzPf.png"></a><!----><h5><a href="resource-details?slug=upcycle-for-better-future"> Upcycle for better future </a></h5><!----><div class="resouce-tag"><ul><li> Research & Innovation </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=women-entrepreneurs-dare-to-dream" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=women-entrepreneurs-dare-to-dream"> Women Entrepreneurs: Dare to Dream </a></h5><p>Now is the time when we finally break the stereotypes, and close the gender gap that exists between female and male entrepreneurs. By relying upon the ideas of women entrepreneurs and investing in them, the Indian startup ecosystem can fuel the economic g</p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=blog-1" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=blog-1"> blog 1 </a></h5><p>short descript</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=google-my-business-listing-training-program" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=google-my-business-listing-training-program"> Google My Business Listing Training Program </a></h5><p>· Understand how Google My Business works
· Learn the steps to create the Google My Business Listing Page
· Create a basic website of the business using Google My Business
· Get the business pinned on Google Maps</p><!----><div class="resouce-tag"><ul><li> Market Linkages </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=business-funding-consultation-existing-business" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=business-funding-consultation-existing-business"> Business Funding Consultation (Existing Business) </a></h5><p>Let us help you to know the best funding option for your business with various Banks, NBFCs and MFIs.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=surge-founder-starter-pack-company-building-essen" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=surge-founder-starter-pack-company-building-essen"> Surge Founder Starter Pack: Company Building Essentials for Early Stage Startups </a></h5><p>This pack gives an overview of the key fundamentals founders should think about, even before Day One, including your vision, business model, product and performance, as well as your pitch</p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=payment-tracker" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=payment-tracker"> Payment tracker </a></h5><p>Track daily transactions of your business such as income, account balances, monthly expenses with a single mobile app. </p><!----><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=social-enterprises-series-1-structure-processe" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=social-enterprises-series-1-structure-processe"> Social Enterprises Series #1: Structure & Processes </a></h5><p>In the first session of the interactive series on social enterprises WEP Partner, CAxpert introduce the structures and process relating to Social Enterprises in India.</p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=social-enterprises-series-2-accounting-complia" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=social-enterprises-series-2-accounting-complia"> Social Enterprises Series #2: Accounting & Compliances </a></h5><p>In the second session of the interactive series on social enterprises WEP Partner, CAxpert tells you how you can manage accounting and compliance for social enterprises.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><li><span placement="right"> +1 </span></li><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=social-enterprise-series-3-navigating-the-tax-we" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=social-enterprise-series-3-navigating-the-tax-we"> Social Enterprise Series #3: Navigating the Tax Web for Social Enterprises </a></h5><p>In the third and final session of the interactive series on social enterprises WEP Partner, CAxpert tells you how you can navigate the tax web as a social enterprise.</p><!----><div class="resouce-tag"><ul><li> Funding </li><!----><li><span placement="right"> +1 </span></li><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=ideation" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=ideation"> Ideation </a></h5><p>Short Description</p><!----><div class="resouce-tag"><ul><li> Incubation and Acceleration </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=gem-invoice-generation" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=gem-invoice-generation"> GeM: Invoice Generation </a></h5><p>Order status</p><!----><div class="resouce-tag"><ul><li> Market Linkages </li><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=hernow-report-on-women-entrepreneurs-resilience" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=hernow-report-on-women-entrepreneurs-resilience"> Her&Now Report on Women Entrepreneurs' Resilience in Times of Covid-19 </a></h5><p>The report sheds light on the operational disruptions which women entrepreneurs experienced throughout the pandemic and discuss in detail the measures they took to build back better.</p><!----><div class="resouce-tag"><ul><!----><!----></ul></div></div></div></a></div><div class="col-lg-4 col-sm-6 scheme-box"><a href="resource-details?slug=joining-the-e-bandwagon-by-caxpert-1" class="w-100"><div class="resource-box"><div class="resource-detail"><div class="resource-scheme row"><div class="col-12"><div class="scheme-tab d-flex d-none"><img src="assets/images/india.png" alt="Indian Flag Logo Image" class="img-fluid img-circle me-2"><span> GOV. SCHEME </span></div></div></div><!----><h5><a href="resource-details?slug=joining-the-e-bandwagon-by-caxpert-1"> Joining the E-Bandwagon by CAxpert </a></h5><p>Video of CAxpert's Interactive Series on Joining the E-Bandwagon </p><!----><div class="resouce-tag"><ul><!----><!----></ul></div></div></div></a></div><!----></div></div><!----><div class="scheme-footers pt-5 mx-2"><a href="javascript::void(0)" class="d-block fw-bold text-uppercase">LOAD MORE KNOWLEDGE BANK SCHEMES <img src="assets/images/arrow.svg" alt="Arrow Image" class="ms-2 arrow_animation"></a></div><!----></div></div></div><!----><!----></div></section><section id="up_events" class="upcoming-events section-paading access-finance-section"><div class="container"><div class="row"><div class="col-md-12"><div class="upcoming-event-head pb-4"><div class="row gy-2"><div class="col-md-6 col-sm-7"><div class="resource-title"><h3>Upcoming Events(0)</h3></div></div><div class="col-md-6 col-sm-5 text-sm-end"><div class="up-event-link"><a href="events" class="d-block fw-bold text-uppercase">Browse other events <img src="assets/images/arrow.svg" alt="Arrow Image" class="ms-2 arrow_animation"></a></div></div></div></div><section class="no-data-found section-paading"><div class="container"><div class="row justify-content-center"><div class="col-md-6"><div class="no-data text-center"><h2 class="my-4">We're working to bring you the latest information. Stay Tuned!</h2><p>Seems like what you’re looking for does not exist or has been removed. We suggest you to search using different keywords or explore our resources.</p><a href="events" class="d-block fw-bold">EXPLORE All <img src="assets/images/arrow.svg" alt="Arrow Image" class="ms-2 arrow_animation"></a></div></div></div></div></section><!----><!----></div></div></div></section><section id="videos_" class="video-wrapper section-paading access-finance-section"><div class="container"><div class="row"><div class="col-md-12"><div class="video-head pb-4"><div class="row gy-4"><div class="col-md-6 col-sm-7"><div class="resource-title"><h3>Video (3)</h3></div></div><div class="col-md-6 col-sm-5 text-sm-end"><div class="up-event-link"><a routerlink="/video" class="d-block fw-bold text-uppercase" href="/video">BROWSE OTHER VIDEOS <img src="assets/images/arrow.svg" alt="Arrow Image" class="ms-2 arrow_animation"></a></div></div></div></div><!----><div class="video-body"><div class="video-list row gy-3"><div class="col-lg-4 col-sm-6"><div class="item"><div class="card"><a data-toggle="modal" data-target="#video_popup_resource" href="https://www.youtube.com/watch?v=rwzEjWIsUPg"><img alt="Video Thumbnail" class="card-img-top" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/videos/admin/thumb/QJeuFTR45g1aUHEEysJHnK5bh6Elb5cpzRxKRmp0.jpg"></a><div class="card-body"><h5 class="card-title">Anna Roy Of Niti Aayog | Women Entrepreneurship In India | Exclusive Interview | CNBC Awaaz</h5><div class="videotag"><ul><li> Business Validation </li><!----></ul></div></div></div></div></div><div class="col-lg-4 col-sm-6"><div class="item"><div class="card"><a data-toggle="modal" data-target="#video_popup_resource" href="https://www.youtube.com/watch?v=QTqnTfLQhps"><img alt="Video Thumbnail" class="card-img-top" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/videos/admin/thumb/WcO7eCJQEhqqjbPZzGZix57ixYAh2LiPRid4lZSs.jpg"></a><div class="card-body"><h5 class="card-title">Women Entrepreneurship Platform 2.0</h5><div class="videotag"><ul><li> Product & Technology </li><!----></ul></div></div></div></div></div><div class="col-lg-4 col-sm-6"><div class="item"><div class="card"><a data-toggle="modal" data-target="#video_popup_resource" href="https://youtu.be/OEnri51Gjf4"><img alt="Video Thumbnail" class="card-img-top" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/webinaminutes/admin/thumb/hqdefault.webp"></a><div class="card-body"><h5 class="card-title">Naari Shakti - Kailash Kher | Celebrating Women Entrepreneurs Across India</h5><div class="videotag"><ul><li> </li><!----></ul></div></div></div></div></div><!----></div></div><!----><div id="myModal" class="modal"><div class="modal-dialog"><div class="modal-content"><div class="modal-body"><video src=""></video></div><div class="modal-footer"><button type="button" data-dismiss="modal" class="btn btn-danger"> Close </button></div></div></div></div><div id="video_popup_resource" data-bs-keyboard="false" data-bs-backdrop="static" tabindex="-1" aria-labelledby="exampleModalLabelResource" aria-hidden="true" class="modal fade videomodal"><div class="modal-dialog modal-dialog-centered modal-lg"><div class="modal-content"><div class="modal-body p-2"><button type="button" data-bs-dismiss="modal" aria-label="Close" class="btn-close text-white videobtn"><i aria-hidden="true" class="fas fa-close"></i></button><iframe frameborder="0" allowfullscreen="" style="height: 450px; width: 100%;"></iframe></div></div></div></div></div></div></div></section><section class="disscuss-wrapper section-paading access-finance-section"><div class="container"><div class="row gy-5 align-items-center"><div class="col-md-7"><div class="discuss-head"><div class="resource-title"><h2 style="font-weight: 600;"> Take a look at what others are discussing about funding in 2022 </h2></div><div class="discuss-link pt-md-5 pt-3"><!----><a routerlink="/community-list" class="d-block fw-bold text-uppercase" href="/community-list">Join the discussion<img src="assets/images/arrow.svg" alt="Arrow Image" class="ms-2 arrow_animation"></a><!----></div></div></div><div class="col-md-5"><div class="disscuss-img text-md-center"><img src="assets/images/disscuss.png" alt="Disscuss Image" class="img-fluid"></div></div></div></div></section><section id="partners_" class="partners-section-scheme section-paading access-finance-section"><div class="container"><div class="row partner-heading"><div class="col-md-12"><div class="video-head pb-4"><div class="row"><div class="col-lg-9 col-md-8 col-sm-7"><div class="resource-title"><h3>Partners (10)</h3></div></div><div class="col-lg-3 col-md-4 col-sm-5"><div class="slider-navs"><button aria-label="Previous" type="button" class="slick-prev slick-arrow pp4 slick-disabled" aria-disabled="true" style=""><img src="assets/images/left-arrow.svg" alt="" class="left_arrow"></button><button aria-label="Next" type="button" class="slick-next slick-arrow nn4" aria-disabled="false" style=""><img src="assets/images/arrow.svg" alt="Arrow Image" class="arrow_animation"></button></div></div></div></div></div></div><div class="access-partner-slides slider slick-initialized slick-slider"><div class="slick-list draggable"><div class="slick-track" style="opacity: 1; width: 4470px; transform: translate3d(0px, 0px, 0px);"><div class="item slick-slide slick-current slick-active" data-slick-index="0" aria-hidden="false" tabindex="0" style="width: 447px;"><a href="javascript:void(0);" class="d-flex h-100 me-3" tabindex="0"><div class="partner-box-list border-1"><div class="row gy-3"><div class="col-lg-2 col-md-3"><div class="partner-icon"><img alt="Partner Image" class="img-fluid" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/partner/admin/15934212237cc1d4ad1e29b7748107e002fd329729 (2).png"><!----><!----></div></div><div class="col-lg-10 col-md-9"><div class="partner-details"><h4><a href="javascript:void(0);" tabindex="0">CAxpert</a></h4><a href="" target="_blank" tabindex="0">https://www.caxpert.com<i class="ms-2 fa-solid fa-arrow-up-right-from-square"></i></a><hr><p><b>Neha Goenka</b></p><span><i class="fa-solid fa-phone me-2"></i><a href="" tabindex="0">+9*******16</a></span><span class="text-muted px-2"> | </span><span><i class="fa-solid fa-envelope me-2"></i><a href="" tabindex="0">n****ka@c******.**m</a></span></div><div class="resouce-tag"><ul><li> Financial Services </li><!----><!----></ul></div></div></div></div></a></div><div class="item slick-slide slick-active" data-slick-index="1" aria-hidden="false" tabindex="0" style="width: 447px;"><a href="javascript:void(0);" class="d-flex h-100 me-3" tabindex="0"><div class="partner-box-list border-1"><div class="row gy-3"><div class="col-lg-2 col-md-3"><div class="partner-icon"><img alt="Partner Image" class="img-fluid" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/partner/admin/Her+Circle+-+Logo.png"><!----><!----></div></div><div class="col-lg-10 col-md-9"><div class="partner-details"><h4><a href="javascript:void(0);" tabindex="0">Her Circle</a></h4><a href="" target="_blank" tabindex="0">http://www.hercircle.in<i class="ms-2 fa-solid fa-arrow-up-right-from-square"></i></a><hr><p><b>Iona Chatterjee</b></p><span><i class="fa-solid fa-phone me-2"></i><a href="" tabindex="0">+9*******27</a></span><span class="text-muted px-2"> | </span><span><i class="fa-solid fa-envelope me-2"></i><a href="" tabindex="0">i************ee@r**.**m</a></span></div><div class="resouce-tag"><ul><li> Social Media </li><!----><!----></ul></div></div></div></div></a></div><div class="item slick-slide" data-slick-index="2" aria-hidden="true" tabindex="0" style="width: 447px;"><a href="javascript:void(0);" class="d-flex h-100 me-3" tabindex="-1"><div class="partner-box-list border-1"><div class="row gy-3"><div class="col-lg-2 col-md-3"><div class="partner-icon"><img alt="Partner Image" class="img-fluid" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/partner/admin/partner-sidbi.png"><!----><!----></div></div><div class="col-lg-10 col-md-9"><div class="partner-details"><h4><a href="javascript:void(0);" tabindex="-1">SIDBI</a></h4><a href="" target="_blank" tabindex="-1">https://sidbi.in/index.html<i class="ms-2 fa-solid fa-arrow-up-right-from-square"></i></a><hr><p><b></b></p><span><i class="fa-solid fa-phone me-2"></i><a href="" tabindex="-1">+9*******56</a></span><span class="text-muted px-2"> | </span><span><i class="fa-solid fa-envelope me-2"></i><a href="" tabindex="-1">m***sh@s****.*n</a></span></div><div class="resouce-tag"><ul><li> </li><!----><!----></ul></div></div></div></div></a></div><div class="item slick-slide" data-slick-index="3" aria-hidden="true" tabindex="-1" style="width: 447px;"><a href="javascript:void(0);" class="d-flex h-100 me-3" tabindex="-1"><div class="partner-box-list border-1"><div class="row gy-3"><div class="col-lg-2 col-md-3"><div class="partner-icon"><img alt="Partner Image" class="img-fluid" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/partner/admin/partner20122023001.png"><!----><!----></div></div><div class="col-lg-10 col-md-9"><div class="partner-details"><h4><a href="javascript:void(0);" tabindex="-1">Bill & Melinda Gates Foundation</a></h4><a href="" target="_blank" tabindex="-1">https://www.gatesfoundation.org/<i class="ms-2 fa-solid fa-arrow-up-right-from-square"></i></a><hr><p><b>Bill & Melinda Gates Foundation</b></p><span><i class="fa-solid fa-phone me-2"></i><a href="" tabindex="-1">+9***********66</a></span><span class="text-muted px-2"> | </span><span><i class="fa-solid fa-envelope me-2"></i><a href="" tabindex="-1">S**********la@g**************.**g</a></span></div><div class="resouce-tag"><ul><li> Financial Services </li><!----><!----></ul></div></div></div></div></a></div><div class="item slick-slide" data-slick-index="4" aria-hidden="true" tabindex="-1" style="width: 447px;"><a href="javascript:void(0);" class="d-flex h-100 me-3" tabindex="-1"><div class="partner-box-list border-1"><div class="row gy-3"><div class="col-lg-2 col-md-3"><div class="partner-icon"><img alt="Partner Image" class="img-fluid" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/partner/admin/partner20122023017.png"><!----><!----></div></div><div class="col-lg-10 col-md-9"><div class="partner-details"><h4><a href="javascript:void(0);" tabindex="-1">DPIIT - Start Up India</a></h4><a href="" target="_blank" tabindex="-1">https://www.startupindia.gov.in/content/sih/en/startup-scheme.html<i class="ms-2 fa-solid fa-arrow-up-right-from-square"></i></a><hr><p><b>DPIIT - Start Up India</b></p><span><i class="fa-solid fa-phone me-2"></i><a href="" tabindex="-1">+9*******44</a></span><span class="text-muted px-2"> | </span><span><i class="fa-solid fa-envelope me-2"></i><a href="" tabindex="-1">c*********in@i**********.**g.in</a></span></div><div class="resouce-tag"><ul><li> Financial Services </li><!----><!----></ul></div></div></div></div></a></div><div class="item slick-slide" data-slick-index="5" aria-hidden="true" tabindex="-1" style="width: 447px;"><a href="javascript:void(0);" class="d-flex h-100 me-3" tabindex="-1"><div class="partner-box-list border-1"><div class="row gy-3"><div class="col-lg-2 col-md-3"><div class="partner-icon"><img alt="Partner Image" class="img-fluid" src="https://nitiprod.s3.ap-south-1.amazonaws.com/uploads/partner/logo/MA4fWFlM1sN6Q68nzPVOgaDe4Ie9SF2yMzFO4aLs.png"><!----><!----></div></div><div class="col-lg-10 col-md-9"><div class="partner-details"><h4><a href="javascript:void(0);" tabindex="-1">UNICEF YuWaah</a></h4><a href="" target="_blank" tabindex="-1">https://www.yuwaah.org/<i class="ms-2 fa-solid fa-arrow-up-right-from-square"></i></a><hr><p><b>Debanjana Paul</b></p><span><i class="fa-solid fa-phone me-2"></i><a href="" tabindex="-1">+9*******94</a></span><span class="text-muted px-2"> | </span><span><i class="fa-solid fa-envelope me-2"></i><a href="" tabindex="-1">d**ul@u*****.**g</a></span></div><div class="resouce-tag"><ul><li> Advisory and Support </li><!----><!----></ul></div></div></div></div></a></div><div class="item slick-slide" data-slick-index="6" aria-hidden="true" tabindex="-1" style="width: 447px;"><a href="javascript:void(0);" class="d-flex h-100 me-3" tabindex="-1"><div class="partner-box-list border-1"><div class="row gy-3"><div class="col-lg-2 col-md-3"><div class="partner-icon"><img alt="Partner Image" class="img-fluid" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/partner/admin/partner20122023007.jpg"><!----><!----></div></div><div class="col-lg-10 col-md-9"><div class="partner-details"><h4><a href="javascript:void(0);" tabindex="-1">Sattva Consulting</a></h4><a href="" target="_blank" tabindex="-1">https://www.sattva.co.in/<i class="ms-2 fa-solid fa-arrow-up-right-from-square"></i></a><hr><p><b>Sattva Consulting</b></p><span><i class="fa-solid fa-phone me-2"></i><a href="" tabindex="-1">+9*******45</a></span><span class="text-muted px-2"> | </span><span><i class="fa-solid fa-envelope me-2"></i><a href="" tabindex="-1">a**ti@s*****.*o.in</a></span></div><div class="resouce-tag"><ul><li> Entrepreneurship Development </li><!----><!----></ul></div></div></div></div></a></div><div class="item slick-slide" data-slick-index="7" aria-hidden="true" tabindex="-1" style="width: 447px;"><a href="javascript:void(0);" class="d-flex h-100 me-3" tabindex="-1"><div class="partner-box-list border-1"><div class="row gy-3"><div class="col-lg-2 col-md-3"><div class="partner-icon"><img alt="Partner Image" class="img-fluid" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/partner/admin/partner23012024002.png"><!----><!----></div></div><div class="col-lg-10 col-md-9"><div class="partner-details"><h4><a href="javascript:void(0);" tabindex="-1">Ministry of Skill Development and Entrepreneurship</a></h4><a href="" target="_blank" tabindex="-1">https://www.msde.gov.in/<i class="ms-2 fa-solid fa-arrow-up-right-from-square"></i></a><hr><p><b>Ministry of Skill Development and Entrepreneurship</b></p><span><i class="fa-solid fa-phone me-2"></i><a href="" tabindex="-1">+0**********33</a></span><span class="text-muted px-2"> | </span><span><i class="fa-solid fa-envelope me-2"></i><a href="" tabindex="-1">c********de@g**.*n</a></span></div><div class="resouce-tag"><ul><li> Financial Services </li><!----><!----></ul></div></div></div></div></a></div><div class="item slick-slide" data-slick-index="8" aria-hidden="true" tabindex="-1" style="width: 447px;"><a href="javascript:void(0);" class="d-flex h-100 me-3" tabindex="-1"><div class="partner-box-list border-1"><div class="row gy-3"><div class="col-lg-2 col-md-3"><div class="partner-icon"><img alt="Partner Image" class="img-fluid" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/partner/admin/partner20122023026.png"><!----><!----></div></div><div class="col-lg-10 col-md-9"><div class="partner-details"><h4><a href="javascript:void(0);" tabindex="-1">ICAI</a></h4><a href="" target="_blank" tabindex="-1">https://www.icai.org/<i class="ms-2 fa-solid fa-arrow-up-right-from-square"></i></a><hr><p><b>ICAI</b></p><span><i class="fa-solid fa-phone me-2"></i><a href="" tabindex="-1">+9***********15</a></span><span class="text-muted px-2"> | </span><span><i class="fa-solid fa-envelope me-2"></i><a href="" tabindex="-1">p*******el@i***.*n</a></span></div><div class="resouce-tag"><ul><li> Entrepreneurship Development </li><!----><!----></ul></div></div></div></div></a></div><div class="item slick-slide" data-slick-index="9" aria-hidden="true" tabindex="-1" style="width: 447px;"><a href="javascript:void(0);" class="d-flex h-100 me-3" tabindex="-1"><div class="partner-box-list border-1"><div class="row gy-3"><div class="col-lg-2 col-md-3"><div class="partner-icon"><img alt="Partner Image" class="img-fluid" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/partner/admin/partner23012024003.png"><!----><!----></div></div><div class="col-lg-10 col-md-9"><div class="partner-details"><h4><a href="javascript:void(0);" tabindex="-1">Ministry of Women & Child Development</a></h4><a href="" target="_blank" tabindex="-1">https://wcd.nic.in/<i class="ms-2 fa-solid fa-arrow-up-right-from-square"></i></a><hr><p><b>Ministry of Women & Child Development</b></p><span><i class="fa-solid fa-phone me-2"></i><a href="" tabindex="-1">+0*********86</a></span><span class="text-muted px-2"> | </span><span><i class="fa-solid fa-envelope me-2"></i><a href="" tabindex="-1">s*******69@n**.*n</a></span></div><div class="resouce-tag"><ul><li> Financial Services </li><!----><!----></ul></div></div></div></div></a></div></div></div><!----></div><div class="up-event-link mt-4"><a routerlink="/partners" class="d-block fw-bold text-uppercase" href="/partners">View more Partners <img src="assets/images/arrow.svg" alt="Arrow Image" class="ms-2 arrow_animation"></a></div></div></section><section class="download-wrapper section-paading access-finance-section" style="display: none;"><div class="container-fluid"><div class="row"><div class="col-md-1"></div><div class="col-md-11"><div class="download-head pb-5"><div class="row"><div class="col-md-6"><div class="resource-title"><h3>OTHER Resource (4)</h3></div></div><div class="col-md-5 text-end"><div class="up-event-link"><a href="" class="d-block fw-bold text-uppercase">View all downloadable resources <img src="assets/images/arrow.svg" alt="Arrow Image" class="ms-2 arrow_animation"></a></div></div></div></div><div class="download-body"><div class="download-list slider"><div class="item"><div class="card"><div class="down-icon"><a href=""><i aria-hidden="true" class="fas fa-arrow-down-long"></i></a></div><div class="card-body"><h5 class="card-title">Business Planning Checklist</h5><p class="card-text">23 July 2022</p><div class="videotag"><ul><li><a href="">Finance & Funding</a></li></ul></div></div></div></div><div class="item"><div class="card"><div class="down-icon"><a href=""><i aria-hidden="true" class="fas fa-arrow-down-long"></i></a></div><div class="card-body"><h5 class="card-title">Business Planning Checklist</h5><p class="card-text">23 July 2022</p><div class="videotag"><ul><li><a href="">Finance & Funding</a></li></ul></div></div></div></div><div class="item"><div class="card"><div class="down-icon"><a href=""><i aria-hidden="true" class="fas fa-arrow-down-long"></i></a></div><div class="card-body"><h5 class="card-title">Business Planning Checklist</h5><p class="card-text">23 July 2022</p><div class="videotag"><ul><li><a href="">Finance & Funding</a></li></ul></div></div></div></div><div class="item"><div class="card"><div class="down-icon"><a href=""><i aria-hidden="true" class="fas fa-arrow-down-long"></i></a></div><div class="card-body"><h5 class="card-title">Business Planning Checklist</h5><p class="card-text">23 July 2022</p><div class="videotag"><ul><li><a href="">Finance & Funding</a></li></ul></div></div></div></div></div></div></div></div></div></section><section class="wep-support"><div class="container"><div class="row g-3"><div class="col-md-3"><div class="support-head"><h2>Tell us what we can help you with</h2><!----></div></div><div class="col-lg-1 d-lg-block d-none"></div><div class="col-lg-7 col-md-8"><div class="support-link"><ul style="display: grid; grid-template-columns: auto auto;"><li><a href="javascript::void(0)">Funding</a></li><li><a href="javascript::void(0)">Incubation and Acceleration</a></li><li><a href="javascript::void(0)">Mentoring and Networking</a></li><li><a href="javascript::void(0)">Market Linkages</a></li><li><a href="javascript::void(0)">Business Development Services</a></li><li><a href="javascript::void(0)">Research & Innovation</a></li><!----></ul></div></div><div class="col-lg-1 d-lg-block d-none"></div></div></div></section></app-access-finance><!----></div><!----><app-footer-old _ngcontent-kic-c8=""><div id="hideModal" class="stick-smart"><div class="smart-box d-flex align-items-center"><div class="sm-icon"><img src="assets/images/smart-icon.svg" alt="Icon Image" class="img-fluid"></div><div class="sm-text"><a href="#" id="smartLaunch" data-bs-toggle="modal" data-bs-target="#exampleModal" class="sm-link"><h5>LAUNCH Smart Match</h5></a></div><a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal" class="sm-link"><img src="assets/images/arrow.svg" alt="Arrow Image" class="arrow_animation"></a></div></div><div id="exampleModal" tabindex="-1" data-easein="slideLeftIn" aria-labelledby="exampleModalLabel" aria-hidden="true" class="modal fade"><div class="smartprocessstep"><div class="modal-dialog modal-fullscreen smartprocess-1 smartmatchboady"><div class="modal-content"><div class="modal-body"><form novalidate="" class="ng-untouched ng-pristine ng-valid"><div class="row"><div class="col-md-10"></div><div id="firstClose" class="col-md-2 justify-content-right"><a href="javascript:void(0)" id="closeAll" data-bs-toggle="modal" data-bs-target="#exampleModal" class="closeAll fw-600"><i aria-hidden="true" class="fas fa-close"></i> Close</a></div></div><div class="row justify-content-center"><div class="col-lg-5 col-md-7 colbox"><div class="smartbodytext text-center"><div class="image"><img src="assets/images/s-icon.svg" alt="Icon Image" class="img-fluid"></div><div class="s-text"><h5> Smart Match understands your needs and curates a personalised set of resources to help you reach your entrepreneurial goal. </h5><p>Help us with just 3 questions to get started.</p><a href="javascript:void(0)" class="sm-link1 gonextstep"><img src="assets/images/arrow.svg" alt="Arrow Image" class="arrow_animation"></a></div></div></div><div class="col-xl-10 col-lg-12 col-md-12 smartprocess1"><div class="smartboxdesc"><div class="process-icon d-flex justify-content-between align-items-center"><img src="assets/images/s-icon.svg" alt="Icon Image" class="img-fluid"><a href="javascript:void(0)" id="closeAll" data-bs-toggle="modal" data-bs-target="#exampleModal" class="closeAll fw-600"><i aria-hidden="true" class="fas fa-close"></i> Close</a></div><div class="process-form"><div class="process-heading"><h2><b>What are you looking for?</b></h2></div><div class="col-md-12"><div class="checkarea"><label for="" class="form-label"></label><ul><!----></ul></div></div></div><div class="process-link"><a href="javascript:void(0)" class="sm-link1 gonextstep1"><b>NEXT</b><img src="assets/images/arrow.svg" alt="Arrow Image" class="arrow_animation ms-3"></a></div></div></div></div></form></div></div></div><div class="modal-dialog modal-fullscreen smartprocess-2"><div class="modal-content"><div class="modal-body"><form novalidate="" class="ng-untouched ng-pristine ng-valid"><div class="row justify-content-center"><div class="col-xl-10 col-lg-12 col-md-12"><div class="smartboxdesc"><div class="process-icon"><img src="assets/images/s-icon.svg" alt="Icon Image" class="img-fluid"></div><div class="process-form"><div class="process-heading"><h2><b>Which industry do you belong to/work in?</b></h2></div><div class="formbox"><select formcontrolname="vertical" aria-label="" class="form-select bg-transparent ng-untouched ng-pristine ng-valid"><option selected="" value="">Select One...</option><!----></select></div></div><div class="process-link"><a href="javascript:void(0)" class="sm-link1 gonextstep2"><b>NEXT</b><img src="assets/images/arrow.svg" alt="Arrow Image" class="arrow_animation ms-3"></a></div></div></div></div></form></div></div></div><div class="modal-dialog modal-fullscreen smartprocess-3"><div class="modal-content"><div class="modal-body"><form novalidate="" class="ng-untouched ng-pristine ng-valid"><div class="row justify-content-center"><div class="col-xl-10 col-lg-12 col-md-12"><div class="smartboxdesc"><div class="process-icon" style="display: flex; justify-content: space-between;"><img src="assets/images/s-icon1.svg" alt="OnSubmit Match Image" class="img-fluid"></div><div class="process-form"><div class="process-heading"><h2><b>Where are you located?</b></h2></div><select formcontrolname="states" aria-label="" class="form-select bg-transparent ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your State...</option><!----></select><div class="formbox"><select formcontrolname="city" aria-label="" class="form-select bg-transparent ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your City...</option><!----></select></div></div><div class="process-link"><a href="javascript:void(0)" class="sm-link1 gonextstep3"><b> SHOW ME MY MATCHES</b><img src="assets/images/arrow.svg" alt="Arrow Image" class="arrow_animation ms-3"></a></div></div></div></div></form></div></div></div></div></div><!----><footer><div class="container"><div class="row gy-3"><div class="col-sm-4 order-md-1 col-5"><img src="assets/images/footer-logo.png?v=0.0.1" alt="WEP - Women entrepreneur" class="img-fluid"></div><div class="col-md-2 links order-md-2 order-3 col-6 col-sm-4"><ul><li><a routerlink="community-list" href="/community-list">Community</a></li><li><a routerlink="about" href="/about">About WEP</a></li><li><a routerlink="/partners" href="/partners">Partners</a></li></ul></div><div class="col-md-2 links order-md-3 order-4 col-6 col-sm-4"><ul><li><a href="news-letter" target="_blank">Newsletter</a></li><li><a routerlink="events" href="/events">Events</a></li><li><a routerlink="disclaimer" href="/disclaimer">Disclaimer</a></li></ul></div><div class="col-md-2 links order-md-4 order-5 col-sm-4"><ul><li><a routerlink="faq" href="/faq">FAQs</a></li><li><a routerlink="contactus" href="/contactus">Feedback</a></li></ul></div><div class="col-md-2 social text-end order-md-5 order-2 col-7"><a href="https://twitter.com/wep_community" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" fill="#fff" height="1em" viewBox="0 0 512 512"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg></a><a href="https://instagram.com/wep_community?igshid=MzRlODBiNWFlZA==" target="_blank"><i aria-hidden="true" class="fab fa-instagram"></i></a><a href="http://www.facebook.com/WomenEntrepreneurshipPlatform/" target="_blank"><i aria-hidden="true" class="fab fa-facebook-f"></i></a><a href="https://www.linkedin.com/company/women-entrepreneurship-platform-niti-aayog/" target="_blank"><i aria-hidden="true" class="fab fa-linkedin-in"></i></a><a href="https://www.youtube.com/@wep_community" target="_blank"><i aria-hidden="true" class="fab fa-youtube"></i></a></div></div><div class="d-flex justify-content-between copyright"><p></p><p>Content Partner - <a href="https://www.microsave.net/" target="_blank" class="text-decoration-underline">Microsave Consulting</a> | Technology Partner - <a target="_blank" href="https://www.squarepanda.in/" class="text-decoration-underline"> Square Panda </a></p></div></div></footer><button type="button" id="mentorSmartMatchFooter" data-toggle="modal" data-target="#mentorsmartmatch" class="btn btn-primary btn-lg d-none"> Launch
</button><div id="mentorsmartmatch" tabindex="-1" role="dialog" aria-labelledby="modelTitleId" aria-hidden="true" class="modal fade"><div class="smartmatchprocess-step"><div class="modal-dialog modal-fullscreen smartmatchprocess-1"><div class="modal-content"><div class="modal-body"><div id="completeclose" class="col-md-12"><a href="javascript:void(0)" id="closeMentorAll" class="closeAll fw-600"><i aria-hidden="true" class="fas fa-close"></i> Close</a></div><div class="mentorsmartheader"><div class="smarticons"><img src="assets/images/menteesmart.svg" alt="Icon Image" class="img-fluid"></div><div class="smartheadtitle"><h2 class="mb-0"><b>Smart Match</b></h2><h5>understands your needs and creates a personalised set of mentors and mentorship programs to help you in your entrepreneurial journey </h5></div><div class="smartmatchlist mt-5"></div><a href="javascript:void(0)" class="matchwindow mt-5 d-block"><img src="assets/images/arrow.svg" alt=""></a></div></div></div></div><div class="modal-dialog modal-fullscreen smartmatchprocess-2"><div class="modal-content"><div class="modal-body"><div class="mentorsmartheader"><div class="smarticons"><img src="assets/images/niti-logo.png" alt="Icon Image" class="img-fluid" style="visibility: hidden;"></div><div class="mentorsmartform pt-4"><form novalidate="" class="ng-untouched ng-pristine ng-valid"><div class="slidesframe"><div class="row gy-4 slides slides1 active"><div class="col-lg-8"><div class="form-group"><p>Please select the industry you belong to/work in</p><select formcontrolname="primary_industry" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your Industry...</option><!----></select></div></div><div class="col-lg-10"><div class="form-group"><p>Please select the stage of your enterprise/your entrepreneurial journey</p><!----></div></div></div><div class="row gy-3 slides slides2"><div class="col-lg-10"><div class="form-group"><p>Where are you currently located?</p><div class="row gy-2"><div class="col-md-12"><div class="form-group"><div class="form-check"><input type="checkbox" formcontrolname="same_as_business_location" id="same_as_business_location" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="same_as_business_location" class="me-2 form-check-label">Same as My Business Location</label></div></div></div><div class="col-md-6"><div class="form-group"><label for="states" class="form-label">State</label><select formcontrolname="states" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your State... </option><!----></select></div></div><div class="col-md-6"><div class="form-group"><label for="city" class="form-label">City</label><select formcontrolname="city" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your City... </option><!----></select></div></div></div></div></div><div class="col-lg-10"><div class="form-group"><p> In which language would you prefer to interact with your mentor?</p><select formcontrolname="spoken_language" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your Spoken Language... </option><!----></select></div></div><div class="col-lg-10"><div class="form-group"><p>Please choose the ecosystem need in which you seek mentorship</p><select formcontrolname="ecosystem_key" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your Ecosystem...</option><!----></select></div></div></div><div class="row gy-4 slides slides3"><div class="col-lg-10"><div class="form-group"><p>Please select your preferred mode of engagement to attend a mentorship program</p><!----></div></div><div class="col-lg-8"><div class="form-group"><p>Do you have any preference for your mentor’s gender?</p><!----></div></div></div></div><div class="buttonframe mt-5"><div class="row"><div class="col-md-12"><button type="button" id="prevBtn" class="btn btn-outline-dark me-4">Back</button><button type="button" id="nextBtn" class="btn btn-dark">Next</button><button type="submit" id="sbmtBtn" class="btn btn-dark d-none">Submit</button></div></div></div></form></div></div></div></div></div></div></div><button type="button" id="orgSmartMatchFooter" data-toggle="modal" data-target="#orgsmartmatch" class="btn btn-primary btn-lg d-none"> Launch
</button><div id="orgsmartmatch" tabindex="-1" role="dialog" aria-labelledby="modelTitleId1" aria-hidden="true" class="modal fade"><div class="smartmatchprocess-step"><div class="modal-dialog modal-fullscreen smartmatchprocess-1"><div class="modal-content"><div class="modal-body"><div id="completeclose1" class="col-md-12"><a href="javascript:void(0)" id="closeProgramAll" class="closeAll fw-600"><i aria-hidden="true" class="fas fa-close"></i> Close</a></div><div class="mentorsmartheader"><div class="smarticons"><img src="assets/images/menteesmart.svg" alt="Icon Image" class="img-fluid"></div><div class="smartheadtitle"><h2 class="mb-0"><b>Smart Match</b></h2><h5>understands your needs and creates a personalised set of mentors and mentorship programs to help you in your entrepreneurial journey </h5></div><a href="javascript:void(0)" class="matchwindow1 mt-5 d-block"><img src="assets/images/arrow.svg" alt=""></a></div></div></div></div><div class="modal-dialog modal-fullscreen smartmatchprocess-2-1"><div class="modal-content"><div class="modal-body"><div class="mentorsmartheader"><div class="smarticons"><img src="assets/images/niti-logo.png" alt="Icon Image" class="img-fluid" style="visibility: hidden;"></div><div class="mentorsmartform pt-4"><form novalidate="" class="ng-untouched ng-pristine ng-valid"><div class="slidesframe1"><div class="row gy-4 slides slides1 active"><div class="col-md-8"><div class="form-group"><p>Please select the industry you belong to/work in<span class="text-danger">*</span></p><select formcontrolname="org_primary_industry" class="form-select bg-transparent ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your Industry...</option><!----></select></div><div id="industry_div" class="form-group mt-3 d-none"><label for="" class="form-label">Please mention the industry/sector</label><input type="text" formcontrolname="org_primary_industry_other" id="org_primary_industry_other" class="form-control bg-transparent ng-untouched ng-pristine ng-valid"></div></div><div class="col-md-10"><div class="form-group"><p>Please select the stage of your enterprise/your entrepreneurial journey</p><div class="form-group"><!----></div></div></div></div><div class="row gy-4 slides slides2"><div class="col-md-10"><div class="form-group"><p>Please select your location</p><div class="row gy-2"><div class="col-md-12"><div class="form-group"><div class="form-check"><input type="checkbox" id="org_same_as_business_location" formcontrolname="org_same_as_business_location" value="" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="org_same_as_business_location" class="me-2 form-check-label">Same as My Business Location</label></div></div></div><div class="col-md-6"><div class="form-group"><label for="" class="form-label">State <span class="text-danger">*</span></label><select formcontrolname="org_state" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your State... </option><!----></select></div></div><div class="col-md-6"><div class="form-group"><label for="" class="form-label">City <span class="text-danger">*</span></label><select formcontrolname="org_city" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your City... </option><!----></select></div></div></div></div></div><div class="col-md-10"><div class="form-group"><p> Please select the language would you prefer to interact with your mentor </p><select formcontrolname="org_spoken_lang" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your Spoken Language... </option><!----></select></div></div><div class="col-md-10"><div class="form-group"><p>Please choose the ecosystem need in which you seek mentorship</p><select formcontrolname="org_ecosystem_key" id="org_ecosystem_key" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select Your Ecosystem...</option><!----></select></div><div id="ecosystem_div" class="form-group mt-3 d-none"><label for="" class="fomr-label">Please mention the ecosystem need</label><input type="text" formcontrolname="org_ecosystem_key_other" id="org_ecosystem_key_other" class="form-control ng-untouched ng-pristine ng-valid"></div></div></div><div class="row gy-4 slides slides3"><div class="col-md-10"><div class="form-group"><p>Please select your preferred mode of engagement to attend a mentorship program</p><!----></div></div><div class="col-md-10"><div class="form-group"><p>Please select the type of mentorship program</p><!----></div></div></div></div><div class="buttonframe mt-5"><div class="row"><div class="col-md-12"><button type="button" id="prevBtn1" class="btn btn-outline-dark me-4">Back</button><button type="button" id="nextBtn1" class="btn btn-dark">Next</button><button type="submit" id="sbmtBtn1" class="btn btn-dark d-none">Submit</button></div></div></div></form></div></div></div></div></div></div></div><div id="Signupalert" tabindex="-1" role="dialog" aria-labelledby="SignupalertID" aria-hidden="true" class="modal fade jiomodal"><div role="document" class="modal-dialog modal-dialog-centered"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Verify Email/Mobile</h5><button type="button" data-dismiss="modal" aria-label="Close" class="btn-close"></button></div><div class="modal-body p-2"><div class="container-fluid"><div class="row gy-3"><div class="col-md-12"><p class="fw-600 m-0">Please verify email/mobile for better communication with us.</p></div><div class="col-md-12"><div class="form-group"><label for="" class="form-label">Email<span class="text-danger">*</span></label><input type="text" name="" id="" placeholder="" class="form-control"></div></div><div class="col-md-12"><div class="form-group"><label for="" class="form-label">Mobile Number<span class="text-danger">*</span></label><input type="text" name="" id="" placeholder="" class="form-control"></div></div><div class="col-md-12"><div class="form_field verifymobile"><label for="mobile_otp" class="form-label">Enter OTP <span class="text-danger">*</span></label><div class="d-flex justify-content-between align-items-center"><input type="number" maxlength="1" id="mobile_otp1" class="form-control me-2"><input type="number" maxlength="1" id="mobile_otp12" class="form-control me-2"><input type="number" maxlength="1" id="mobile_otp13" class="form-control me-2"><input type="number" maxlength="1" id="mobile_otp14" class="form-control me-2"><input type="number" maxlength="1" id="mobile_otp15" class="form-control me-2"><input type="number" maxlength="1" id="mobile_otp16" class="form-control me-2"></div><span class="text-end d-block mt-2 pr-2"><a href="" class="text-dark">Resend OTP</a></span></div></div></div></div><div class="modal-footer justify-content-start"><button type="button" class="btn btn-dark">SEND OTP</button><button type="button" class="btn btn-dark">Verify</button><button type="button" class="btn btn-outline-dark ms-2">Do it Later</button></div></div></div></div></div></app-footer-old><!----><app-spinner _ngcontent-kic-c8="" _nghost-kic-c163=""><!----></app-spinner><!----><app-spinner _ngcontent-kic-c8="" _nghost-kic-c163="" hidden=""><!----></app-spinner><!----></app-root>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/js/intlTelInput-jquery.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js" integrity="sha512-XtmMtDEcNz2j7ekrtHvOVR4iwwaD6o/FUJe6+Zq+HgcCsk3kj4uSQQR8weQ2QVj1o0Pk6PwYLohm206ZzNfubg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/js/fontawesome.min.js" integrity="sha512-TXHaOs+47HgWwY4hUqqeD865VIBRoyQMjI27RmbQVeKb1pH1YTq0sbuHkiUzhVa5z0rRxG8UfzwDjIBYdPDM3Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.2.2/velocity.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.2.2/velocity.ui.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="runtime.66cb72610f1f3292.js" type="module"></script><script src="polyfills.fd38232efdac120e.js" type="module"></script><script src="scripts.980e0280a5bbac5d.js" defer=""></script><script src="main.8e76be0f7514332c.js" type="module"></script>
<script>
// Cycle through each textarea and add placeholder with individual word limits
$("textarea[word-limit=true]").each(function () {
$(this).attr("placeholder", "Writing entries: " + $(this).attr("min-words") + " words min, " + $(this).attr("max-words") + " words max");
});
// Add event trigger for change to textareas with limit
$(document).on("input", "textarea[word-limit=true]", function () {
// Get individual limits
thisMin = parseInt($(this).attr("min-words"));
thisMax = parseInt($(this).attr("max-words"));
// Create array of words, skipping the blanks
var removedBlanks = [];
removedBlanks = $(this).val().split(/\s+/).filter(Boolean);
// Get word count
var wordCount = removedBlanks.length;
// Remove extra words from string if over word limit
if (wordCount > thisMax) {
// Trim string, use slice to get the first 'n' values
var trimmed = removedBlanks.slice(0, thisMax).join(" ");
// Add space to ensure further typing attempts to add a new word (rather than adding to penultimate word)
$(this).val(trimmed + " ");
}
// Compare word count to limits and print message as appropriate
if (wordCount < thisMin) {
$(this).parent().children(".writing_error").text("Minimum " + thisMin + " words.");
} else if (wordCount > thisMax) {
$(this).parent().children(".writing_error").text("Maximum " + thisMax + " words.");
} else {
// No issues, remove warning message
$(this).parent().children(".writing_error").text("");
}
});
function scrollToTop() {
window.scrollTo({ top: 0, behavior: 'smooth' });
// if(window.scrollY != 0){
// document.getElementsByClassName("back-top").css('display', 'block');
// } else{
// document.getElementsByClassName("back-top").css('display', 'none');
// }
}
</script>
<script>
</script>
<div class="modal fade jiomodal" id="feedbackmodal" tabindex="-1" role="dialog" aria-labelledby="modelTitleId" aria-hidden="true" data-bs-backdrop="static">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header p-3">
<h5 class="modal-title">Meeting Feedback</h5>
<button type="button" class="btn-close" value="SKIP" id="feedbackformSubmit" aria-label="Close">
</button>
</div>
<div class="modal-body p-3">
<div class="meeting-info-popup">
<div class="meeting-details">
<h5 class="h5"><span id="meeting_topic_id"></span></h5>
<span>Date & Time: <b><span id="meeting_date_time_id"></span></b></span>
<hr>
</div>
<div class="meeting-mentor-details">
<div class="d-flex align-items-center">
<div class="m-img">
<img src="assets/images/default-profile.png" class="img-fluid" id="meetingfeedbackimage" alt="">
</div>
<div class="m-title ms-2">
<p class="fw-600 mb-0"><span id="meeting_name_id"></span></p>
<!-- <span class="d-block"><i class="fas fa-phone me-1" aria-hidden="true"></i> +91
<span id="meeting_phoneNumber_id"></span></span>
<span class="d-block"><i class="fas fa-envelope me-1" aria-hidden="true"></i>
<span id="meeting_email_id"></span></span> -->
</div>
</div>
</div>
<div class="ment-feedback">
<form>
<input type="hidden" name="feedbackForm_meeting_id" id="feedbackForm_meeting_id" value="">
<div class="d-flex starfeed mt-3">
<ul id="starRating">
<li><i class="fas fa-star" aria-hidden="true"></i></li>
<li><i class="fas fa-star" aria-hidden="true"></i></li>
<li><i class="fas fa-star" aria-hidden="true"></i></li>
<li><i class="fas fa-star" aria-hidden="true"></i></li>
<li><i class="fas fa-star" aria-hidden="true"></i></li>
</ul>
</div>
<span class="text-danger" id="required_rating"></span>
<div class="form-group mb-3">
<label for="" class="form-label">Feedback </label>
<textarea class="form-control height" name="feedbackForm_feedback" id="feedbackForm_feedback" rows="3"></textarea>
</div>
</form>
</div>
</div>
</div>
<div class="modal-footer justify-content-start">
<button type="button" class="btn btn-dark" value="SUCCESS" id="feedbackformSubmit">Submit</button>
<button type="button" class="btn btn-outline-dark" value="SKIP" id="feedbackformSubmit">Skip</button>
</div>
</div>
</div>
</div>
<div class="modal fade jiomodal" data-bs-backdrop="static" id="Signupalert123" tabindex="-1" role="dialog" aria-labelledby="SignupalertID" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Verify Email/Mobile</h5>
<button type="button" class="btn-close" data-dismiss="modal" aria-label="Close" value="SKIP" id="loginformSubmit">
</button>
</div>
<div class="modal-body p-2">
<div class="container-fluid">
<div class="row gy-3">
<div class="col-md-12">
<p class="fw-600 m-0">Please verify email/mobile for better communication with us.</p>
</div>
<form>
<div class="col-md-12 d-none" id="login_email_v1">
<div class="form-group">
<div class="d-flex justify-content-between">
<label for="" class="form-label">Email<span class="text-danger">*</span></label>
<a href="#" class="edit_login_email btn-link d-none" id="edit_login"><i class="fas fa-edit"></i> Edit</a>
</div>
<input type="text" name="email_1" id="email_1_v1" class="form-control" placeholder="">
<div class="text-danger" id="err_email_1_v1">
</div>
</div>
</div>
<div class="col-md-12 d-none" id="login_mobile_v1">
<div class="form-group">
<div class="d-flex justify-content-between">
<label for="" class="form-label">Mobile Number<span class="text-danger">*</span></label>
<a href="#" class="edit_login_phone btn-link d-none" id="edit_login"><i class="fas fa-edit"></i> Edit</a>
</div>
<div class="input-group">
<button class="btn btn-outline-secondary p-2 dropdown-toggle border-end-0" type="button" data-bs-toggle="dropdown" aria-expanded="false" style="height: 45px;border-color:#000">
+91
</button>
<input type="number" class="form-control border-start-0" id="phone_1_v1" value="" oninput="this.value = this.value.replace(/\D/g, ''); if(this.value < 0) this.value = 0;if (this.value.length > 10) { this.value = this.value.slice(0, 10); }" required="">
</div>
<div class="text-danger" id="err_phone_1_v1">
</div>
</div>
</div>
</form>
<div class="col-md-12">
<form class="login_form needs-validation">
<div class="form_field verifymobile d-none" id="verificationcode_v1">
<label for="mobile_otp" class="form-label">Enter OTP
</label>
<div class="d-flex justify-content-between align-items-center">
<input type="text" class="verify_otp3_v1 form-control me-2" id="verify_otp1_v1" maxlength="1" oninput="handleInput(this, 'verify_otp2_v1')">
<input type="text" class="verify_otp3_v1 form-control me-2" id="verify_otp2_v1" maxlength="1" oninput="handleInput(this, 'verify_otp3_v1')">
<input type="text" class="verify_otp3_v1 form-control me-2" id="verify_otp3_v1" maxlength="1" oninput="handleInput(this, 'verify_otp4_v1')">
<input type="text" class="verify_otp3_v1 form-control me-2" id="verify_otp4_v1" maxlength="1" oninput="handleInput(this, 'verify_otp5_v1')">
<input type="text" class="verify_otp3_v1 form-control me-2" id="verify_otp5_v1" maxlength="1" oninput="handleInput(this, 'verify_otp6_v1')">
<input type="text" class="verify_otp3_v1 form-control me-2" id="verify_otp6_v1" maxlength="1" oninput="handleInput(this, 'verify_otp7_v1')">
</div>
<span class="text-danger" id="otp_error_v1"></span>
<!-- <div class="d-flex my-2 justify-content-between align-items-center">
<div class="invalid-feedback">
<div>This field is required.</div>
</div>
<div class="invalid-feedback">
<div>This field is required.</div>
</div>
<div class="invalid-feedback">
<div>This field is required.</div>
</div>
<div class="invalid-feedback">
<div>This field is required.</div>
</div>
<div class="invalid-feedback">
<div>This field is required.</div>
</div>
<div class="invalid-feedback">
<div>This field is required.</div>
</div>
</div> -->
<div class="d-flex justify-content-between align-items-center">
<button class="btn fw-600 px-0 text-decoration-none text-dark" style="font-size: 13px;" type="button" id="myButton_resend" onclick="disableOtpButton()">Resend
OTP</button>
<span class="text-dark" id="otp_timer">01:00</span>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="modal-footer justify-content-start">
<input type="hidden" id="check_type_value">
<input type="hidden" id="id_v1">
<button type="button" class="btn btn-dark" id="send_otp_v1">SEND OTP</button>
<button type="button" class="btn btn-dark d-none" id="verify_v1">Verify</button>
<button type="button" class="btn btn-outline-dark ms-2" value="SKIP" id="loginformSubmit">Do it Later</button>
</div>
</div>
</div>
</div>
</div>
<div class="spinner1 d-none">
<div class="loader1">
<div class="la-ball-clip-rotate la-2x"><div></div></div>
</div>
</div>
<div class="spinner d-none" id="spinner_show">
<div class="loader">
<div class="la-ball-clip-rotate la-2x">
<div></div>
</div>
</div>
</div>
<iframe width="0" height="0" style="display: none;"></iframe><div id="haptik-xdk-wrapper" class="haptik-xdk" style="position: relative; z-index: 2147483647;"><div class="haptik-xdk-container "><iframe title="haptik-xdk" id="" class="xdk-iframe" style="border: none; z-index: 100002; position: fixed; width: 125px; height: 60px; transition: all 0.2s ease-out 0s; bottom: 0px; right: 8px;"></iframe></div></div></body></html> |