{"id":23624,"date":"2025-09-04T17:20:08","date_gmt":"2025-09-04T17:20:08","guid":{"rendered":"https:\/\/azamrauman.com\/?page_id=23624"},"modified":"2025-09-17T09:56:54","modified_gmt":"2025-09-17T09:56:54","slug":"view-all-plans","status":"publish","type":"page","link":"https:\/\/azamrauman.com\/uk\/view-all-plans\/","title":{"rendered":"\u041f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u0443\u0442\u0438 \u0432\u0441\u0456 \u043f\u043b\u0430\u043d\u0438"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"23624\" class=\"elementor elementor-23624\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-9e6f260 elementor-section-boxed elementor-section-height-default elementor-section-height-default sc_fly_static\" data-id=\"9e6f260\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-59222bb sc_content_align_inherit sc_layouts_column_icons_position_left sc_fly_static\" data-id=\"59222bb\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-bc5cf58 title_style_h3 elementor-widget__width-inherit elementor-widget-tablet__width-inherit elementor-widget-mobile__width-initial sc_fly_static elementor-widget elementor-widget-trx_sc_title\" data-id=\"bc5cf58\" data-element_type=\"widget\" data-widget_type=\"trx_sc_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div\t\tclass=\"sc_title sc_title_default\" ><h2 class=\"sc_item_title sc_title_title sc_align_center sc_item_title_style_default\"\n\t\t\t><span class=\"sc_item_title_text\">view the floor plans of our available apartments<\/span><\/h2><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-c872dbc elementor-section-boxed elementor-section-height-default elementor-section-height-default sc_fly_static\" data-id=\"c872dbc\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-extended\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-72d5583 sc_content_align_inherit sc_layouts_column_icons_position_left sc_fly_static\" data-id=\"72d5583\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-629b672 sc_fly_static elementor-widget elementor-widget-global elementor-global-24443 elementor-widget-html\" data-id=\"629b672\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n.floor-apartment-inline {\n  display: flex;\n  flex-direction: row;\n  width: 100%;\n  gap: 10px;\n  margin-bottom: 20px;\n}\n\n\/* Apply border color #c2a989 *\/\n.floor-apartment-inline select {\n  width: 50%;\n  padding: 10px;\n  font-size: 16px;\n  border: 1px solid #c2a989 !important;\n  border-radius: 6px;\n  background-color: #fff;\n  transition: background-color 0.3s;\n}\n\n\/* Disabled apartment dropdown *\/\n.floor-apartment-inline select:disabled {\n  background-color: #f0f0f0;\n  cursor: not-allowed;\n}\n<\/style>\n\n<div class=\"floor-apartment-inline\">\n  <!-- Floor Selector -->\n  <select id=\"floor-select\">\n    <option value=\"\">Select Floor<\/option>\n    <option value=\"floor2\">2nd<\/option>\n    <option value=\"floor3\">3rd<\/option>\n    <option value=\"floor4\">4th<\/option>\n    <option value=\"floor5\">5th<\/option>\n    <option value=\"floor6\">6th<\/option>\n    <option value=\"floor7\">7th<\/option>\n    <option value=\"floor8\">8th<\/option>\n  <\/select>\n\n  <!-- Apartment Selector -->\n  <select id=\"apartment-select\" disabled title=\"Please select a floor first\">\n    <option value=\"\">Select Apartment<\/option>\n  <\/select>\n<\/div>\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n  const floorSelect = document.getElementById(\"floor-select\");\n  const apartmentSelect = document.getElementById(\"apartment-select\");\n\n  const apartments = {\n    floor2: range(201, 220),\n    floor3: range(301, 320),\n    floor4: range(401, 420),\n    floor5: range(501, 514),\n    floor6: range(601, 614),\n    floor7: range(701, 707),\n    floor8: range(801, 807)\n  };\n\n  function range(start, end) {\n    const obj = {};\n    for (let i = start; i <= end; i++) {\n      obj[i] = `https:\/\/azamrauman.com\/apartment-${i}`;\n    }\n    return obj;\n  }\n\n  function populateApartments(floor, preselect=null) {\n    apartmentSelect.innerHTML = '<option value=\"\">Select Apartment<\/option>';\n    apartmentSelect.disabled = true;\n    apartmentSelect.title = \"Please select a floor first\";\n\n    if (!floor || !apartments[floor]) return;\n\n    for (let apt in apartments[floor]) {\n      const opt = document.createElement(\"option\");\n      opt.value = apartments[floor][apt];\n      opt.textContent = apt;\n      if (preselect && parseInt(apt) === preselect) opt.selected = true;\n      apartmentSelect.appendChild(opt);\n    }\n\n    apartmentSelect.disabled = false;\n    apartmentSelect.title = \"\";\n  }\n\n  \/\/ Preselect apartment if URL ends with \/apartment-XXX\/\n  const match = window.location.href.match(\/apartment-(\\d+)\\\/?$\/);\n  if (match) {\n    const aptNum = parseInt(match[1]);\n    for (let floor in apartments) {\n      if (apartments[floor][aptNum]) {\n        populateApartments(floor, aptNum);\n        \/\/ Auto-select floor dropdown\n        floorSelect.value = floor;\n        break;\n      }\n    }\n  }\n\n  \/\/ Populate apartments on floor select\n  floorSelect.addEventListener(\"change\", function() {\n    if (this.value) populateApartments(this.value);\n    else {\n      apartmentSelect.innerHTML = '<option value=\"\">Select Apartment<\/option>';\n      apartmentSelect.disabled = true;\n      apartmentSelect.title = \"Please select a floor first\";\n    }\n  });\n\n  \/\/ Redirect on apartment select\n  apartmentSelect.addEventListener(\"change\", function() {\n    if (this.value) window.location.href = this.value;\n  });\n});\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-184324f title_style_h3 elementor-widget__width-inherit elementor-widget-tablet__width-inherit elementor-widget-mobile__width-inherit sc_fly_static elementor-widget elementor-widget-trx_sc_title\" data-id=\"184324f\" data-element_type=\"widget\" data-widget_type=\"trx_sc_title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div\t\tclass=\"sc_title sc_title_default\" ><h2 class=\"sc_item_title sc_title_title sc_align_center sc_item_title_style_default\"\n\t\t\t><span class=\"sc_item_title_text\">view an entire floor by clicking on the image below:<\/span><\/h2><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-95548f2 elementor-widget__width-inherit sc_fly_static elementor-widget elementor-widget-html\" data-id=\"95548f2\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<svg class=\"wow fadeIn\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"auto\" height=\"1725\" viewbox=\"0 0 1920 1725\" id=\"svg-replaced-0\" syle=\"position: absolute; height: 752px; top: 0px; width: 100%;\">\n    <defs>\n      <style>\n      .cls-3 { opacity: 0.1; }\n      .cls-3:hover { fill: #efc63f; opacity: 0.7; fill-rule: evenodd; }\n      text { fill: #EBEBEB; font-size: 48px; font-weight: 300; }\n      .cls-3:hover text { fill: #FCD85E; }\n    <\/style>\n    <\/defs>\n  <image id=\"Layer_0\" data-name=\"Layer 0\" width=\"auto\" height=\"auto\" xlink:href=\"https:\/\/azamrauman.com\/wp-content\/uploads\/2025\/09\/house-goldes1.png\"><\/image>\n    <g class=\"cls-1\">\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\">\n    <path id=\"_-1\" data-name=\"-1\" class=\"cls-2\" d=\"M755 1416.72H327.5L1058.5 1522.22H1560V1486.72H1058.5L755 1459.22V1416.72Z\"><\/path>\n    <text x=\"200\" y=\"1510\" class=\"small\">-2<\/text>\n  <\/a>\n  <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" >\n  <text x=\"200\" y=\"1450\" class=\"small\">-1<\/text>\n    <path id=\"_0\" data-name=\"0\" class=\"cls-2\" d=\"M1397.5 1418.72V1424.72H1406.5V1431.22H1415V1438.72H1418V1448.22V1460.72H1366C1366.67 1460.22 1367.2 1458.62 1364 1456.22C1360 1453.22 1361 1453.22 1362.5 1450.72C1364 1448.22 1365 1445.72 1364.5 1444.72C1364 1443.72 1364 1440.72 1363.5 1440.22C1363 1439.72 1363.5 1434.22 1360.5 1432.72C1358.1 1431.52 1356.17 1431.22 1355.5 1431.22C1355.17 1430.22 1354.6 1428.02 1355 1427.22C1355.5 1426.22 1357 1421.22 1351.5 1421.72C1346 1422.22 1346 1425.22 1346.5 1425.72C1346.9 1426.12 1347 1427.55 1347 1428.22L1348.5 1431.22L1350 1432.72C1348.67 1433.22 1345.9 1435.02 1345.5 1438.22V1439.22L1346 1440.22C1345.67 1443.72 1345 1451.02 1345 1452.22C1345 1453.72 1345 1456.72 1346 1457.72L1347 1458.22V1461.72H1329L1330 1481.72H1327V1472.22H1317.5V1478.72V1481.22H1303.5V1461.72L1178 1463.22H1177V1482.72H1170.5V1461.72H1160.5V1482.72H1070L1069 1475.72L914 1471.72C917.333 1470.39 922.3 1465.22 915.5 1455.22C914.166 1452.22 909.3 1446.82 900.5 1449.22L895.5 1440.22L896.5 1436.22H898.5L895.5 1433.22V1436.22L893 1439.22L874 1446.22L870.5 1439.22L868.5 1436.22C866 1433.22 866.8 1432.22 866 1432.22C865.2 1432.22 866 1429.72 865 1427.72C864 1425.72 864 1424.22 864 1424.22L863 1423.72L862 1421.22V1418.22C861.543 1417.88 860.882 1417.49 860.147 1417.22H857.076C856.677 1417.43 856.311 1417.75 856 1418.22C854.4 1420.62 855.333 1422.22 856 1422.72L857.5 1428.22V1431.22L856 1433.22C854.166 1433.55 850.2 1434.42 849 1435.22C845 1436.22 843.5 1437.22 843.5 1438.22L844.5 1441.22H845.5C845.5 1442.05 845.4 1443.82 845 1444.22C844.6 1444.62 843.167 1445.39 842.5 1445.72C841.333 1441.05 837.1 1432.02 829.5 1433.22C820 1434.72 816.5 1439.72 816 1444.22C815.6 1447.82 815.5 1450.39 815.5 1451.22H800.5C801.5 1449.89 804.3 1446.92 807.5 1445.72C810.7 1444.52 812.5 1443.55 813 1443.22C811.5 1442.55 808.7 1441.22 809.5 1441.22C810.3 1441.22 811.5 1440.22 812 1439.72H815.5L817.5 1438.22L815.5 1436.22C813.667 1435.22 809.3 1433.42 806.5 1434.22C803 1435.22 801.5 1434.22 800.5 1435.22C799.7 1436.02 799.167 1437.89 799 1438.72V1441.22C797.5 1441.22 794.5 1440.92 794.5 1439.72V1434.22L792.5 1433.22C793.333 1433.89 794.5 1435.22 792.5 1435.22H787.5H784H781C779.5 1434.22 776.3 1432.02 775.5 1431.22C774.5 1430.22 773 1427.22 770 1428.22C767 1429.22 764 1428.22 762 1429.72C760 1431.22 760 1433.22 759.5 1433.22C759 1433.22 759 1435.22 758 1436.22C757 1437.22 757.5 1437.72 755 1438.72V1417.22H857.076C858.025 1416.72 859.154 1416.86 860.147 1417.22H1058H1397.5V1418.72Z\"><\/path>\n  <\/a>\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\">\n    <text x=\"200\" y=\"1390\" class=\"small\">0<\/text>\n      <path id=\"_1\" data-name=\"1\" class=\"cls-2\" d=\"M1488.5 1294.72L1492.5 1290.72L1023.5 1276.72L340.5 1341.22L389.5 1345.72L388.5 1399.22L378 1398.72C378 1399.55 378.2 1401.92 379 1404.72C380 1408.22 379 1413.72 378 1413.72H370H367.5L326 1417.22H1057H1474V1413.72V1408.72H1467.5V1402.72V1397.72V1395.22C1469.5 1382.02 1463.33 1353.39 1460 1340.72C1459.6 1329.52 1455.17 1328.05 1453 1328.72L1451 1297.72L1488.5 1294.72Z\"><\/path>\n    <\/a>\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" >\n    <text x=\"210\" y=\"1320\" class=\"small\">1<\/text>\n      <path id=\"_2\" data-name=\"2\" class=\"cls-2\" d=\"M983.5 1160.22L344 1271.22L341 1341.72L1024.5 1277.72L1493.5 1291.72L1546 1274.72V1268.72L1541 1270.72L1493.5 1285.72V1280.72H1474.5L1499 1273.22V1267.72H1489.5L1488.5 1240.72L1453 1238.72L1452 1184.72L983.5 1160.22Z\"><\/path>\n    <\/a>\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xlink:href=\"\/floor-2\">\n    <text x=\"200\" y=\"1250\" class=\"small\">2<\/text>\n      <path id=\"_3\" data-name=\"3\" class=\"cls-2\" d=\"M983 1041.22L346.5 1198.72L343.5 1271.22L983 1160.22L1479.5 1186.22L1518 1182.22V1170.22H1516H1514V1165.22V1129.72L1481 1128.72L1479.5 1078.22L983 1041.22Z\"><\/path>\n    <\/a>\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xlink:href=\"\/floor-3\/\">\n    <text x=\"200\" y=\"1180\" class=\"small\">3<\/text>\n      <path id=\"_4\" data-name=\"4\" class=\"cls-2\" d=\"M982.5 922.72L349 1128.22L346.5 1198.72L982.5 1041.22L1479 1078.22L1511.5 1072.22V1060.72H1509.5L1507 1021.72L1476 1018.22L1474 971.22L982.5 922.72Z\"><\/path>\n    <\/a>\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xlink:href=\"\/floor-4\/\">\n    <text x=\"200\" y=\"1110\" class=\"small\">4<\/text>\n      <path id=\"_5\" data-name=\"5\" class=\"cls-2\" d=\"M980.5 808.22L351.5 1056.72L349 1128.22L982.5 922.916L1473.5 971.22L1508 963.72V953.72L1504 953.22L1503 914.22L1472 909.72L1470.5 866.22L986 807.72L980.5 808.22Z\"><\/path>\n    <\/a>\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xlink:href=\"\/floor-5\/\">\n    <text x=\"200\" y=\"1040\" class=\"small\">5<\/text>\n      <path id=\"_6\" data-name=\"6\" class=\"cls-2\" d=\"M1503 857.72L1470 866.22L986 807.72L980 808.22L351.5 1056.72L353.5 988.22L980 691.22L1462.5 764.22L1465.5 763.22L1467.5 803.72L1498.5 808.22L1500 845.72L1502 847.72L1503 857.72Z\"><\/path>\n    <\/a>\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xlink:href=\"\/floor-6\/\">\n    <text x=\"200\" y=\"970\" class=\"small\">6<\/text>\n      <path id=\"_7\" data-name=\"7\" class=\"cls-2\" d=\"M1461 660.72L1493.5 648.72L1013.5 565.72L357 914.22L353.5 988.22L979.5 691.22L1463 764.22L1465.5 763.22L1497.5 753.22V747.22V742.22L1495 741.72L1493.5 703.72L1464 699.22L1461 660.72Z\"><\/path>\n    <\/a>\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xlink:href=\"\/floor-7\/\">\n    <text x=\"200\" y=\"900\" class=\"small\">7<\/text>\n      <path id=\"_8\" data-name=\"8\" class=\"cls-2\" d=\"M1493.5 638.22V648.72L1013.5 565.72L985 581.22L979.5 583.084L357 914.72V906.72V903.22L358.5 846.22L981.5 470.72L1013 452.22L1488.5 546.22L1457.5 562.22L1459 595.22L1488.5 601.22L1491 638.22H1493.5Z\"><\/path>\n    <\/a>\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xlink:href=\"\/floor-8\/\">\n    <text x=\"200\" y=\"830\" class=\"small\">8<\/text>\n      <path id=\"_9\" data-name=\"9\" class=\"cls-2\" d=\"M1013 452.22L1488.5 547.22V536.22L1486.5 535.22L1485 500.22L1484 499.72L1455 493.72L1454 461.72L1487.5 446.22L1486.5 433.72L1279.5 387.72V383.22L1281 382.72V381.22L1280.5 378.72L1150.5 348.72V359.72H1149.5L1013.5 329.72L987.5 347.22L977 345.72L361.5 770.22L358 847.22L1013 452.22Z\"><\/path>\n    <\/a>\n    <a class=\"cls-3\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" >\n    <text x=\"200\" y=\"750\" class=\"small\">9<\/text>\n      <path id=\"_11-12\" data-name=\"11-12\" class=\"cls-2\" d=\"M361 766.72L372.5 758.72V752.72H371L380.5 745.72L375.5 744.72L402.5 724.72L403.5 724.22C402.666 722.704 401.5 719.428 403.5 718.447C406 717.22 408.5 719.22 409 720.22L422 711.22C422.333 710.72 423.1 709.62 423.5 709.22C424 708.72 423 708.22 421.5 708.72C420.3 709.12 421.333 707.22 422 706.22C420.333 705.386 418 703.32 422 701.72C427 699.72 425.5 699.72 424.5 699.22C423.5 698.72 422.5 698.22 423 698.22C423.5 698.22 426 697.72 426.5 697.72C427 697.72 426.5 696.72 426 696.22C425.5 695.72 423 696.22 423 695.72C423 695.32 422.333 694.553 422 694.22L420.5 693.72L421 692.72L422 691.22L421 689.72V688.72L423 690.72L424.5 690.22C424.833 689.386 425.2 687.42 424 686.22C422.5 684.72 420.5 683.22 424.5 680.22C428.5 677.22 431 674.72 432 673.72C432.8 672.92 434.333 671.053 435 670.22C436.166 669.386 438.6 667.72 439 667.72C439.5 667.72 440.5 668.22 441 668.72C441.5 669.22 442 668.22 442.5 667.72L444 666.22L444.5 667.22C445.5 667.886 447.8 669.32 449 669.72C450.5 670.22 450 671.22 451 670.72C452 670.22 453 670.22 452.5 669.72C452.1 669.32 451 668.553 450.5 668.22L451 666.72C450.5 666.553 449.5 666.12 449.5 665.72C449.5 665.22 449 663.72 449 662.72C449 661.72 447.5 660.72 449.5 660.72C451.5 660.72 453 662.22 453.5 662.22C454 662.22 455.5 662.72 456 662.72C456.5 662.72 454.5 658.72 454 658.22C453.5 657.72 454 655.72 456.5 656.22C459 656.72 461 657.22 462 658.22C463 659.22 464 657.22 465.5 656.22C466.7 655.42 468.666 654.553 469.5 654.22C470.333 654.72 472 655.82 472 656.22C472 656.62 472.333 657.386 472.5 657.72C473.333 657.72 475 657.62 475 657.22C475 656.72 477 655.72 477.5 655.22C477.9 654.82 479.666 654.386 480.5 654.22V639.72L439 611.22C440.166 610.22 442.6 608.12 443 607.72L444.5 606.22L501 561.22L678 543.72L682 544.22L684 542.72V536.72L680 536.22V535.22L688 529.22L689 528.22L688 526.72L685.5 526.22L686 525.22L729 495.72V481.72L675 426.72L770.5 351.22L915.5 333.22V331.72H917L910 327.22L907 328.72L909 324.72V319.72C909.333 320.22 910 320.92 910 319.72C910 318.52 911 315.22 911.5 313.72C913.667 308.053 920.7 295.82 931.5 292.22C945 287.72 952 287.72 952.5 288.22C953 288.72 954 289.72 955.5 290.22C957 290.72 956 293.22 958 290.72C960 288.22 961 285.22 962 286.22C963 287.22 963.5 287.22 965.5 289.72C967.1 291.72 968.833 293.22 969.5 293.72C968.833 292.053 967.6 288.62 968 288.22C968.4 287.82 969.167 286.72 969.5 286.22C970 284.553 970.7 280.62 969.5 278.22C968 275.22 968.5 273.72 969.5 272.72L972 270.22C977.667 260.22 995.6 244.02 1022 259.22C1028.33 263.22 1039.4 274.42 1033 287.22C1025 303.22 1026.5 303.72 1020 306.72C1013.5 309.72 1011.5 308.72 1009 309.22C1006.5 309.72 1006 307.72 1004.5 309.22C1003.3 310.42 1002.33 311.72 1002 312.22L1000.55 315.119C1000.58 315.192 1000.55 315.22 1000.5 315.22L1000.55 315.119C1000.48 314.953 1000.11 314.553 999 313.72C997 312.22 997 311.22 996.5 311.22C996 311.22 995 310.72 992.5 311.22C990.5 311.62 987 313.386 985.5 314.22C986 315.386 987.2 317.82 988 318.22C989 318.72 1000.5 321.22 1000.5 320.72V316.72L1002 314.22V320.72L1118 347.22L1153 325.72L1175 330.22L1218 303.72L1293 321.22L1294.5 360.22L1300.5 358.22C1301 357.553 1302 356.62 1302 358.22C1302 360.22 1302.5 361.22 1304 362.72C1305.5 364.22 1306 365.72 1309 366.22C1311.4 366.62 1313.67 367.72 1314.5 368.22L1315.87 364.572C1315.79 364.296 1315.67 363.61 1315.5 362.22C1315 358.22 1321 332.22 1345.5 331.72C1370 331.22 1374.5 351.72 1370.5 364.22C1367.3 374.22 1362.17 377.72 1360 378.22C1360.83 379.22 1362 381.22 1360 381.22C1357.5 381.22 1358 379.72 1355 381.22C1352 382.72 1350.5 384.72 1349 384.72C1347.8 384.72 1346.83 383.053 1346.5 382.22V397.22L1427 414.72L1424.5 419.22L1280 388.22V383.22L1281 382.22V378.22L1150.5 348.72V360.22L1013.5 328.72L988 347.22L977.5 345.72L361 770.22C360.166 769.886 358.7 769.02 359.5 768.22L361 766.72Z\"><\/path>\n    <\/a>\n  <\/g>\n    <\/svg>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>view the floor plans of our available apartments Select Floor2nd3rd4th5th6th7th8th Select Apartment view an entire floor by clicking on the image below: -2 -1 0 1 2 3 4 5&hellip;<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-23624","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/azamrauman.com\/uk\/wp-json\/wp\/v2\/pages\/23624","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/azamrauman.com\/uk\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/azamrauman.com\/uk\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/azamrauman.com\/uk\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/azamrauman.com\/uk\/wp-json\/wp\/v2\/comments?post=23624"}],"version-history":[{"count":124,"href":"https:\/\/azamrauman.com\/uk\/wp-json\/wp\/v2\/pages\/23624\/revisions"}],"predecessor-version":[{"id":25258,"href":"https:\/\/azamrauman.com\/uk\/wp-json\/wp\/v2\/pages\/23624\/revisions\/25258"}],"wp:attachment":[{"href":"https:\/\/azamrauman.com\/uk\/wp-json\/wp\/v2\/media?parent=23624"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}