File size: 204,281 Bytes
0c1b211 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 |
<!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-jus-c8]{min-height:400px}</style><style>.spinner[_ngcontent-jus-c163]{position:fixed;top:0;left:0;right:0;height:100%;background-color:#0009;z-index:1520}.spinner[_ngcontent-jus-c163] .loader[_ngcontent-jus-c163]{position:absolute;text-align:center;top:50%;transform:translateY(-50%);width:100%}.spinner[_ngcontent-jus-c163] .loader[_ngcontent-jus-c163] h3[_ngcontent-jus-c163]{margin-top:10px;font-size:26px;font-weight:300;color:#fff}.spinner[_ngcontent-jus-c163] .loader[_ngcontent-jus-c163] p[_ngcontent-jus-c163]{margin-top:10px;font-size:16px;font-weight:400;color:#fff}.spinner[_ngcontent-jus-c163] .loader[_ngcontent-jus-c163] p[_ngcontent-jus-c163] a[_ngcontent-jus-c163]{color:#fff;text-decoration:none}.spinner[_ngcontent-jus-c163] .loader[_ngcontent-jus-c163] .la-ball-clip-rotate[_ngcontent-jus-c163]{display:block;margin:auto;width:64px;height:64px;font-size:0;color:#fff}.spinner[_ngcontent-jus-c163] .loader[_ngcontent-jus-c163] .la-ball-clip-rotate[_ngcontent-jus-c163] > div[_ngcontent-jus-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-jus-c8="" ng-version="14.3.0"><!----><app-header-old _ngcontent-jus-c8=""><span id="url_constant1" class="d-none">eyJpdiI6InFYUDBXMmNzUkVKS1h2R1ovd3UyMHc9PSIsInZhbHVlIjoiVzhpUEk4bkczenhSMlNvcHpwQk5qd2E3Y2JLUk5Hc0dRNFhzSlBTTXBkcz0ifQ==</span><div class="top_head banner-img d-none"><a href="events"><img src="assets/images/top_banner_2.png?v=0.0.4" alt="Banner Img" class="img-fluid"></a></div><header class="sticky-top"><div class="upper_head"><div tabindex="-1" class="d-flex justify-content-end align-items-center"><p class="mb-0 alpha"><span id="decreasetext">-A </span> | <span id="resettext">A</span> | <span id="increasetext"> A+ </span></p><ul class="navbar-nav align-self-center"><li class="nav-item dropdown"><a href="" id="language" role="button" data-bs-toggle="dropdown" aria-expanded="false" class="nav-link dropdown-toggle"> English </a><ul aria-labelledby="language" class="dropdown-menu"><li><a href="#" class="dropdown-item">English</a></li></ul></li></ul></div></div><nav class="navbar navbar-expand-lg"><div class="container"><button id="closeDropdown" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler me-3"><span class="navbar-toggler-icon"><svg width="16" height="10" viewBox="0 0 16 10" fill="none"><path d="M0 1H16" stroke="black" stroke-width="1.5"></path><path d="M0 5H16" stroke="black" stroke-width="1.5"></path><path d="M0 9H10" stroke="black" stroke-width="1.5"></path></svg></span></button><a routerlink="/" class="navbar-brand left" href="/"><img src="assets/images/niti-logo.png?v=0.0.1" alt="WEP Logo" class="img-fluid w-50"></a><div id="navbar" class="collapse navbar-collapse justify-content-center"><ul class="navbar-nav center"><li class="nav-item"><a routerlink="/" class="nav-link" href="/"><i aria-hidden="true" class="fas fa-home"></i></a></li><li class="nav-item dropdown has-megamenu"><a href="#" data-bs-auto-close="outside" data-bs-toggle="dropdown" class="nav-link dropdown-toggle"> Explore </a><div role="menu" class="dropdown-menu megamenu"><div class="row g-3"><div class="col-md-12 my-3"><h2 class="text-white"> What would you like to explore today? </h2></div><div class="col-lg-6"><div class="col-megamenu"><h6 class="title">INTEREST AREAS</h6><ul class="list-unstyled" style="display: grid; grid-template-columns: auto auto;"><li><a id="goToAccess" href="access-finance?slug=funding">Funding</a></li><li><a id="goToAccess" href="access-finance?slug=incubation-and-acceleration">Incubation and Acceleration</a></li><li><a id="goToAccess" href="access-finance?slug=mentoring-and-networking">Mentoring and Networking</a></li><li><a id="goToAccess" href="access-finance?slug=market-linkages">Market Linkages</a></li><li><a id="goToAccess" href="access-finance?slug=business-development-services">Business Development Services</a></li><li><a id="goToAccess" href="access-finance?slug=research-innovation">Research & Innovation</a></li><!----></ul></div></div><div class="col-lg-3"><div class="col-megamenu"><h6 class="title">Resource Type</h6><ul class="list-unstyled"><li><a href="javascript::void(0)">Schemes</a></li><li><a href="javascript::void(0)">Incubators & Accelerators</a></li><li><a href="javascript::void(0)">Publications & Articles</a></li></ul></div></div><div class="col-lg-3 align-self-end mt-auto mt-xs-0"><div class="col-megamenu"><ul class="list-unstyled"><li><a href="javascript::void(0)">Videos</a></li><li><a href="javascript::void(0)">Toolkits <span class="ms-1">( Coming Soon )</span></a></li><li style="visibility: hidden;"><a href="#">Coming Soon <span class="ms-1">( Coming Soon )</span></a></li></ul></div></div></div></div></li><li class="nav-item dropdown has-megamenu"><a href="#" data-bs-auto-close="outside" data-bs-toggle="dropdown" class="nav-link dropdown-toggle"> Community </a><div role="menu" class="dropdown-menu megamenu"><div class="row g-3"><div class="col-md-12 my-3"><h2 class="text-white">Engage with the Community</h2></div><div class="col-lg-4 col-sm-6"><div class="col-megamenu"><h6 class="title">Network</h6><ul class="list-unstyled"><li><a href="community-list">We Community</a></li><li><a href="#"> Mentors <span class="ms-1">( Coming Soon )</span></a></li><li><a href="#">Stories <span class="ms-1">( Coming Soon )</span></a></li></ul></div></div><div class="col-lg-8 col-sm-6"><div class="col-megamenu"><h6 class="title">Events</h6><ul class="list-unstyled d-flex"><li class="me-2"><a href="event-details?slug=undp-villgro-women-entrepreneurship-program-empow-1"><input type="hidden" value="95"><img alt="Recent Event Image" style="height: 20vh;" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/event/admin/7e06K5HFnct3tKv6UkgNMzUwS6Bv8w1707486646.png"></a></li><li class="me-2"><a href="event-details?slug=we-win"><input type="hidden" value="96"><img alt="Recent Event Image" style="height: 20vh;" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/event/admin/dmUoKM65cpEhnS1dQ772aOhdzosuyi1710493369.png"></a></li><li class="me-2"><a href="event-details?slug=catalyse-tech-entrepreneur-innovation-challenge"><input type="hidden" value="87"><img alt="Recent Event Image" style="height: 20vh;" src="https://nitiprod.s3.ap-south-1.amazonaws.com/storage/app/public/uploads/event/admin/N1cvMd9IMMluWjDZXP06z81UxV48dI1700733302.png"></a></li><!----></ul><a href="events" class="mt-3 d-block"><img src="assets/images/arrow1.svg" alt="Right Arrow Image"></a></div></div></div></div></li><li class="nav-item"><a routerlink="/partners" class="nav-link" href="/partners">Partners</a></li><li class="nav-item"><a routerlink="about" class="nav-link border-0" href="/about">about</a></li><li class="nav-item" style="visibility: hidden;"><a href="/wep-mentorship-home" class="nav-link border-0">Mentorship</a></li></ul></div><ul class="right d-flex justify-content-around mb-0" style="width: 20%;"><li></li><!----><!----><li class="dropdown profilemenu"><a href="#" id="profile" role="button" data-bs-toggle="dropdown" aria-expanded="false" class="dropdown-toggle" style="justify-content: flex-end;"><!----><img alt="user-logo" class="user_imageprofile" src="https://api.wep.gov.in/public/default.png "><!----> <b>yolo oloy</b><i aria-hidden="true" class="fas fa-chevron-down ms-3"></i></a><ul aria-labelledby="" class="dropdown-menu usermenus"><li><!----><!----><!----><a routerlink="dashboard-my-feeds" class="dropdown-item" href="/dashboard-my-feeds">Dashboard</a><!----></li><li><!----><a routerlink="mentee-meeting-calender" class="dropdown-item" href="/mentee-meeting-calender">Meeting Calendar</a><!----></li><li><a routerlink="blogs" class="dropdown-item" href="/blogs">Blogs</a><!----></li><li><a routerlink="events" class="dropdown-item" href="/events">Events</a><!----></li><li><!----><a routerlink="wep-profile" class="dropdown-item" href="/wep-profile">My Profile</a><!----></li><li><a href="javascript:void(0)" class="dropdown-item">Log out</a></li></ul></li><!----><li class="d-none mobile-menu dropdown"><a href="#" id="accountbar" role="button" data-bs-toggle="dropdown" aria-expanded="false"><i aria-hidden="true" class="fas fa-user"></i></a><ul aria-labelledby="navbarDropdown" class="dropdown-menu usermenus"><li><a href="#" data-bs-toggle="offcanvas" role="button" data-bs-target="#register_menu" aria-controls="register_menu" class="dropdown-item">Register</a></li><li><a href="#" data-bs-toggle="offcanvas" role="button" data-bs-target="#login_menu" aria-controls="login_menu" class="dropdown-item">Login</a></li></ul></li></ul></div></nav></header><div id="event_register" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true" class="modal fade"><div class="modal-dialog modal-dialog-centered modal-dialog-scrollable"><div class="modal-content"><div class="modal-header"><h5 id="exampleModalLabel" class="modal-title">Event Register</h5><button type="button" data-bs-dismiss="modal" aria-label="Close" class="btn-close text-white"><i aria-hidden="true" class="fas fa-close"></i></button></div><div class="modal-body"><div class="container px-0"><div class="row"><div class="col-md-12"><div class="offcanvas-body p-0"><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-valid"><!----><div><h4 class="fw-18 fw-600"> Do you want to register in this event? </h4></div><!----><div class="form_button modal-formBtn"><button type="submit" class="btn btn-dark">Register</button><a id="fireMe"></a><a href="javascript::void(0)" id="eventRegister" role="button" data-bs-toggle="modal" data-bs-target="#event_register"></a></div><!----></form></div></div></div></div></div></div></div></div><div tabindex="-1" id="register_menu" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Image Logo" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Start your entrepreneurial journey with us!</h5><form novalidate="" class="register_form needs-validation ng-untouched ng-pristine ng-invalid"><div class="form_field"><label for="" class="form-label">First Name <span class="text-danger">*</span></label><input type="text" formcontrolname="first_name" id="avalidationCustom12" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid"><!----></div><div class="form_field"><label for="" class="form-label">Last Name</label><input type="text" formcontrolname="last_name" id="avalidationCustom01" value="" class="form-control ng-untouched ng-pristine ng-valid"><!----></div><div class="radios"><label for="" class="d-block form-label">Sign up by<span class="text-danger">*</span></label><div class="form-check form-check-inline"><input type="radio" formcontrolname="type" id="inlineRadio2" value="phone" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="inlineRadio2" class="form-check-label">Mobile</label></div><div class="form-check form-check-inline"><input type="radio" formcontrolname="type" id="inlineRadio1" value="email" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="inlineRadio1" class="form-check-label">Email</label></div><div class="form-check form-check-inline"><input type="radio" formcontrolname="type" id="inlineRadio3" value="both" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="inlineRadio3" class="form-check-label">Both</label></div><!----></div><div class="form_field"><label for="" class="form-label">Email <span class="text-danger">*</span></label><input type="email" formcontrolname="email" id="avalidationCustom02" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid"><!----><div><span class="text-danger"></span></div></div><!----><div class="form_field"><label for="" class="form-label">Mobile Number <span class="text-danger">*</span></label><div class="input-group"><button type="button" data-bs-toggle="dropdown" aria-expanded="false" class="btn btn-outline-secondary dropdown-toggle border-end-0"> +91 </button><input type="number" formcontrolname="phone" id="avalidationCustom03" value="" maxlength="10" oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);" required="" class="form-control border-start-0 ng-untouched ng-pristine ng-invalid"><!----></div><div><span class="text-danger"></span></div></div><!----><div class="form_field"><label for="" class="form-label">Set Password <span class="text-danger">*</span></label><div class="d-flex"><input formcontrolname="password" id="avalidationCustom41" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid" type="password"><span class="input-group-text"><i class="fa-solid fa-eye-slash"></i></span></div><!----></div><div class="form_field"><label for="" class="form-label">Confirm Password <span class="text-danger">*</span></label><div class="d-flex"><input formcontrolname="cnf_password" id="avalidationCustom05" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid" type="password"><span class="input-group-text"><i class="fa-solid fa-eye-slash"></i></span></div><!----><!----></div><div class="form_button"><button role="submit" class="btn btn-dark">Create Account</button><a id="clickVerified" data-bs-toggle="offcanvas" data-bs-target="#verified" aria-controls="verified" class="btn btn-dark" hidden=""></a><p> Already a member? <a href="" data-bs-toggle="offcanvas" role="button" data-bs-target="#login_menu" aria-controls="login_menu"><u><b> Login </b></u></a></p></div></form></div></div></div></div></div><div tabindex="-1" id="verified" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Enter OTP for verification</h5><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-invalid"><!----><hr><!----><div><span class="text-danger"></span></div><div class="form_button"><button type="submit" class="btn btn-dark">Verify</button><a href="javascript::void(0)" id="hideVerifyToggle" data-bs-toggle="offcanvas"></a><a id="goToLoginPage" data-bs-toggle="offcanvas" data-bs-target="#login_menu" aria-controls="login_menu" class="btn btn-dark" hidden=""></a><a id="goToRegisterPage" data-bs-toggle="offcanvas" data-bs-target="#register_menu" aria-controls="register_menu" class="btn btn-dark" hidden=""></a></div></form></div></div></div></div></div><div tabindex="-1" id="login_menu" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Welcome back to WEP</h5><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-invalid"><div class="form_field"><label for="" class="form-label">Email/Mobile <span class="text-danger">*</span></label><input type="text" formcontrolname="email" id="avalidationCustom07" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid"><!----></div><div class="form_field"><label for="" class="form-label">Password <span class="text-danger">*</span></label><div class="d-flex"><input formcontrolname="password" id="avalidationCustom04" value="" class="form-control ng-untouched ng-pristine ng-invalid" type="password"><span class="input-group-text"><i class="fa-solid fa-eye-slash"></i></span></div><!----></div><div class="text-center"><span id="errorMesg" class="text-danger"></span></div><a href="#" data-bs-toggle="offcanvas" role="button" data-bs-target="#forgot_pw" aria-controls="forgot_pw"><u><b> Forgot Password?</b></u></a><div class="form_button"><button class="btn btn-dark">Login</button><a href="javascript::void(0)" id="hideLoginToggle" data-bs-toggle="offcanvas"></a><p> Not a member yet? <a href="" data-bs-toggle="offcanvas" role="button" data-bs-target="#register_menu" aria-controls="register_menu"><u><b> Register Now </b></u></a></p></div></form></div></div></div></div></div><div tabindex="-1" id="search" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-valid"><div class="form_field"><label for="" class="form-label">Search anything here..</label><input type="text" class="form-control"></div><div class="form_button"><button class="btn btn-dark">Search</button></div></form></div></div></div></div></div><div tabindex="-1" id="forgot_pw" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Welcome back to WEP</h5><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-invalid"><div class="radios"><div class="form-check form-check-inline"><input type="radio" formcontrolname="forgot_pass_type" id="radioEmail" value="email" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="radioEmail" class="form-check-label">By Email</label></div><div class="form-check form-check-inline"><input type="radio" formcontrolname="forgot_pass_type" id="radioMobile" value="phone" class="form-check-input ng-untouched ng-pristine ng-valid"><label for="radioMobile" class="form-check-label">By Mobile</label></div><!----></div><div class="form_field"><label for="" class="form-label">Email*</label><input type="text" formcontrolname="email" id="forgotemail" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid"><!----></div><!----><!----><div class="form_button"><a id="goForgetPasswordOTP" data-bs-toggle="offcanvas" data-bs-target="#password_otp" aria-controls="password_otp" class="btn btn-dark d-none"></a><button type="submit" class="btn btn-dark"> Forgot Password </button></div></form></div></div></div></div></div><div tabindex="-1" id="password_otp" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Enter OTP for verification</h5><form novalidate="" class="login_form needs-validation ng-untouched ng-pristine ng-invalid"><!----><!----><div class="form_button"><a id="forgetPasswordOTPVerify" data-bs-toggle="offcanvas" data-bs-target="#change_pw" aria-controls="change_pw" class="btn btn-dark d-none"></a><button class="btn btn-dark">Verify</button><a href="javascript::void(0)" id="" data-bs-toggle="offcanvas"></a><a id="goToLoginPage" data-bs-toggle="offcanvas" data-bs-target="#login_menu" aria-controls="login_menu" class="btn btn-dark" hidden=""></a></div></form></div></div></div></div></div><div tabindex="-1" id="change_pw" class="offcanvas offcanvas-end rightsidebar"><div class="container"><div class="row"><div class="col-md-11"><div class="offcanvas-header"><img src="assets/images/niti-logo.png?v=0.0.1" alt="Niti Logo Image" class="img-fluid"><button type="button" data-bs-dismiss="offcanvas" aria-label="Close" class="btn-close text-reset"></button></div><div class="offcanvas-body"><h5>Add New Password</h5><form novalidate="" class="login_form ng-untouched ng-pristine ng-invalid"><div class="form_field"><label for="" class="form-label">New Password*</label><div class="d-flex"><input formcontrolname="new_password" id="avalidationCustom14" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid" type="password"><span class="input-group-text"><i class="fa-solid fa-eye-slash"></i></span></div><!----></div><div class="form_field"><label for="" class="form-label">Confirm Password*</label><div class="d-flex"><input formcontrolname="confirm_new_password" id="avalidationCustom24" value="" required="" class="form-control ng-untouched ng-pristine ng-invalid" type="password"><span class="input-group-text"><i class="fa-solid fa-eye-slash"></i></span></div><!----><span class="text-danger"></span></div><span class="text-success"></span><div class="form_button"><button type="submit" class="btn btn-dark">Confirm</button></div></form></div></div></div></div></div><button type="button" data-bs-toggle="modal" data-bs-target="#successModalLabel" class="btn btn-primary d-none"> Launch demo modal
</button><div id="successModalLabel" tabindex="-1" aria-labelledby="successModalLabel" aria-hidden="true" class="modal fade"><div class="modal-dialog modal-dialog-centered modal-dialog-scrollable"><div class="modal-content"><div class="modal-header"><h5 id="successModalLabel" class="modal-title">Popup Label</h5><button type="button" data-bs-dismiss="modal" aria-label="Close" class="btn-close text-white"><i aria-hidden="true" class="fas fa-close"></i></button></div><div class="modal-body"><h5 class="mb-4">Are you sure you want to delete!</h5></div><div class="modal-footer d-flex justify-content-between"><button type="button" class="btn btn-dark">Close</button></div></div></div></div><div id="cookies_modal" class="d-block"><div><button type="button" class="btn_"><i class="fas fa-times"></i></button></div><div class="cookie_content"><h4>We respect your privacy </h4><p>We use cookies to ensure that we give you the best experience on our website. We also use cookies to show you relevant resources to you, You can change your cookie settings at any time.</p><button class="btn btn-dark mt-md-4">Accept Cookies</button></div></div><button type="button" id="cannotBrowseModal" data-bs-toggle="modal" data-bs-target="#accesssmore" class="btn btn-primary d-none"> Launch demo modal
</button><div id="accesssmore" tabindex="-1" aria-labelledby="accesssmoreLabel" aria-hidden="true" class="modal fade closeBrowseModal"><div class="modal-dialog modal-lg modal-dialog-centered"><div class="modal-content bg-white"><div class="modal-body"><button type="button" data-bs-dismiss="modal" aria-label="Close" class="btn-close bg-light float-end"><i aria-hidden="true" class="fas fa-close text-dark"></i></button><div class="row"><div class="col-md-12 mb-5"><div class="access-instaruction"><h4>Looks like you’ve already viewed your 2 free pre-registration resources.</h4></div></div><div class="col-md-9"><p>Please join us to get complete access to over 300+ resources to get your journey started!</p></div><div class="col-md-3 text-end"><div class="register-btn"><button data-bs-toggle="offcanvas" role="button" data-bs-target="#register_menu" aria-controls="register_menu" class="btn btn-dark text-uppercase fw-600"> Register </button></div></div></div></div><div class="modal-footer schemes-access-footer justify-content-start"><div class="sm-icon" style="width: 8%; margin: 15px;"><img src="assets/images/smart-icon.svg" alt="" class="img-fluid w-100"></div><div style="width: 60%;"><h5><b>Tried Smart Match yet?</b></h5><p>Use Smart Match to get personalised recommendations of partners to connect with.</p></div><a href="javascript::void(0)" data-bs-toggle="offcanvas" role="button" data-bs-target="#login_menu" class="sm-link"><img src="assets/images/arrow.svg" alt="Arrow Image" class="arrow_animation"></a></div></div></div></div><button type="button" id="successContactModalButton" data-bs-toggle="modal" data-bs-target="#successContactModal" class="btn btn-primary d-none"> Launch demo modal
</button><div id="successContactModal" tabindex="-1" aria-labelledby="successContactModal" aria-hidden="true" class="modal fade"><div class="modal-dialog modal-dialog-centered modal-dialog-scrollable"><div class="modal-content"><div class="modal-header"><h5 id="successContactModal" class="modal-title">Success</h5><button type="button" data-bs-dismiss="modal" aria-label="Close" class="btn-close text-white"><i aria-hidden="true" class="fas fa-close"></i></button></div><div class="modal-body"><h5 class="mb-4 text-dark" style="text-align: center; font-size: 20px; text-transform: capitalize;"> Registration Successful </h5></div><div class="modal-footer d-flex justify-content-between" style="flex-direction: row-reverse;"><button type="button" data-bs-dismiss="modal" class="btn btn-dark" style="padding: 10px 45px!important;">OK</button></div></div></div></div></app-header-old><!----><div _ngcontent-jus-c8="" id="main_container" class="page-container"><router-outlet _ngcontent-jus-c8=""></router-outlet><app-faq><div class="faq"><div class="container"><div class="row"><h1 class="heading">FAQs</h1><div class="col-md-10"><div class="row align-items-center gy-4"><div class="col-lg-6"><ul id="pills-tab" role="tablist" class="nav nav-pills"><li role="presentation" class="nav-item"><button id="pills-gen-tab" data-bs-toggle="pill" data-bs-target="#pills-gen" type="button" role="tab" aria-controls="pills-gen" aria-selected="true" class="nav-link active">General</button></li><li role="presentation" class="nav-item"><button id="pills-home-tab" data-bs-toggle="pill" data-bs-target="#pills-home" type="button" role="tab" aria-controls="pills-home" aria-selected="true" class="nav-link">For Entrepreneurs/Mentees</button></li><li role="presentation" class="nav-item"><button id="pills-mentor-tab" data-bs-toggle="pill" data-bs-target="#pills-mentor" type="button" role="tab" aria-controls="pills-mentor" aria-selected="false" class="nav-link">For Mentors</button></li><li role="presentation" class="nav-item"><button id="pills-profile-tab" data-bs-toggle="pill" data-bs-target="#pills-profile" type="button" role="tab" aria-controls="pills-profile" aria-selected="false" class="nav-link">For Partners</button></li><li role="presentation" class="nav-item d-none"><button id="pills-contact-tab" data-bs-toggle="pill" data-bs-target="#pills-contact" type="button" role="tab" aria-controls="pills-contact" aria-selected="false" class="nav-link">WTI Awads</button></li></ul></div><div class="col-md-12 mt-4 d-sm-none d-block"><div type="button" data-bs-toggle="collapse" data-bs-target="#filters" aria-expanded="false" aria-controls="filters" class="filter"><i class="fas fa-filter"></i> Filter By </div></div><div id="filters" class="intro-filters collapse col-lg-6"><form novalidate="" class="ng-untouched ng-pristine ng-valid"><div class="row"><div class="col-lg-9 col-sm-8"><div class="intro-select"><div class="input-group mb-3"><span id="basic-addon1" class="input-group-text bg-white"><i aria-hidden="true" class="fas fa-search"></i></span><input formcontrolname="search" type="text" placeholder="search" aria-label="" aria-describedby="basic-addon1" class="form-control ng-untouched ng-pristine ng-valid"></div></div></div><div class="col-lg-3 col-md-4 col-8 d-none"><div class="intro-select"><select formcontrolname="category_id" aria-label="" class="form-select ng-untouched ng-pristine ng-valid"><option selected="" disabled="" value="">Select...</option><option value="1">Business Management </option><option value="2">Covid 19 Resources </option><option value="3">Grouth Managemant </option><option value="4">People Management </option><option value="5">Marketing and Sales </option><option value="9">avd </option><!----></select></div></div><div class="col-lg-3 col-4"><div class="intro-select"><button type="submit" id="autoSeach" class="btn btn-dark">Search</button></div></div></div></form></div></div><div id="pills-tabContent" class="tab-content pb-5"><div id="pills-gen" role="tabpanel" aria-labelledby="pills-gen-tab" class="tab-pane fade show active"><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers64" value="64"> What is WEP? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The
Women Entrepreneurship Platform (WEP) </span><span>was
an initiative that was ideated and incubated at NITI Aayog in 2017<span>. In 2022, WEP transitioned </span>into<span> a Publ</span>ic Private Partnership (PPP).<span> It is a first-of-its-kind unified access portal that
brings together women from different parts of India to realize their
entrepreneurial aspirations. The platform aims to build an ecosystem that
supports women entrepreneurs in scaling up innovative initiatives and
developing sustainable long-term strategies for their businesses. WEP also </span>brings
together partnerships that offer <span>a range of services
including mentorship, funding support, apprenticeship opportunities, and
corporate partnerships. It also encourages entrepreneurs to share their
journeys, stories, and experiences to foster mutual learning among women
entrepreneurs.</span></span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers65" value="65"> What is WEP Mentorship Platform? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The
WEP Mentorship Platform is a </span><span>digital public platform being developed as an Indian public good
offering to the G20 countries, aimed at providing mentorship to promote women
entrepreneurship.</span><span> It is<span> </span><span>created under India's
G20 EMPOWER Presidency in collaboration with WEP. It is a valuable contribution
from India to support the economic empowerment of women globally. <b>Women Entrepreneurship Platform (WEP)
mentorship platform is a microsite within the WEP platform</b></span><b>. It offers smart matchmaking between
mentors and mentees and brings</b><span> together multiple
mentorship programs, accelerators, and aggregators to create a safe and
inclusive environment for mentorship </span>of women entrepreneurs.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers66" value="66"> What kind of mentoring does the platform offer? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The WEP Mentorship
Platform offers<span> </span>four tracks of
mentorship <br>through WEP and its official
partners and third-party organizations : Individual mentoring, Mentorship
Programs by Organizations, Curated Mentorship Workshops and Peer 2 Peer (P2P)
Mentoring.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers67" value="67"> How does the WEP Mentorship Platform work? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
</p><p><span>The four tracks of mentorship provided by the WEP
platform <span>i.e. </span>Individual mentoring,
Mentorship Programs by Organizations, Curated Mentorship Workshops and Peer 2
Peer Mentoring provide unique mentorship opportunities tailored to the needs
and preferences of the users. This integration creates a centralized hub where
users can access multiple mentorship resources and opportunities in one place.</span></p><p><span>To facilitate effective mentor-mentee connections, the
platform utilizes <span>Artificial Intelligence (</span>AI)
and Machine Learning (ML) technologies for smart matchmaking between profiles
of mentors and mentees. This ensures that the mentorship experience is
personalized and aligned with the specific needs of each user.</span></p><p><span>Aspiring<span> </span>Women
Entrepreneurs<span> </span>can easily connect with
mentors and engage in mentorship programs through the platform's seamless user
experience.</span></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers68" value="68"> What areas of expertise will be offered on the mentorship platform? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The WEP Mentorship
Platform offers mentorship support across several areas of functional expertise
including access to finance, market linkages, training and skilling,
networking, incubation and acceleration, and<span>
</span>business development services.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers69" value="69"> How does the platform match mentors and mentees? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The
platform utilizes AI and ML algorithms for </span><span>smart
<span>matchmaking of </span><br>mentees with mentors and industry experts who
have relevant experience in similar industry and expertise in their desired
areas. <span>These algorithms analyse the profiles,
preferences, and objectives of mentors and mentees to </span>‘<span>smart match</span>’<span> them for
personalized and efficient mentorship connections.</span></span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers70" value="70"> Are there any guidelines or policies for behaviour and conduct on the platform? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Yes,
there are guidelines to ensure appropriate </span><span>c<span>onduct for </span>mentors and mentees.<span> These guidelines </span>can be accessed here: (Hyperlink
to Guidelines and Code of Conduct)</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers71" value="71"> Is my personal information safe with WEP Mentorship Platform? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The information that
you share with WEP while completing your profile will be safe and confidential.
No one will have access to your information until you provide it to them.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers72" value="72"> Is this a paid mentorship platform? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>No,
</span><span>the WEP Mentorship Platform is free for all
users including <span>both Mentors and Mentees. However,
mento</span>rship <span>services provided by the
third-party organizations are subject to their terms and condi</span>tions. WEP
and its official partners are not responsible or liable for any services
provided by third-party organizations.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers73" value="73"> How can I contact the WEP Mentorship Platform team? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p><span><a class="e-rte-anchor" href="https://wep.gov.in/contactus" title="https://wep.gov.in/contactus" target="_blank">Click here</a> or write to <a class="e-rte-anchor" href="mailto:[email protected]" title="[email protected]">[email protected]</a> with your queries!</span><br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><!----></div><div id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab" class="tab-pane fade"><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers74" value="74"> Am I eligible to be a mentee? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Eligibility to be a
mentee on our mentorship platform is generally open to all aspiring and
existing women entrepreneurs, who are seeking guidance and support in their
entrepreneurial journey.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers75" value="75"> Do I have to be an entrepreneur to use the WEP Mentorship Platform? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>You can avail the
services<span> </span>of the WEP Mentorship Platform
regardless of the stage of your enterprise, and even if you are an aspiring
entrepreneur.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers76" value="76"> How will mentorship help me? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Mentorship offers
valuable benefits by providing you with personalized guidance, support, and
insights from experienced mentors. Mentors can help you navigate challenges,
provide industry-specific knowledge, share their experiences, and offer advice
to help you achieve your goals.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers77" value="77"> How will I be assigned a mentor? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The platform utilizes
AI and ML algorithms for smart matchmaking. Based on the information provided
by users in their profiles, these algorithms analyze the profiles, preferences,
and objectives of mentors and mentees to make personalized and efficient
mentorship connections. The platform aims to match mentees with mentors who
have relevant expertise and experience in their desired areas. The matching
process is designed to facilitate meaningful connections and ensure a
productive mentorship experience.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers78" value="78"> Will the mentorship be online, offline, or both? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>WEP mentorship
platform provides the flexibility to
connect with mentors regardless of geographical location to enable mentorship
access to a wide range of aspiring and existing entrepreneurs by offering
online, offline, and hybrid mode of mentorship services. Our platform provides
an option for the users to choose the preferred mode of engagement while
registering, based on which you will be connected to the right mentor through
smart-match feature. Mentorship services on our platform can be conducted
entirely online, offline or both depending on the type of mentorship you opt
for.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers79" value="79"> Do I need to pay any amount for mentorship? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>No, the WEP
Mentorship Platform is free for all users. However, mentorship services
provided by the third-party organizations are subject to their terms and
conditions. WEP and its official partners are not responsible or liable for any
services provided by third-party organizations.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers80" value="80"> How can I make the most of the mentorship engagement? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>To make the most of
your mentorship experience, it is essential to set clear goals, communicate
openly with your mentor, actively participate in discussions and learning
activities, and be open to receiving feedback. Take initiative, ask questions,
and be proactive in seeking guidance and support from your mentor. Being
committed, engaged, and receptive to feedback can maximize the benefits of the
mentorship relationship.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers81" value="81"> How can I make the most of the mentorship engagement? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>To make the most of
your mentorship experience, it is essential to set clear goals, communicate
openly with your mentor, actively participate in discussions and learning
activities, and be open to receiving feedback. Take initiative, ask questions,
and be proactive in seeking guidance and support from your mentor. Being
committed, engaged, and receptive to feedback can maximize the benefits of the
mentorship relationship.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers82" value="82"> Can I change my mentor? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Mentorship
relationships are typically established for the duration of the program.
However, if there are significant concerns or challenges with the mentor-mentee
match, it may be possible to explore a change of mentor. We encourage open
communication and provide support to address any issues that may arise during
the mentorship journey.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers83" value="83"> Which mentorship program is best suited for me? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The best-suited
mentorship program for you depends on your specific goals, interests, and
needs. Explore the different mentorship programs available on our platform,
read the program descriptions, and consider the areas of expertise and support
provided by each program.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers84" value="84"> Can I opt for only one type of mentoring? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Yes you can either
opt for only one type of mentoring or you can choose multiple types of mentoring
, depending on your requirements and interest.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers85" value="85"> Will I get to interact with other entrepreneurs? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>WEP encourages
interactions and networking among peer entrepreneurs. By choosing Peer 2 Peer
(P2P) mentoring, you can interact with other entrepreneurs who are registered
users of the platform.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers86" value="86"> What to do in case a mentee is matched with multiple mentors? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>In case you are
matched with multiple mentors, you can<span>
</span>select the mentor of your choice out of the list presented to you after
exploring the matched mentor profiles.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers87" value="87"> What happens once I am matched with a mentor? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Once matched with a
mentor, click on the connect button to initiate<span>
</span>a chat with the mentor.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><!----></div><div id="pills-mentor" role="tabpanel" aria-labelledby="pills-mentor-tab" class="tab-pane fade"><div id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab" class="tab-pane fade show active"><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers88" value="88"> Who are the mentors? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The
mentors on the Mentorship Platform are industry experts and experienced </span><span>professionals<span> in
various </span>fields for providing mentorship<span>. They
are individuals who volunteer their time and expertise to support and guide
women in their </span>entrepreneurial journey<span>.</span></span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers89" value="89"> Am I eligible to be a mentor? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Eligibility
to become a mentor on the WEP mentorship platform depends on your expertise,
experience, and willingness to guide and support others. We welcome mentors
from various fields who are passionate about making a positive impact on
mentees' professional growth.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers90" value="90"> Who can become a mentor? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Industry experts who
can provide support to mentees on access to finance, market linkages, training
or skilling, networking, incubation and acceleration, business development
services and any other areas of functional expertise can become mentors.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers91" value="91"> Which industry do I need to be in to be a mentor? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Mentors can be
industry agnostic or from any specific industry in which they have experience
and expertise to provide mentorship services.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers92" value="92"> Can I provide mentorship if I work in a family business? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Yes, you can be a
mentor if you have exposure to a family business.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers93" value="93"> Can I give preference for which stage of entrepreneur/enterprise to provide mentorship support? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Yes. Based on which
stage of enterprise you prefer i.e. Aspiring, Ideation, Validation, Early
Traction, Scaling, and Exit ,<span> </span>you can
give your preference in the registration form and the smart matchmaking
functionality will match you with the preferred stage of
entrepreneur/enterprise.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers94" value="94"> What are the benefits of becoming a mentor? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Becoming
a mentor on the WEP Mentorship Platform offers numerous benefits. It provides
an opportunity to make a positive impact on the lives of women worldwide</span><span> and<span> empower them to
reach their full potential. Mentoring allows you to share your knowledge,
experiences, and insights</span> thereby<span> contributing
to the growth and development of mentees. It also enables cross-cultural
learning and collaboration, fostering a global community dedicated to women's
economic representation.</span></span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers95" value="95"> How will I be matched with mentees? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The
WEP Mentorship Platform utilizes AI and ML technology for smart matchmaking.
Based on the information provided in your mentor profile, the platform's
algorithm matches you with mentees whose needs, interests, goals, and stage of </span><span>entrepreneurship<span> align
with your expertise.</span></span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers96" value="96"> How do I sign up and create a mentor profile? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Signing
up as a mentor is easy! </span><span>Please<span> click on Mentorship Platform->Individual Mentoring and
look for the mentor registration or sign-up section. Follow the instructions
provided to create your mentor profile, which may include providing your
personal and professional details, areas of expertise, and any additional
information required to showcase your mentorship qualifications effectively.</span></span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers97" value="97"> What is my weekly/monthly time commitment? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Your
weekly or monthly time commitment as a mentor depends on your availability and
agreed-upon expectations with your mentees. However, </span><span>WEP onboards mentors who can commit at least 2
hours per month for mentorship. </span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers98" value="98"> Can I change my mentee? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>As
per </span><span>our current structure, the mentor-mentee
relationship can continue till the time both parties are interested. However,
under certain circumstances, such as a significant mismatch in goals or
compatibility, it may be <span>possible to request a change
of mentee. We encourage open communication and provide support to address any
concerns or issues that may arise during the mentorship journey.</span></span>
<br></p></p></div></div></div><!----><!----></div><!----></div></div><div id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab" class="tab-pane fade"><div id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab" class="tab-pane fade show active"><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers49" value="49"> What is WEP? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><h2><span>The Women Entrepreneurship
Platform (WEP) </span><span>was an initiative that was
ideated and incubated at NITI Aayog in 2017<span>. In 2022,
WEP transitioned </span>into<span> a Publ</span>ic Private
Partnership (PPP).<span> It is a first-of-its-kind unified
access portal that brings together women from different parts of India to
realize their entrepreneurial aspirations. The platform aims to build an
ecosystem that supports women entrepreneurs in scaling up innovative
initiatives and developing sustainable long-term strategies for their
businesses. WEP also </span>brings together partnerships that offer <span>a range of services including mentorship, funding support,
apprenticeship opportunities, and corporate partnerships. It also encourages
entrepreneurs to share their journeys, stories, and experiences to foster
mutual learning among women entrepreneurs.</span></span><br></h2></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers50" value="50"> When was WEP started/launched? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The idea of the Platform was first mooted by Shri Amitabh Kant, CEO, NITI Aayog who announced the setting-up of a platform just for Women Entrepreneurs at the conclusion of the 8th Global Entrepreneurship Summit (GES) held in Hyderabad in 2017 to help resolve the information asymmetry that exists in the ecosystem.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers51" value="51"> How does one become a member of the WEP community? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>To become a member of the WEP community, women entrepreneurs need to complete the registration process and create a WEP account. Click here to register. Upon successful registration on this portal, you will receive a confirmation email. This indicates your inclusion into our member rolls. This online registration is entirely free of cost and you can avail all WEP services via this login.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers52" value="52"> What are the modules available on WEP? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<b>Knowledge Bank</b><span>: The knowledge bank module allows for hosting of blogs, checklists, infographics and video guides</span><br><br><b>Events</b><span>: All WEP and partner events can be hosted on this module where users can register and express interest in enrolling</span><br><br><b>Community</b><span>: The community module on the website allows entrepreneurs to connect with fellow entrepreneurs, mentors, partners and the WEP Team. This module helps in building a robust network that women entrepreneurs can leverage in the journey of their own enterprises.</span><br><br><b>Recognizing Role Models (Off- line)</b><span>: This is achieved through the Women Transforming India Awards, NITI Aayog's annual endeavour to recognize exceptional women changemakers in the country.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers53" value="53"> What are our focus areas? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>WEP has 6 main focus areas: Community and Networking; Funding and Financial Assistance; Incubation & Acceleration; Compliance & Tax Assistance; Entrepreneur Skilling & Mentorship and Marketing Assistance.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers54" value="54"> How do I navigate the WEP portal? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The WEP team has designed a walk-through to help acquaint you with our online services. Login to your WEP account and take a tour of the website here to explore our offerings.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers55" value="55"> What do WEP Partners do? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Partners are the pivotal agents that transform WEP’s vision to reality through incisive interventions. WEP partners with organizations with sound technical expertise across sectors to bring curated services to Women Entrepreneurs. Partners form the backbone of WEP’s ongoing efforts to make key services accessible to its users.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers56" value="56"> How can an interested organization initiate a partnership? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<a href="http://75.101.148.76/org-credentials" title="" target="_blank">Click here</a>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers57" value="57"> What services do WEP's existing partners offer? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<b>DEVELOPING THE KNOWLEDGE BANK</b><span>:</span><br><span>Partners can post articles and checklists and manuals, create learning modules, conduct masterclasses on their areas of expertise</span><br><br><b>CONTRIBUTING TO DISCUSSION FORUMS</b><span><span> </span>:</span><br><span>As ‘Expert’ contributors to the discussion forums, partners can create master threads for discussions on users’ areas of interest</span><br><br><b>OTHER ONLINE SERVICES</b><span><span> </span>:</span><br><span>Partners can assist in curating and conducting capacity building workshops, skilling drives and fellowships for users. They can also offer access to their online products and services through the events module on the platform</span><br><br><span>Have another unique offering for WEP?</span><br><span>Contact the WEP team at<span> </span></span><a href="mailto:%[email protected]">[email protected]</a><span><span> </span>to customize the collaboration</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers58" value="58"> What are the steps involved in coming onboard as a WEP partner? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><ul><li>Interested organizations fill out the Partner EoI form on the WEP Portal</li><li>WEP Team shortlists organizations periodically</li><li>Due diligence processes ensue to assess the interested organization’s alignment with WEP focus areas</li><li>Discussing deliverables and defining engagement metrics</li><li>Providing login credentials to the website along-with an orientation about its features</li></ul></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers59" value="59"> Who can partner with WEP? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><ul><li>Incubators & Accelerators</li><li>Banks & Service Providers</li><li>Training and Skill Development Organizations</li><li>Legal, Compliance and Taxation experts</li><li>Mentorship Programs</li><li>Networking and Market Access Agencies</li><li>Tech Innovators</li><li>Entrepreneur Networks and much more.</li></ul></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers60" value="60"> Who are WEP’s current partners? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<a href="http://75.101.148.76/partners" title="" target="_blank">Click here</a>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><!----></div></div><div id="pills-contact" role="tabpanel" aria-labelledby="pills-contact-tab" class="tab-pane fade"><div id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab" class="tab-pane fade show active"><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button show" id="faqQuestionAnswers15" value="15"> What are the WTI Awards? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion show"><div class="accordion-body"><p><p>The Women Transforming India Awards, is NITI Aayog’s flagship initiative which endeavours to identify and honour women entrepreneurs who bring transformational changes in the country across sectors.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers16" value="16"> How many editions of the WTI Awards have been organized? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>There have been 4 editions of the WTI awards so far on the following themes:</span><br><span>2016:</span><a href="https://niti.gov.in/sites/default/files/2019-06/Women_Empowerment_10Apr2017_6.pdf" target="_blank">Celebrating women changemakers</a><br><span>2017:</span><a href="https://niti.gov.in/sites/default/files/2019-06/Women_Empowerment_10Apr2017_6.pdf" target="_blank">Breaking the glass ceiling</a><br><span>2018:</span><a href="https://issuu.com/unitednationsindia/docs/wti" target="_blank">Women Entrepreneurship</a><br><span>2019:</span><a href="https://niti.gov.in/sites/default/files/2020-03/Coffee_Table_Book.pdf" target="_blank">Women Entrepreneurship</a>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers17" value="17"> Why are the WTI Awards hosted under WEP? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>Since 2018, the WTI Awards have been hosted under the aegis of the Women Entrepreneurship Platform on the theme of ‘Women and Entrepreneurship’. It is an ongoing endeavor to recognize and celebrate stories of exceptional women changemakers from across India.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers18" value="18"> What is the selection process for WTI Awards? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>The selection process involves an application round, from where shortlisted applicants will undergo one round of screening by esteemed panels before the winners are announced.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers19" value="19"> When will WTI 2021 be launched/ When will the next edition of the awards be announced? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>WTI 2021 applications have been announced. Last date for the submission is 14th Feb 2022.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers20" value="20"> I have not registered on Women Entrepreneurship Platform (WEP), can I still apply? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>WEP is a platform built with the vision of building an ecosystem for women across India to realize their entrepreneurial aspirations. We request you to take two minutes to register yourself on the platform, you will be required to submit your registration code in the Women Transforming India Awards application.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers21" value="21"> What all covers under broad categories? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>Please refer the table below for category wise coverage:<br><br></p><table class="table table-bordered"><tbody><tr><th class="">Category</th><th class="">Definition</th></tr><tr><td>Public and Community Service </td><td>Enterprises which are engaged in public works and community services for creating social impact.<br><br>Areas : Civil society, grass-root governance, law enforcement and legal justice, gender equality, international collaboration, education and skill development, health, water and sanitation, hygiene, waste management.</td></tr><tr><td>Manufacturing</td><td>Enterprises which are engaged in the mechanical, physical, or chemical transformation of materials, substances, or components into new products by hands, power-driven machines and materials-handling equipment.<br><br>Areas : Clothing and Textiles, Petroleum, Chemicals and Plastics, Electronics, Computers and Transportation, Food Production, Metal Manufacturing, Wood, Leather and Paper, Furniture among others.</td></tr><tr><td>Non-manufacturing and service</td><td class="">Enterprises which are engaged in all tertiary and quaternary sector activities other than ITeS, banking and financial products.<br><br>Areas : Agriculture and allied activities, retail, e-Commerce, services, maintenance and repairs, consulting, Journalism.</td></tr><tr><td>Fintech and Financial inclusion</td><td>Enterprises which are working towards development or improvement of solutions that seeks to improve and automate the delivery and use of financial services.<br><br>Areas : Fintech solutions, banking, insurance and other financial products.</td></tr><tr><td>Climate Action</td><td>Enterprises which are working towards environmental protection and conservation; and are engaged in development or improvement of energy efficiency products or processes or services.<br><br>Areas : Environment, energy including renewable energy, remedial solutions for curbing impact of climate change.</td></tr><tr><td>Promoting art, culture, heritage and handicrafts</td><td>Enterprises which are engaged in development and promotion of art, culture, entertainment, recreational activities and handicrafts.<br><br>Areas : Arts, handloom, handicrafts, heritage products, textiles, leather and others; Modern art forms; Sports</td></tr><tr><td>Digital innovation and DeepTech</td><td>Enterprises which are working towards innovation, development or improvement of products or processes or services driven by technology.<br><br>Areas : Science and technology, IT, ITeS, New Media and communication.</td></tr></tbody></table><p></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers22" value="22"> I do not have a business, but have an idea for setting up a business, can I apply? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>Currently the WTI Awards are for entrepreneurs who have existing business(es). We wish you luck for building your idea, and hope you come back to apply next year.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers23" value="23"> I identify myself as a gender fluid person/woman, can I apply? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Yes, WTI accepts applications from anyone who identifies themselves as a woman.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers24" value="24"> I would be applying on behalf of someone else, should I give my contact details in the application form? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>Please give the details of the nominee in the application form. Please do note, you will have to login on the nominee’s account as some of the details will be auto-populated. Towards the end of the application, you will be asked to provide your details if you’re applying on behalf of a nominee.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers25" value="25"> I do not have an active business now, although I had one until recently. Can I apply? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>WTI Awards encourages women to become/be entrepreneurs. Kudos for having taken this journey, we’d encourage you to apply when you have an existing business.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers26" value="26"> How do I share about WTI with some women entrepreneurs I know? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>Please direct them to the WEP website</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers27" value="27"> My business is spread across various locations, how do I choose which one to give the location details in the application form? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>If your business/organization has multiple offices/outlets/centers, you will be provided with an option of selecting ‘multi locations’ in the application form.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers28" value="28"> How do I know my application status? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>Once you submit your application, you would have received a confirmation message on the screen. This means your application has been submitted successfully. Regarding the status of your application, we wish to get back to you at the earliest, please wait to hear from us.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers29" value="29"> Will I have to travel to New Delhi during the selection process? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>You might have to travel to New Delhi if your application gets selected for the next round, we will provide you the necessary support for logistics. We will provide more details based on your application status.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers30" value="30"> What is the benefit of applying for WTI Awards 2021? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>The winners of WTI Awards will be recognised and felicitated on International Women’s Day that is 8th March 2022. The shortlisted candidates will get WTI rewards which include opportunity to get connected with NITI’/ WEP’s, Industrial partner’s social & community outreach; access to exclusive mentoring/ skilling support; access to sector specific training programs etc.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers31" value="31"> What happens if I get selected for WTI Awards 2021? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>If you get selected for WTI Awards 2021, you will be required to travel to New Delhi for the felicitation event,<span> </span></span><span>which is going to be held on 8th March 2022.</span><span>. We will provide more details based on your application status.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers32" value="32"> How can I engage with WTI Awards whether I get selected or not? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Keep your profile updated on<span> </span></span><a href="https://wep.gov.in/" target="_blank">Women Entrepreneurship Platform</a><span>, where you can find information on various initiatives and events, and also connect with fellow women entrepreneurs. You will also receive notifications about events relevant to you.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers33" value="33"> I am not an Indian by nationality, but run an organisation in India, am I eligible to apply? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>WTI Awards is open to all women creating an impact in India. WTI will also be recognizing and felicitating Women who have taken “Brand India”globally.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers34" value="34"> I have registered my company outside of India, but have operations in India, am I eligible to apply? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>WTI Awards is open to all women creating an impact in India. WTI will also be recognizing and felicitating Women who have taken “Brand India”globally.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers35" value="35"> Do I need to upload any document before submitting the application? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>
<span>Yes.</span><br><span>(i) If you represent SHG then please upload any one of the following:</span><br><span>??(a) Certification/endorsement by the promoter institute for applicant SHG as a proof of evidence of their association.</span><br><span>??or</span><br><span>??(b) SHG registration number with 'Khadi and Village Industries and Commission' or any other government agency.</span><br><span>??or</span><br><span>??(c) Books of accounts for last 6 months which are certified by CA.</span><br><span>(ii) If you represent enterprises other than SHGs, then please upload proof of registration/ incorporation certificate.</span>
<br></p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers36" value="36"> I am unable to submit the application form, what should I do? </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>Please write to [email protected] with your queries! You may also call our helpline number at +91-9667754900.</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><div class="accordion-item"><h2 id="headingOne" class="accordion-header"><button type="button" data-bs-toggle="collapse" data-bs-target="'#collapseOne'+i" aria-expanded="true" aria-controls="collapseOne" class="accordion-button" id="faqQuestionAnswers63" value="63"> test dsfsdfdsf </button></h2><div id="'collapseOne'+i" aria-labelledby="headingOne" data-bs-parent="" class="accordion-collapse collapse faqquestion"><div class="accordion-body"><p><p>testsfdsdfssdfsdfsfs</p></p></div></div></div><!----><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><div id="accordionExample" class="accordion"><!----></div><!----></div></div></div></div></div></div></div></app-faq><!----></div><!----><app-footer-old _ngcontent-jus-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-jus-c8="" _nghost-jus-c163=""><!----></app-spinner><!----><app-spinner _ngcontent-jus-c8="" _nghost-jus-c163="" hidden=""><!----></app-spinner><!----></app-root>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/js/intlTelInput-jquery.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js" integrity="sha512-XtmMtDEcNz2j7ekrtHvOVR4iwwaD6o/FUJe6+Zq+HgcCsk3kj4uSQQR8weQ2QVj1o0Pk6PwYLohm206ZzNfubg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/js/fontawesome.min.js" integrity="sha512-TXHaOs+47HgWwY4hUqqeD865VIBRoyQMjI27RmbQVeKb1pH1YTq0sbuHkiUzhVa5z0rRxG8UfzwDjIBYdPDM3Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.2.2/velocity.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.2.2/velocity.ui.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="runtime.66cb72610f1f3292.js" type="module"></script><script src="polyfills.fd38232efdac120e.js" type="module"></script><script src="scripts.980e0280a5bbac5d.js" defer=""></script><script src="main.8e76be0f7514332c.js" type="module"></script>
<script>
// Cycle through each textarea and add placeholder with individual word limits
$("textarea[word-limit=true]").each(function () {
$(this).attr("placeholder", "Writing entries: " + $(this).attr("min-words") + " words min, " + $(this).attr("max-words") + " words max");
});
// Add event trigger for change to textareas with limit
$(document).on("input", "textarea[word-limit=true]", function () {
// Get individual limits
thisMin = parseInt($(this).attr("min-words"));
thisMax = parseInt($(this).attr("max-words"));
// Create array of words, skipping the blanks
var removedBlanks = [];
removedBlanks = $(this).val().split(/\s+/).filter(Boolean);
// Get word count
var wordCount = removedBlanks.length;
// Remove extra words from string if over word limit
if (wordCount > thisMax) {
// Trim string, use slice to get the first 'n' values
var trimmed = removedBlanks.slice(0, thisMax).join(" ");
// Add space to ensure further typing attempts to add a new word (rather than adding to penultimate word)
$(this).val(trimmed + " ");
}
// Compare word count to limits and print message as appropriate
if (wordCount < thisMin) {
$(this).parent().children(".writing_error").text("Minimum " + thisMin + " words.");
} else if (wordCount > thisMax) {
$(this).parent().children(".writing_error").text("Maximum " + thisMax + " words.");
} else {
// No issues, remove warning message
$(this).parent().children(".writing_error").text("");
}
});
function scrollToTop() {
window.scrollTo({ top: 0, behavior: 'smooth' });
// if(window.scrollY != 0){
// document.getElementsByClassName("back-top").css('display', 'block');
// } else{
// document.getElementsByClassName("back-top").css('display', 'none');
// }
}
</script>
<script>
</script>
<div class="modal fade jiomodal" id="feedbackmodal" tabindex="-1" role="dialog" aria-labelledby="modelTitleId" aria-hidden="true" data-bs-backdrop="static">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header p-3">
<h5 class="modal-title">Meeting Feedback</h5>
<button type="button" class="btn-close" value="SKIP" id="feedbackformSubmit" aria-label="Close">
</button>
</div>
<div class="modal-body p-3">
<div class="meeting-info-popup">
<div class="meeting-details">
<h5 class="h5"><span id="meeting_topic_id"></span></h5>
<span>Date & Time: <b><span id="meeting_date_time_id"></span></b></span>
<hr>
</div>
<div class="meeting-mentor-details">
<div class="d-flex align-items-center">
<div class="m-img">
<img src="assets/images/default-profile.png" class="img-fluid" id="meetingfeedbackimage" alt="">
</div>
<div class="m-title ms-2">
<p class="fw-600 mb-0"><span id="meeting_name_id"></span></p>
<!-- <span class="d-block"><i class="fas fa-phone me-1" aria-hidden="true"></i> +91
<span id="meeting_phoneNumber_id"></span></span>
<span class="d-block"><i class="fas fa-envelope me-1" aria-hidden="true"></i>
<span id="meeting_email_id"></span></span> -->
</div>
</div>
</div>
<div class="ment-feedback">
<form>
<input type="hidden" name="feedbackForm_meeting_id" id="feedbackForm_meeting_id" value="">
<div class="d-flex starfeed mt-3">
<ul id="starRating">
<li><i class="fas fa-star" aria-hidden="true"></i></li>
<li><i class="fas fa-star" aria-hidden="true"></i></li>
<li><i class="fas fa-star" aria-hidden="true"></i></li>
<li><i class="fas fa-star" aria-hidden="true"></i></li>
<li><i class="fas fa-star" aria-hidden="true"></i></li>
</ul>
</div>
<span class="text-danger" id="required_rating"></span>
<div class="form-group mb-3">
<label for="" class="form-label">Feedback </label>
<textarea class="form-control height" name="feedbackForm_feedback" id="feedbackForm_feedback" rows="3"></textarea>
</div>
</form>
</div>
</div>
</div>
<div class="modal-footer justify-content-start">
<button type="button" class="btn btn-dark" value="SUCCESS" id="feedbackformSubmit">Submit</button>
<button type="button" class="btn btn-outline-dark" value="SKIP" id="feedbackformSubmit">Skip</button>
</div>
</div>
</div>
</div><iframe width="0" height="0" style="display: none;"></iframe>
<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> |