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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" class="l-ltr no-js" lang="en"
xml:lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
<meta property="og:image" content="http://te.eg/images/TE-Logo.jpg" />
<!-- rel=dynamic-content indicates an element that is replaced with the contents produced by the specified href.
dyn-cs:* URIs are resolved using the WP DynamicContentSpotMappings resource environment provider. These values can
also be set using theme metadata if a theme is specified in the URI (e.g. @tl:oid:theme_unique_name). -->
<link rel="stylesheet" href="/wps/contenthandler/!ut/p/digest!uQlOnpyQpohjY9uSf8JQzg/sp/mashup:ra:collection?soffset=0&eoffset=15&themeID=ZJ_50D2I0S0LGUIC0AEH1HGAI3001&locale=en&mime-type=text%2Fcss&lm=1436215181000&entry=wp_one_ui_30__0.0%3Ahead_css&entry=wp_one_ui_dijit_30__0.0%3Ahead_css&entry=wp_status_bar__0.0%3Ahead_css&entry=wp_portlet_css__0.0%3Ahead_css&entry=wp_theme_portal_80__0.0%3Ahead_css&entry=wp_legacy_layouts__0.0%3Ahead_css&entry=wp_project_menu__0.0%3Ahead_css&entry=wp_preview__0.0%3Ahead_css" type="text/css"/><link rel="alternate" id="head_css_deferred" href="/wps/contenthandler/!ut/p/digest!LejEKmt_0o49pQhpcZvO_w/sp/mashup:ra:collection?soffset=0&eoffset=16&themeID=ZJ_50D2I0S0LGUIC0AEH1HGAI3001&locale=en&mime-type=text%2Fcss&lm=1431030802000&entry=mm_builder_dialogs__0.0%3Ahead_css&entry=mm_page_sharing_base__0.0%3Ahead_css&entry=wp_dialog_css__0.0%3Ahead_css&entry=wp_pagebuilder_dnd__0.0%3Ahead_css&entry=wp_analytics_overlay_reports__0.0%3Ahead_css&entry=mm_builder_wiring__0.0%3Ahead_css&entry=wp_liveobject_framework__0.0%3Ahead_css&entry=wp_tagging_rating__0.0%3Ahead_css&entry=wp_content_mapping_picker__0.0%3Ahead_css&entry=wp_toolbar__0.0%3Ahead_css&entry=mm_move_page__0.0%3Ahead_css&entry=wp_federated_documents_picker__0.0%3Ahead_css&deferred=true"/><script type="text/javascript">var djConfig={"baseUrl":"/wps/portal_dojo/v1.7/dojo/","locale":"en","isDebug":false,"debugAtAllCosts":false,"parseOnLoad":false,"afterOnLoad":false,"has":{"dojo-bidi":true},"modulePaths":{"com":"/wps/themeModules/js/com","ibm":"/wps/themeModules/js/ibm","pagebuilder":"/wps/themeModules/modules/pagebuilder/js","portalclient":"/wps/themeModules/modules/portalclient/js","asa":"/wps/themeModules/modules/asa/js","contentmapping":"/wps/themeModules/modules/contentmapping/js","federation":"/wps/themeModules/modules/federation/js"}};djConfig.locale=djConfig.locale.replace(/_/g, "-").replace(/iw/, "he").toLowerCase();</script><script type="text/javascript" src="/wps/contenthandler/!ut/p/digest!LejEKmt_0o49pQhpcZvO_w/mashup/ra:collection?themeID=ZJ_50D2I0S0LGUIC0AEH1HGAI3001&locale=en&mime-type=text%2Fjavascript&lm=1431030784000&entry=wp_client_main__0.0%3Ahead_js&entry=wp_client_ext__0.0%3Ahead_js&entry=wp_analytics_aggregator__0.0%3Ahead_js&entry=wp_theme_portal_80__0.0%3Ahead_js"></script><link rel="alternate" id="head_js_deferred" href="/wps/contenthandler/!ut/p/digest!LejEKmt_0o49pQhpcZvO_w/mashup/ra:collection?themeID=ZJ_50D2I0S0LGUIC0AEH1HGAI3001&locale=en&mime-type=text%2Fjavascript&lm=1431030798000&entry=dojo_17__0.0%3Ahead_js&entry=wp_client_logging__0.0%3Ahead_js&entry=wp_client_tracing__0.0%3Ahead_js&entry=dojo_fx_17__0.0%3Ahead_js&entry=dojo_dom_17__0.0%3Ahead_js&entry=dojo_app_17__0.0%3Ahead_js&entry=dijit_17__0.0%3Ahead_js&entry=dojo_dnd_basic_17__0.0%3Ahead_js&entry=dojo_dnd_ext_17__0.0%3Ahead_js&entry=dijit_layout_basic_17__0.0%3Ahead_js&entry=dojox_layout_basic_17__0.0%3Ahead_js&entry=dojox_gfx_17__0.0%3Ahead_js&entry=wp_theme_utils__0.0%3Ahead_js&entry=wp_dialog_util__0.0%3Ahead_js&entry=wp_dialog_draggable__0.0%3Ahead_js&entry=wp_dialog_main__0.0%3Ahead_js&entry=dojo_fmt_17__0.0%3Ahead_js&entry=dijit_menu_17__0.0%3Ahead_js&entry=dojo_data_17__0.0%3Ahead_js&entry=dijit_form_17__0.0%3Ahead_js&entry=dojox_charting_17__0.0%3Ahead_js&entry=dojox_xml_17__0.0%3Ahead_js&entry=mm_open_ajax_hub__0.0%3Ahead_js&entry=dojox_fx_17__0.0%3Ahead_js&entry=dijit_tree_17__0.0%3Ahead_js&entry=dijit_layout_ext_17__0.0%3Ahead_js&entry=dojox_io_17__0.0%3Ahead_js&entry=dojox_collections_17__0.0%3Ahead_js&entry=dojox_uuid_17__0.0%3Ahead_js&entry=dojox_data_basic_17__0.0%3Ahead_js&entry=dojox_aspect_17__0.0%3Ahead_js&entry=wp_portal_client_utils__0.0%3Ahead_js&entry=wp_portlet_client_model__0.0%3Ahead_js&deferred=true"/><!--[if IE 7]>
<script type="text/javascript">document.getElementsByTagName("html")[0].className+=" lotusui_ie lotusui_ie7";</script>
<![endif]-->
<!--[if IE 8]>
<script type="text/javascript">document.getElementsByTagName("html")[0].className+=" lotusui_ie8";</script>
<![endif]-->
<!--[if IE 9]>
<script type="text/javascript">document.getElementsByTagName("html")[0].className+=" lotusui_ie9";</script>
<![endif]-->
<style id="layout-wstate-styles"></style>
<title>Telecom Egypt Home </title>
<link id="com.ibm.lotus.NavStateUrl" rel="alternate" href="/wps/portal/te/Personal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS09LTjMwQU05RDBDRjYxME03/" />
<link rel="bookmark" title='Telecom Egypt Home ' href='/wps/portal/te/Personal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS09LTjMwQU05RDBDRjYxME03/' hreflang="en"/>
<link href="/TEDataResources/images/te.ico" rel="shortcut icon" type="image/x-icon" />
<!-- This files from SSP theme --><!-- end -->
<link rel="stylesheet" href="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/styles/fix-style.css">
<link rel="stylesheet" href="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/styles/theme.min.css">
<!-- <link rel="stylesheet" href="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/styles/vendor.css">
<link rel="stylesheet" href="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/styles/main.css">
<link rel="stylesheet" href="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/styles/add-style.css">
<link rel="stylesheet" href="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/styles/branding.css"> -->
<!-- <link rel="stylesheet" href="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/styles/jquery.dialogbox.css"> -->
<link rel="stylesheet" href="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/styles/font-awesome.css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/styles/ie8-styles.css">
<![endif]-->
<!--[if lte IE 9]>
<link rel="stylesheet" href="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/styles/ie9-styles.css">
<![endif]-->
<!--[if lte IE 8]>
<script src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/scripts/ie8js.js"></script>
<![endif]-->
<style>
.ibmDndRow .component-control {float: none !important;margin-right: auto !important;width: auto !important;}
.quick__links {
font-weight: 700;
font-size: 14px;
height: 33px;
width: 100%;
margin: 5px 0;
padding: 7px 10px;
border-bottom: 1px dotted #d7d7d7;
background: #f6f6f6;
cursor: pointer;
}
</style>
<meta name="viewport" content="width=device-width"></head>
<script
src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/scripts/vendor.js"></script>
<script async
src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/scripts/main.js"></script>
<script
src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/scripts/MainSliderDataLayer.js"></script>
<script async
src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/scripts/methods.js"></script>
<script async
src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/scripts/owl.carousel.js"></script>
<!-- <script>
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE");
if (msie > 0|| !!navigator.userAgent.match(/Trident.*rv\:11\./)) // If Internet Explorer, return version number
{
$(function(){
$('#dialog').dialogBox({
hasClose: true,
effect: 'fade',
hasBtn: true,
cancel : false,
okText : 'ok',
local : 'en',
confirm:function(){
},
title:'You’re using an unsupported browser.',
content: 'For a better experience please try one of these options Chrome, Firefox or Safari.',
callback: function(){
console.log('loading over')
}
})
})
}
</script> -->
<body class="lotusui30dojo tundra locale_en theme-default main-page">
<div id="dialog"></div>
<div id="message"></div>
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WDKK63"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<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=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WDKK63');</script>
<!-- End Google Tag Manager -->
<svg class="u-hide"><symbol viewBox="0 0 9 15" id="icon-arrow"><title>arrow</title><path d="M0 0l9 7.5L0 15V0z"/></symbol><symbol viewBox="0 0 73 43" id="icon-caller"><title>caller</title><path d="M70.11 14.28H52.447c-1.313 0-2.38 1.074-2.38 2.4 0 1.327 1.066 2.402 2.38 2.402H70.11c1.314 0 2.38-1.075 2.38-2.402 0-1.326-1.065-2.4-2.38-2.4zm0 10.263H43.796c-1.314 0-2.38 1.075-2.38 2.4 0 1.328 1.065 2.403 2.38 2.403H70.11c1.314 0 2.38-1.075 2.38-2.402 0-1.326-1.065-2.4-2.38-2.4zM43.796 8.77H70.11c1.314 0 2.38-1.074 2.38-2.4 0-1.327-1.065-2.403-2.38-2.403H43.796c-1.314 0-2.38 1.076-2.38 2.402 0 1.32 1.065 2.4 2.38 2.4zM36.03 30.655c-3.45-1.646-7.06-2.956-10.447-4.747-1.47-.55-2.24-2.66-1.21-3.94 2.84-4.205 4.57-5.845 4.282-11.304C28.655 4.474 24.618.3 19.682.3c-5.808 0-8.5 7.15-8.6 10.94.044 3.857 1.467 7.63 3.626 10.775.826 1.057.368 2.694-.602 3.485-3.456 2.397-7.592 3.455-11.33 5.298-1.3.694-2.054 2.157-2.14 3.612C.47 36.58.47 38.768.608 40.943c.06 1.113 1.253 1.817 2.274 1.752 11.13-.018 22.266-.005 33.396-.01.974.022 2.055-.642 2.11-1.703.183-2.34.26-4.717-.03-7.05-.167-1.404-1.045-2.688-2.33-3.278z"/></symbol><symbol viewBox="0 0 69 41" id="icon-cards"><title>cards</title><path d="M48.045 17.692h20.84c-.034-5.197.063-10.39-.04-15.58C68.87.75 67.405-.022 66.202.14 52.712.126 39.215.126 25.725.14c-1.05-.098-2.203.338-2.578 1.405-.257 2.563-.048 5.148-.11 7.72 6.737.014 13.476-.015 20.214.007 1.33-.077 2.52.576 3.69 1.11 1.41 2.192 1.13 4.826 1.11 7.312zM.115 28.932H45.96c-.026-5.178.064-10.355-.04-15.53.063-1.398-1.438-2.2-2.668-2.023-13.484-.01-26.96-.02-40.443 0-1.24-.18-2.73.63-2.66 2.04-.1 5.17-.01 10.34-.04 15.51zm68.763-6.323H48.045v7.02c6.044-.01 12.088.01 18.13-.01 1.064.11 2.252-.31 2.606-1.43.22-1.86.09-3.73.1-5.59zM45.954 33.84H.12c.022 1.87-.124 3.75.112 5.612.368 1.08 1.507 1.517 2.563 1.404 13.705-.015 27.41.056 41.11-.035 3.272-.42 1.71-4.72 2.05-6.98z"/></symbol><symbol viewBox="0 0 76 76" id="icon-chat"><title>chat</title><path d="M38 0C17.014 0 0 17.014 0 38c0 20.987 17.014 38 38 38s38-17.013 38-38C76 17.014 58.986 0 38 0zM15.836 27.354c0-8.647 5.887-11.775 11.78-11.775h11.77c5.887 0 11.78 3.64 11.78 11.77v5.88c0 6.5-5.278 11.77-11.78 11.77 0-3.25-2.634-5.89-5.888-5.89h-5.882c-5.893 0-11.78-3.32-11.78-11.78zm35.33 29.436H45.27c-3.254 0-5.888 2.633-5.888 5.888-6.502 0-11.77-5.272-11.77-11.775v-5.887c0-1.06.105-2.032.294-2.944h5.59c.183 0 .355.075.527.106-.322.756-.528 1.674-.528 2.838v5.887c0 1.92.932 3.634 2.357 4.715 2.15-2.863 5.582-4.715 9.417-4.715h5.89c5.88 0 5.88-4.427 5.88-5.887 0-1.576-.04-5.03-4.28-5.738.8-1.757 1.26-3.682 1.3-5.724 4.77.923 8.86 4.26 8.86 11.462 0 8.463-5.89 11.774-11.77 11.774zm-8.598-18.838c1.426-1.075 2.357-2.785 2.357-4.712v-5.887c0-5.123-3.69-5.888-5.887-5.888H27.27c-5.893 0-5.893 4.13-5.893 5.888 0 1.458 0 5.887 5.893 5.887h5.882c3.84 0 7.267 1.855 9.416 4.712z"/></symbol><symbol viewBox="0 0 12 12" id="icon-check"><title>check</title><path fill="#2B991C" d="M6 0c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z"/><path fill="#fff" d="M4.874 7.59l3.79-3.75 1.126.79-5.167 5.085-2.28-2.88 1.03-.912 1.5 1.668z"/></symbol><symbol viewBox="0 0 25 25" id="icon-extend"><title>extend</title><path d="M16.493.104h7.47c.84.353.935.5.935 1.445 0 2.21-.005 4.42.004 6.63.002.48-.09.89-.577 1.11-.512.23-.908 0-1.256-.33-.64-.62-1.25-1.25-1.88-1.87-.12-.12-.25-.22-.37-.33l.07.15-5.77 5.652 5.81 5.686c.642-.65 1.36-1.373 2.08-2.09.34-.34.7-.625 1.23-.403.534.223.646.645.643 1.174-.014 2.215-.006 4.43-.007 6.64 0 1.02-.38 1.406-1.4 1.41-1.19.004-2.385 0-3.578 0-1.02 0-2.04.014-3.06-.004-.776-.013-1.29-.483-1.186-1.114.05-.293.268-.59.48-.82.69-.723 1.41-1.415 2.094-2.093-1.955-1.954-3.87-3.87-5.72-5.724L6.73 20.94c.725.72 1.46 1.45 2.192 2.185.32.32.528.683.353 1.16-.19.512-.61.694-1.104.696-2.3.01-4.6.02-6.89 0-.71 0-1.17-.42-1.17-1.05C.09 21.51.1 19.09.1 16.67c0-.403.204-.67.557-.86.54-.283.93-.016 1.287.34.732.725 1.454 1.463 2.112 2.127l5.677-5.68-5.65-5.79c-.713.72-1.423 1.45-2.153 2.157-.33.32-.702.554-1.205.348C.21 9.1.095 8.697.097 8.187.107 5.974.1 3.76.102 1.547c0-.95.093-1.09.936-1.444h7.47c1.112 0 1.11 1.17.32 1.973-.135.137-.27.27-.405.404-.57.565-1.143 1.13-1.637 1.617 1.97 1.973 3.88 3.886 5.71 5.716l5.717-5.718c-.643-.636-1.347-1.323-2.04-2.02-.797-.8-.797-1.97.32-1.97z"/></symbol><symbol viewBox="0 0 12 25" id="icon-facebook"><title>facebook</title><path d="M3.195 9.195V5.188s.503-4.44 4.53-4.44h3.99v3.9h-3.02S7.402 4.61 7.402 5.73v3.466h4.315l-.107 4.117H7.402v10.94H3.195v-10.94H.283V9.195h2.912z"/></symbol><symbol viewBox="0 0 28.566 30" id="icon-google-plus"><title>google-plus</title><path d="M19.025 0c-.508.338-1.033.654-1.52 1.02-.522.392-1.072.576-1.73.514-.503-.048-1.014-.01-1.584-.01.08.093.107.136.14.168 1.11.965 2.04 2.06 2.39 3.522.537 2.2.16 4.2-1.47 5.862-.513.53-1.083 1.007-1.62 1.523-.22.21-.42.45-.59.7-.538.772-.527 1.55.12 2.233.526.556 1.13 1.04 1.723 1.53.71.59 1.475 1.122 2.047 1.86.75.97 1.22 2.053 1.29 3.298.134 2.47-.97 4.335-2.86 5.785-1.35 1.033-2.934 1.53-4.59 1.815-1.97.34-3.93.294-5.87-.165-1.53-.363-2.895-1.017-3.89-2.3-1.306-1.687-1.34-4.01-.114-5.748 1.132-1.603 2.726-2.468 4.558-2.98 1.43-.4 2.89-.605 4.368-.706.12-.006.24-.03.436-.053-1.074-1.275-1.554-2.61-.76-4.19-.116 0-.186-.007-.255 0-1.08.082-2.166.096-3.195-.28-2.144-.79-3.566-2.26-4.016-4.544-.567-2.876.85-5.72 3.3-7.22C6.776.756 8.354.303 10.024.12c.32-.04.64-.082.963-.12h8.038zm-8.478 18.937c-.432.03-.864.053-1.295.09-1.323.11-2.585.446-3.755 1.083-1.664.906-2.38 2.41-2.13 4.172.206 1.44 1.035 2.474 2.327 3.134 1.16.594 2.396.905 3.695.996 1.37.097 2.69-.102 3.96-.643 2.64-1.13 2.94-4.23 1.433-6.04-.745-.9-1.672-1.55-2.575-2.258-.5-.39-1.013-.655-1.666-.54zm3.06-9.987c-.012-1.82-.42-3.26-1.068-4.64-.45-.947-1.078-1.74-1.98-2.31-1.36-.86-2.912-.655-4.08.354-1.057.914-1.276 2.174-1.254 3.488.02 1.164.277 2.288.717 3.365.492 1.206 1.156 2.28 2.314 2.974 1.667 1 3.99.38 4.893-1.33.36-.68.475-1.413.454-1.9zm14.96 5.506l-3.468.02h-.41v3.992h-1.85v-3.99h-3.83V12.61h3.806V8.7h1.857v3.906h3.886v1.85z"/></symbol><symbol viewBox="0 0 62 67" id="icon-headset"><title>headset</title><path d="M22.125 1.484C27.073-.063 32.417-.28 37.475.844c4.407.975 8.59 2.98 12.145 5.802 3.962 3.13 7.156 7.258 9.21 11.917 3.112 6.994 3.56 15.17 1.225 22.474-.624 2.028-1.497 3.968-2.49 5.832-.116 1.21-.013 2.46-.055 3.68-.058 1.07-.785 2.07-1.776 2.43-.545.22-1.145.18-1.72.17-2.378 3.88-5.957 6.91-9.982 8.9-2.228 1.11-4.613 1.88-7.044 2.38-.264.92-.908 1.74-1.783 2.12-.765.38-1.633.27-2.455.29-1.38-.01-2.758.01-4.135-.01-1.008-.02-1.98-.56-2.545-1.41-.8-1.13-.743-2.79.11-3.87.61-.8 1.597-1.27 2.59-1.24 1.718 0 3.438-.01 5.155 0 1.006-.01 1.972.52 2.56 1.34 5.497-1.04 10.77-3.95 14.208-8.51-1.025-.05-2.068.1-3.082-.1-1.16-.29-2.05-1.44-2.04-2.67V31.94c-.03-1.12.67-2.212 1.69-2.63.44-.2.93-.22 1.41-.214 2.07.01 4.13-.008 6.19.003.39-.01.76.14 1.13.27-.36-4.38-1.8-8.67-4.21-12.31-3.07-4.7-7.71-8.33-12.99-10.09-4.34-1.47-9.08-1.66-13.53-.59-4.69 1.13-9.03 3.71-12.35 7.28-3.95 4.22-6.41 9.85-6.86 15.66.39-.14.79-.27 1.21-.25 2.17 0 4.33-.01 6.5.01 1.39.01 2.62 1.26 2.64 2.67.02 6.21.01 12.41.01 18.62.01 1.45-1.23 2.75-2.65 2.76-1.91 0-3.83-.01-5.74 0-.64 0-1.3.04-1.9-.24-.98-.41-1.65-1.46-1.65-2.54 0-1.18.02-2.38-.01-3.56-1.48-2.75-2.61-5.69-3.25-8.76C.08 32.74.33 27.16 1.92 22c1.37-4.45 3.73-8.583 6.85-11.995 3.63-3.98 8.3-6.98 13.41-8.57z"/></symbol><symbol viewBox="0 0 20 20" id="icon-instagram"><title>instagram</title><path d="M2.568 0h14.865C18.846 0 20 1.155 20 2.567v14.866C20 18.846 18.846 20 17.434 20H2.568C1.155 20 0 18.846 0 17.434V2.567C0 1.155 1.155 0 2.568 0zM14.57 2.22c-.497 0-.9.407-.9.903v2.154c0 .496.403.9.9.9h2.26c.495 0 .9-.404.9-.9V3.123c0-.496-.405-.902-.9-.902h-2.26zm3.17 6.237h-1.76c.166.546.256 1.12.256 1.72 0 3.324-2.784 6.02-6.218 6.02-3.433 0-6.217-2.696-6.217-6.02 0-.6.1-1.174.26-1.72H2.23v8.45c0 .438.356.794.794.794H16.95c.437 0 .794-.35.794-.79V8.46zm-7.72-2.393c-2.22 0-4.017 1.742-4.017 3.893 0 2.15 1.798 3.893 4.016 3.893s4.01-1.743 4.01-3.893c0-2.15-1.8-3.893-4.02-3.893z"/></symbol><symbol viewBox="0 0 12 16" id="icon-left-arrow"><title>left-arrow</title><path d="M3.67 7.99c3.743 3.67 4.58 4.343 8.33 8-2.666 0-.724 0-3.39.008-3.867-3.64-4.758-4.344-8.61-8.002C3.86 4.354 4.743 3.643 8.61 0c2.658.008.716 0 3.375.008C8.24 3.673 7.428 4.346 3.67 7.988z"/></symbol><symbol viewBox="0 0 30 30" id="icon-linkedin"><title>linkedin</title><path d="M4 .02c-2.206 0-4 1.796-4 4 0 2.204 1.794 3.998 4 3.998 2.203 0 3.996-1.794 3.996-4C7.996 1.816 6.202.022 4 .022zm3 9.605H.996c-.286 0-.517.23-.517.517v19.32c0 .286.23.517.516.517H7c.285 0 .516-.234.516-.52V10.14c0-.285-.23-.516-.517-.516zm15.344-.228c-2.197 0-4.127.67-5.305 1.76v-1.015c0-.286-.234-.517-.52-.517h-5.757c-.286 0-.517.23-.517.517v19.32c0 .286.232.517.517.517h5.997c.287 0 .518-.234.518-.52V19.9c0-2.74.504-4.44 3.022-4.44 2.48.003 2.666 1.826 2.666 4.606v9.395c0 .287.232.518.517.518h6c.285 0 .516-.233.516-.518V18.864c0-4.408-.87-9.467-7.657-9.467z"/></symbol><symbol viewBox="0 0 272.999 56.384" id="icon-logo-ar"><title>logo-ar</title><path fill="#ED1C24" d="M139.718 56.486l8.478-40.054s3.964-16.4 24.192-16.4L272.998 0l-8.472 40.054s-3.962 16.406-24.194 16.406l-100.614.026z"/><path fill="none" d="M172.388.03c-20.23 0-24.192 16.402-24.192 16.402l-8.478 40.054 100.613-.026c20.233 0 24.195-16.406 24.195-16.406l8.473-40.05-100.61.027z"/><g fill="#fff"><path d="M213.234 33.488c-.905.852-.69 2.1.27 2.886 5.392 3.936 10.63 8.068 15.75 12.354 1.128.857 2.71 1.137 3.818.19 3.528-3.526 7.1-7.02 10.706-10.47.785-.903.044-2.102-.74-2.79-4.71-3.808-9.585-7.4-14.647-10.73-1.005-.606-2.314-.888-3.342-.288-4.064 2.787-7.99 5.755-11.814 8.848m19.797-13.874c-.8.568.083 1.458.663 1.85 4.838 3.108 9.495 6.478 13.975 10.074.75.565 1.972 1.257 2.836.628 1.94-1.77 3.898-3.507 5.896-5.206.522-.607-.544-1.485-.982-1.85-3.924-3.125-8.025-6.03-12.283-8.698-.73-.434-1.68-.924-2.522-.65-2.602 1.142-5.122 2.454-7.582 3.852M211.148 9.077c-.66.31-.407.835.2 1.088 4.173 1.56 8.24 3.403 12.213 5.45.93.442 2.064.692 3.018.295 2.626-1.3 5.3-2.49 8.07-3.478.688-.33-.363-.972-.695-1.146-3.747-1.85-7.582-3.495-11.515-4.886-.81-.262-1.68-.414-2.516-.24-2.99.78-5.912 1.77-8.775 2.917"/><path d="M210 24.1c-2.345-.694-6.985-1.18-11.96 3.25-3.922 3.49-4.206 7.202-3.99 9.207L210 24.1zm-11.94 15.55c.63.17 1.346.26 2.162.264 3.1-.08 11.336.02 11.548.044.024.91-3.89 9.983-15.154 9.777-4.766-.266-8.354-2.48-10.407-5.72-.417-.452-.724-1.02-.872-1.646-2.667-6.114-.63-14.842 7.92-21.516 6.844-5.35 14.128-5.74 18.723-4.104 3.546 1.27 8.153 5.66 2.468 10.095L198.06 39.65zM156.175 28.664h7.628l-1.13 4.77s-3.21 9.96 4.107 14.718c6.973 4.53 15.313-.534 15.077-7.567h-5.245s-5.717.293-4.41-5.845l1.49-6.013h4.11s5.13 0 6.738-4.83c1.605-4.83-2.74-4.944-3.755-4.944h-4.35l.953-3.58s1.19-4.586-4.053-4.586c-4.83 0-5.845 5.365-5.845 5.365l-.695 2.872-2.102-.012c-5.298-.002-7.743 3.868-8.518 9.652"/></g><g fill="#ED1C24"><path d="M8.32 51.213c-4.893 0-3.485-7.467 1.42-7.467h2.29c3.443 0 4.078-5.194.612-5.194h-2.294c-4.893 0-9.452 3.94-10.237 8.813-.784 4.966 2.62 9.04 7.602 9.04h11.565l-.05-.026c6.775 0 6.744-5.094 6.765-5.118-.18-.028-.378-.048-.585-.048H8.32zM27.19 38.547H19.24c-3.095 0-3.642 4.677-.522 4.677h4.294c4.48-.404 4.835-4.064 4.864-4.592-.202-.056-.433-.085-.683-.085zM85.386 43.17h4.296c4.482-.41 4.838-4.07 4.86-4.594-.207-.058-.428-.082-.68-.082H85.91c-3.094 0-3.643 4.675-.524 4.675zM100.613 47.648l.645-4.07c.445-3.206-1.09-4.63-4.525-5.098 0 0-.315 2.58-.62 4.87l.035-.466s-.065.713-.127 1.14c-.276 1.946-1.366 7.318-5.11 7.318-1.16 0-3.89 0-7.106-.005l.262-1.535c.813-5.09-2.68-9.332-7.793-9.274-2.922.03-5.156 2.097-6.766 4.513l.168-1.204c.41-2.95-1.004-4.264-4.167-4.69 0 0-1.033 7.713-1.668 12.115-1.14-.384-3.21-1.508-2.68-4.403.31-1.678.925-5.344 1.19-6.898.012-.014.05-.12.05-.12.01-.078-.017-.052-.007-.127.05-.278.075-.442.075-.442-.01 0 .01-.098 0-.096.217-3.28-1.733-4.347-5.548-4.864l-.89 6.246c-.052.212-.095.445-.133.713l-.43 3.103-.307 2.14s-.043.243-.065.606l-.267 1.97c-.02-.023-1.32 7.575 5.78 7.35 1.36-.046 3.58-.108 4.387-.35.356.227.804.366 1.362.366h23.465c.137.01.37-.012.535-.012 6.02 0 9.39-4.042 10.246-8.808l.01.012zm-24.96-2.66c2.053 0 3.442 1.627 3.107 3.717l-.397 2.626c-3.77-.007-7.435-.012-9.565-.012.765-3.063 2.42-6.33 6.855-6.33zM127.888 34.434s-1.14 10.333-1.572 12.47c-.613 3.058-2.315 4.055-3.598 4.367.01-.037.01-.057.01-.057l1.588-10.71c.544-3.927-1.334-5.67-5.54-6.245l-2.46 17.003-.146.103-3.6-.005 1.63-10.75c.545-3.928-1.335-5.676-5.545-6.243l-2.49 16.983h-1.357c-3.264-.005-4.472 1.57-4.47 5.064l16.665.026s.306.026.734-.013c2.944.005 6.133.015 6.272.024 7.032.33 8.452-7.465 8.428-7.443l.992-8.33c.548-3.925-1.332-5.668-5.542-6.243zM47.303 34.364s-1.14 10.328-1.572 12.47c-.6 2.973-2.99 3.998-4.262 4.338l1.46-10.62c.548-3.928-1.335-5.67-5.542-6.243L35.07 51.15l-3.25-.01c-3.265-.007-4.5 1.747-4.497 5.237l13.412-.005s.157.01.412-.005c.87 0 1.454.005 1.512.005 7.032.337 9.222-7.457 9.198-7.438l.992-8.328c.543-3.926-1.337-5.674-5.547-6.242zM135.393 2.597l-2.58 18.076s-.786 4.24 2.724 4.24c3.11 0 3.71-4.317 3.683-4.293l1.72-11.774c.54-3.928-1.335-5.676-5.547-6.25zM125.236 2.597s-1.14 10.335-1.572 12.473c-.79 3.9-3.336 4.45-4.527 4.49.674-1.12 1.153-2.362 1.357-3.672.816-5.098-2.68-9.276-7.79-9.276-4.283 0-8.315 2.94-9.903 6.918-1.508 3.216-1.325 5.955-5.36 5.955h-.216l.37-2.167c.814-5.088-2.678-9.33-7.79-9.27-2.97.032-5.125 1.712-6.66 3.727l.057-.42c.415-2.952-1-4.26-4.163-4.694 0 0-1.153 8.6-1.77 12.825h-4.928l1.07-7.717c.443-3.21-1.09-4.636-4.525-5.1 0 0-1.622 12.884-2.108 15.834-.03.036-.048.063-.048.063-.318 2.002-2.24 3.653-4.235 3.653-3.278 0-3.882 4.944-.578 4.944 3.948 0 7.67-2.7 9.166-6.36.065.006.128.01.2.01h26.97c2.544 0 4.503-.943 5.926-2.286 1.407 1.49 3.438 2.397 5.82 2.397.174 0 .343-.005.514-.014 2.337-.006 10.352-.035 10.57-.023 7.037.335 8.457-7.46 8.43-7.438l1.267-8.605c.545-3.927-1.337-5.675-5.544-6.248zm-36.057 9.91c2.057 0 3.44 1.624 3.11 3.713l-.49 3.264h-9.626c.697-3.23 2.26-6.978 7.005-6.978zm18.336 3.38c.346-2.167 2.416-3.95 4.563-3.95 2.06 0 3.446 1.64 3.11 3.72-.348 2.17-2.414 3.94-4.563 3.94-2.057 0-3.444-1.63-3.11-3.71zM55.968 24.934l-.217-.026c6.96 0 6.914-5.22 6.914-5.22-.17-.04-.37-.064-.583-.064 0 0-10.946-.043-12.64 0-.183 0-.36-.01-.525-.024 2.465-2.104 5.156-4.934 7.53-6.99 4.363-3.764-4.952-9.324-11.92-3.32-3.945 3.4-4.655 8.286-2.812 11.692.072.15.154.303.274.453 1.32 2.084 3.69 3.52 6.908 3.52.81-.03 4.08-.02 7.073-.02zm-9.04-10.822c.346-.544.8-1.05 1.33-1.422 2.08-1.692 4.177-1.456 5.31-1.134l-7.36 6.342c-.185-.845-.277-2.294.72-3.786zM47.49 26.888c-2.843 0-3.344 4.285-.49 4.285h3.945c4.104-.366 4.426-3.722 4.45-4.208-.188-.053-.39-.077-.62-.077h-7.286zM48.464 5.006h4.402c4.6-.41 4.96-4.17 4.992-4.71-.214-.06-.44-.085-.705-.085H49c-3.182.002-3.738 4.796-.536 4.796z"/></g></symbol><symbol viewBox="0 0 24 22" id="icon-logo"><title>logo</title><path d="M12.886 2.96C10.48 1.812 8.05.602 5.426 0 3.546.328 1.762 1.043 0 1.754c2.567 1.12 5.18 2.15 7.674 3.42 1.772-.66 3.517-1.387 5.212-2.215zm-1.06 8.115c-1.192-.726-2.274-1.84-3.732-1.99C5.6 10.5 3.402 12.36 1.12 14.075c-.1.287-.16.514.124.807C3.58 16.484 8.484 20.596 10.97 22c2.397-1.883 4.473-4.125 6.676-6.218-1.563-1.97-3.827-3.212-5.82-4.707zm4.13-6.385c-1.58.726-3.158 1.474-4.633 2.39 2.987 2.123 5.98 4.248 9.01 6.313 1.222-1.05 2.447-2.098 3.667-3.15-2.457-2.137-5.168-4.003-8.044-5.553z"/></symbol><symbol viewBox="0 0 76 73" id="icon-m3ak"><title>m3ak</title><path d="M72.59 42.644c-3.73.322-7.47 1.16-11.227.87-1.027-1.394-1.05-3.183-1.372-4.81-7.4.75-14.46 3.158-21.65 4.97-3.35-12.002-7.38-23.814-10.64-35.84 2.64-.282 5.28-.58 7.94-.813 2.01 10.15 4.34 20.22 6.37 30.36 2.2-.6 4.4-1.22 6.59-1.87-2.21-3.9-5.94-7.63-5.62-12.4 1.22-4.64 6.94-4.69 10.62-6.25.58 2.1 1.15 4.18 1.72 6.28-2.41.63-6.43.01-7.04 3.28.73 2.97 2.6 5.45 4.09 8.06 2.36-.36 4.7-.71 7.05-1.08.28-2.12-.67-5.87 2.27-6.27 3.43-.51 6.9-.64 10.34-1.05-2.3-7.07-6.57-13.56-12.54-18.03-8.24-6.41-19.4-8.88-29.52-6.4-9.95 2.19-18.68 9.09-23.41 18.1-4.35 8.02-5.07 17.6-2.99 26.4 6.17-1.26 12.25-2.93 18.43-4.2 1.33-.49 3.34-.33 3.94-1.93.09-2.13-.91-4.08-1.7-5.98-2.76-5.9-5.65-11.74-8.5-17.59 2.04-1.95 4.04-3.94 6.1-5.88 3.22 9.01 6.61 17.95 9.93 26.91.67 2.11 1.53 4.42.8 6.62-.59 2.03-2.94 2.33-4.61 3.03-7.37 2.37-14.71 4.9-22.11 7.19-2.19.9-4.09-.8-5.82-1.89 1.15 1.97 2 4.63 4.43 5.34 1.5.53 3.12-.55 4.59-.05 1.84 1.76 3.3 3.87 5.23 5.53C24.91 73.29 42 75.18 54.74 68.16c8.45-4.44 14.605-12.53 17.462-21.59 1-.41 2.26-.44 3.025-1.307.41-1.46.53-2.99.78-4.48-1.006.85-1.98 1.93-3.41 1.9zM15.792 28.49c.706.716 1.412 1.433 2.118 2.158-1.388.072-2.776.153-4.156.233.778 1.6 1.613 3.18 2.455 4.74 1.14-.43 2.27-.88 3.41-1.32.46.9.93 1.79 1.4 2.69-3.13 1.13-6.26 2.24-9.41 3.34-.41-.87-.82-1.73-1.23-2.59 1.18-.46 2.35-.92 3.53-1.39-1.15-1.89-2.3-3.78-3.38-5.71.31-.34.94-1.03 1.27-1.37 1.32-.25 2.64-.5 3.97-.76zm34.906 27.3c-1.813 4.07-.128 10.095-4.75 12.496-6.042 2.24-12.92-3.062-13.505-9.24.57-.09 1.71-.258 2.278-.34.79 2.338 3.26 5.495 5.86 3.296 1.87-2.48-1.15-4.922-2.42-6.912-1.15.822-2.31 1.65-3.46 2.48-.61-.65-1.22-1.304-1.81-1.965 1.89-1.49 3.82-2.924 5.86-4.197 1.04 1.023 2.07 2.047 3.08 3.07-.45-1.258-.91-2.515-1.38-3.77-1.48.04-2.97.08-4.46.11-.02-.966-.52-2.73 1.64-3.147 2.24-.05 2.82.16 5.07.23.66 1.97 1.29 3.94 1.99 5.9.15-1.33.39-2.65.39-3.98-.72-1.46-1.86-2.65-2.66-4.05.32-.57.97-1.73 1.29-2.31 1.61 1.66 3.51 3.27 4.25 5.53.11 2.21-.25 4.41-.39 6.61 1.73-2.25 1.95-5.02 1.5-7.76.54-.21 1.63-.64 2.18-.86.76 2.95.88 6.06-.49 8.85zM29.36 8.51c1.983 8.202 4.503 16.273 7.04 24.314-1.213-6.26-2.818-12.438-4.254-18.65-.538-2.055-.794-4.43-2.785-5.663zm-7.188 19.214c-1.035-4.237-2.15-8.797-5.056-12.172.97 4.317 3.154 8.217 5.056 12.172z"/></symbol><symbol viewBox="0 0 25.814 31.577" id="icon-map"><title>map</title><path d="M25.814 26.577c0 2.76-2.24 5-5 5h-15c-2.76 0-5-2.24-5-5v-21c0-2.76 2.24-5 5-5h15c2.76 0 5 2.24 5 5v21z"/><path fill="#fff" d="M13.314 4.66c-3.314 0-6 2.787-6 6.223 0 .178.01.35.023.525l.02.186c.01.105.024.208.04.31.014.083.026.163.043.243.01.055.025.11.036.165.546 2.462 2.393 4.438 3.817 7.82.426 1.01.798 2.095 1.102 3.086l.92 3.44.918-3.44c.305-.992.676-2.076 1.102-3.088 1.424-3.38 3.272-5.357 3.815-7.82.014-.054.024-.11.036-.164.016-.08.03-.16.042-.242.015-.102.03-.206.042-.31.007-.06.015-.125.02-.186.014-.174.023-.348.023-.525 0-3.435-2.685-6.223-6-6.223zm0 9.036c-1.498 0-2.712-1.26-2.712-2.814 0-1.553 1.215-2.812 2.71-2.812 1.5 0 2.714 1.26 2.714 2.812 0 1.554-1.215 2.814-2.713 2.814z"/></symbol><symbol viewBox="1.231 0.952 11.979 12" id="icon-multiplication"><title>multiplication</title><path fill="#EA2126" d="M7.23.952c3.315 0 6 2.686 6 6s-2.685 6-6 6-6-2.686-6-6 2.687-6 6-6z"/><path fill="#fff" d="M7.215 6.31l1.287-1.84h1.687L8.12 7.223l2.137 2.836H8.583l-1.35-1.92-1.342 1.91H4.21l2.133-2.83L4.28 4.47h1.673l1.262 1.84z"/></symbol><symbol viewBox="0 0 15 19" id="icon-pause-btn"><title>pause-btn</title><path fill-rule="evenodd" d="M9 0h6v19H9V0zM0 0h6v19H0V0z"/></symbol><symbol viewBox="0 0 18 19" id="icon-pdf"><title>pdf</title><path d="M15.546 10.8c-.71 0-1.583.087-2.595.257-1.41-1.4-2.89-3.45-3.93-5.458 1.03-4.07.35-4.88.12-5.15C8.9.16 8.55 0 8.16 0c-.162 0-.336.028-.51.084-.448.14-.786.432-.975.85-.55 1.193.2 3.228.97 4.795-.66 2.44-1.764 5.38-2.93 7.76-2.935 1.25-4.49 2.48-4.63 3.65-.05.42.056 1.05.86 1.61.222.15.48.23.75.23.674 0 1.357-.49 2.15-1.52.576-.76 1.196-1.79 1.843-3.07 2.07-.85 4.63-1.61 6.825-2.04 1.224 1.09 2.317 1.65 3.26 1.65.69 0 1.285-.3 1.715-.86.444-.59.546-1.11.302-1.56-.3-.54-1.038-.81-2.25-.81zM1.713 17.78c-.36-.26-.342-.434-.333-.5.05-.4.72-1.113 2.373-1.98-1.25 2.16-1.925 2.446-2.04 2.48zm6.15-16.368c.053-.113.114-.152.19-.176l.074-.02c.118.164.252.813 0 2.34-.304-.886-.46-1.71-.263-2.144zm-1.41 11.39c.785-1.745 1.515-3.674 2.068-5.46.87 1.457 1.92 2.87 2.96 4.003-1.65.362-3.41.872-5.02 1.457zm9.975-.345c-.235.313-.476.352-.654.352-.416 0-.972-.25-1.6-.7.52-.07.982-.1 1.372-.1.69 0 .967.1 1.062.14-.018.05-.06.14-.18.29z"/></symbol><symbol viewBox="0 0 81 59" id="icon-phone"><title>phone</title><path d="M75.615 9.524c-7.242-7.3-18.08-8.934-27.863-9-15.21.35-31.113 5.234-42.034 16.368-5.213 5.316-6.813 13.65-3.002 20.25 2.524-.666 5.69-.017 7.82-1.733 3.232-5.6 5.146-12.29 10.557-16.3C33.927 7.52 56.133 7.1 67.696 20.77c2.294 3.966 6.698 2.915 10.492 2.65 4.615-2.553 1.073-10.25-2.573-13.903zM36.84 18.342c-10.46 1.916-20.127 10.083-22.073 20.934-1.237 5.733.23 12.983 5.89 15.767 7.29 3.867 15.885 3.2 23.853 3.434 8.166-.184 17.223.233 24.2-4.75 6.088-5.517 4.62-15.233 1.155-21.817C63.547 20.44 49.13 15.708 36.84 18.342zm19.416 17.683c-1.83 11.867-21.314 12.767-25.025 1.684-1.96-5.87 3.11-12.06 8.8-12.92 7.21-2.02 17.34 2.58 16.23 11.23z"/></symbol><symbol viewBox="0 0 17 23" id="icon-play-btn"><title>play-btn</title><path fill-rule="evenodd" d="M.093 21.138V1.262C.093.338.91-.35 1.713.192c.647.432 13.554 9.17 14.656 9.917.72.49.71 1.66 0 2.15-.8.55-13.75 9.33-14.69 9.94-.69.45-1.59-.05-1.59-1.07z"/></symbol><symbol viewBox="0 0 53 53" id="icon-play"><title>play</title><path d="M26.5 0C11.888 0 0 11.888 0 26.5S11.888 53 26.5 53 53 41.112 53 26.5 41.112 0 26.5 0zm0 49.82c-12.86 0-23.32-10.46-23.32-23.32 0-12.858 10.46-23.32 23.32-23.32S49.82 13.64 49.82 26.5 39.36 49.82 26.5 49.82zm-7.42-11.702l19.08-11.64L19.08 14.84v23.278z"/></symbol><symbol viewBox="0 0 12 16" id="icon-right-arrow"><title>right-arrow</title><path d="M8.33 7.99c-3.743 3.67-4.58 4.343-8.33 8 2.666 0 .724 0 3.39.008 3.867-3.643 4.758-4.346 8.61-8.004C8.14 4.354 7.257 3.644 3.39 0 .732.008 2.674 0 .015.008 3.76 3.673 4.572 4.346 8.33 7.988z"/></symbol><symbol viewBox="0 0 18 18" id="icon-search"><title>search</title><path d="M0 6.258C.2 3.072 2.998.288 6.238.146c3.074-.27 6.126 1.877 6.89 4.827.54 1.838.155 3.848-.864 5.452 1.91 1.89 3.848 3.753 5.736 5.66v.35c-.393.55-.902 1-1.404 1.442h-.385c-1.93-1.87-3.83-3.77-5.74-5.66-1.86 1.194-4.32 1.488-6.38.596C1.82 11.89.2 9.64 0 7.22v-.962zm5.232-4.116c-1.96.57-3.432 2.493-3.41 4.518-.1 2.2 1.585 4.26 3.732 4.758 1.02.127 2.117.176 3.068-.273 1.753-.742 3.024-2.58 2.9-4.485.05-1.32-.585-2.61-1.56-3.49-1.248-1.13-3.116-1.56-4.73-1.03v.002z"/></symbol><symbol viewBox="0 0 18 22" id="icon-triangle"><title>triangle</title><path fill-rule="evenodd" clip-rule="evenodd" d="M16.933 22C10.27 15.34 8.925 4.862 8.067 0 7.782 4.922 6.653 14.59-.08 22h17.013zm.134 0"/></symbol><symbol viewBox="449.727 404.65 120.66 98.138" id="icon-twitter"><title>twitter</title><path d="M511.597 417.87c-2.92 5.17-3.35 11.29-2.4 17.05-19.63-.81-38.28-10.81-50.74-25.85-3.38 6.1-4.39 13.55-2.2 20.23 1.3 5.25 5.19 9.108 8.83 12.858-3.57-.45-6.97-1.62-10.26-3.01-.3 11.42 8.04 21.76 18.94 24.7-3.39.65-6.84.67-10.27.4 3.06 9.74 12.29 16.49 22.34 17.4-10 8.12-23.46 11.05-36.11 9.85 21.25 13.84 50.03 15.11 72.31 2.95 23.04-12.35 37.25-38.58 36.41-64.53 3.9-4.44 9.12-7.82 11.94-13.22-4.22 1.22-8.4 2.63-12.77 3.26 4.17-3.54 8.22-7.7 9.57-13.18-4.81 2.03-9.5 4.54-14.68 5.51-3.762-1.78-6.562-5.33-10.772-6.28-11.13-3.998-24.938 1.092-30.138 11.86z"/></symbol><symbol viewBox="0 0 17.292 21.089" id="icon-youtube"><title>youtube</title><path d="M6.835.17H5.65l-.798 3.07-.83-3.07H2.788c.245.724.503 1.452.75 2.178.375 1.09.61 1.913.716 2.474V7.99h1.17V4.822L6.837.17zm3.13 5.933V4.06c0-.622-.106-1.077-.327-1.372-.293-.397-.704-.597-1.233-.597-.526 0-.938.2-1.23.6-.225.3-.33.75-.33 1.38v2.04c0 .62.105 1.08.33 1.37.293.4.705.6 1.23.6.53 0 .94-.2 1.232-.59.222-.29.33-.75.33-1.37zm-1.056.2c0 .538-.17.808-.51.808-.34 0-.51-.27-.51-.8V3.85c0-.54.16-.808.5-.808.34 0 .5.268.5.808v2.452zm4.96 1.687V2.162h-1.06v4.454c-.24.33-.46.494-.67.494-.14 0-.23-.084-.25-.247-.02-.034-.02-.163-.02-.41v-4.29h-1.05V6.77c0 .41.03.69.09.866.1.295.34.434.68.434.38 0 .78-.234 1.2-.717v.637h1.05zm-3.31 5.917c-.18 0-.35.082-.52.254v3.52c.17.18.34.26.52.26.3 0 .45-.25.45-.77V14.7c0-.52-.16-.787-.46-.787zm3.87 0c-.35 0-.53.267-.53.8v.533h1.04v-.533c0-.533-.18-.8-.52-.8zm2.55-2.932c-.21-.92-.97-1.597-1.87-1.698-2.15-.24-4.32-.24-6.48-.24s-4.33 0-6.48.24c-.91.1-1.66.78-1.87 1.698-.3 1.31-.3 2.738-.3 4.088 0 1.348 0 2.778.3 4.088.21.92.96 1.6 1.87 1.7 2.14.24 4.31.24 6.47.24s4.33 0 6.472-.24c.903-.1 1.655-.78 1.87-1.7.3-1.3.3-2.74.3-4.08 0-1.35 0-2.77-.3-4.09zm-12.06 1.18H3.68v6.65H2.518v-6.65h-1.23v-1.09h3.644v1.09zm3.16 6.65H7.04v-.63c-.415.476-.81.71-1.194.71-.34 0-.57-.138-.677-.43-.06-.175-.09-.45-.09-.857v-4.56h1.04v4.246c0 .244 0 .372.01.406.02.162.1.244.24.244.21 0 .43-.162.66-.49v-4.407h1.05v5.767zm3.97-1.73c0 .532-.04.917-.11 1.16-.14.43-.42.65-.84.65-.38 0-.73-.208-1.08-.64v.56H8.99v-7.74h1.045v2.528c.337-.415.695-.625 1.08-.625.416 0 .695.22.834.65.07.233.1.615.1 1.16v2.296zM16 16.11h-2.09v1.028c0 .534.175.8.533.8.257 0 .407-.14.467-.42.01-.056.022-.287.022-.706H16v.15c0 .337-.012.57-.022.675-.037.23-.12.44-.245.626-.29.417-.718.624-1.264.624-.55 0-.97-.197-1.27-.59-.22-.29-.34-.745-.34-1.356v-2.02c0-.61.1-1.06.32-1.36.3-.39.72-.59 1.25-.59.52 0 .94.2 1.23.59.21.3.32.75.32 1.36v1.2z"/></symbol></svg><svg class="u-hide"><defs><path id="logo-a" d="M0 0h123.7v52.68H0z"/></defs><symbol viewBox="277.14 429.417 32 19.166" id="ar-lang"><title>ar-lang</title><path fill="#EA2126" d="M309.14 443.583c0 2.763-2.24 5-5 5h-22c-2.76 0-5-2.237-5-5v-9.166c0-2.76 2.24-5 5-5h22c2.76 0 5 2.24 5 5v9.166z"/><path fill="#fff" d="M304.436 437.19c-.185.055-.366.114-.548.174-.51.17-1.04.34-1.58.403-.19.027-.386.01-.546-.06-.55-.22-.966-.57-1.174-.987-.122-.27-.126-.45-.007-.545.39-.324.91-.394 1.28-.394.09 0 .19.01.28.02.49.03.88.28 1.12.48l.11.09.34-.36-.05-.09c-.3-.56-.64-.94-1.03-1.17-.51-.31-1.2-.34-1.74-.09-.66.31-1.04.92-1.25 1.37-.24.51-.25 1.11-.02 1.6.15.34.4.6.64.8-.3.06-.63.1-.97.1h-.47c-.29 0-.62-.01-.89-.19-.46-.3-.7-.83-.93-1.35l-.19-.43-.15.21c-.16.23-.27.48-.38.73-.04.11-.09.21-.14.31l-.03.07.03.06c.21.47.48.92.8 1.35.02.03.04.06.05.09.06.08.09.14.07.19-.06.3-.2.61-.4.91-.41.59-.98 1.05-1.6 1.28-.44.17-1 .15-1.5-.05l-.13-.05-.05.14c-.04.1-.09.2-.13.3l-.05.13.12.06c.7.35 1.38.66 2.12.66.1 0 .19 0 .31-.01.73-.16 1.23-.76 1.57-1.26.42-.58.64-1.22.63-1.86.15.08.31.12.46.13.18.01.36.02.53.02.4 0 .74-.04 1.05-.11.36-.08.71-.19 1.05-.3.22-.07.44-.15.67-.21.24-.06.48-.13.71-.19.58-.15 1.18-.31 1.74-.54l.06-.02.03-.05.12-.27c.12-.26.25-.54.32-.83l.07-.26-.26.08.01-.01zm-12.533-2.155l-.103-.184-.14.16c-.272.31-.485.66-.68 1l-.04.07.187.38c.23.46.464.93.613 1.4l.02.08c.04.15.048.22 0 .26-.333.25-.77.29-1.26.32-.544.01-1.09.01-1.634.01h-2.236l-.25.41c-.133.21-.264.43-.398.64l-.06.1.07.09c.093.11.2.16.34.16.554.02 1.197.08 1.77.36.117.05.225.13.32.24-.315.32-.753.5-1.18.68l-.1.04c-1.194.46-2.17.54-2.99.23-.676-.24-1.198-.81-1.365-1.5-.255-.92.042-1.88.4-2.78l.052-.13-.13-.06c-.11-.05-.22-.09-.34-.14l-.13-.05-.07.12c-.77 1.37-.99 2.89-.63 4.17.21.79.78 1.44 1.51 1.75.44.19.93.28 1.45.28.51 0 1.05-.08 1.61-.26.84-.26 1.59-.66 2.22-1.18.24-.17.34-.44.43-.69.02-.05.04-.1.06-.14.12-.3.11-.6.08-.9.46 0 .94 0 1.41-.03.46-.05.98-.13 1.37-.49.48-.57.72-1.29.63-1.96-.09-.73-.36-1.48-.86-2.37h-.01zm-1.183 6.233l-.107-.086-.094.097c-.23.23-.45.5-.68.81l-.09.11.1.09c.34.28.67.58.98.87l.1.09.1-.1c.27-.26.49-.57.66-.8l.06-.1-.08-.09c-.32-.35-.65-.65-.98-.92zm-4.75 2.205l-.108-.084-.097.1c-.26.27-.47.53-.648.78-.264-.27-.513-.51-.757-.7l-.11-.09-.092.1c-.25.26-.48.54-.678.82l-.08.11.105.09c.386.32.696.6.975.87l.105.1.104-.1c.22-.22.42-.47.64-.78.25.22.51.44.75.67l.1.1.1-.1c.21-.21.42-.47.66-.8l.07-.1-.09-.09c-.27-.29-.6-.63-.98-.92z"/></symbol><symbol viewBox="0 0 123.7 52.68" id="logo"><title>logo</title><clipPath id="logo-b"><use xlink:href="#logo-a" overflow="visible"/></clipPath><path clip-path="url(#logo-b)" fill="#fff" d="M9.34 14.742C12.16 6.11 21.12.472 30.09.647c30.837-.04 61.684.01 92.52-.088-.59 7.97-3.015 15.68-4.46 23.55-1.688 6.14-1.65 13.01-5.362 18.45-4.234 6.39-12.144 9.75-19.697 9.54-30.65-.03-61.33 0-92-.02 3.17-12.34 5.29-24.95 8.25-37.35"/><defs><path id="logo-c" d="M0 0h123.7v52.68H0z"/></defs><clipPath id="logo-d"><use xlink:href="#logo-c" overflow="visible"/></clipPath><path clip-path="url(#logo-d)" fill="#ED1C24" d="M8.4 14.49C11.27 5.67 20.39-.09 29.52.09 60.91.05 92.31.1 123.7 0c-.6 8.16-3.07 16.04-4.54 24.07-1.72 6.28-1.68 13.3-5.46 18.85-4.31 6.54-12.36 9.96-20.05 9.75-31.21-.02-62.43 0-93.65-.01 3.23-12.62 5.38-25.5 8.4-38.17m57.39-5.62c4.65 2.08 9.38 4 13.9 6.36 3.21-1.23 6.37-2.58 9.44-4.12-4.36-2.13-8.76-4.38-13.51-5.5-3.41.61-6.64 1.94-9.83 3.26m-36.64 1.67c-2.51 1.37-3.07 4.37-3.6 6.92-2.24.22-4.77.12-6.58 1.7-2.27 1.8-2.84 4.78-3.58 7.42 2.41.04 4.82.05 7.24.06-1.7 5.81-3.44 13.72 2.39 17.85 5.37 4.64 14.84.4 14.55-6.81-2.62-.22-5.58.58-7.97-.79-2.8-2.85-.26-6.94.44-10.2 4.2.68 9.98-.77 10.26-5.88.21-4.11-5.16-3.16-7.83-3.24.44-1.82 1.2-3.68.82-5.58-.99-2.34-4.15-2.22-6.14-1.45m14.04 17.15c-2.57 5.34-2 12.88 3.29 16.37 7.18 5.06 17.84 1.1 21.13-6.76-4.38-.3-8.77-.1-13.16-.26 5.19-4.3 10.68-8.21 15.84-12.54 1.53-1.18 2.56-3.22 1.73-5.12-1.76-3.38-5.812-4.63-9.392-4.67-8.238.22-15.828 5.71-19.438 12.98m43.11-8.92c5.41 3.95 10.83 7.9 16.32 11.74 2.21-1.95 4.43-3.9 6.64-5.86-4.45-3.97-9.36-7.44-14.57-10.32-2.86 1.35-5.72 2.74-8.39 4.44M67.82 31.78c-.183.53-.292.952.224 1.497C72.274 36.257 81.16 43.9 85.66 46.51c4.34-3.5 8.1-7.67 12.09-11.56-2.83-3.66-6.93-5.97-10.54-8.75-2.16-1.35-4.12-3.42-6.76-3.7-4.52 2.63-8.5 6.09-12.63 9.28m-17.2 2.06c.02-7.35 7.95-13.45 15.05-11.39-5.12 3.66-9.77 7.95-15.05 11.39"/></symbol></svg><!-- Menu Will Be Rendered Here -->
<script type="text/javascript">
$(document).ready(function(){$("head").append( $("meta"))});
</script>
<header class="header">
<div class="header__top container-half--ver--half">
<div class="one-one align-center clearfix">
<nav class="nav align-default col-sm-hide">
<ul class="nav__list">
<li class="nav__list__item is-current">
<a href="/wps/portal/te/Personal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS09LTjMwQU05RDBDRjYxME03/" class="nav__list__link" id="residential_href"
onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - header', 'action' :'Click', 'label' : 'Personal'});"
>
Personal
</a>
</li>
<li class="nav__list__item">
<a href="/wps/portal/te/Business/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFI0/" class="nav__list__link"
onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - header', 'action' :'Click', 'label' : 'Business'});"
>
Business
</a>
</li>
<li class="nav__list__item">
<a href="http://ir.te.eg/" class="nav__list__link" target="_blank"
onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - header', 'action' :'Click', 'label' : 'Investor Relations'});"
>
Investor Relations
</a>
</li>
<li class="nav__list__item">
<a href="https://csr.te.eg/en" class="nav__list__link" target="_blank"
onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - header', 'action' :'Click', 'label' : 'CSR'});"
>
CSR
</a>
</li>
<!-- <li class="nav__list__item"><a href="http://ir.te.eg/" class="nav__list__link">Investor Relations</a></li> -->
</ul>
<style>
#utb-edit-mode-quicklink , #utb-view-mode-quicklink
{
border: 0;
border-radius: 4px;
background: #ec1c23;
color: #fff;
font-size: 16px;
font-weight: 300;
line-height: 2.5;
padding: 0 30px;
}
#utb-project-info
{
display : none;
}
</style>
</nav>
<div class="align-op-default col-sm-12">
<a id="changeLanguageLink" href='/wps/portal/te/Personal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L0lDUmlTUSEhL3dHa0FKRnNBLzROV3FpQSEhL2Fy/' class="header__lang link inline-block text-middle space-op col-sm-pull-right pull__right" style="height: 30px; margin-top:9px;"><img src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/lang-icon.png" width="30"
onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - header', 'action' :'Click', 'label' : 'Arabic Language'})"
></a>
<!-- <div
class="nav__list__item col-sm-pull-right pull__right Inquire_text col-xs-hide">
<a href="https://billing.te.eg/en-us"
class="nav__list__link lighter__txt">Inquire about a bill</a>
</div> -->
<div class="mobile-menu-icon col-sm-pull-left col-sm-visible"><img src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/mobile-menu-icon.png"></div>
<a href="/wps/portal/te/Personal/" class="header__logo inline-block text-middle space-op col-sm-visible"><img src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/svgfallback/logo.png" class="header__logo__img" style="margin-right: 5px;margin-left: 5px;"></a>
<div class="header__search inline-block text-middle">
<form action="/wps/portal/te/Personal/Search%20Results/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L3dJVkNvQSEhL3dQTUFCa0FFckFDUS80TmxHUW9ZcnR6RSEvWjZfS1FEMjFPRzBLOEtTNDBBTUVDNDdRNzAwRTYvWjdfS1FEMjFPRzBLOEtTNDBBTUVDNDdRNzAwOTY!/" method="post" onsubmit="if(document.querySelector('input.header__search__input.text-middle').value.trim())return true; else return false;" >
<input id="tags" name="search_query" type="text" placeholder="Search" class="header__search__input text-middle">
<button type="submit" class="header__search__btn text-middle">
<svg class="header__search__icon">
<use xlink:href="#icon-search" data-fallback-src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/svgfallback/icon-search.png"></use>
</svg>
</button>
</form>
</div>
<nav class="nav inline-block text-middle col-sm-hide">
<ul class="nav__list">
<li class="nav__list__item"></li>
<!-- <li class="nav__list__item"> -->
<!-- Wi-Fi --><!-- </a> -->
<!-- </li> -->
</ul>
</nav>
</div>
</div>
</div>
<div style="display: none">
<ul class="wpthemeCommonActions wpthemeRight">
<li class="wpthemeFirst">
</li>
<li>
<a href='/wps/myportal/!ut/p/z0/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDXAARwP9gmxHRQCBXI7R/' >Log In</a>
</li>
<li class="wpthemeLast">
<span class="wpthemeBranding">
<img src="/wps/themeModules/themes/html/dynamicSpots/icons/blank.gif" alt="IBM Logo">
<span class="wpthemeAltText">IBM Logo</span>
</span>
</li>
</ul>
<div class="wpthemeInner">
<div id="wpthemeStatusBarContainer" class="lotusui30">
<noscript>
<div class="lotusMessage2" role="alert" wairole="alert">
<img class="lotusIcon lotusIconMsgError" src="icons/blank.gif" alt="Error" />
<span class="lotusAltText">Error:</span>
<div class="lotusMessageBody">Javascript is disabled in this browser. This page requires Javascript. Modify your browser's settings to allow Javascript to execute. See your browser's documentation for specific instructions.</div>
</div>
</noscript>
</div>
</div></div>
<div class="header__main col-sm-hide">
<div class="one-one align-center clearfix">
<div class="l-table l-full">
<div class="l-table-cell text-middle">
<a href="javascript:void()" class="header__logo inline-block text-middle space-op"></a>
<a class="header__logo inline-block text-middle space-op" href="/wps/portal/te/Personal/">
<!-- <svg class="header__logo__img">
<use xlink:href="#logo" data-fallback-src="images/svgfallback/logo.png"></use>
</svg> -->
<div class="header__logo__img">
<img src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/svgfallback/logo.png" class="header__logo__img">
</div>
</a>
</div>
<!-- </a> -->
<!-- Calling Dynamic Content Spot -->
<style type="text/css">.l-ltr .dropdown.-start625 .dropdown__content {
left: -425px !important;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
var url = window.location.href;
if(url.toLowerCase().indexOf("/te/business") !== -1)
{
var menuDiv = document.getElementById('menuNavigation_businessMenuDevId');
menuDiv.style.display='block';
}
else if(url.toLowerCase().indexOf("/te/about") !== -1)
{
var menuDiv = document.getElementById('menuNavigation_aboutMenuDevId');
menuDiv.style.display='block';
}
else if(url.toLowerCase().indexOf("te/personal") !== -1)
{
var menuDiv = document.getElementById('menuNavigation_personalMenuDevId');
menuDiv.style.display='block';
}
else
{
var menuDiv = document.getElementById('menuNavigation_personalMenuDevId');
menuDiv.style.display='block';
}
});
</script>
<div class="l-table-cell text-middle" dir="ltr" id="menuNavigation_personalMenuDevId" style="display:none;">
<nav class="nav nav--light nav--large align-op-default">
<ul class="nav__list"><!-- Mobile menu item -->
<li class="nav__list__item dropdown dropdown--mega -start550"><a class="nav__list__link" href="#">Mobile</a> <img class="dropdown__triangle" src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/triangle.png" />
<div class="dropdown__content">
<div class="dropdown__content__wrapper clearfix">
<div class="dropdown__content__column">
<div class="two-ninths">
<div class="l-row--double clearfix">
<div class="text-large text-bold l-row--half">Mobile Tariffs</div>
<ul class="list text-light text-height-double">
<li><a title="" target="" href="https://te.eg/wps/portal/te/Personal/Mobile/Prepaid%20Plans?1dmy&urile=wcm%3apath%3a%2FTE%2FResidential%2FMobile%2BModule%2FPrepaid%2FPay%2F" class="link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Prepaid Plans'});">Prepaid</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/Mobile/Ahlawy" class="link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Ahlawy'});">Ahlawy</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMSM4sUi_IDfCIMvEUREAU9jtzA!!/dz/d5/L0lHSkovd0RNQUZrQUVnQSEhLzROVkUvZW4!/?1dmy&urile=wcm%3apath%3a%2FTE%2FResidential%2FMobile%2BModule%2FControl%2FControl_Tazbeet%2F" class="link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Control'});">Control</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/Mobile/Postpaid%20Plans/" class="link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Indigo Plans'});">Indigo</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/?1dmy&urile=wcm%3apath%3a%2Fte%2Fresidential%2Fmobile%2Bmodule%2Findigo-plus%2Findigo-plus%2Findigo-plus&Indigo%20Plus%20from%20WE#Indigo-plus" class="link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Indigo Plus'});">Indigo Plus</a></li>
</ul>
</div>
</div>
</div>
<div class="dropdown__content__column">
<div class="two-ninths">
<div class="l-row--half clearfix">
<div class="text-large text-bold l-row--half">Internet</div>
<div class="space-op--half">
<ul class="list text-light text-height-double">
<li><a title="" target="" href="/wps/portal/te/Personal/Mobile/Data%20Packages#we-mobile-internet-packages" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Mobile Internet Packages'});">Mobile Internet Packages</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/Mobile/Data%20Packages?1dmy&urile=wcm%3apath%3a%2Fte%2Fresidential%2Fmobile%2Bmodule%2Fdestroyer%2Fdestroyer" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'X Bundles'});">X Bundles</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="dropdown__content__column">
<div class="two-ninths">
<div class="l-row--half clearfix">
<div class="text-large text-bold l-row--half">International & Roaming</div>
<div class="space-op--half">
<ul class="list text-light text-height-double">
<li><a title="" target="" href="/wps/portal/te/Personal/Mobile/International%20Calling%20Roaming#we-telecom-mobile-services" class="link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'International Calling & Roaming'});">International Calling & Roaming</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="dropdown__content__column">
<div class="two-ninths">
<div class="l-row--half clearfix">
<div class="text-large text-bold l-row--half">MNP</div>
<div class="clearfix"><!-- <div class="l-row--half text-x-small text-light" style="margin-top: 20px;">
<div class="text-large text-bold">MNP</div>
</div> --><a title="" target="" href="/wps/portal/te/Personal/Mobile/MNP#we-telecom-mobile-services" class="btn inline-block l-full" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'MNP – More info Button'});">More info</a></div>
</div>
<div class="clearfix">
<div style="border-top: 1px #f3f3f3 solid; margin:10px auto;"> </div>
<div class="text-large text-bold l-row--half">Data Line Activation</div>
<div class="l-row--half text-gray">
<div class="text-light text-x-small l-row lineheight">Now you can activate your line with Telecom egypt with single click</div>
<a title="" target="" href="https://my.te.eg/#/home/lineactivation" class="btn inline-block l-full">Data Line Activation</a></div>
</div>
</div>
</div>
</div>
</div>
</li>
<!-- End Mobile menu item -->
<li class="nav__list__item dropdown dropdown--mega -start625"><a class="nav__list__link" href="#">WE Internet</a> <img class="dropdown__triangle" src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/triangle.png" />
<div class="dropdown__content">
<div class="dropdown__content__wrapper clearfix">
<div class="dropdown__content__column">
<div class="two-ninths">
<div class="l-row--double clearfix">
<div class="text-large text-bold l-row--half">WE Internet</div>
<ul class="list text-light text-height-double">
<li><a title="" target="" href="https://te.eg/wps/portal/te/Personal/WE-SPACE/" class="link" onclick="dataLayer.push({‘event’ : ‘fire_event’, ‘category’ : ‘Home menu – Fixed Broadband’, ‘action’ :‘Click’, ‘label’ : ‘WE Space’});">WE Space</a></li>
</ul>
</div>
<div class="clearfix">
<div class="l-row--half"><!--<div class="text-large text-bold">Fiber To The Home FTTH</div>-->
<ul class="list text-light text-height-double"><!--<li><a title="" target="" href="https://mytedata.net/wps/portal/ssp/Home" class="link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Broadband', 'action' :'Click', 'label' : 'FTTH Show Usage Link'});">FTTH Show Usage</a></li>
<li><a title="" target="" href="https://mytedata.net/wps/portal/ssp/RechargeMyQuota" class="link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Broadband', 'action' :'Click', 'label' : 'FTTH Online Recharge'});">FTTH Online Recharge</a></li>-->
</ul>
</div>
</div>
</div>
</div>
<div class="dropdown__content__column">
<div class="five-eighteenths">
<div class="l-row--half clearfix">
<div class="text-large text-bold l-row--half">Home Internet Service</div>
<div class="space-op--half">
<ul class="list text-light text-height-double">
<li><a title="" target="" href="https://te.eg/wps/portal/te/Personal/Personal%20Internet/Value%20Added%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBq7-Bfjg-BY4eBvpRFOgHKcDUj6yQgP2G5hTZb-BsSFh_FD4l7hYGWBWg-AGvCWA_4FMAcmQk0BfmOJ3pbqQfDDKjPDMvJb88PjNFP9IoKdUkzdIiTb8gNzQ0NMIg01M3MRIAkUI-SQ!!/dz/d5/L0lDU1NTUSEhL3dHa0FKRnNBLzRBMUgweEEhL0hvbWUvMTc1/?urile=wcm%3apath%3A%2FTE%2FResidential%2FInternet%2FADSLServices%2FVAS-Services%2FContent%2FServices%2FOptionPack&previewopt=id&previewopt=3f0f3885-5ae0-4ac9-a663-c10f75687b47&previewsrv=WCM_Page.ResetAll%3DTRUE%26CACHE%3DNONE%26CONTENTCACHE%3DNONE%26CONNECTORCACHE%3DNONE&previewsrv=%26SRV%3DPage#Z7_50D2I0S0L0EG70A1BR7S6B30G0" class="link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Option Pack'});">Option Pack (Fixed IP - Domain - Email)</a> <!--<div class="text-light text-x-small text-gray">ADSL router with 4 Ethernet Ports and Wi-Fi.</div>--></li>
<!--<li><a title="" target="" href="/wps/portal/te/Personal/Personal%20Internet/Value%20Added%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMFIx/?1dmy&urile=wcm%3apath%3a%2FTE%2FPersonal%2FInternet%2FADSLServices%2FDevices%2FNetSaver#NetSaver:tabs#we-internet-services" class="link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Netsaver'});">Net Saver</a>-->
</ul>
</div>
</div>
<a title="" target="" href="https://te.eg/wps/portal/te/Personal/Personal%20Internet/Value%20Added%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBq7-Bfjg-BY4eBvpRFOgHKcDUj6yQgP2G5hTZb-BsSFh_FD4l7hYGWBWg-AGvCWA_4FMAcmQk0BfmOJ3pbqQfDDKjPDMvJb88PjNFP9IoKdUkzdIiTb8gNzQ0NMIg01M3MRIAkUI-SQ!!/dz/d5/L0lDU1NTUSEhL3dHa0FKRnNBLzRBMUgweEEhL0hvbWUvMTc1/?urile=wcm%3apath%3A%2FTE%2FResidential%2FInternet%2FADSLServices%2FVAS-Services%2FContent%2FServices%2FOptionPack&previewopt=id&previewopt=3f0f3885-5ae0-4ac9-a663-c10f75687b47&previewsrv=WCM_Page.ResetAll%3DTRUE%26CACHE%3DNONE%26CONTENTCACHE%3DNONE%26CONNECTORCACHE%3DNONE&previewsrv=%26SRV%3DPage#Z7_50D2I0S0L0EG70A1BR7S6B30G0" class="inline-block btn l-full" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Broadband', 'action' :'Click', 'label' : 'More VAS Button'});">More Services</a></div>
</div>
<!--<div class="dropdown__content__column">
<div class="five-eighteenths">
<div class="l-row clearfix">
<div class="text-large text-bold l-row--half">Choose the plan that best fits your usage</div>
<div class="l-row"><img alt="" class="thumbnail__img l-row--half" height="120" src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/demo/menu/img4.jpg" width="345" />
<div class="text-light text-x-small text-dark" style="margin-bottom: 33px;">Usage estimator is an easy tool designed to assist you in estimating your internet data monthly usage and accordingly recommend the most suitable Internet package for your needs.</div>
</div>
<a title="" target="" href="/wps/vanityurl/Usage-Estimator-en#we-internet-services" class="inline-block btn l-full" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Broadband', 'action' :'Click', 'label' : 'Usage Estimator Button'});">Estimate Usage</a></div>
</div>
</div>--></div>
</div>
</li>
<li class="nav__list__item dropdown dropdown--mega -start680"><a class="nav__list__link" href="#">Fixed Voice</a> <img class="dropdown__triangle" src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/triangle.png" />
<div class="dropdown__content">
<div class="dropdown__content__wrapper clearfix">
<div class="dropdown__content__column">
<div class="five-eighteenths">
<div class="text-large text-bold l-row--half">Voice plans</div>
<!-- <div class="thumbnail align-op-default"><img src="images/demo/menu/img1.jpg" alt="" width="150" height="96" class="thumbnail__img"></div> -->
<ul class="list text-light text-height-double">
<li><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/WE_ardy_bundles/!ut/p/z1/nZJfT8IwFMU_iw88Lr3dn659XFwUXBABEdaXpa5Fq1s3oAHx07MZH9RFFu1L0_Tec3-np4ijFeJG7PWTsLoyomjOKSdZMo1dPLmGBO5YCNGY-ItpTDGEAVp-L5gkt15TwGK4vCIYxiHi5_sfEEc8N7a2zyi1agBbtdNSGatFMYB9pXP1udWFMLsBHFQmtkIeM6MO2cdFq1DnWqKUUj8PfHftuFIEjo9D5jCCiSOpRyhh4jHA8idxF6klhl9WBB3HjLCmfxQDm4UuULfP8bLl7VHoY-Bnh2C_M6ITS9q4CL8oUGgZsDcKFkMME4zmf3zWmz7fzVfSL5sNj5q8K2PVm0WrfwY-F1tUl4uSekftvM6G7_frculEFyeJJd6e/dz/d5/L0lHSkovd0RNQURrQUVnQSEhLzROVkUvZW4!/" class="link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Voice', 'action' :'Click', 'label' : 'Voice Plans'});">WE Ardy</a></li>
</ul>
<div class="clearfix">
<div class="text-large text-bold">Prepaid</div>
<!-- <div class="thumbnail align-op-default"><img src="images/demo/menu/img2.jpg" alt="" width="150" height="96" class="thumbnail__img"></div> -->
<ul class="list text-light text-height-double">
<li><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20Prepaid%20Cards/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMSM4NU-_IDfCIMvEUREAt8qmQQ!!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxME4z/?1dmy&urile=wcm%3apath%3a/te/Personal/voice/prepaidcards/marhaba+and+marhaba+plus" class="link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Voice', 'action' :'Click', 'label' : 'Prepaid Cards'});">Marhaba</a></li>
</ul>
</div>
</div>
</div>
<div class="dropdown__content__column">
<div class="two-ninths">
<div class="text-large text-bold l-row--half">Voice Added Services</div>
<div class="l-row">
<ul class="list text-light text-small text-height-double">
<li><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/nVLRTsIwFP0WHnhcert27fq4uChIEEEHrC-kbFWrowxoiPr1dgkPkqkL9uWmyTn3nnPPRRItkbTqaJ6VM1urKv_PJVuNpmmIJzcwgnvBIRkzmk3TGAOP0OIcMBndEQ8QKVxdMwxjjuRlfMGEBwxTEDMeQhx28edIIllYV7sXlDvdh70-mFJbZ1TVh-PWFPpU6krZQx-MdXpvT_5WAhp-XZgS5bwsqIoECXTJSUCZDgMBhAaMKFGuozWlRUtvW1CjF355CXi-PLf0g-OuHvLPpWDaGtEKJfcu-LcOMTQaMBlG2QDDBKOHC9dy25WTPyTzutvJxKe19RG8O7T8V1z1Jss2MfkI3maDz8enzSLp9b4AoDw2Lw!!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a/te/Personal/voice/voiceservices/services/call+waiting" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Call Waiting'});">Call waiting</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/nVLRTsIwFP0WHnhcert27fq4uChIEEEHrC-kbFWrowxoiPr1dgkPkqkL9uWmyTn3nnPPRRItkbTqaJ6VM1urKv_PJVuNpmmIJzcwgnvBIRkzmk3TGAOP0OIcMBndEQ8QKVxdMwxjjuRlfMGEBwxTEDMeQhx28edIIllYV7sXlDvdh70-mFJbZ1TVh-PWFPpU6krZQx-MdXpvT_5WAhp-XZgS5bwsqIoECXTJSUCZDgMBhAaMKFGuozWlRUtvW1CjF355CXi-PLf0g-OuHvLPpWDaGtEKJfcu-LcOMTQaMBlG2QDDBKOHC9dy25WTPyTzutvJxKe19RG8O7T8V1z1Jss2MfkI3maDz8enzSLp9b4AoDw2Lw!!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a%2Fte%2FPersonal%2Fvoice%2Fvoiceservices%2Fservices%2Fconference%2Bcall" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Conference Call'});">Conference call</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/nVLRTsIwFP0WHnhcert27fq4uChIEEEHrC-kbFWrowxoiPr1dgkPkqkL9uWmyTn3nnPPRRItkbTqaJ6VM1urKv_PJVuNpmmIJzcwgnvBIRkzmk3TGAOP0OIcMBndEQ8QKVxdMwxjjuRlfMGEBwxTEDMeQhx28edIIllYV7sXlDvdh70-mFJbZ1TVh-PWFPpU6krZQx-MdXpvT_5WAhp-XZgS5bwsqIoECXTJSUCZDgMBhAaMKFGuozWlRUtvW1CjF355CXi-PLf0g-OuHvLPpWDaGtEKJfcu-LcOMTQaMBlG2QDDBKOHC9dy25WTPyTzutvJxKe19RG8O7T8V1z1Jss2MfkI3maDz8enzSLp9b4AoDw2Lw!!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a%2Fte%2FPersonal%2Fvoice%2Fvoiceservices%2Fservices%2Ffollow%2Bme" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Follow me'});">Follow me</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/nVLRTsIwFP0WHnhcert27fq4uChIEEEHrC-kbFWrowxoiPr1dgkPkqkL9uWmyTn3nnPPRRItkbTqaJ6VM1urKv_PJVuNpmmIJzcwgnvBIRkzmk3TGAOP0OIcMBndEQ8QKVxdMwxjjuRlfMGEBwxTEDMeQhx28edIIllYV7sXlDvdh70-mFJbZ1TVh-PWFPpU6krZQx-MdXpvT_5WAhp-XZgS5bwsqIoECXTJSUCZDgMBhAaMKFGuozWlRUtvW1CjF355CXi-PLf0g-OuHvLPpWDaGtEKJfcu-LcOMTQaMBlG2QDDBKOHC9dy25WTPyTzutvJxKe19RG8O7T8V1z1Jss2MfkI3maDz8enzSLp9b4AoDw2Lw!!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a%2Fte%2FPersonal%2Fvoice%2Fvoiceservices%2Fservices%2Fhot%2Bline" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Hotline'});">Hot line</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/nVLRTsIwFP0WHnhcert27fq4uChIEEEHrC-kbFWrowxoiPr1dgkPkqkL9uWmyTn3nnPPRRItkbTqaJ6VM1urKv_PJVuNpmmIJzcwgnvBIRkzmk3TGAOP0OIcMBndEQ8QKVxdMwxjjuRlfMGEBwxTEDMeQhx28edIIllYV7sXlDvdh70-mFJbZ1TVh-PWFPpU6krZQx-MdXpvT_5WAhp-XZgS5bwsqIoECXTJSUCZDgMBhAaMKFGuozWlRUtvW1CjF355CXi-PLf0g-OuHvLPpWDaGtEKJfcu-LcOMTQaMBlG2QDDBKOHC9dy25WTPyTzutvJxKe19RG8O7T8V1z1Jss2MfkI3maDz8enzSLp9b4AoDw2Lw!!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a%2Fte%2FPersonal%2Fvoice%2Fvoiceservices%2Fservices%2Fdont%2Bdisturb" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Do not Disturb'});">Don’t disturb</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/nVRNU9swFPw1OWr09GHJOmaahkKGBAJOiC6MbMkgSBzjmFD49VXadELJ1Cr1RfJo12_3vZWxxjdYV2br70zr15VZhveFFrejywElkxMYwYWS0D8XPLscpASGEs__BExGYxYAagBfhoLAucS6g5_BEV8JFQCnA1BTSSGlnfzj-h8AYxbjz7DGuqjaur3Hi9b1oHEbb13VerPswXbtC7dfNq7Z7pYeHHYv5tE917tP1IW3eGG5MilNGXKOlYhTQVCaS4USSoQFphQjJiJ5-Ktl8JenDxF-6GmXZZlE-AGguzs63_mNDC3mQXcWIfyoxHGuYslaBJvyAEiT2U-A7M_OpuTkguKrT87tLJalcFn8w9OT7odEravWfW_xzf9G6so03Q7gmr13wIscSg4lKk0iECfOoVw4hqgppSxAFKWBiIPQs39y4MNBU7m2B8Zulgfl1u03zfo5ID7KhxR2KSHsNMm-EZiQ9_KlLbhJVBiAlQxx4ShSwDgSzCibJznnRRKRH4L76QHUS1Ntfjva__NuFeB6lWXZKmWv3qPH6ddyPEY65yZPX9nbdbma_wCSK_Yl/dz/d5/L0lHSkovd0RNQURrQUVnQSEhLzROVkUvZW4!/" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Wakeup call'});">Wakeup</a></li>
<li><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/nVLRTsIwFP0WHnhcert27fq4uChIEEEHrC-kbFWrowxoiPr1dgkPkqkL9uWmyTn3nnPPRRItkbTqaJ6VM1urKv_PJVuNpmmIJzcwgnvBIRkzmk3TGAOP0OIcMBndEQ8QKVxdMwxjjuRlfMGEBwxTEDMeQhx28edIIllYV7sXlDvdh70-mFJbZ1TVh-PWFPpU6krZQx-MdXpvT_5WAhp-XZgS5bwsqIoECXTJSUCZDgMBhAaMKFGuozWlRUtvW1CjF355CXi-PLf0g-OuHvLPpWDaGtEKJfcu-LcOMTQaMBlG2QDDBKOHC9dy25WTPyTzutvJxKe19RG8O7T8V1z1Jss2MfkI3maDz8enzSLp9b4AoDw2Lw!!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a%2Fte%2FPersonal%2Fvoice%2Fvoiceservices%2Fservices%2Fabbreviated%2Bnumbers" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Abbreviated Numbers'});">Abbreviated Numbers</a></li>
</ul>
</div>
<a title="" target="" href="https://www.te.eg/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/nVLRTsIwFP0WHnhcert27fq4uChIEEEHrC-kbFWrowxoiPr1dgkPkqkL9uWmyTn3nnPPRRItkbTqaJ6VM1urKv_PJVuNpmmIJzcwgnvBIRkzmk3TGAOP0OIcMBndEQ8QKVxdMwxjjuRlfMGEBwxTEDMeQhx28edIIllYV7sXlDvdh70-mFJbZ1TVh-PWFPpU6krZQx-MdXpvT_5WAhp-XZgS5bwsqIoECXTJSUCZDgMBhAaMKFGuozWlRUtvW1CjF355CXi-PLf0g-OuHvLPpWDaGtEKJfcu-LcOMTQaMBlG2QDDBKOHC9dy25WTPyTzutvJxKe19RG8O7T8V1z1Jss2MfkI3maDz8enzSLp9b4AoDw2Lw!!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a/te/Personal/voice/voiceservices/services/call+waiting" class="inline-block btn l-full" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Voice', 'action' :'Click', 'label' : 'More About VAS Button'});">More about VAS</a></div>
</div>
<div class="dropdown__content__column">
<div class="five-eighteenths">
<div class="text-large text-bold l-row--half">Get a new Landline</div>
<!-- <div class="thumbnail align-op-default space-op"><img src="images/demo/menu/img3.jpg" alt="" width="150" height="96" class="thumbnail__img"></div> -->
<div class="text-light text-x-small text-dark">
<div class="l-row--half">Your Landline enables you to make any calls and get online at home, just visit your nearest exchange to subscribe to your new line and enjoy the world of communication</div>
<a title="" target="" href="https://te.eg/wps/portal/te/Personal/Personal%20Voice/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMDE0/#Get-New-Landline" class="btn inline-block l-full" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Voice', 'action' :'Click', 'label' : 'More about new landline Button'});">More info</a></div>
</div>
</div>
</div>
</div>
</li>
<!--Services-->
<li class="nav__list__item"><a title="" target="" href="/wps/portal/te/Personal/Mobile/Services/" class="nav__list__link">Services</a></li>
<!--END-->
<li class="nav__list__item"><a title="" target="" href="/wps/portal/te/Personal/Promotions" class="nav__list__link">Promotions</a></li>
<li class="nav__list__item dropdown dropdown--mega -start200"><a class="nav__list__link" href="#">My Account</a> <img class="dropdown__triangle" src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/triangle.png" /><img class="dropdown__triangle" src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/triangle.png" />
<div class="dropdown__content">
<div class="dropdown__content__wrapper clearfix">
<div class="dropdown__content__column">
<div class="two-ninths">
<div class="clearfix">
<div class="space-op--half">
<div class="l-row--half text-gray"><a title="" target="" href="https://billing.te.eg/en-US/Login" class="l-full inline-block btn l-full m-b-8" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Voice', 'action' :'Click', 'label' : 'Manage your landline Button'});">Manage My Landline</a> <a title="" target="" href="https://mytedata.net/wps/portal/ssp/WSLogin" class="l-full inline-block btn l-full m-b-8" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Broadband', 'action' :'Click', 'label' : 'Manage your internet Button'});">Manage My Internet</a> <a title="" target="" href="https://my.te.eg/#/home/signin" class="l-full inline-block btn l-full m-b-8" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Manage your Mobile Button'});">Manage My Mobile</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
</ul>
</nav>
</div>
<!--End of personal mega menu--><!--Business Mega Menu starts here -->
<div class="l-table-cell text-middle" dir="ltr" id="menuNavigation_businessMenuDevId" style="display:none;">
<nav class="nav nav--light nav--large align-op-default">
<ul class="nav__list"><!-- Mobile menu item -->
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://te.eg/wps/portal/te/Business/mobile_services" class="nav__list__link">Mobile Services</a></li>
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://te.eg/wps/portal/te/Business/Data%20%26%20Connectivity/" class="nav__list__link">Data& Connectivity</a></li>
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://te.eg/wps/portal/te/Business/Data%20Center%20%26%20Cloud/" class="nav__list__link">Data Center & Cloud</a></li>
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://te.eg/wps/portal/te/Business/Manage%20ICT%20Services/" class="nav__list__link">Managed ICT Services</a></li>
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://te.eg/wps/portal/te/Business/Voice%20Services/" class="nav__list__link">Fixed Voice </a></li>
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://te.eg/wps/portal/te/Business/Wholesale/" class="nav__list__link">Wholesale</a></li>
</ul>
</nav>
</div>
<!--End of business mega menu--><!--Aboutte Mega Menu starts here -->
<div class="l-table-cell text-middle" dir="ltr" id="menuNavigation_aboutMenuDevId" style="display:none;">
<nav class="nav nav--light nav--large align-op-default">
<ul class="nav__list"><!-- Mobile menu item -->
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://www.te.eg/wps/portal/te/About/About%20Us/" class="nav__list__link">About Us</a></li>
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://www.te.eg/wps/portal/te/About/Events%20and%20Exhibition/" class="nav__list__link">Events & Exhibition</a></li>
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://www.te.eg/wps/portal/te/About/Media%20Center/" class="nav__list__link">Media Center</a></li>
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="_blank" href="https://csr.te.eg/en" class="nav__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - header', 'action' :'Click', 'label' : 'CSR'});">CSR </a></li>
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://www.te.eg/wps/portal/te/About/Careers/" class="nav__list__link">Careers</a></li>
<li class="nav__list__item dropdown dropdown--mega -start550"><a title="" target="" href="https://www.te.eg/wps/portal/te/About/Contact%20Us/" class="nav__list__link">Contact Us</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</header>
<script type="text/javascript">
$(document).ready(function () {
var url = window.location.href;
if (url.toLowerCase().indexOf("/te/business") !== -1) {
var sidmenuDiv = document.getElementById('sideMenu_businessMenuDevId');
sidmenuDiv.className = "tab__title text-small is-active";
var sideMenu_Nav = document.getElementById('sideMenu_Nav_businessMenuDevId');
sideMenu_Nav.className = "tab__content is-active";
}
else if (url.toLowerCase().indexOf("/te/personal") !== -1) {
var sidmenuDiv = document.getElementById('sideMenu_personalMenuDevId');
sidmenuDiv.className = "tab__title text-small is-active";
var sideMenu_Nav = document.getElementById('sideMenu_Nav_personalMenuDevId');
sideMenu_Nav.className = "tab__content is-active";
}
else {
var sidmenuDiv = document.getElementById('sideMenu_personalMenuDevId');
sidmenuDiv.className = "tab__title text-small is-active";
var sideMenu_Nav = document.getElementById('sideMenu_Nav_personalMenuDevId');
sideMenu_Nav.className = "tab__content is-active";
}
});
</script>
<aside class="side__menu col-sm-visible" dir="ltr">
<div class="tab__titles">
<div class="tab__title text-small" data-tab="1" id="sideMenu_personalMenuDevId"><svg> <use data-fallback-src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> Personal</div>
<div class="tab__title text-small" data-tab="2" id="sideMenu_businessMenuDevId"><svg> <use data-fallback-src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> Business</div>
</div>
<nav class="tab__content" data-tab="1" id="sideMenu_Nav_personalMenuDevId">
<ul class="tab__list">
<li class="tab_list_item tab_list_multi"><a class="nav__list__link"> <svg> <use data-fallback-src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/triangle.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>Mobile</a>
<ul class="tab_list_submenu">
<li class="submenutitle"><span style="color:#702283;">- </span>Mobile Tariffs</li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Mobile/Prepaid%20Plans/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2XzUwRDJJMFMwTEdTR0UwQUZFNUxUN1QyU0M3/?1dmy&urile=wcm%3apath%3a%2FTE%2FResidential%2FMobile%2BModule%2FPrepaid%2FPay%2F" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Prepaid Plans'});">Prepaid</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Mobile/Ahlawy" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Ahlawy'});">Ahlawy</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMSM4sUi_IDfCIMvEUREAU9jtzA!!/dz/d5/L0lHSkovd0RNQUZrQUVnQSEhLzROVkUvZW4!/?1dmy&urile=wcm%3apath%3a%2FTE%2FResidential%2FMobile%2BModule%2FControl%2FControl_Tazbeet%2F" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Control'});">Control</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Mobile/Postpaid%20Plans/" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Indigo Plans'});">Indigo</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/?1dmy&urile=wcm%3apath%3a%2Fte%2Fresidential%2Fmobile%2Bmodule%2Findigo-plus%2Findigo-plus%2Findigo-plus&Indigo%20Plus%20from%20WE#Indigo-plus" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Indigo Plus'});">Indigo Plus</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span>Internet</li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Mobile/Data%20Packages/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2XzUwRDJJMFMwTEdTR0UwQUZFNUxUN1QyMkcz/" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Mobile Internet Packages'});">Mobile Internet Packages</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Mobile/Data%20Packages?1dmy&urile=wcm%3apath%3a%2Fte%2Fresidential%2Fmobile%2Bmodule%2Fdestroyer%2Fdestroyer" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'X Bundles'});">X Bundles</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span>International & Roaming</li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Mobile/International%20Calling%20Roaming/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2XzUwRDJJMFMwTEdTR0UwQUZFNUxUN1QyMk8y/" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'International Calling & Roaming'});">International Calling & Roaming</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span> <a title="" target="" href="/wps/portal/te/Personal/Mobile/MNP/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2XzUwRDJJMFMwTEdTR0UwQUZFNUxUN1QyQ1Qz/" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'MNP'});">MNP</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span> <a title="" target="" href="https://my.te.eg/#/home/lineactivation" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'MNP'});">Data Line Activation</a></li>
</ul>
</li>
<li class="tab_list_item tab_list_multi"><a class="nav__list__link"> <svg> <use data-fallback-src="/TEStaticThemeResidential8/themes/Portal8.0/css/tedata/images/triangle.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>WE Internet</a>
<ul class="tab_list_submenu">
<li class="submenutitle"><span style="color:#702283;">- </span>WE Internet</li>
<li class="tab_list_submenu_item"><a title="" target="" href="https://te.eg/wps/portal/te/Personal/WE-SPACE/" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'WE Space'});">WE Space</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span>Broadband Services</li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Personal%20Internet/Value%20Added%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMFIx/?1dmy&urile=wcm%3apath%3A%2FTE%2FResidential%2FInternet%2FADSLServices%2FVAS-Services%2FResidential-Internet-Services-Landing#OptionPack" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Option Pack'});">Option Pack (Fixed IP - Domain - Email) </a></li>
</ul>
</li>
<li class="tab_list_item tab_list_multi"><a class="nav__list__link"> <svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>Fixed Voice </a>
<ul class="tab_list_submenu"><!-- <a class="nav__list__link"> </a> -->
<li class="submenutitle"><span style="color:#702283;">- </span>Voice Plans</li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/WE_ardy_bundles/!ut/p/z1/nZJfT8IwFMU_iw88Lr3dn659XFwUXBABEdaXpa5Fq1s3oAHx07MZH9RFFu1L0_Tec3-np4ijFeJG7PWTsLoyomjOKSdZMo1dPLmGBO5YCNGY-ItpTDGEAVp-L5gkt15TwGK4vCIYxiHi5_sfEEc8N7a2zyi1agBbtdNSGatFMYB9pXP1udWFMLsBHFQmtkIeM6MO2cdFq1DnWqKUUj8PfHftuFIEjo9D5jCCiSOpRyhh4jHA8idxF6klhl9WBB3HjLCmfxQDm4UuULfP8bLl7VHoY-Bnh2C_M6ITS9q4CL8oUGgZsDcKFkMME4zmf3zWmz7fzVfSL5sNj5q8K2PVm0WrfwY-F1tUl4uSekftvM6G7_frculEFyeJJd6e/dz/d5/L0lHSkovd0RNQURrQUVnQSEhLzROVkUvZW4!/" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Voice', 'action' :'Click', 'label' : 'Kalamy'});">WE Ardy</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span>Prepaid</li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20Prepaid%20Cards/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxME4z/?1dmy&urile=wcm%3apath%3a/te/residential/voice/prepaidcards/marhaba+and+marhaba+plus" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Voice'', 'action' :'Click', 'label' : 'Marhaba'});">Marhaba</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span>Fixed Voice /li></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a/te/residential/voice/voiceservices/services/call+waiting" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Call waiting'});">Call waiting</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a/te/residential/voice/voiceservices/services/conference+call" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Conference call'});">Conference call</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a/te/residential/voice/voiceservices/services/follow+me" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Follow me'});">Follow me</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a/te/residential/voice/voiceservices/services/hot+line" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Hot line'});">Hot line</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a/te/residential/voice/voiceservices/services/dont+disturb" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Don't disturb'});">Don't disturb</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a/te/residential/voice/voiceservices/services/wakeup" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Wakeup'});">Wakeup</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/Personal%20Voice%20VAS/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMEY3/?1dmy&urile=wcm%3apath%3a/te/residential/voice/voiceservices/services/abbreviated+numbers" class="tab_list_submenu_link" onclick="dataLayer.push({'event' : 'page_loaded', 'pageName' : 'Abbreviated Numbers'});">Abbreviated Numbers</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span> <a title="" target="" href="/wps/portal/te/Personal/Personal%20Voice/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwSzBQOTcwQU02NFVRRDgxMDE0/#Get-New-Landline" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Voice', 'action' :'Click', 'label' : 'Get a new Landline'});">Get a new Landline</a></li>
<!-- contentNode="residential_voice_landline_plans"> --><!-- Get a new Landline </a> --><!-- contentNode="residential_voice_landline_plans"> --><!-- Line plus ISDN </a> -->
</ul>
</li>
<!--Services-->
<li class="tab_list_item tab_list_multi"><a title="" target="" href="/wps/portal/te/Personal/Mobile/Services" class="nav__list__link"><svg><use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>Services</a></li>
<!--End-->
<li class="tab_list_item tab_list_multi"><a title="" target="" href="/wps/portal/te/Personal/Promotions" class="nav__list__link"><svg><use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>Promotions</a></li>
<li class="tab_list_item tab_list_multi"><a class="nav__list__link"> <svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>My Account</a>
<ul class="tab_list_submenu">
<li class="tab_list_submenu_item"><a title="" target="" href="https://billing.te.eg/en-US/Login" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Voice', 'action' :'Click', 'label' : 'Manage your landline Button'});">Manage My Landline</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="https://mytedata.net/wps/portal/ssp/WSLogin" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Fixed Broadband', 'action' :'Click', 'label' : 'Manage your Internet Button'});">Manage My Internet</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="https://my.te.eg/#/home/signin" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home menu – Mobile', 'action' :'Click', 'label' : 'Manage your mobile Button'});">Manage My Mobile</a></li>
</ul>
</li>
<li class="tab_list_item tab_list_multi"><a class="nav__list__link"> <svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>About TE</a>
<ul class="tab_list_submenu">
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/About/About%20Us/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzYx/?1dmy&urile=wcm%3apath%3a/te/AboutTE/AboutUs/mission+and+vision">Mission and Vision</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/About/About%20Us/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzYx/?1dmy&urile=wcm%3apath%3a/te/AboutTE/AboutUs/Board+of+Directors">Board of Directors</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/About/Careers/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyR0gw/">Careers</a></li>
</ul>
</li>
<li class="tab_list_item tab_list_multi"><a title="" target="" href="http://ir.te.eg/" class="nav__list__link"><svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>Investor Relations</a></li>
<li class="tab_list_item tab_list_multi"><a title="" target="_blank" href="https://csr.te.eg/en" class="nav__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - header', 'action' :'Click', 'label' : 'CSR'});"><svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>CSR</a></li>
</ul>
</nav>
<nav class="tab__content" data-tab="2" id="sideMenu_Nav_businessMenuDevId">
<ul class="tab__list">
<li class="tab_list_item tab_list_multi"><a title="" target="" href="https://te.eg/wps/portal/te/Business/mobile_services" class="nav__list__link"><svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>Mobile Services</a></li>
<li class="tab_list_item tab_list_multi"><a class="nav__list__link"> <svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>Data & Connectivity</a>
<ul class="tab_list_submenu">
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20%26%20Connectivity/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMEY2/?1dmy&urile=wcm%3apath%3a/TE/Business/Data-Connectivity/Corporates/" class="tab_list_submenu_link">VPN</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20%26%20Connectivity/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMEY2/?1dmy&urile=wcm%3apath%3a/TE/Business/Data-Connectivity/Corporates/#IP-Transit" class="tab_list_submenu_link">IP Transit</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20%26%20Connectivity/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMEY2/?1dmy&urile=wcm%3apath%3a/TE/Business/Data-Connectivity/Corporates/#Global-Data-Service-GDS" class="tab_list_submenu_link">Global Data Service</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20%26%20Connectivity/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMEY2/?1dmy&urile=wcm%3apath%3a/TE/Business/Data-Connectivity/Corporates/#Business-ADSL" class="tab_list_submenu_link">Business ADSL</a></li>
</ul>
</li>
<li class="tab_list_item tab_list_multi"><a class="nav__list__link"> <svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>Managed ICT Services</a>
<ul class="tab_list_submenu">
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Smarter-Email" class="tab_list_submenu_link">Smart Email</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#MS-Office-365" class="tab_list_submenu_link">MS Office 365</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Cloud-Managed-LAN" class="tab_list_submenu_link">Cloud Managed LAN</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Eye-watch-Plus" class="tab_list_submenu_link">Eye Watch Plus</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span>Cloud Apps</li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Career-Pro" class="tab_list_submenu_link">Career Pro</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Asset-Master" class="tab_list_submenu_link">Asset Master</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Book-Master" class="tab_list_submenu_link">Book Master</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span>Managed Security Services</li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Managed-Firewall" class="tab_list_submenu_link">Managed Firewall</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Cloud-Web-Security" class="tab_list_submenu_link">Cloud Web Security</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Managed-DDOS-Protection" class="tab_list_submenu_link">Managed DDOS Protection</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Endpoint-Security" class="tab_list_submenu_link">Endpoint Security</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span>Unified Communication</li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Hosted-Call-Center-HCC" class="tab_list_submenu_link">Hosted Call Center</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Manage%20ICT%20Services/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzA1/#Meet-Me" class="tab_list_submenu_link">Meet Me</a></li>
</ul>
</li>
<li class="tab_list_item tab_list_multi"><a class="nav__list__link"> <svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>Data Center & Cloud</a>
<ul class="tab_list_submenu">
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/" class="tab_list_submenu_link">Web solutions</a></li>
<li class="submenutitle"><span style="color:#702283;">- </span>Data Center Services</li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/DataCenter-Cloud/Corporates/#Co-location-Hosting" class="tab_list_submenu_link">Co-location Hosting</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/DataCenter-Cloud/Corporates/#Dedicates-Hosting" class="tab_list_submenu_link">Dedicates Hosting</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/DataCenter-Cloud/Corporates/#Shared-Hosting" class="tab_list_submenu_link">Shared Hosting</a></li>
</ul>
</li>
<li class="tab_list_item tab_list_multi"><a class="nav__list__link"> <svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg>Landline Services</a>
<ul class="tab_list_submenu">
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/VoiceServices/Corporates/" class="tab_list_submenu_link">Toll-Free Number</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/VoiceServices/Corporates/#PRI-Service" class="tab_list_submenu_link">PRI Services</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/VoiceServices/Corporates/#Short-Number" class="tab_list_submenu_link">Short Number</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/VoiceServices/Corporates/#DOD-Service" class="tab_list_submenu_link">DOD Service</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/VoiceServices/Corporates/#DID-Service" class="tab_list_submenu_link">DID Service</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/VoiceServices/Corporates/#Extra" class="tab_list_submenu_link">Extra</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/VoiceServices/Corporates/#Calls" class="tab_list_submenu_link">Calls</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/VoiceServices/Corporates/#Hunting-Group" class="tab_list_submenu_link">Hunting Group</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/VoiceServices/Corporates/#Discounted-Bill" class="tab_list_submenu_link">Discounting Bill</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Data%20Center%20%26%20Cloud/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyMFYx/?1dmy&urile=wcm%3apath%3a/TE/Business/VoiceServices/Corporates/#Fixed-Lines" class="tab_list_submenu_link">Fixed Lines</a></li>
</ul>
</li>
<li class="tab_list_item tab_list_multi"><a class="nav__list__link"> <svg> <use data-fallback-src="images/svgfallback/icon-arrow.png" xlink:href="#icon-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>Wholesale</a>
<ul class="tab_list_submenu">
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Wholesale/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzQw/#Bandwidth-Services" class="tab_list_submenu_link">Bandwidth Services </a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Wholesale/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzQw/#Hosting-Services" class="tab_list_submenu_link">Hosting Services</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Wholesale/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzQw/#Internet-Transit" class="tab_list_submenu_link">Internet Transit</a></li>
<li class="tab_list_submenu_item"><a title="" target="" href="/wps/portal/te/Business/Wholesale/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_b39jA0cfS1dDJzdzAwNfM31wwkpiAJKG-AAjgZA_VFgJQgTLM0sgSZ4uhhYBpkbGVgYQRXgMaMgN8Ig01FREQA1DOZq/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzQw/#MPLS-IP-VPN" class="tab_list_submenu_link">MPLS IP-VPN</a></li>
</ul>
</li>
</ul>
</nav>
</aside>
<div class="wpthemeFrame">
<header role="banner"> <!-- renders the top navigation --> <!-- <a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_topNav"></a> -->
<!-- <div class="wpthemeHeader">
<!-- inserts the managed pages preview mode contributions --> <!-- <a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_preview"></a>
<div class="wpthemeInner">
<div class="wpthemeLogo wpthemeLeft">
<span class="wpthemeAltText">IBM WebSphere Portal</span>
</div>
<!-- displays the state of the current page
<div class="wpthemeRight">
<a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_projectMenu"></a>
<a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_pageModeToggle"></a>
</div>
</div>
</div> --><!-- end header --> <!-- inserts the universal toolbar -->
<!-- <div class="wpthemeBanner">
<div class="wpthemeBannerInner">
<div class="wpthemeInner">
<a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_commonActions"></a>
<a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_primaryNav"></a>
<div class="wpthemeClear"></div>
</div>
</div>
</div><!--end main banner--> <!-- <div class="wpthemeSecondaryBanner">
<a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_secondaryNav"></a>
<div class="wpthemeClear"></div>
</div>
--><!--end secondary banner--> </header>
</div>
<!-- end frame -->
<div role="main">
<!-- <div class="wpthemeInner">
<!-- asa markup contributions for pages -->
<!--
<a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_asa"></a>
<a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_search"></a>
<a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_crumbTrail"></a>
<div class="wpthemeClear"></div>
<a rel="dynamic-content" href="dyn-cs:id:TEThemeResidential8_status"></a>
</div> -->
<!-- required - do not remove -->
<div style="display:none" id="portletState">{}</div><div id="layoutContainers">
<div class="hiddenWidgetsDiv">
<!-- widgets in this container are hidden in the UI by default -->
<div class='component-container ibmDndRow hiddenWidgetsContainer id-Z7_KQD21OG0KOKN30AM9D0CF610E2' name='ibmHiddenWidgets' ></div><div style="clear:both"></div>
</div>
<!-- this layout has one main container -->
<div class="wptheme1Col">
<div class='component-container ibmDndRow ibmDndColumn id-Z7_KQD21OG0KOKN30AM9D0CF610E6' name='ibmMainContainer' ><div class='component-control id-Z7_50D2I0S0L06IC0QIKJKK1620C2' ><span id="Z7_50D2I0S0L06IC0QIKJKK1620C2"></span><section class="ibmPortalControl wpthemeControl wpthemeHidden a11yRegionTarget" role="region" >
<div class="asa.portlet" id="asa.portlet.Z7_50D2I0S0L06IC0QIKJKK1620C2" style="display:none;">
<span class="asa.portlet.id">Z7_50D2I0S0L06IC0QIKJKK1620C2</span>
</div>
<!-- start header markup -->
<header class="wpthemeControlHeader dojoDndHandle">
<div class="wpthemeInner">
<h2>
<!-- lm-dynamic-title node marks location for dynamic title support -->
<span class="lm-dynamic-title asa.portlet.title a11yRegionLabel"><span lang="en" dir="ltr">Web Content Viewer</span></span>
</h2>
<a aria-haspopup="true" href="javascript:;" class="wpthemeIcon wpthemeMenuFocus" tabindex="0"
onclick="wptheme.contextMenu.init(this, 'skinAction', {'navID':ibmCfg.portalConfig.currentPageOID,'windowID':wptheme.getWindowIDFromSkin(this)});">
<span title="Display menu"><img aria-label="Display menu" alt="" src="/wps/themeModules/themes/html/dynamicSpots/icons/blank.gif"></span>
<span class="wpthemeAltText">Actions</span>
<span class="wpthemeMenuRight">
<div class="wpthemeMenuBorder">
<div class="wpthemeMenuNotchBorder"></div>
<!-- define the menu item template inside the "ul" element. only "css-class", "description", and "title" are handled by the theme's sample javascript. -->
<ul class="wpthemeMenuDropDown wpthemeTemplateMenu" role="menu">
<li class="${css-class}" role="menuitem" tabindex="-1"><span class="wpthemeMenuText">${title}</span></li>
</ul>
</div>
<!-- Template for loading -->
<div class="wpthemeMenuLoading wpthemeTemplateLoading">Loading...</div>
<!-- Template for submenu -->
<div class="wpthemeAnchorSubmenu wpthemeTemplateSubmenu">
<div class="wpthemeMenuBorder wpthemeMenuSubmenu">
<ul id="${submenu-id}" class="wpthemeMenuDropDown" role="menu"><li role="menuitem" tabindex="-1"></li></ul>
</div>
</div>
</span>
</a>
</div>
</header>
<div class="wpthemeControlBody wpthemeClear"> <!-- lm:control dynamic spot injects markup of layout control -->
<!-- asa.overlay marks the node that the AsaOverlayWidget will be placed in -->
<div style="position:relative">
<div class="analytics.overlay" ></div>
</div>
<!-- --------------------------------- English Page ------------------------------------ -->
<div class="l-creepy-slider">
<div class="slider js-slider--full">
<ul class="slider__list clearfix"><li class="slider__list__item" ">
<a target="" title="" href="
">
<img src="/wps/wcm/connect/d6a5a160-a87c-470e-a880-39b7c3339d54/asmaa-Home-banner-_-1700x651-_-Eng-min.jpg?MOD=AJPERES&CACHEID=d6a5a160-a87c-470e-a880-39b7c3339d54" alt="WE "
title="WE " class="slider__list__img">
</a>
</li><li class="slider__list__item" ">
<a target="" title="" href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fresidential%2Finternet%2Fplans%2Fioe
&WE Space
#IOE
">
<img src="/wps/wcm/connect/2a20f53f-52ed-4b97-a7e5-d0d1f26b7138/1700x651_english.jpg?MOD=AJPERES&CACHEID=2a20f53f-52ed-4b97-a7e5-d0d1f26b7138" alt="WE Space"
title="WE Space" class="slider__list__img">
</a>
</li><li class="slider__list__item" ">
<a target="" title="" href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fresidential%2Fpromotions-revamp%2Fmobile%2Finternational-roaming%2Froaming-3%2Fhij-offer
&hijj offer from WE
# hij-Offer
">
<img src="/wps/wcm/connect/99e72891-04ce-485c-9c21-f64d4f9174e9/Roaming+Hej+Homepage+Banner+1700Wx651H+En+%282-8-18%29-min.jpg?MOD=AJPERES&CACHEID=99e72891-04ce-485c-9c21-f64d4f9174e9" alt="hijj offer from WE"
title="hijj offer from WE" class="slider__list__img">
</a>
</li><li class="slider__list__item" ">
<a target="" title="" href="https://billing.te.eg/
">
<img src="/wps/wcm/connect/82d48971-8f16-476b-a0f3-159c1ba457b6/July-Bill-Reminder-1700Wx651H-EN.jpg?MOD=AJPERES&CACHEID=82d48971-8f16-476b-a0f3-159c1ba457b6" alt="Landline Voice Bill Reminder July 2019"
title="Landline Voice Bill Reminder July 2019" class="slider__list__img">
</a>
</li><li class="slider__list__item" ">
<a target="" title="" href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fresidential%2Fpromotions-revamp%2Fmobile%2Fprepaid%2F015_offer%2F015_offer
">
<img src="/wps/wcm/connect/59292125-2ca5-41fa-a5d6-8bf00dabf75f/Homepage-Banner-1700Wx651H-En-min.jpg?MOD=AJPERES&CACHEID=59292125-2ca5-41fa-a5d6-8bf00dabf75f" alt="015 Promo"
title="015 Promo" class="slider__list__img">
</a>
</li><li class="slider__list__item" ">
<a target="" title="" href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fresidential%2Fmobile%2Bmodule%2Fdestroyer%2Fdestroyer
">
<img src="/wps/wcm/connect/acb47f77-a1c8-4e3a-ad39-75427982370e/We-X-Generic-651Hx1700W+%281%29.jpg?MOD=AJPERES&CACHEID=acb47f77-a1c8-4e3a-ad39-75427982370e" alt="X-bundle"
title="X-bundle" class="slider__list__img">
</a>
</li></ul>
</div></div>
<style>
.l-ltr .columns.-four .columns__item {
margin-right: 1.3%;
}
.l-ltr .columns.-three .columns__item {
margin-right: 1% !important;}
.control-paging {
top: 88% !important; /*for slider bullets*/
}
.update-information {
background: #410056; ; /* For browsers that do not support gradients */
background: linear-gradient(#702283, #410056); /* Standard syntax (must be last) */
min-height: 98px;
width: 98%; color:#fff;
padding-left: 2%;
border-radius: 10px;
margin-top: 18px;
}
.updateInfo-icons{
float: left;
height: 100%;
margin: 4px;
margin-top: 10px;}
.h2-responsive{
font-size: 1.8vw;
padding-left: 0.5em;
line-height: 1.4em;
width: 54%;
float: left;
padding-top: 0.2%;
}
.updateinfo-button {
border-radius: 21px;
border: 0px solid #fff;
width: 16%;
padding: 14px 16px;
margin: 1.5% 2%;
background: linear-gradient(#fcac01, #df6905);
text-shadow: 1px 1px 2px #333;
font-weight: bold;
}
.col-lg-hidden{display:none;}
@media only screen and (max-width: 768px){
.update-information{
padding: 2% 2%;
padding-bottom: 2%;
min-height: 77px;
}
.updateinfo-button {
width: 91%;
padding: 10px 15px;
margin: 19px 10px;
font-size: 14px;
line-height: 20px;
margin-top: 0px;
}
.updateInfo-icons{
display:none;}
.col-sm-hidden{display:none;}
}
@media all and (max-width: 480px), screen\9 {
.update-information{
padding: 2% 2%;
padding-bottom: 2%;
min-height: 77px;
}
.updateinfo-button {
width: 91%;
padding: 10px 15px;
margin: 19px 10px;
font-size: 14px;
line-height: 20px;
margin-top: 0px;
}
.h2-responsive{
font-size: 1em;
padding: 1%;
padding-left: 2%;
padding-top: 0.5%;
width:100%;
}
.updateInfo-icons{
display:none;}
}
@media all and (max-width: 768px), screen\9 {
.h2-responsive{
font-size: 1em;
padding-left: 2%;
padding-top: 0.5%; width:100%;}
.updateinfo-button {
width: 91%;
padding: 10px 15px;
margin: 19px 10px;
font-size: 14px;
line-height: 20px;
margin-top: 0px;
}
.col-sm-hidden{display:none;}
}
</style>
<main class="container-double--ver clearfix one-one align-center col-sm-12">
<!--Strip of update ur information-->
<div class="l-row--double columns -two position-relative col-sm-2-columns col-md-2-columns col-sm-margin-bottom-default">
<div class="update-information">
<div class="updateInfo-icons">
<img src="/wps/wcm/connect/b36e7647-9911-4cbc-98c3-18891add8158/Icon.png?MOD=AJPERES&CACHEID=b36e7647-9911-4cbc-98c3-18891add8158" border="0" alt="" /></div>
<h3 class="h2-responsive">UPDATE YOUR INFORMATION</h3>
<a href="https://billing.te.eg/en-US/dc" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Update your information - homepage', 'action' :'Click', 'label' : 'Click here - Clicked'})" class="btn l-full updateinfo-button" style="float:right;">CLICK HERE</a>
</div>
</div>
<!--End of strip-->
<!--Content of 3 boxes starts here-->
<section class="section-margin">
<div class="columns -four">
<div class="columns__item col-sm-12-no-padding col-sm-margin-top-default">
<div class="reserve-mobile" style="cursor: pointer;" onclick="window.location='https://numbers.te.eg';">
<div class="overlay" style="background-color: rgba(59,67, 148, 0.8);">
<div class="width-60 text-white no-margin p-t-b-7">
<h1 class="no-margin line-1"><a href="https://numbers.te.eg" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Indigo', 'action' :'Click', 'label' : 'Number Reservation-homepage'});">Reserve <br> my Indigo<br>Number</a></h1>
</div>
<div class="width-40 no-margin text-white text-center p-t-b-7">
<a href="https://billing.te.eg/en-US" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Product Cards', 'action' :'Click', 'label' : 'Pay my fixed voice Card'});"><i class="fa fa-mobile large-icon"></i></a>
</div>
</div>
</div>
</div>
<!--section 2 starts here-->
<div class="columns__item col-sm-12-no-padding col-sm-margin-top-default">
<div class="reserve-mobile" style="cursor: pointer;" onclick="window.location='https://www.mytedata.net/wps/portal/ssp/AnonymousRenewal/';" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Product Cards', 'action':'Click', 'label' : 'Renew my fixed broadband Card'});">
<div class="overlay">
<div class="width-60 text-white no-margin p-t-b-7">
<h1 class="no-margin line-1"><a href="https://www.mytedata.net/wps/portal/ssp/AnonymousRenewal/" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Product Cards', 'action':'Click', 'label' : 'Renew my fixed broadband Card'});">Renew my WE <br>Internet subscription</a></h1>
</div>
<div class="width-40 no-margin text-white text-center p-t-b-7">
<a href="https://www.mytedata.net/wps/portal/ssp/AnonymousRenewal/" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Product Cards', 'action':'Click', 'label' : 'Renew my fixed broadband Card'});"><i class="fa fa-globe large-icon"></i></a>
</div>
</div>
</div>
</div>
<div class="columns__item col-sm-12-no-padding col-sm-margin-top-default">
<div class="reserve-mobile" style="cursor: pointer;" onclick="window.location='https://billing.te.eg/en-US';">
<div class="overlay" style="background-color: rgba(209,4, 75, 0.8);">
<div class="width-60 text-white no-margin p-t-b-7">
<h1 class="no-margin line-1"><a href="https://billing.te.eg/en-US" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Product Cards', 'action' :'Click', 'label' : 'Pay my fixed voice Card'});">Pay my<br> Fixed <br>Voice bill</a></h1>
</div>
<div class="width-40 no-margin text-white text-center p-t-b-7" style="padding-left: 0%;">
<a href="https://billing.te.eg/en-US" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Product Cards', 'action' :'Click', 'label' : 'Pay my fixed voice Card'});"><i class="fa fa-money large-icon"></i></a>
</div>
</div>
</div>
</div>
<div class="columns__item col-sm-12-no-padding col-sm-margin-top-default">
<div class="reserve-mobile" style="cursor: pointer;" onclick="window.location='https://my.te.eg/#/payment/rechargeAnonymous';" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Product Cards', 'action' :'Click', 'label' : 'Recharge my mobile Card'});" >
<div class="overlay" style="background-color: rgba(150,32, 113, 0.8);">
<div class="width-60 text-white no-margin p-t-b-7">
<h1 class="no-margin line-1"><a href="https://my.te.eg/#/payment/rechargeAnonymous" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Product Cards', 'action' :'Click', 'label' : 'Pay bill/Recharge my mobile Card'});">Pay bill / Recharge<br>my<br>Mobile</a></h1>
<!--<h3 class="line-1">Find your nearest store</h3>-->
</div>
<div class="width-40 no-margin text-white text-center p-t-b-7">
<a href="https://my.te.eg/#/payment/rechargeAnonymous" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Product Cards', 'action' :'Click', 'label' : 'Recharge my mobile Card'});"><i class="fa fa-mobile large-icon"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Ends here -->
<div class="clearfix">
<!-- Second Content Slider starts here-->
<section class="section-margin">
<div class="l-row--double">
<div class="block__head l-row--half no-marign-top margin-bottom-15 text-large padding-h-10 margin__top">
<span class="text-secondary text-uppercase">Special </span><span class="text-primary text-uppercase"><b>Services</b></span>
</div>
<div class="exhibitions-photos-gallery position-relative">
<ul class="slides">
<li class="padding-h-10">
<div class="img-holder hover-box" title="WE TV Service">
<a href="/wps/portal/te/Personal/Mobile/Prepaid%20Plans?1dmy&urile=wcm%3apath%3a%2Fte%2Fresidential%2Fmobile%2Bmodule%2Fprepaid%2Fservicesvas%2F09-we_tv" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Special Services', 'action':'Click', 'label' : 'WE TV Service'});" class="fancybox fancybox-image">
<!--<img src="http://placehold.it/350x350" alt="image" class="l-full hover-box-layer_bottom">-->
<img src="/wps/wcm/connect/481e7561-26df-4499-88cf-6656b1d4447c/1/we-tv-new2eng-ramadan-2019.jpg?MOD=AJPERES&CACHEID=481e7561-26df-4499-88cf-6656b1d4447c/1" border="0" alt="" title="" /> <div class="hover-box-layer_top">
<div class="hover-box-text">
<h2>WE TV</h2>
<h3>Watch your favorite Series, Movies, and programs with no ads</h3>
<button class="btn l-full hover-btn">Learn More</button>
</div>
</div>
</a>
</div>
</li>
<li class="padding-h-10">
<div class="img-holder hover-box" title="Request detailed Bill">
<a href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fhelp%2Frequest-a-detailed-bill%2Frequest%2Ba%2Bdetailed%2Bbill" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Special Services', 'action':'Click', 'label' : 'Request detailed Bill'});">
<img src="/wps/wcm/connect/2150ea04-3839-4a5d-bff5-6512eab548ff/Detailed%2BBill%2BHomepage%2BSpecial%2BPromotion%2BBanner%2B350Wx350H%2B%2814-9-17%29.jpg?MOD=AJPERES&CACHEID=2150ea04-3839-4a5d-bff5-6512eab548ff" border="0" alt="Request detailed Bill" />
<!--<img src="http://placehold.it/350x350" alt="image" class="l-full hover-box-layer_bottom">-->
<div class="hover-box-layer_top">
<div class="hover-box-text">
<h2>Get Now</h2>
<h3>Your Detailed Bill by Email</h3>
<button class="btn l-full hover-btn">Learn More</button>
</div>
</div>
</a>
</div>
</li>
<li class="padding-h-10">
<div class="img-holder hover-box" title="140 guide service from telecom Egypt">
<a href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fhelp%2F140online%2F140guide" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Special Services', 'action':'Click', 'label' : '140 guide service from telecom Egypt'});" class="fancybox fancybox-image">
<img src="/wps/wcm/connect/01778332-f826-4c78-a0d9-be94c0cd8fd7/140_banner+.jpg?MOD=AJPERES&CACHEID=01778332-f826-4c78-a0d9-be94c0cd8fd7" border="0" alt="140 guide service from telecom Egypt" />
<!--<img src="http://placehold.it/350x350" alt="image" class="l-full hover-box-layer_bottom">-->
<div class="hover-box-layer_top">
<div class="hover-box-text">
<h2>140 Guide</h2>
<h3>Service for telecomegypt customers</h3>
<button class="btn l-full hover-btn">Learn More</button>
</div>
</div>
</a>
</div>
</li>
<li class="padding-h-10">
<div class="img-holder hover-box" title="Visa Auto-renewal discount">
<a href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fresidential%2Finternet%2Fvisa%2Bauto-renewal%2Bdiscount%2Fvisaauto-renewaldiscount" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Special Services', 'action':'Click', 'label' : 'Visa Auto-renewal discount'});" class="fancybox fancybox-image">
<!--<img src="http://placehold.it/350x350" alt="image" class="l-full hover-box-layer_bottom">-->
<img src="/wps/wcm/connect/509cbbbf-f0c0-4c75-842e-2deaef78c4e3/Homepage%2BSpecial%2BPromotion%2BBanner%2B350Wx350H%2B%2815-9-17%29.jpg?MOD=AJPERES&CACHEID=509cbbbf-f0c0-4c75-842e-2deaef78c4e3" border="0" alt="" />
<div class="hover-box-layer_top">
<div class="hover-box-text">
<h2>Auto Renewal</h2>
<h3>by Credit Card & Get 10% Discount</h3>
<button class="btn l-full hover-btn">Learn More</button>
</div>
</div>
</a>
</div>
</li>
<li class="padding-h-10">
<div class="img-holder hover-box" title="Ma3ak Customer Service">
<a href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fhelp%2Fma3ak%2Fma3ak" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Special Services', 'action':'Click', 'label' : 'Ma3ak Customer Service'});" class="fancybox fancybox-image">
<!--<img src="http://placehold.it/350x350" alt="image" class="l-full hover-box-layer_bottom">-->
<img src="/wps/wcm/connect/d3185d56-97cd-4457-b3b4-a8401b7b7c4a/Ma3ak_350pix-Wx350pix-H%2B%2817-9-17%29.jpg?MOD=AJPERES&CACHEID=d3185d56-97cd-4457-b3b4-a8401b7b7c4a" border="0" />
<div class="hover-box-layer_top">
<div class="hover-box-text">
<h2>Ma3ak</h2>
<h3>Video Chat Online Support</h3>
<button class="btn l-full hover-btn">Learn More</button>
</div>
</div>
</a>
</div>
</li>
</ul>
</div>
</div>
</section>
<!--Ends here-->
<!-- Help & Support & My LandLine content starts here-->
<section class="support-container">
<h2 class="block__head l-row--half no-marign-top text-large padding-h-10 margin__top">HELP AND SUPPORT</h2>
<div class="items">
<a href="http://arabicdomains.tedata.net/ar/TEData-Business/Arabic-Domains-Subscribe" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Help and support', 'action' : 'Click', 'label' : 'Dot Masr Icon'});" class="card">
<div class="header">
<img src="/images/icon-dotmasr.png">
</div>
<div class="data">
<h5>Dot Masr</h5>
<p></p>
</div>
</a>
<a class="card" href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fhelp%2Fma3ak%2Fma3ak" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Help and support', 'action' :'Click', 'label' : 'Ma3ak Customer Service Icon'});">
<div class="header">
<svg version="1" xmlns="http://www.w3.org/2000/svg" fill="white" width="128" height="128" viewBox="-7 -8 90 90">
<path d="M72.59 42.644c-3.73.322-7.47 1.16-11.227.87-1.027-1.394-1.05-3.183-1.372-4.81-7.4.75-14.46 3.158-21.65 4.97-3.35-12.002-7.38-23.814-10.64-35.84 2.64-.282 5.28-.58 7.94-.813 2.01 10.15 4.34 20.22 6.37 30.36 2.2-.6 4.4-1.22 6.59-1.87-2.21-3.9-5.94-7.63-5.62-12.4 1.22-4.64 6.94-4.69 10.62-6.25.58 2.1 1.15 4.18 1.72 6.28-2.41.63-6.43.01-7.04 3.28.73 2.97 2.6 5.45 4.09 8.06 2.36-.36 4.7-.71 7.05-1.08.28-2.12-.67-5.87 2.27-6.27 3.43-.51 6.9-.64 10.34-1.05-2.3-7.07-6.57-13.56-12.54-18.03-8.24-6.41-19.4-8.88-29.52-6.4-9.95 2.19-18.68 9.09-23.41 18.1-4.35 8.02-5.07 17.6-2.99 26.4 6.17-1.26 12.25-2.93 18.43-4.2 1.33-.49 3.34-.33 3.94-1.93.09-2.13-.91-4.08-1.7-5.98-2.76-5.9-5.65-11.74-8.5-17.59 2.04-1.95 4.04-3.94 6.1-5.88 3.22 9.01 6.61 17.95 9.93 26.91.67 2.11 1.53 4.42.8 6.62-.59 2.03-2.94 2.33-4.61 3.03-7.37 2.37-14.71 4.9-22.11 7.19-2.19.9-4.09-.8-5.82-1.89 1.15 1.97 2 4.63 4.43 5.34 1.5.53 3.12-.55 4.59-.05 1.84 1.76 3.3 3.87 5.23 5.53C24.91 73.29 42 75.18 54.74 68.16c8.45-4.44 14.605-12.53 17.462-21.59 1-.41 2.26-.44 3.025-1.307.41-1.46.53-2.99.78-4.48-1.006.85-1.98 1.93-3.41 1.9zM15.792 28.49c.706.716 1.412 1.433 2.118 2.158-1.388.072-2.776.153-4.156.233.778 1.6 1.613 3.18 2.455 4.74 1.14-.43 2.27-.88 3.41-1.32.46.9.93 1.79 1.4 2.69-3.13 1.13-6.26 2.24-9.41 3.34-.41-.87-.82-1.73-1.23-2.59 1.18-.46 2.35-.92 3.53-1.39-1.15-1.89-2.3-3.78-3.38-5.71.31-.34.94-1.03 1.27-1.37 1.32-.25 2.64-.5 3.97-.76zm34.906 27.3c-1.813 4.07-.128 10.095-4.75 12.496-6.042 2.24-12.92-3.062-13.505-9.24.57-.09 1.71-.258 2.278-.34.79 2.338 3.26 5.495 5.86 3.296 1.87-2.48-1.15-4.922-2.42-6.912-1.15.822-2.31 1.65-3.46 2.48-.61-.65-1.22-1.304-1.81-1.965 1.89-1.49 3.82-2.924 5.86-4.197 1.04 1.023 2.07 2.047 3.08 3.07-.45-1.258-.91-2.515-1.38-3.77-1.48.04-2.97.08-4.46.11-.02-.966-.52-2.73 1.64-3.147 2.24-.05 2.82.16 5.07.23.66 1.97 1.29 3.94 1.99 5.9.15-1.33.39-2.65.39-3.98-.72-1.46-1.86-2.65-2.66-4.05.32-.57.97-1.73 1.29-2.31 1.61 1.66 3.51 3.27 4.25 5.53.11 2.21-.25 4.41-.39 6.61 1.73-2.25 1.95-5.02 1.5-7.76.54-.21 1.63-.64 2.18-.86.76 2.95.88 6.06-.49 8.85zM29.36 8.51c1.983 8.202 4.503 16.273 7.04 24.314-1.213-6.26-2.818-12.438-4.254-18.65-.538-2.055-.794-4.43-2.785-5.663zm-7.188 19.214c-1.035-4.237-2.15-8.797-5.056-12.172.97 4.317 3.154 8.217 5.056 12.172z"/>
</svg>
</div>
<div class="data">
<h5>M3ak</h5>
<p></p>
</div>
</a>
<a class="card" href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fhelp%2Ffaq%2Ffaq" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Help and support', 'action' :'Click', 'label' : 'FAQ Icon'});">
<div class="header">
<img src="/images/icon-faq.png">
</div>
<div class="data">
<h5>FAQ</h5>
<p></p>
</div>
</a>
<a class="card" href="/wps/portal/te/Personal/Store%20Locator" format="url" ]"="" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Help and support', 'action' :'Click', 'label' : 'Store Locator Icon'});">
<div class="header">
<img src="/images/store-locator.png">
</div>
<div class="data">
<h5>Store Locator</h5>
<p></p>
</div>
</a>
</div>
<div class="support-btn">
<a href="?1dmy&urile=wcm%3apath%3a%2Fte%2Fhelp%2Fcustomer-care-and-live-chat%2Fcustomer%2Bcare%2Band%2Blive%2Bchat" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Help and support', 'action' :'Click', 'label' : 'More Details Icon'});">More Details</a>
</div>
</section>
</main>
<!-- Ends Here-->
<!-- --------------------------------- Arabic Page ------------------------------------ -->
<p dir="ltr"><meta name="description" content= " Check telecom egypt new WE mobile packages ,mobile data bundles with best prices ,landline voice services, WE internet , Wifi, Vdsl, FTTH services with high speeds, Subscribe now"/><meta name="keywords" content="mobile, telecom egypt , we , 4G , voice offers, mobile offers, internet offers, adsl, wifi, router"/><meta name="author" content="telecom egypt"></p>
<div class="wpthemeClear"></div>
</div>
</section>
</div></div></div>
<div class="wpthemeClear"></div>
</div>
</div>
<!--end main content-->
<script>
$("main section").addClass('col-sm-12');
$("main aside:eq(0)").attr("Class","two-ninths align-default col-sm-12 col-sm-margin-top-default");
</script>
<style type="text/css">li.list__item.inline-block {
vertical-align: top;
}
</style>
<footer class="footer container-double--ver clearfix purplestrip" dir="ltr">
<div class="one-one align-center clearfix">
<div class="footer__column col-xs-hide">
<div class="footer__column__title">TELECOMEGYPT</div>
<div class="footer__column__content">
<ul class="footer__list">
<li class="footer__list__item"><a title="" target="" href="https://www.te.eg/wps/portal/te/About/About%20Us/!ut/p/z1/lZHPjoIwEMbvPAU-wUwrW9ojsVBYgohKxF4MB2NIVtzDZhPf3q6nrVUa59A_6febrzMDOgjDIAigM7s5_V9eX0CP_e9w6n-Gy9h_QQd7zQ5lIympFZa1YAKTqpAo1jFVjMDOFqiScyPIi2ib1xQ5grb4KM8wSVmaSr6kXOEj7wpsvlzOTXohcZExglXs8I7A4nElYvPMoraRnGDr-lsFIqcP_r76XYMp__jDwxvBe_6u4I_HF5EgfPoGtDmOxkTbsidj9g1KT1Vyb7Tvq3qylySatlANg-9ze4_umg7FUMxu_hv_IA!!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzYx/?1dmy&urile=wcm%3apath%3a/te/AboutTE/AboutUs/mission+and+vision" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Mission and Vision'});">Mission and Vision</a></li>
<li class="footer__list__item"><a title="" target="" href="https://www.te.eg/wps/portal/te/About/About%20Us/!ut/p/z1/lZHPjoIwEMbvPAU-wUwrW9ojsVBYgohKxF4MB2NIVtzDZhPf3q6nrVUa59A_6febrzMDOgjDIAigM7s5_V9eX0CP_e9w6n-Gy9h_QQd7zQ5lIympFZa1YAKTqpAo1jFVjMDOFqiScyPIi2ib1xQ5grb4KM8wSVmaSr6kXOEj7wpsvlzOTXohcZExglXs8I7A4nElYvPMoraRnGDr-lsFIqcP_r76XYMp__jDwxvBe_6u4I_HF5EgfPoGtDmOxkTbsidj9g1KT1Vyb7Tvq3qylySatlANg-9ze4_umg7FUMxu_hv_IA!!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS085NjkwQU1JRDA5UjcyRzYx/?1dmy&urile=wcm%3apath%3a/te/AboutTE/AboutUs/Board+of+Directors" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Board of Directors'});">Board of Directors</a></li>
<li class="footer__list__item"><a title="" target="" href="https://www.te.eg/wps/vanityurl/Careers-en" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Careers'});">Careers</a></li>
</ul>
</div>
</div>
<div class="footer__column col-xs-hide">
<div class="footer__column__title">CONTACT US</div>
<div class="footer__column__content">
<ul class="footer__list">
<li class="footer__list__item"><a title="" target="" href="https://www.te.eg/wps/portal/te/About/Contact%20Us/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_S3NLA0cfT1dDCyDzI3cTQz0w9EUePsZAxVYuhg4u5kZGvia60fh1m8QZIKhH1WBhRE-_djsx7CAEv0gBSD9BjiAI0h_FBYljgZOQUZOxgYG7hYGWBWgmBGFN5BAYUAoFAtyQ0NDIwwyPdMVFQGku6Ng/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS080SEYwQUU2RUVEOE4yR0Mx/" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Our Contact Channels'});">Our Contact Channels</a></li>
<li class="footer__list__item"><a title="" target="" href="https://www.te.eg/wps/portal/te/About/Contact%20Us/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8zivQNdjAz93Q28_S3NLA0cfT1dDCyDzI3cTQz0w9EUePsZAxVYuhg4u5kZGvia60fh1m8QZIKhH1WBhRE-_djsx7CAEv0gBSD9BjiAI0h_FBYljgZOQUZOxgYG7hYGWBWgmBGFN5BAYUAoFAtyQ0NDIwwyPdMVFQGku6Ng/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2X0tRRDIxT0cwS080SEYwQUU2RUVEOE4yR0Mx/?1dmy&urile=wcm%3apath%3a%2FTE%2FAboutTE%2FContact_Us%2FEmail%2BUs%2F" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Email Us'});">Email Us</a></li>
</ul>
</div>
</div>
<div class="footer__column col-xs-hide">
<div class="footer__column__title col-xs-block">SUPPORT</div>
<div class="footer__column__content">
<ul class="footer__list">
<li class="footer__list__item"><a title="" target="" href="https://www.te.eg/wps/portal/te/Personal/Help%20And%20Support%20l/FAQ/?1dmy&urile=wcm%3apath%3a%2FTE%2FHelp%2FFAQ%2F" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'FAQ'});">FAQ</a></li>
<li class="footer__list__item"><a title="" target="" href="https://www.te.eg/wps/vanityurl/Store-Locator-en" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Store Locator'});">Store Locator</a></li>
<li class="footer__list__item"><a title="" target="" href="https://www.te.eg/wps/vanityurl/Live-Chat-and-Support-en" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Live Chat & Support'});">Live Chat & Support</a></li>
<li class="footer__list__item"><a title="" target="" href="https://www.te.eg/wps/vanityurl/Ma3ak-en" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Ma3ak'});">Ma3ak</a></li>
<li class="footer__list__item"><a title="" target="" href="https://www.te.eg/wps/portal/te/Personal/Help%20And%20Support/!ut/p/z1/lVJNc4IwFLzzK-jBI_MeiEk4MuVDZYRRayu5dCKNmo4iUsa2_954qzLKNIfkZbI77-1ugBumaRgGLPWpq7_b_QvwUpzURjTqUIodLCHn5D2ZBo6dxZhk7jBCPyRhGLDUiaMBvF0D4oQx9CfDkfsyzBxkCPzB89S-5Wce8TRgFKA3o5rvXPPb_V-BAy_Kpmq2kDeyh1u5q3qoykbWWoD5rWpVbswvWZ9UIS_gqlAfkFMktkfswhqwAi1XUGGt1gNiEVlIKYhwGaWt4VrdL8PhneUjjLvV84eQi383DiRpXwO8AJ8jYuOEtgBtB7vGzLVMek8mcyjM_-nbuCs1_a3U5_HIfZ3dQUf108CyO7y5qKHaLxZ71v-15rNwnaYWX7lPZyYT52Y!/dz/d5/L0lHSkovd0RNQUxrQUVnQSEhLzROVkUvZW4!/" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Internal wiring service'});">Internal Wiring Service</a></li>
</ul>
</div>
</div>
<div class="footer__column col-xs-hide">
<div class="footer__column__title">MY ACCOUNT</div>
<div class="footer__column__content">
<ul class="footer__list">
<li class="footer__list__item"><a title="" target="" href="https://billing.te.eg/en-US/Login" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Manage my Landline'});">Manage My Landline</a></li>
<li class="footer__list__item"><a title="" target="" href="https://mytedata.net/wps/portal/ssp/WSLogin" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Manage your Internet'});">Manage My Internet</a></li>
<li class="footer__list__item"><a title="" target="" href="https://my.te.eg/#/signin" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Manage your Mobile'});">Manage My Mobile</a></li>
</ul>
<!-- <div class="l-row--half">
<img alt="" src="images/ISO_footer.jpg" height="64" width="124">
</div> --></div>
</div>
<div class="footer__column col-xs-hide">
<div class="footer__column__title">About This Site</div>
<div class="footer__column__content no-border">
<ul class="footer__list">
<li class="footer__list__item"><a title="" target="" href="/wps/portal/te/Personal/sitemap/!ut/p/z1/lZJRb4IwFIX_invwkdxLoaU8kpERR5wR45S-LBU7100Khkq2fz94mcmMsPXpNjnn9jv3FgRsQRjZ6oO0ujLy2N1zwV7SZUzcRYLpImQhRvNZjGEWkIS5sPklSJ-8ThDGeP_AXJwHIG77MfOv_FcCMfz-MwgQhbG1fYPcqinKXXW2P8W5mWKpm6ZLM5FmP2l1X_aeutB7yCXnxEeFjk9eqePvCuJIpagTSupLpAUrOB1m7CF6RrxxIhzJyMlYxk3PO9JhjGGwQ7JkkHeQwUWAPCMYuSRg6SzzkCCs_jm1x7FY3d_S76eTiLoFVsaqTwvbP29wpQzU5Xpdcu9LOx8ZR48e28PdN1DY8SY!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2XzUwRDJJMFMwTEcwUjUwQVJMTk8zRFYxMDMy/" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'sitemap(personal)'});">sitemap(personal)</a></li>
<li class="footer__list__item"><a title="" target="" href="/wps/portal/te/Business/Sitemap-Business/!ut/p/z1/lZJRb4IwFIX_invwkdxLoaU8kpERR5wR45S-LBU7100Khkq2fz94mcmMsPXpNjnn9jv3FgRsQRjZ6oO0ujLy2N1zwV7SZUzcRYLpImQhRvNZjGEWkIS5sPklSJ-8ThDGeP_AXJwHIG77MfOv_FcCMfz-MwgQhbG1fYPcqinKXXW2P8W5mWKpm6ZLM5FmP2l1X_aeutB7yCXnxEeFjk9eqePvCuJIpagTSupLpAUrOB1m7CF6RrxxIhzJyMlYxk3PO9JhjGGwQ7JkkHeQwUWAPCMYuSRg6SzzkCCs_jm1x7FY3d_S76eTiLoFVsaqTwvbP29wpQzU5Xpdcu9LOx8ZR48e28PdN1DY8SY!/dz/d5/L2dJQSEvUUt3QS80TmxFL1o2XzUwRDJJMFMwTEcwUjUwQVJMTk8zRFYxR0k0/" class="footer__list__link" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'sitemap(business)'});">sitemap(business)</a></li>
</ul>
</div>
</div>
<div class="clearfix"> </div>
<div class="follow-us col-xs-hide">
<div class="footer__column__title">Follow Us</div>
<div class="footer__list__item">
<ul class="footer__list inline-block">
<li class="list__item inline-block"><a title="" target="_blank" href="https://www.facebook.com/TelecomEgypt" class="inline-block social-icons facebook-icon" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'facebook'});"><svg class="btn__icon -facebook social-icon inline-block"> <use data-fallback-src="images/svgfallback/icon-facebook.png" xlink:href="#icon-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </a></li>
<li class="list__item inline-block"><a title="" target="_blank" href="https://twitter.com/telecomegypt" class="inline-block social-icons twitter-icon" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'twitter'});"><svg class="btn__icon -twitter social-icon inline-block"> <use data-fallback-src="images/svgfallback/icon-twitter.png" xlink:href="#icon-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </a></li>
<li class="list__item inline-block"><a title="" target="_blank" href="https://www.youtube.com/channel/UCLl_SOH0KD8-Hv1H1yetEyw" class="inline-block social-icons youtube-icon" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'youtube'});"><svg class="btn__icon -youtube social-icon inline-block"> <use data-fallback-src="images/svgfallback/icon-youtube.png" xlink:href="#icon-youtube" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </a></li>
<li class="list__item inline-block"><a title="" target="_blank" href="https://www.instagram.com/telecom.egypt/" class="inline-block social-icons instagram-icon" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'instagram'});"><svg class="btn__icon -instagram social-icon inline-block"> <use data-fallback-src="images/svgfallback/icon-instagram.png" xlink:href="#icon-instagram" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </a></li>
<li class="list__item inline-block"><a title="" target="_blank" href="https://www.linkedin.com/company/telecom-egypt/" class="inline-block social-icons linkedin-icon" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'linkedin'});"><svg class="btn__icon -linkedin social-icon inline-block"> <use data-fallback-src="images/svgfallback/icon-linkedin.png" xlink:href="#icon-linkedin" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </a></li>
</ul>
</div>
</div>
<div class="download-app col-xs-hide">
<div class="footer__column__title">Download Our App</div>
<div class="footer__list__item">
<ul class="footer__list inline-block">
<li class="list__item inline-block"><a title="" target="" href="https://itunes.apple.com/eg/app/we-mobile/id1413151505" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'IOS Badge-Click'});"><img alt="App store" src="/images/store_en.png" /> </a></li>
<li class="list__item inline-block"><a title="" target="" href="https://play.google.com/store/apps/details?id=com.ucare.we&hl=en_US&showAllReviews=true" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Android Badge-Click'});"><img alt="App store" src="/images/google_en.png" /> </a></li>
</ul>
</div>
</div>
</div>
<!--MOBILE VERSION-->
<div class="footer__column col-xs-visible"><a class="footer__column__title col-xs-block" href="#" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Footer', 'action' :'Click', 'label' : 'TELECOMEGYPT'});">TELECOMEGYPT</a></div>
<div class="footer__column col-xs-visible"><a title="" target="" href="http://ir.te.eg/" class="footer__column__title col-xs-block" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Footer', 'action' :'Click', 'label' : 'Investor Relations'});">Investor Relations</a></div>
<div class="footer__column col-xs-visible"><a title="" target="" href="https://www.te.eg/wps/portal/te/About/Contact%20Us" class="footer__column__title col-xs-block" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Footer', 'action' :'Click', 'label' : 'CONTACT US'});">CONTACT US</a></div>
<div class="footer__column col-xs-visible"><a title="" target="" href="https://te.eg/wps/portal/te/Personal/Help%20And%20Support%20l/Customer%20care%20and%20Live%20chat/" class="footer__column__title col-xs-block" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Footer', 'action' :'Click', 'label' : 'SUPPORT'});">SUPPORT</a></div>
<div class="footer__column col-xs-visible"><a title="" target="" href="https://te.eg/wps/portal/te/Personal/sitemap/" class="footer__column__title col-xs-block" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Footer', 'action' :'Click', 'label' : 'SITEMAP (PERSONAL)'});">SITEMAP (PERSONAL)</a></div>
<div class="footer__column col-xs-visible"><a title="" target="" href="https://te.eg/wps/portal/te/Business/Sitemap-Business/" class="footer__column__title col-xs-block" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home - Footer', 'action' :'Click', 'label' : 'SITEMAP (BUSINESS)'});">SITEMAP (BUSINESS)</a></div>
<div class="footer__column col-xs-visible"><span class="footer__list__link footer__column__title inline-block space--half text-middle primarycolor" style="margin-right:20px;">Follow Us :</span>
<div class="clearfix" style="height:8px;"> </div>
<ul class="list inline-block text-middle">
<li class="list__item inline-block"><a title="" target="_blank" href="https://www.facebook.com/TelecomEgypt" class="inline-block social-icons facebook-icon" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'facebook'});"><svg class="btn__icon -facebook social-icon inline-block"> <use data-fallback-src="images/svgfallback/icon-facebook.png" xlink:href="#icon-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </a></li>
<li class="list__item inline-block"><a title="" target="" href="https://twitter.com/telecomegypt" class="inline-block social-icons twitter-icon" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'twitter'});"><svg class="btn__icon -twitter social-icon inline-block"> <use data-fallback-src="images/svgfallback/icon-twitter.png" xlink:href="#icon-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </a></li>
<li class="list__item inline-block"><a title="" target="_blank" href="https://www.youtube.com/telecomegypt" class="inline-block social-icons youtube-icon" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'youtube'});"><svg class="btn__icon -youtube social-icon inline-block"> <use data-fallback-src="images/svgfallback/icon-youtube.png" xlink:href="#icon-youtube" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </a></li>
<li class="list__item inline-block"><a title="" target="_blank" href="https://www.instagram.com/telecom.egypt/" class="inline-block social-icons instagram-icon" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'instagram'});"><svg class="btn__icon -instagram social-icon inline-block"> <use data-fallback-src="images/svgfallback/icon-instagram.png" xlink:href="#icon-instagram" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </a></li>
<li class="list__item inline-block"><a title="" target="_blank" href="https://www.linkedin.com/company/telecom-egypt" class="inline-block social-icons linkedin-icon" onclick="dataLayer.push({'event' : 'fire_event', 'category' : 'Home – Footer', 'action' :'Click', 'label' : 'Linkedin'});"><svg class="btn__icon -linkedin social-icon inline-block"> <use data-fallback-src="images/svgfallback/icon-linkedin.png" xlink:href="#icon-linkedin" xmlns:xlink="http://www.w3.org/1999/xlink"></use> </svg> </a></li>
</ul>
</div>
<div class="footer__column download-app col-xs-visible">
<div class="footer__column__title">Download Our App</div>
<div class="footer__list__item">
<ul class="footer__list inline-block">
<li class="list__item inline-block"><a title="" target="" href="https://itunes.apple.com/eg/app/we-mobile/id1413151505"><img alt="App store" src="/images/store_en.png" /> </a></li>
<li class="list__item inline-block"><a title="" target="" href="https://play.google.com/store/apps/details?id=com.ucare.we&hl=en_US&showAllReviews=true"><img alt="App store" src="/images/google_en.png" /> </a></li>
</ul>
</div>
</div>
</footer>
<footer class="footer clearfix" dir="ltr" style="background-color: #363636 !important;">
<div class="align-center one-one">
<div class="copyrights margin-top-5">
<p class="footer__list__link" style="padding-left: 30px; padding-right: 30px; font-size: 14px; text-align:left; color:#959595 !important">For all mobile, internet and fixed line users: in case you are unable to solve any problem you have encountered with your service provider, kindly dial 155 to call the National Telecom Regulatory Authority (NTRA) customer service call center and submit your complaint. This number works seven days a week, from 8:00 a.m. to 10:00 p.m.</p>
<p class="footer__list__link copyrights no-hover">Copyright © 2017 Telecom Egypt. All Rights Reserved.</p>
<div class="clearfix"> </div>
</div>
<!--Social Icons and copyrights ends here--></div>
</footer>
<div class="wpthemeComplementaryContent"
id="wpthemeComplementaryContent" role="region"
aria-labelledby="wpthemeComplementaryContentText">
<span class="wpthemeAltText" id="wpthemeComplementaryContentText">Complementary
Content</span> <script type="text/javascript" src="/wps/contenthandler/!ut/p/digest!RD4kfWiswVY0SIBlY6AFOw/mashup/ra:collection?themeID=ZJ_50D2I0S0LGUIC0AEH1HGAI3001&locale=en&mime-type=text%2Fjavascript&lm=1563628797064&entry=wp_portal__0.0%3Aconfig_config_static&entry=mm_enabler__0.0%3Aconfig_config_static"></script><script type="text/javascript">i$.merge({"ibmCfg":{"themeConfig":{"themeUniqueName":"ibm.portal.TEThemeResidential","themeRootURI":"/wps/contenthandler/!ut/p/digest!LejEKmt_0o49pQhpcZvO_w/war/TEStaticThemeResidential8/themes/Portal8.0","themeWebAppBaseURI":"/TEDynamicThemeResidential8/themes/html/dynamicSpots","themeWebDAVBaseURI":"war:TEStaticThemeResidential8/themes/Portal8.0/","modulesWebAppBaseURI":"/wps/themeModules","commonResourcesRootURI":"/wps/contenthandler/!ut/p/digest!RD4kfWiswVY0SIBlY6AFOw/dav/fs-type1/common-resources","isRTL":false,"isPageRenderModeCSA":false,"portletOverridePageTitle":"Telecom Egypt Home ","currentContentNodeOID":"Z6_KQD21OG0KOKN30AM9D0CF610M7","loadingImage":"css/images/loading.gif","dndSourceDefinitions":[{"id":"ibmDndColumn","object":"com.ibm.pb.dnd.layout.LayoutColumnSource","orientation":"vertical"},{"id":"ibmDndRow","object":"com.ibm.pb.dnd.layout.LayoutRowSource","orientation":"horizontal"}],"categorySources":[],"styleSources":[],"layoutSources":[]},"portalConfig":{"locale":"en","portalURI":"/wps/portal","contentHandlerURI":"/wps/contenthandler/!ut/p/digest!fVWwCGWBXI7s8sN-6W7mbA/","pocURI":"/wps/portal/!ut/p/z0/0wcA1NLTeQ!!/","isVirtualPortal":false,"canImpersonate":false,"themeRootURI":"/TEDynamicThemeResidential8/themes/html/dynamicSpots","parentPageID":"Z6_KQD21OG0KO9690AMID09R72082","currentPageOID":"Z6_KQD21OG0KOKN30AM9D0CF610M7","canAnonymousUserViewCurrentPage":true,"bootstrapState":"<?xml version="1.0" encoding="UTF-8"?><root xmlns="http://www.ibm.com/xmlns/prod/websphere/portal/v6.1/portal-state"><state type="navigational"><selection selection-node="Z6_KQD21OG0KOKN30AM9D0CF610M7"><mapping src="Z6_KQD21OG0KOKN30AM9D0CF610M7" dst="Z6_000000000000000000000000A0"/></selection><expansions><node id="Z6_KQD21OG0KO9690AMID09R72082"/><node id="Z6_000000000000000000000000A0"/></expansions></state></root>","isUserLoggedIn":false,"currentUser":"anonymous portal user","currentUserOID":"","aggregatedStyle":null,"isCurrentPageEditable":true,"wcmPageMetadata":{"contentRoot":null,"sharingScope":null},"projectUUID":null},"userName":""},"com_ibm_theme_capabilities":{"wp_analytics_aggregator":"0.0","wp_one_ui_30":"0.0","wp_layout_windowstates":"0.0","wp_one_ui_dijit":"0.0","wp_client_ext":"0.0","wp_managed_pages_support":"0.0","wp_one_ui_dijit_30":"0.0","wp_theme_high_contrast":"0.0","wp_project_menu":"0.0","wp_client_main":"0.0","wp_theme_portal_80":"0.0","wp_theme_menus":"0.0","wp_status_bar":"0.0","oneUIDijit":"3.0.1","analytics_aggregator":"8.0","wp_portlet_css":"0.0","wp_theme_skin_region":"0.0","wp_preview":"0.0","wp_one_ui":"0.0","hasBaseURL":"true","wp_theme_edit":"0.0","oneUI":"3.0.1","wp_portal":"0.0","wp_legacy_layouts":"0.0"},"com_ibm_device_class":[]});ibmCfg.portalConfig.bootstrapState=(ibmCfg.portalConfig.bootstrapState||"").replace(/</gm, '<').replace(/>/gm, '>').replace(/&/gm, '&').replace(/'/gm, "'").replace(/"/gm, '"');i$.merge({"ibmCfg":{"enablerConfig":{"com.ibm.mashups.proxy.url":"/wps/proxy","com.ibm.mashups.productname":"IBM WebSphere Portal","com.ibm.mashups.anonymous.mode":"true","serviceDocumentUrl":"/wps/contenthandler/!ut/p/digest!fVWwCGWBXI7s8sN-6W7mbA/model/service-document/?locale=en","anonymousUser":true,"user":null,"fontSizeEnlarged":false,"isBidi":false,"locale":"en","displayLocale":"en","com.ibm.mashups.contextroot":"/wps","defaultLayoutTemplateURI":"war:TEStaticThemeResidential8/themes/Portal8.0/layout-templates/2ColumnEqual/","com.ibm.mashups.contenthandler.private":"/wps/mycontenthandler/!ut/p/digest!fVWwCGWBXI7s8sN-6W7mbA/","com.ibm.mashups.contenthandler.public":"/wps/contenthandler/!ut/p/digest!fVWwCGWBXI7s8sN-6W7mbA/"}},"portalMashupsConfig":{"serviceDocURL":"/wps/contenthandler/!ut/p/digest!fVWwCGWBXI7s8sN-6W7mbA/model/service-document/?locale=en","contentHandlerContextPath":"/wps/contenthandler/!ut/p/digest!fVWwCGWBXI7s8sN-6W7mbA/"}});
(function(){ibmToolbarConfig = {projectUUID: "",toolbarMode: "closed",inManagedPages: "true"==="true",isPrivilegedUser: "false"==="true",hasEditSharedPermission: "false"==="true",dialogJavascriptURL: "/wps/contenthandler/!ut/p/digest!LejEKmt_0o49pQhpcZvO_w/dialog/dialogModal.js",dialogUtilsJavascriptURL: "/wps/contenthandler/!ut/p/digest!LejEKmt_0o49pQhpcZvO_w/dialog/dialogModalUtils.js",draftPageUUID: ""
}})();i$.merge({"ibmCfg":{"portalConfig":{"asaConfig":{"canViewAsaReports":"false","canViewAsaSitePromotions":"false","canCreateAsaSitePromotions":"false","canDeleteAsaSitePromotions":"false","reportConfig":{"scopes":[]}}}}});
var SemTagSvcPortalGlobalDynamic={
basePumaResolvedUrl: ''+
''+
'/wps/contenthandler/!ut/p/digest!fVWwCGWBXI7s8sN-6W7mbA/um/secure/users/profiles?locale=en',
availAttribUrl: ''+
''+
'/wps/contenthandler/!ut/p/digest!fVWwCGWBXI7s8sN-6W7mbA/um/secure/attributes/users?locale=en'
};
var ibmPortalCPConfig={"isTaggingEnabled":true,"contextMenu":{"isTaggingEnabled":true,"isRatingEnabled":true},"tagging":{"validation":{"validationRegex":"[^\\<\\\\>\\(\\)\\[\\]:]{1,255}"},"inline":{"orderMetric":"TAG_SPACE_COUNT_REVERSE_NAME","countsEnabled":false,"tagsClickable":true,"order":"DESC","tagClickTransmitScopes":false,"tagClickActionMode":"TAG_CENTER","showDialogLauncher":true,"privateTaggingEnabled":"false","displayTwisty":"COLLAPSED","maxResults":5,"tagsChangedEvent":"tagsChanged","tagScope":"COMMUNITY_PERSONAL_PUBLIC"},"dialog":{"messageFadeOutDuration":1000,"countsEnabled":false,"displayTabs":false,"maxCommunityTags":50,"defaultView":"PUBLIC","orderMetric":"TAG_SPACE_COUNT_REVERSE_NAME","order":"DESC","deletingEnabled":true,"localePickerEnabled":true,"maxPersonalTags":50,"privateTaggingEnabled":false,"typeaheadSearchPattern":null}},"portletContextMenu":{"isRatingEnabled":true,"isTaggingEnabled":true},"isRatingEnabled":true,"isTagCenterAvailable":false,"operations":{"canResetRatingPerResource":false,"canBrowseTags":false,"canCreatePrivateRatings":false,"canCreatePublicTags":false,"canDeleteOtherUsersTags":false,"canViewTags":false,"canCreatePrivateTags":false,"canCreatePublicRatings":false,"canViewRatings":false},"rating":{"maxRatingValue":5,"inline":{"ratingDescription":"ALL","onStarHoverShowRatingDistribution":true,"onStarClickOpenDialog":true,"privateRatingEnabled":"false","ratingDistributionPosition":"30,30","ratingsChangedEvent":"ratingsChanged","ratingScope":"COMMUNITY_PERSONAL_PUBLIC","numStars":5,"showDialogLauncher":"COLLAPSED","displayTwisty":"COLLAPSED"},"dialog":{"messageFadeOutDuration":1000,"displayTabs":false,"deletingEnabled":true,"privateRatingEnabled":false,"numStars":5,"defaultView":"PUBLIC"}}};
</script><script type="text/javascript" src="/wps/contenthandler/!ut/p/digest!LejEKmt_0o49pQhpcZvO_w/mashup/ra:collection?themeID=ZJ_50D2I0S0LGUIC0AEH1HGAI3001&locale=en&mime-type=text%2Fjavascript&lm=1431030784000&entry=wp_theme_high_contrast__0.0%3Aconfig_js&entry=wp_theme_edit__0.0%3Aconfig_js&entry=wp_one_ui_30__0.0%3Aconfig_js&entry=wp_theme_menus__0.0%3Aconfig_js&entry=wp_project_menu__0.0%3Aconfig_js&entry=wp_status_bar__0.0%3Aconfig_js&entry=wp_theme_skin_region__0.0%3Aconfig_js"></script><a rel="alternate" id="config_js_deferred" href="/wps/contenthandler/!ut/p/digest!LejEKmt_0o49pQhpcZvO_w/mashup/ra:collection?themeID=ZJ_50D2I0S0LGUIC0AEH1HGAI3001&locale=en&mime-type=text%2Fjavascript&entry=mm_enabler__0.0%3Aconfig_js&entry=mm_builder__0.0%3Aconfig_js&entry=wp_pagebuilder_base__0.0%3Aconfig_js&entry=mm_builder_dialogs__0.0%3Aconfig_js&entry=wp_pagebuilder_ui__0.0%3Aconfig_js&entry=mm_page_sharing_base__0.0%3Aconfig_js&entry=wp_portal_ui_utils__0.0%3Aconfig_js&entry=wp_federated_documents_picker__0.0%3Aconfig_js&entry=wp_template_select_dialog__0.0%3Aconfig_js&entry=wp_dialog_main__0.0%3Aconfig_js&entry=wp_liveobject_framework_core__0.0%3Aconfig_js&entry=wp_wcm_modal_dialog__0.0%3Aconfig_js&entry=wp_managed_pages_support_edit__0.0%3Aconfig_js&entry=wp_portal_client_rest_utils__0.0%3Aconfig_js&entry=wp_pagebuilder_dnd__0.0%3Aconfig_js&entry=wp_pagebuilder_data__0.0%3Aconfig_js&entry=wp_pagebuilder_shelf_base__0.0%3Aconfig_js&entry=wp_analytics_overlay_reports__0.0%3Aconfig_js&entry=mm_delete_control__0.0%3Aconfig_js&entry=mm_page_sharing_permission__0.0%3Aconfig_js&entry=mm_builder_wiring__0.0%3Aconfig_js&entry=wp_liveobject_framework__0.0%3Aconfig_js&entry=wp_tagging_rating__0.0%3Aconfig_js&entry=wp_content_mapping_picker__0.0%3Aconfig_js&entry=wp_toolbar__0.0%3Aconfig_js&entry=wp_theme_widget__0.0%3Aconfig_js&entry=wp_pagebuilder_controls__0.0%3Aconfig_js&entry=mm_move_page__0.0%3Aconfig_js&entry=wp_project_menu_edit__0.0%3Aconfig_js&entry=wp_analytics_tags__0.0%3Aconfig_js&entry=mm_delete_page__0.0%3Aconfig_js&entry=mm_new_page_dialog__0.0%3Aconfig_js&deferred=true" style="display:none"></a><a rel="alternate" id="config_markup_deferred" href="/wps/contenthandler/!ut/p/digest!LejEKmt_0o49pQhpcZvO_w/mashup/ra:collection?themeID=ZJ_50D2I0S0LGUIC0AEH1HGAI3001&locale=en&mime-type=text%2Fplain&entry=mm_page_sharing_base__0.0%3Aconfig_markup&entry=wp_template_select_dialog__0.0%3Aconfig_markup&entry=mm_builder_wiring__0.0%3Aconfig_markup&entry=wp_toolbar__0.0%3Aconfig_markup&entry=mm_move_page__0.0%3Aconfig_markup&entry=mm_new_page_dialog__0.0%3Aconfig_markup&deferred=true" style="display:none"></a></div>
<script src="https://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<style>
.ui-autocomplete{
z-index: 100000;
</style>
<script>
$( function() {
var availableTags = [
"Internet prices",
"internet packages",
"high speed",
"adsl tedata",
"tedata hotline",
"email configuration",
"tedata chat",
"tedata login",
"mega plus",
"te mobile",
"te landline",
"promotions",
"my tedata",
"192.168.l.l te data",
"Hosting services",
"wifi"
];
$( "#tags" ).autocomplete({
source: availableTags
});
} );
</script>
<style>
div#lhnHocInvite div.lhnHocInviteCont {
background-color: #d1044b !important;
color: #FFFFFF;
}
#lhnHelpOutCenter div.lhnWindow-header {
color: white;
background-color: #d1044b !important;
}
#lhnHelpOutCenter button.lhnFormButton, #lhnHelpOutCenter button.form_submit {
background-color: #d1044b !important;
color: white;
}
div#lhnHocButton div.lhnHocChatBtnCont {
background-color: #d1044b !important;
}
div#lhnHocButton div.lhnHocChatBtn {
background-color: #d1044b !important;
}
div#lhnHocButton div.lhnHocChatBtn {
background-color: #d1044b !important;
}
audio#lhnHocBellSound{
position: absolute;
left: 0px !important;
top: -300px;
width: 0px;
height: 0px;
}
</style>
<script defer >
window.lhnJsSdkInit = function () {
lhnJsSdk.setup = {
application_id: "22a617fc-5fb4-426c-bfb6-3f39e9706ccf",
application_secret: "0bb7f487d29c4d7dbc48dc706b727f3f25bc86f9833d408381"
};
lhnJsSdk.controls = [{
type: "hoc",
id: "4dddf7ed-e038-4672-8df6-2cf8576ffe4b"
}];
};
(function (d, s) {
var newjs, lhnjs = d.getElementsByTagName(s)[0];
newjs = d.createElement(s);
newjs.src = "https://developer.livehelpnow.net/js/sdk/lhn-jssdk-current.min.js";
lhnjs.parentNode.insertBefore(newjs, lhnjs);
}(document, "script"));
</script>
<!--Error Message - pop up [ For IE ] - [ HTML ] --------------------------------------------------------->
<div class="IE-pop">
<div class="msg-pop">
<div class="msg-pop__head">
<span class="msg-error">
<i class="fa fa-exclamation-circle"></i>
<!-- Error -->
</span>
<span class="msg-close">
<i class="fa fa-close"></i>
</span>
</div>
<div class="msg-clear"></div>
<h5>You’re using an unsupported browser.</h5>
<h6>For a better experience please try one of these options Chrome, Firefox or Safari.</h6>
</div>
</div>
<!--End of Error Message - pop up [ For IE ] ------------------------------------------------------------>
<!--Error Message - pop up [ For IE ] - [ JS ] =========---------------------------------->
<script>
$(document).ready(function(){
if (navigator.appName == 'Microsoft Internet Explorer' || !!(navigator.userAgent.match(/Trident/) || navigator.userAgent.match(/rv:11/)) || (typeof $.browser !== "undefined" && $.browser.msie == 1))
{
$(".IE-pop").css("display" , "block");
}
$(".msg-close").click(function(){
$(".IE-pop").css("display" , "none");
});
});
</script>
<!--End of Error Message - pop up [ For IE ] ------------------------------------------------------------>
</body>
</html>
|