Spaces:
Paused
Paused
File size: 135,754 Bytes
2c8ec56 |
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 |
<!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-rmp-c8]{min-height:400px}</style><style>.spinner[_ngcontent-rmp-c163]{position:fixed;top:0;left:0;right:0;height:100%;background-color:#0009;z-index:1520}.spinner[_ngcontent-rmp-c163] .loader[_ngcontent-rmp-c163]{position:absolute;text-align:center;top:50%;transform:translateY(-50%);width:100%}.spinner[_ngcontent-rmp-c163] .loader[_ngcontent-rmp-c163] h3[_ngcontent-rmp-c163]{margin-top:10px;font-size:26px;font-weight:300;color:#fff}.spinner[_ngcontent-rmp-c163] .loader[_ngcontent-rmp-c163] p[_ngcontent-rmp-c163]{margin-top:10px;font-size:16px;font-weight:400;color:#fff}.spinner[_ngcontent-rmp-c163] .loader[_ngcontent-rmp-c163] p[_ngcontent-rmp-c163] a[_ngcontent-rmp-c163]{color:#fff;text-decoration:none}.spinner[_ngcontent-rmp-c163] .loader[_ngcontent-rmp-c163] .la-ball-clip-rotate[_ngcontent-rmp-c163]{display:block;margin:auto;width:64px;height:64px;font-size:0;color:#fff}.spinner[_ngcontent-rmp-c163] .loader[_ngcontent-rmp-c163] .la-ball-clip-rotate[_ngcontent-rmp-c163] > div[_ngcontent-rmp-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-rmp-c8="" ng-version="14.3.0"><!----><app-header-old _ngcontent-rmp-c8=""><span id="url_constant1" class="d-none">eyJpdiI6ImhWcnRSOGZvNDlwRDVONU03eGFYblE9PSIsInZhbHVlIjoiS1gyeWorbHVxejdjUkdFREdSU0pGeTF5a00rL2RvcjZocXZpOEt3VFpDST0ifQ==</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 d-none"><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-rmp-c8="" id="main_container" class="page-container"><router-outlet _ngcontent-rmp-c8=""></router-outlet><app-resource-details><section class="cashflow_bg"></section><section class="management section-paading"><div class="container"><a class="mt-3 fw-bold"><img src="assets/images/left-arrow.svg" alt="Left Arrow Image" class="me-3 left_arrow"> Back to all Resources</a><div class="management_heading my-4"><h1><b> National Beekeeping & Honey
Mission(NBHM) </b></h1><span></span><span class="divider"></span><span>01-Nov-2022 10:34:17</span><div class="mt-3"><span class="span_bg me-3 text-uppercase">Business Development Services</span><!----></div></div><div class="row"><div class="col-md-9"><div class="resource-detail-page py-4"><!----></div><p><section class="scheme-data">
<div class="container">
<div class="row">
<div class="col-md-11">
<div class="card-body">
<div class="row">
<div class="col-md-4 cardRow">
<h6>Scheme Provider :</h6>
</div>
<div class="col-md-8">
<p>Ministry of Agriculture and Farmer's Welfare</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Sector :</h6>
</div>
<div class="col-md-8">
<p>Incubation support</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>States :</h6>
</div>
<div class="col-md-8">
<p></p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Eligibility :</h6>
</div>
<div class="col-md-8">
<p>Entrepreneurs</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Vertical :</h6>
</div>
<div class="col-md-8">
<p>Business Development Services, Incubation and Acceleration</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Link for enrollment :</h6>
</div>
<div class="col-md-8"><a class="anchorLink" target="_blank" href="NA">NA</a></div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Link to scheme information :</h6>
</div>
<div class="col-md-8"><a class="anchorLink" target="_blank" href="https://nbb.gov.in/default.html#:~:text=of%20India%20has%20approved%20a,building%20%26%20trainings%2C%20specific%20focus%20on">https://nbb.gov.in/default.html#:~:text=of%20India%20has%20approved%20a,building%20%26%20trainings%2C%20specific%20focus%20on</a>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Details :</h6>
</div>
<div class="col-md-8">
<p> Govt. of India has approved a new Central Sector Scheme entitled “National Beekeeping & Honey Mission (NBHM)” for 2 years for overall promotion and development of scientific beekeeping in mission mode.
The main objective of NBHM is to promote holistic growth of beekeeping industry for income & employment generation for farm and non-farm households, to enhance agriculture/ horticulture production, developing infrastructural facilities, including setting up of Integrated Beekeeping Development Centre (IBDC)s/CoE, honey testing labs, bee disease diagnostic labs, custom hiring centres, Api-therapy centres, nucleus stock, bee breeders, etc. and empowerment of women through beekeeping. Besides, the scheme also aims to create awareness about scientific bee keeping under Mini Mission-I, post-harvest management of beekeeping, beehive products, including collection, processing, storage, marketing, value addition, etc.
The NBHM will work in coordination with other Governmental programs / schemes relating to promotion of beekeeping, viz.; MIDH, RKVY, Honey Mission of KVIC, MSME, NLRM/ SLRM, M/o Rural Development, M/o EF&CC, M/o Tribal Affairs, M/o Commerce & Industry, AYUSH, ICAR, etc., for overall promotion & development of scientific beekeeping in the country. The NBHM will provide technical guidance/ advise and administrative support to the implementing agencies at the National & State level for effective & smooth implementation of the scheme.</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Introduction :</h6>
</div>
<div class="col-md-8">
<p>Govt. of India has approved a new Central Sector Scheme entitled “National Beekeeping & Honey Mission (NBHM)” for 2 years for overall promotion and development of scientific beekeeping in mission mode.</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Benefits :</h6>
</div>
<div class="col-md-8">
<p>The main objective of NBHM is to promote holistic growth of beekeeping industry for income & employment generation for farm and non-farm households, to enhance agriculture/ horticulture production, developing infrastructural facilities, including setting up of Integrated Beekeeping Development Centre (IBDC)s/CoE, honey testing labs, bee disease diagnostic labs, custom hiring centres, Api-therapy centres, nucleus stock, bee breeders, etc. and empowerment of women through beekeeping. Besides, the scheme also aims to create awareness about scientific bee keeping under Mini Mission-I, post-harvest management of beekeeping, beehive products, including collection, processing, storage, marketing, value addition, etc.</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Gender :</h6>
</div>
<div class="col-md-8">
<p>Both</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Implementing Agency :</h6>
</div>
<div class="col-md-8">
<p>The NBHM will work in coordination with other Governmental programs / schemes relating to promotion of beekeeping, viz.; MIDH, RKVY, Honey Mission of KVIC, MSME, NLRM/ SLRM, M/o Rural Development, M/o EF&CC, M/o Tribal Affairs, M/o Commerce & Industry, AYUSH, ICAR, etc., for overall promotion & development of scientific beekeeping in the country. The NBHM will provide technical guidance/ advise and administrative support to the implementing agencies at the National & State level for effective & smooth implementation of the scheme.</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Target Audience :</h6>
</div>
<div class="col-md-8">
<p>Entrepreneurs</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Primary Domain :</h6>
</div>
<div class="col-md-8">
<p>Business Development Services</p>
</div>
</div>
<div class="row">
<div class="col-md-4 cardRow">
<h6>Secondary Domain :</h6>
</div>
<div class="col-md-8">
<p>Incubation and Acceleration</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section></p></div><div class="col-md-3 management_rightSide"><div class="schemes"><p><b> Relevant schemes (6) </b></p><!----><!----><div class="d-flex justify-content-between align-items-center schemes_list"><a href="resource-details?slug=integrated-cold-chain-and-value-addition-infrastru"><p>Integrated Cold Chain and Value Addition Infrastructure</p></a><a href="resource-details?slug=integrated-cold-chain-and-value-addition-infrastru"><img src="assets/images/arrow.svg" alt="" class="arrow_animation"></a></div><div class="d-flex justify-content-between align-items-center schemes_list"><a href="resource-details?slug=mmsme-champions-scheme"><p>MMSME Champions scheme</p></a><a href="resource-details?slug=mmsme-champions-scheme"><img src="assets/images/arrow.svg" alt="" class="arrow_animation"></a></div><div class="d-flex justify-content-between align-items-center schemes_list"><a href="resource-details?slug=self-reliant-india-sri-fund-empowering-msmes"><p>Self Reliant India (SRI) Fund - Empowering MSMEs for Aatmanirbhar Bharat</p></a><a href="resource-details?slug=self-reliant-india-sri-fund-empowering-msmes"><img src="assets/images/arrow.svg" alt="" class="arrow_animation"></a></div><div class="d-flex justify-content-between align-items-center schemes_list"><a href="resource-details?slug=training-scheme"><p>Training Scheme</p></a><a href="resource-details?slug=training-scheme"><img src="assets/images/arrow.svg" alt="" class="arrow_animation"></a></div><div class="d-flex justify-content-between align-items-center schemes_list"><a href="resource-details?slug=grant-in-aid-to-voluntarv-and-other-organizations"><p>Grant-in-aid to Voluntarv and other Organizations for Scheduled Castes</p></a><a href="resource-details?slug=grant-in-aid-to-voluntarv-and-other-organizations"><img src="assets/images/arrow.svg" alt="" class="arrow_animation"></a></div><div class="d-flex justify-content-between align-items-center schemes_list"><a href="resource-details?slug=assistance-for-skill-development-of-other-backward"><p>Assistance for Skill Development of Other Backward Classes (OBCs)/ De-Notified, Nomadic And Semi-Nomadic Tribes (DNTS)/ Economically Backward Classes (EBCs)</p></a><a href="resource-details?slug=assistance-for-skill-development-of-other-backward"><img src="assets/images/arrow.svg" alt="" class="arrow_animation"></a></div><!----><!----><!----></div><hr><!----><hr><!----></div></div></div></section><section class="section-paading similar"><div class="container"><div class="slider-head d-flex justify-content-between"><h3>Similar Resources</h3><div class="slider-navs"><button aria-label="Previous" type="button" class="slick-prev slick-arrow pp3 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 nn3" aria-disabled="false" style=""><img src="assets/images/arrow.svg" alt="Arrow Image" class="arrow_animation"></button></div></div><div class="similar_articles mt-3 resource-slides slider slick-initialized slick-slider"><div class="slick-list draggable"><div class="slick-track" style="opacity: 1; width: 1276px; transform: translate3d(0px, 0px, 0px);"><div class="slick-slide slick-current slick-active" data-slick-index="0" aria-hidden="false" tabindex="0" style="width: 295px;"><div class="card h-100"><div class="card-body"><a href="resource-details?slug=training-scheme" tabindex="0"><h5 class="card-title">Training Scheme</h5></a><p class="card-text"> 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></div><div class="slick-slide slick-active" data-slick-index="1" aria-hidden="false" tabindex="0" style="width: 295px;"><div class="card h-100"><div class="card-body"><a href="resource-details?slug=integrated-processes-development-schemes-ipds" tabindex="0"><h5 class="card-title">Integrated Processes Development Schemes (IPDS)</h5></a><p class="card-text"> The primary objective of the IPDS is to facilitate the textile industry to become globally competitive using environmentally friendly processing standards and technology. The scheme would facilitate the textile units to meet the required environmental standards. The IPDS would create new processing parks as well as support the upgradation of existing processing clusters specifically in the area of water and waste water management as also to promote research and development for a cleaner technology in the processing sector.
IPDS proposes to establish 4-6 Brown field and 3-5 Green field projects addressing the needs of the existing Textile/Clusters. Eligible projects under the scheme would cover the following:
Group A - Water treatment & effluent treatment plant and technology (including marine, Riverine and ZLD).
Group B – Common infrastructure such as captive power generation plants on technology preferably renewable/green technology,
Group C – Common facilities such as Testing Laboratories and R&D centres.
The Special Purpose Vehicle shall fund the project through a mix of equity from members of industry, grant support from Ministry of Textile / State Government, and the loan from Banks and Financial Institutions. The Government of India support under the scheme by the way of grant would be limited to 50% of the project cost, with a ceiling of Rs.75 crores for projects with Zero Liquid Discharge Systems and Rs.10 crores for projects with conventional treatment systems. Support for marine discharge projects would be analysed on a case to case basis with a maximum ceiling of Rs.75 crores. </p><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></div><div class="slick-slide slick-active" data-slick-index="2" aria-hidden="false" tabindex="0" style="width: 295px;"><div class="card h-100"><div class="card-body"><a href="resource-details?slug=raw-material-supply-scheme-rmss" tabindex="0"><h5 class="card-title">Raw Material Supply Scheme (RMSS)</h5></a><p class="card-text"> Raw Material Supply Scheme is being implemented throughout the country to make available all types of yarn to Handloom weavers.
Under Raw Material Supply Scheme (RMSS), the freight is reimbursed and depot operating charge @2% (limited to Rs. 15,000/- per month) of the value of the yarn supplied is given to depot operating agencies. At present, 511 such yarn depots and 46 warehouses are functioning throughout the country. NHDC is also supplying quality dyes and chemicals to the handloom sector at competitive rates. </p><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></div><div class="slick-slide" data-slick-index="3" aria-hidden="true" tabindex="0" style="width: 295px;"><div class="card h-100"><div class="card-body"><a href="resource-details?slug=national-handloom-developmentprogramme-handloom" tabindex="-1"><h5 class="card-title">National Handloom Development
Programme (Handloom Weavers Comprehensive
Scheme and CHCDS-Handloom Mega Cluster
subsumed in National Handloom Development
Programme)</h5></a><p class="card-text"> The scheme follows need based approach for integrated and holistic development of handlooms and welfare of handloom weavers. The scheme supports weavers, both within and outside the cooperative fold including Self Help Groups, NGOs etc. towards raw material, design inputs, technology up-gradation, marketing support through exhibitions, Create permanent infrastructure in the form of Urban Haats, marketing complexes, development of web portal for e-marketing of handloom products etc. </p><div class="resouce-tag"><ul><li> Business Development Services </li><!----><!----></ul></div></div></div></div></div></div><!----></div></div></section><!----></app-resource-details><!----></div><!----><app-footer-old _ngcontent-rmp-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-rmp-c8="" _nghost-rmp-c163=""><!----></app-spinner><!----><app-spinner _ngcontent-rmp-c8="" _nghost-rmp-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>
<iframe width="0" height="0" style="display: none;"></iframe><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>
<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> |