{"id":413,"date":"2024-07-17T09:00:12","date_gmt":"2024-07-17T09:00:12","guid":{"rendered":"https:\/\/pell.postvalidation.blog\/?page_id=413"},"modified":"2026-01-21T14:09:06","modified_gmt":"2026-01-21T14:09:06","slug":"contatti","status":"publish","type":"page","link":"https:\/\/palazzopellico.coima.com\/en\/contatti\/","title":{"rendered":"Contacts"},"content":{"rendered":"<div data-elementor-type=\"wp-post\" data-elementor-id=\"413\" class=\"elementor elementor-413\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1f33d05 e-con-full e-flex e-con e-parent\" data-id=\"1f33d05\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-25fe849 elementor-widget elementor-widget-template\" data-id=\"25fe849\" data-element_type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"191\" class=\"elementor elementor-191\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-1729fd5 e-flex e-con-boxed e-con e-parent\" data-id=\"1729fd5\" data-element_type=\"container\" id=\"show-hide-header\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;,&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3fb12ea e-con-full e-flex e-con e-child\" data-id=\"3fb12ea\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7820435 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"7820435\" data-element_type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<a class=\"elementor-icon\" href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjQyMiIsInRvZ2dsZSI6ZmFsc2V9\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"52\" height=\"27\" viewbox=\"0 0 52 27\" fill=\"none\"><line y1=\"1.5\" x2=\"52\" y2=\"1.5\" stroke=\"#D6A134\" stroke-width=\"3\"><\/line><line y1=\"13.5\" x2=\"42\" y2=\"13.5\" stroke=\"#D6A134\" stroke-width=\"3\"><\/line><line y1=\"25.5\" x2=\"32\" y2=\"25.5\" stroke=\"#D6A134\" stroke-width=\"3\"><\/line><\/svg>\t\t\t<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-27e6e03 elementor-widget elementor-widget-html\" data-id=\"27e6e03\" 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<script>\r\n\"use strict\";\r\nOB_ready(OB_doWhenReady);\r\n\r\nfunction OB_doWhenReady() {\r\n    \/\/ localize everything\r\n    var cwp = window.cwp || {};\r\n    \/\/ local scope variables\r\n  cwp.prev_scroll_pos = window.scrollY || document.body.scrollTop;\r\n    cwp.cur_scroll_pos;\r\n    cwp.scroll_direction = 'init';\r\n    cwp.prev_scroll_direction = 0;\r\n cwp.header = document.querySelector('#show-hide-header'); \/\/ header ID\r\n  cwp.header_pos = {\r\n        top: cwp.header.offsetTop,\r\n        left: cwp.header.offsetLeft,\r\n    };\r\n  cwp.header_height = OB_outerHeight(cwp.header);\r\n    \/\/ show-hide header with ease\/transition\r\n    cwp.header.style.transition = 'all 0.3s ease';\r\n    \/\/ update header height on window resize\r\n   cwp.updateHeaderHeight = function() {\r\n       cwp.header_height = OB_outerHeight(cwp.header);\r\n    }\r\n    \/\/ listen \"scroll\" event and decide what to do\r\n cwp.checkScroll = function() {\r\n        cwp.cur_scroll_pos = window.scrollY || document.body.scrollTop;\r\n\r\n        if (cwp.cur_scroll_pos > cwp.prev_scroll_pos) cwp.scroll_direction = 'down';\r\n        else if (cwp.cur_scroll_pos < cwp.prev_scroll_pos) cwp.scroll_direction = 'up';\r\n\r\n        if (cwp.scroll_direction !== cwp.prev_scroll_direction) cwp.toggleHeader(cwp.scroll_direction, cwp.cur_scroll_pos);\r\n        cwp.prev_scroll_pos = cwp.cur_scroll_pos;\r\n    }\r\n    \/\/ add or remove class based on the scrolling direction\r\n    cwp.toggleHeader = function(scroll_direction, scroll_current) {\r\n        if (scroll_direction === 'down' && scroll_current > cwp.header_height) {\r\n            OB_addClass(cwp.header, 'im-hidden'); \/\/ for styling\r\n            cwp.header.style.top = -1 * cwp.header_height + \"px\";\r\n            cwp.prev_scroll_direction = scroll_direction;\r\n        } else if (scroll_direction === 'up') {\r\n            OB_removeClass(cwp.header, 'im-hidden');\r\n            cwp.header.style.top = cwp.header_pos.top + \"px\";\r\n            cwp.prev_scroll_direction = scroll_direction;\r\n        }\r\n    }\r\n    \/\/ listen \"scroll\" and \"resize\" window events\r\n    window.addEventListener('scroll', cwp.checkScroll);\r\n    window.addEventListener('resize', cwp.updateHeaderHeight);\r\n}\r\n\r\nfunction OB_outerHeight(el) {\r\n    var height = el.offsetHeight;\r\n    var style = getComputedStyle(el);\r\n    height += parseInt(style.marginTop) + parseInt(style.marginBottom);\r\n    return height;\r\n}\r\n\r\nfunction OB_addClass(el, className) {\r\n    if (el.classList) el.classList.add(className);\r\n    else {\r\n        var current = el.className,\r\n            found = false;\r\n        var all = current.split(' ');\r\n        for (var i = 0; i < all.length, !found; i++) found = all[i] === className;\r\n        if (!found) {\r\n            if (current === '') el.className = className;\r\n            else el.className += ' ' + className;\r\n        }\r\n    }\r\n}\r\n\r\nfunction OB_removeClass(el, className) {\r\n    if (el.classList) el.classList.remove(className);\r\n    else el.className = el.className.replace(new RegExp('(^|\\\\b)' + className.split(' ').join('|') + '(\\\\b|$)', 'gi'), ' ');\r\n}\r\n\r\nfunction OB_ready(fn) {\r\n    if (document.readyState != 'loading') fn();\r\n    else if (document.addEventListener) document.addEventListener('DOMContentLoaded', fn);\r\n    else {\r\n        document.attachEvent('onreadystatechange', function() {\r\n            if (document.readyState != 'loading') fn();\r\n        });\r\n    }\r\n}\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3210803 e-con-full e-flex e-con e-child\" data-id=\"3210803\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-67944d6 elementor-hidden-desktop elementor-widget elementor-widget-image\" data-id=\"67944d6\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/palazzopellico.coima.com\/en\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"146\" height=\"46\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-logo-footer.svg\" class=\"attachment-full size-full wp-image-89\" alt=\"\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-00f4b0a elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"00f4b0a\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/palazzopellico.coima.com\/en\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"191\" height=\"74\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-logo-white.svg\" class=\"attachment-full size-full wp-image-90\" alt=\"\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6b3a6ac e-con-full elementor-hidden-mobile e-flex e-con e-child\" data-id=\"6b3a6ac\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2099a54 elementor-widget elementor-widget-button\" data-id=\"2099a54\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/palazzopellico.coima.com\/en\/?page_id=413\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">CONTACT US<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c344ef9 e-flex e-con-boxed e-con e-parent\" data-id=\"c344ef9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-8217721 e-con-full e-flex e-con e-child\" data-id=\"8217721\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-35dea8e e-grid e-con-full e-con e-child\" data-id=\"35dea8e\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5b24a4c e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"5b24a4c\" data-element_type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4d249ff e-con-full e-flex e-con e-child\" data-id=\"4d249ff\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-efdfcfe elementor-widget elementor-widget-heading\" data-id=\"efdfcfe\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Contacts<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d982302 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"d982302\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0bf9218 e-grid e-con-full e-con e-child\" data-id=\"0bf9218\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-284f0b3 elementor-widget elementor-widget-image\" data-id=\"284f0b3\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"505\" height=\"532\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/contatti1.webp\" class=\"attachment-full size-full wp-image-51\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/contatti1.webp 505w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/contatti1-285x300.webp 285w\" sizes=\"(max-width: 505px) 100vw, 505px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c6a3a69 e-con-full e-flex e-con e-child\" data-id=\"c6a3a69\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-fb515a7 e-grid e-con-full e-con e-child\" data-id=\"fb515a7\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-39931eb e-con-full e-flex e-con e-child\" data-id=\"39931eb\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7b1c9b7 elementor-widget elementor-widget-heading\" data-id=\"7b1c9b7\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">Exclusive agents:<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4f10341 elementor-widget elementor-widget-image\" data-id=\"4f10341\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"118\" height=\"36\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/dils-logo-w.svg\" class=\"attachment-full size-full wp-image-79\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-425d82e elementor-widget elementor-widget-text-editor\" data-id=\"425d82e\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>DILS<\/strong><br \/><strong>Piazza Armando Diaz, 7<\/strong><br \/><strong>20123 Milano, Italy<br \/><\/strong><strong><a style=\"color: #183859;\" href=\"tel:+3902802921\">+39 02 80 29 21<\/a><\/strong><br \/><strong><a style=\"color: #183859;\" href=\"https:\/\/dils.com\/\" target=\"_blank\" rel=\"noopener\">dils.com<\/a><\/strong><br \/><strong><a style=\"color: #183859;\" href=\"mailto:office@dils.com\">office@dils.com<\/a><\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-22552d5 e-con-full e-flex e-con e-child\" data-id=\"22552d5\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-45956a9 elementor-widget elementor-widget-spacer\" data-id=\"45956a9\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8037c9c elementor-widget elementor-widget-image\" data-id=\"8037c9c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"88\" height=\"39\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/jll-logo-w.svg\" class=\"attachment-full size-full wp-image-85\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7b96bd7 elementor-widget elementor-widget-text-editor\" data-id=\"7b96bd7\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>JLL<\/strong><br \/><strong>C.so Vittorio Emanuele II, 9<\/strong><br \/><strong>20122 Milano (MI)<\/strong><br \/><strong><a style=\"color: #183859;\" href=\"tel:+39 02 85 86 861\">+39 02 85 86 861<\/a><\/strong><br \/><strong><a style=\"color: #183859;\" href=\"https:\/\/www.jll.it\/\" target=\"_blank\" rel=\"noopener\">jll.it<\/a><\/strong><br \/><strong><a style=\"color: #183859;\" href=\"mailto:infoitalia@jll.com\">infoitalia@jll.com<\/a><\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bea0808 e-grid e-con-full e-con e-child\" data-id=\"bea0808\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a0682ac e-con-full e-flex e-con e-child\" data-id=\"a0682ac\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-952cdf1 elementor-widget elementor-widget-heading\" data-id=\"952cdf1\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">Development\n&amp; Asset Management:<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e9bb2db elementor-widget elementor-widget-image\" data-id=\"e9bb2db\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"66\" height=\"69\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/coima-logo-w.svg\" class=\"attachment-full size-full wp-image-78\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4369267 e-con-full e-flex e-con e-child\" data-id=\"4369267\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4dc47dc elementor-widget elementor-widget-heading\" data-id=\"4dc47dc\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default translation-block\">Architectural designer:<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c15aa79 elementor-widget elementor-widget-image\" data-id=\"c15aa79\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"54\" height=\"53\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gla-logo-w.svg\" class=\"attachment-full size-full wp-image-80\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cb16fd5 e-flex e-con-boxed e-con e-parent\" data-id=\"cb16fd5\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0356ac7 e-con-full e-flex e-con e-child\" data-id=\"0356ac7\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4249b11 elementor-widget elementor-widget-text-editor\" data-id=\"4249b11\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container translation-block\">All graphic and textual documentation reported here is purely illustrative and does not constitute a contractual obligation. Energy class A building by design.<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-10ae9aa e-con-full e-flex e-con e-child\" data-id=\"10ae9aa\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-27a182e elementor-widget elementor-widget-text-editor\" data-id=\"27a182e\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><a href=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2025\/06\/Privacy-Policy-e-Cookie-Policy-Silvio-Pellico-EN.pdf\" target=\"_blank\" rel=\"noopener\">Privacy Policy\u00a0 \/\u00a0 Cookie Policy<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Contatti Agenti in Esclusiva: DILSPiazza Armando Diaz, 720123 Milano, Italy+39 02 80 29 21dils.comoffice@dils.com JLLC.so Vittorio Emanuele II, 920122 Milano (MI)+39 02 85 86 861jll.itinfoitalia@jll.com Development &amp; Asset Management: Progettista architettonico: Tutta la documentazione grafica e testuale qui riportata \u00e8 puramente illustrativa e non costituisce vincolo contrattuale. Edificio in classe energetica A da progetto. Privacy [&hellip;]<\/p>","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-413","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/pages\/413","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/comments?post=413"}],"version-history":[{"count":43,"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/pages\/413\/revisions"}],"predecessor-version":[{"id":957,"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/pages\/413\/revisions\/957"}],"wp:attachment":[{"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/media?parent=413"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}