{"id":304,"date":"2024-07-16T10:24:28","date_gmt":"2024-07-16T10:24:28","guid":{"rendered":"https:\/\/pell.postvalidation.blog\/?page_id=304"},"modified":"2025-07-02T10:18:55","modified_gmt":"2025-07-02T10:18:55","slug":"uffici","status":"publish","type":"page","link":"https:\/\/palazzopellico.coima.com\/en\/uffici\/","title":{"rendered":"Offices"},"content":{"rendered":"<div data-elementor-type=\"wp-post\" data-elementor-id=\"304\" class=\"elementor elementor-304\" 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-4fbc728 e-flex e-con-boxed e-con e-parent\" data-id=\"4fbc728\" 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-463c882 e-con-full e-flex e-con e-child\" data-id=\"463c882\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c9edd84 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"c9edd84\" 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<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"36\" height=\"31\" viewbox=\"0 0 36 31\" fill=\"none\"><g clip-path=\"url(#clip0_449_2030)\"><path d=\"M36 0L18 5.39652L0 0L13.7114 12.8317L18 31L22.349 12.8317L36 0Z\" fill=\"white\"><\/path><\/g><defs><clippath id=\"clip0_449_2030\"><rect width=\"36\" height=\"31\" fill=\"white\"><\/rect><\/clippath><\/defs><\/svg>\t\t\t<\/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-35912a9 elementor-widget elementor-widget-heading\" data-id=\"35912a9\" 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 translation-block\">WELCOME TO PALAZZO PELLICO<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8872cea elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"8872cea\" 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<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"36\" height=\"31\" viewbox=\"0 0 36 31\" fill=\"none\"><g clip-path=\"url(#clip0_449_2032)\"><path d=\"M-2.06096e-08 31L18 25.6035L36 31L22.2886 18.1683L18 -1.47318e-06L13.651 18.1683L-2.06096e-08 31Z\" fill=\"white\"><\/path><\/g><defs><clippath id=\"clip0_449_2032\"><rect width=\"36\" height=\"31\" fill=\"white\" transform=\"translate(36 31) rotate(-180)\"><\/rect><\/clippath><\/defs><\/svg>\t\t\t<\/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>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d5857d2 e-flex e-con-boxed e-con e-parent\" data-id=\"d5857d2\" 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-cb82709 e-con-full e-flex e-con e-child\" data-id=\"cb82709\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-15b5cda elementor-widget elementor-widget-heading\" data-id=\"15b5cda\" 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<h2 class=\"elementor-heading-title elementor-size-default\">COMFORTABLE, ELEGANT OFFICES<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bfb04ca elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"bfb04ca\" 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<div class=\"elementor-element elementor-element-3d05371 e-grid e-con-full e-con e-child\" data-id=\"3d05371\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-87eaed8 e-con-full e-flex e-con e-child\" data-id=\"87eaed8\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1823ef0 elementor-widget elementor-widget-text-editor\" data-id=\"1823ef0\" 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 class=\"translation-block\">At Palazzo Pellico, the design of each floor is rooted in <strong>efficiency and flexibility.<\/strong>\nA composition of <strong>modern, customisable layouts<\/strong> meets the tenant\u2019s every need. <strong>Retail spaces, private offices and panoramic terraces<\/strong> are the hallmarks of the project.<\/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 class=\"elementor-element elementor-element-4a275d5 elementor-widget elementor-widget-image\" data-id=\"4a275d5\" 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=\"659\" height=\"544\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici2.webp\" class=\"attachment-full size-full wp-image-70\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici2.webp 659w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici2-300x248.webp 300w\" sizes=\"(max-width: 659px) 100vw, 659px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-302d10b e-flex e-con-boxed e-con e-parent\" data-id=\"302d10b\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b9b7ffc elementor-arrows-position-inside elementor-widget elementor-widget-n-carousel\" data-id=\"b9b7ffc\" data-element_type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;fd66055&quot;},{&quot;slide_title&quot;:&quot;Slide #2&quot;,&quot;_id&quot;:&quot;9601fc8&quot;},{&quot;slide_title&quot;:&quot;Slide #3&quot;,&quot;_id&quot;:&quot;58e23a6&quot;}],&quot;slides_to_show&quot;:&quot;1&quot;,&quot;slides_to_show_tablet&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carosello\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 3\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-51faaa0 e-flex e-con-boxed e-con e-child\" data-id=\"51faaa0\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a03d5f elementor-widget elementor-widget-image\" data-id=\"5a03d5f\" 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=\"1920\" height=\"1282\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-02.jpg\" class=\"attachment-full size-full wp-image-307\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-02.jpg 1920w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-02-300x200.jpg 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-02-1024x684.jpg 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-02-768x513.jpg 768w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-02-1536x1026.jpg 1536w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-02-18x12.jpg 18w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 3\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7878252 e-flex e-con-boxed e-con e-child\" data-id=\"7878252\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-42604c6 elementor-widget elementor-widget-image\" data-id=\"42604c6\" 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=\"1920\" height=\"1276\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-03.jpg\" class=\"attachment-full size-full wp-image-308\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-03.jpg 1920w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-03-300x199.jpg 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-03-1024x681.jpg 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-03-768x510.jpg 768w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-03-1536x1021.jpg 1536w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-03-18x12.jpg 18w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 3\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2a68f80 e-flex e-con-boxed e-con e-child\" data-id=\"2a68f80\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4d24c69 elementor-widget elementor-widget-image\" data-id=\"4d24c69\" 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=\"1920\" height=\"1283\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-01.jpg\" class=\"attachment-full size-full wp-image-306\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-01.jpg 1920w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-01-300x200.jpg 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-01-1024x684.jpg 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-01-768x513.jpg 768w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-01-1536x1026.jpg 1536w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/gallery-uffici-01-18x12.jpg 18w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"46\" height=\"46\" viewbox=\"0 0 46 46\" fill=\"none\"><rect width=\"46\" height=\"46\" rx=\"23\" fill=\"#183859\"><\/rect><g clip-path=\"url(#clip0_449_2671)\"><path d=\"M30 33L26.5184 22.5L30 12L21.7215 19.9983L10 22.5L21.7215 25.0369L30 33Z\" fill=\"white\"><\/path><\/g><defs><clippath id=\"clip0_449_2671\"><rect width=\"21\" height=\"20\" fill=\"white\" transform=\"translate(30 12) rotate(90)\"><\/rect><\/clippath><\/defs><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"46\" height=\"46\" viewbox=\"0 0 46 46\" fill=\"none\"><rect x=\"46\" y=\"46\" width=\"46\" height=\"46\" rx=\"23\" transform=\"rotate(-180 46 46)\" fill=\"#183859\"><\/rect><g clip-path=\"url(#clip0_449_2675)\"><path d=\"M16 13L19.4816 23.5L16 34L24.2785 26.0017L36 23.5L24.2785 20.9631L16 13Z\" fill=\"white\"><\/path><\/g><defs><clippath id=\"clip0_449_2675\"><rect width=\"21\" height=\"20\" fill=\"white\" transform=\"translate(16 34) rotate(-90)\"><\/rect><\/clippath><\/defs><\/svg>\t\t\t<\/div>\n\t\t\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-90542e1 e-flex e-con-boxed e-con e-parent\" data-id=\"90542e1\" 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-2c9d16e e-con-full e-flex e-con e-child\" data-id=\"2c9d16e\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c79adaf elementor-widget elementor-widget-heading\" data-id=\"c79adaf\" 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<h2 class=\"elementor-heading-title elementor-size-default\">CONTEMPORARY DESIGN AND FLEXIBLE BUSINESS ENVIRONMENTS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-434ef75 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"434ef75\" 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<div class=\"elementor-element elementor-element-ccf9b49 e-grid e-con-full e-con e-child\" data-id=\"ccf9b49\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-033d2d1 elementor-widget elementor-widget-image\" data-id=\"033d2d1\" 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=\"660\" height=\"397\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici6.webp\" class=\"attachment-full size-full wp-image-74\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici6.webp 660w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici6-300x180.webp 300w\" sizes=\"(max-width: 660px) 100vw, 660px\" \/>\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-6aacb34 e-con-full e-flex e-con e-child\" data-id=\"6aacb34\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2292789 elementor-widget elementor-widget-text-editor\" data-id=\"2292789\" 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 class=\"translation-block\">The spaces are organised to be <strong>versatile and modular,<\/strong> meeting the various needs of daily living. There are open spaces with views of the <strong>Duomo and the Galleria<\/strong>, more secluded spaces for moments such as meetings, and <strong>boardrooms<\/strong> combining functionality and design.<\/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\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-706f6ff e-flex e-con-boxed e-con e-parent\" data-id=\"706f6ff\" 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-800fbfb e-con-full e-flex e-con e-child\" data-id=\"800fbfb\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6803ff3 elementor-widget elementor-widget-heading\" data-id=\"6803ff3\" 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<h2 class=\"elementor-heading-title elementor-size-default\">CHARM AND ELEGANCE WITH A VIEW OF THE DUOMO<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d73b5c elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"0d73b5c\" 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<div class=\"elementor-element elementor-element-2e2fc89 e-grid e-con-full e-con e-child\" data-id=\"2e2fc89\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2f2b5a1 e-con-full e-flex e-con e-child\" data-id=\"2f2b5a1\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4242fe8 elementor-widget elementor-widget-text-editor\" data-id=\"4242fe8\" 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 class=\"translation-block\">The building comprises a magnificentil suo sguardo\u2028direttamente sulla cupola della <strong> rooftop<\/strong>  overlooking the city\u2019s most iconic landmarks, particularly the dome of <strong> Galleria Vittorio Emanuele II and the Duomo<\/strong> . The furnishings, seating and stylishly designed greenery make this an ideal space promoting the user\u2019s <strong> wellbeing.<\/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-b2c2107 e-con-full e-flex e-con e-child\" data-id=\"b2c2107\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bb47cc2 elementor-widget elementor-widget-image\" data-id=\"bb47cc2\" 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=\"1344\" height=\"813\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici8.webp\" class=\"attachment-full size-full wp-image-76\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici8.webp 1344w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici8-300x181.webp 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici8-1024x619.webp 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/uffici8-768x465.webp 768w\" sizes=\"(max-width: 1344px) 100vw, 1344px\" \/>\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-0670b05 elementor-widget elementor-widget-button\" data-id=\"0670b05\" 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=359\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"20\" height=\"21\" viewbox=\"0 0 20 21\" fill=\"none\"><path d=\"M-9.17939e-07 -2.48851e-07L3.48162 10.5L0 21L8.27853 13.0017L20 10.5L8.27853 7.96309L-9.17939e-07 -2.48851e-07Z\" fill=\"white\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">CHECK OUT THE GALLERY<\/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 class=\"elementor-element elementor-element-be529cb elementor-widget elementor-widget-text-editor\" data-id=\"be529cb\" 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 class=\"translation-block\">The <strong>6th-floor terrace communicates<\/strong> with the boardroom, creating a sense of indoor-outdoor continuity and offering wonderful views of some of the city\u2019s most strategic attractions, such as <strong>Teatro alla Scala and the Castello Sforzesco.<\/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\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5eada18 e-flex e-con-boxed e-con e-parent\" data-id=\"5eada18\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-181e01d elementor-widget elementor-widget-image\" data-id=\"181e01d\" 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=\"1920\" height=\"1162\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/img-office.jpg\" class=\"attachment-full size-full wp-image-336\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/img-office.jpg 1920w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/img-office-300x182.jpg 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/img-office-1024x620.jpg 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/img-office-768x465.jpg 768w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/img-office-1536x930.jpg 1536w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/img-office-18x12.jpg 18w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2ba238f e-flex e-con-boxed e-con e-parent\" data-id=\"2ba238f\" 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-dc63bcd e-con-full e-flex e-con e-child\" data-id=\"dc63bcd\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aefd68b elementor-widget elementor-widget-heading\" data-id=\"aefd68b\" 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<h2 class=\"elementor-heading-title elementor-size-default\">FLOOR PLANS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b6aca98 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"b6aca98\" 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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-85ab256 e-con-full e-flex e-con e-parent\" data-id=\"85ab256\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1a3e499 elementor-arrows-position-inside elementor-widget elementor-widget-n-carousel\" data-id=\"1a3e499\" data-element_type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;fd66055&quot;},{&quot;_id&quot;:&quot;10cec4a&quot;,&quot;slide_title&quot;:&quot;Slide #2&quot;},{&quot;_id&quot;:&quot;140e99f&quot;,&quot;slide_title&quot;:&quot;Slide #3&quot;},{&quot;_id&quot;:&quot;a506834&quot;,&quot;slide_title&quot;:&quot;Slide #4&quot;},{&quot;_id&quot;:&quot;02a8862&quot;,&quot;slide_title&quot;:&quot;Slide #5&quot;},{&quot;_id&quot;:&quot;1561798&quot;,&quot;slide_title&quot;:&quot;Slide #6&quot;}],&quot;slides_to_show&quot;:&quot;1&quot;,&quot;slides_to_show_tablet&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carosello\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e1c6d0f e-flex e-con-boxed e-con e-child\" data-id=\"e1c6d0f\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6a212b2 elementor-widget elementor-widget-image\" data-id=\"6a212b2\" 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\/wp-content\/uploads\/2024\/10\/pt.jpg\" data-elementor-open-lightbox=\"yes\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODczLCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvcHQuanBnIn0%3D\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"900\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/pt.jpg\" class=\"attachment-full size-full wp-image-873\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/pt.jpg 1920w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/pt-300x141.jpg 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/pt-1024x480.jpg 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/pt-768x360.jpg 768w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/pt-1536x720.jpg 1536w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/pt-18x8.jpg 18w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\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<div class=\"elementor-element elementor-element-f4c762a e-grid e-con-full e-con e-child\" data-id=\"f4c762a\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-700bb33 elementor-widget elementor-widget-image\" data-id=\"700bb33\" 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=\"800\" height=\"62\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/pt-p2.svg\" class=\"attachment-large size-large wp-image-850\" 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-356498d elementor-widget elementor-widget-image\" data-id=\"356498d\" 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=\"800\" height=\"134\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/pt-p1.svg\" class=\"attachment-large size-large wp-image-849\" 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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-08864d2 e-flex e-con-boxed e-con e-child\" data-id=\"08864d2\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4fc3c0a e-con-full e-flex e-con e-child\" data-id=\"4fc3c0a\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b16458 elementor-widget elementor-widget-image\" data-id=\"9b16458\" 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\/wp-content\/uploads\/2024\/10\/p1.jpg\" data-elementor-open-lightbox=\"yes\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODY5LCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvcDEuanBnIn0%3D\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"900\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p1.jpg\" class=\"attachment-full size-full wp-image-869\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p1.jpg 1920w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p1-300x141.jpg 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p1-1024x480.jpg 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p1-768x360.jpg 768w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p1-1536x720.jpg 1536w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p1-18x8.jpg 18w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\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<div class=\"elementor-element elementor-element-e3097f9 e-grid e-con-full e-con e-child\" data-id=\"e3097f9\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-212193d elementor-widget elementor-widget-image\" data-id=\"212193d\" 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=\"750\" height=\"58\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p1-p2.svg\" class=\"attachment-full size-full wp-image-842\" 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-85b0082 elementor-widget elementor-widget-image\" data-id=\"85b0082\" 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=\"750\" height=\"126\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p1-p1.svg\" class=\"attachment-full size-full wp-image-841\" 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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-fdc6e8b e-flex e-con-boxed e-con e-child\" data-id=\"fdc6e8b\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4b35654 e-con-full e-flex e-con e-child\" data-id=\"4b35654\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5e43623 elementor-widget elementor-widget-image\" data-id=\"5e43623\" 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\/wp-content\/uploads\/2024\/10\/p3.jpg\" data-elementor-open-lightbox=\"yes\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODcxLCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvcDMuanBnIn0%3D\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"900\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3.jpg\" class=\"attachment-full size-full wp-image-871\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3.jpg 1920w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-300x141.jpg 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-1024x480.jpg 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-768x360.jpg 768w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-1536x720.jpg 1536w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-18x8.jpg 18w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\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<div class=\"elementor-element elementor-element-43b2476 e-grid e-con-full e-con e-child\" data-id=\"43b2476\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5874d76 elementor-widget elementor-widget-image\" data-id=\"5874d76\" 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=\"750\" height=\"58\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p2-p2.svg\" class=\"attachment-full size-full wp-image-844\" 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-38dc8f2 elementor-widget elementor-widget-image\" data-id=\"38dc8f2\" 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=\"750\" height=\"125\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p2-p1.svg\" class=\"attachment-full size-full wp-image-843\" 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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"4\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-36a1817 e-flex e-con-boxed e-con e-child\" data-id=\"36a1817\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d6aed92 elementor-widget elementor-widget-image\" data-id=\"d6aed92\" 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\/wp-content\/uploads\/2024\/10\/p3.jpg\" data-elementor-open-lightbox=\"yes\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODcxLCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvcDMuanBnIn0%3D\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"900\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3.jpg\" class=\"attachment-full size-full wp-image-871\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3.jpg 1920w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-300x141.jpg 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-1024x480.jpg 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-768x360.jpg 768w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-1536x720.jpg 1536w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-18x8.jpg 18w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\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<div class=\"elementor-element elementor-element-e2b588c e-grid e-con-full e-con e-child\" data-id=\"e2b588c\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ff07cac elementor-widget elementor-widget-image\" data-id=\"ff07cac\" 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=\"749\" height=\"58\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-p2.svg\" class=\"attachment-full size-full wp-image-846\" 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-d8d9152 elementor-widget elementor-widget-image\" data-id=\"d8d9152\" 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=\"749\" height=\"127\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p3-p1.svg\" class=\"attachment-full size-full wp-image-845\" 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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"5\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6e9df95 e-flex e-con-boxed e-con e-child\" data-id=\"6e9df95\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f469171 elementor-widget elementor-widget-image\" data-id=\"f469171\" 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\/wp-content\/uploads\/2024\/10\/p4.jpg\" data-elementor-open-lightbox=\"yes\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODcyLCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvcDQuanBnIn0%3D\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"900\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p4.jpg\" class=\"attachment-full size-full wp-image-872\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p4.jpg 1920w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p4-300x141.jpg 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p4-1024x480.jpg 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p4-768x360.jpg 768w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p4-1536x720.jpg 1536w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p4-18x8.jpg 18w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\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<div class=\"elementor-element elementor-element-7af5933 e-grid e-con-full e-con e-child\" data-id=\"7af5933\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-62b2e91 elementor-widget elementor-widget-image\" data-id=\"62b2e91\" 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=\"755\" height=\"58\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p6-p2.svg\" class=\"attachment-full size-full wp-image-848\" 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-17c6689 elementor-widget elementor-widget-image\" data-id=\"17c6689\" 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=\"755\" height=\"128\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/p6-p1.svg\" class=\"attachment-full size-full wp-image-847\" 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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"6\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 6\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-319cafe e-flex e-con-boxed e-con e-child\" data-id=\"319cafe\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3ed681f elementor-widget elementor-widget-image\" data-id=\"3ed681f\" 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\/wp-content\/uploads\/2024\/10\/rooftop.jpg\" data-elementor-open-lightbox=\"yes\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODc0LCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8xMFwvcm9vZnRvcC5qcGcifQ%3D%3D\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"900\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/rooftop.jpg\" class=\"attachment-full size-full wp-image-874\" alt=\"\" srcset=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/rooftop.jpg 1920w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/rooftop-300x141.jpg 300w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/rooftop-1024x480.jpg 1024w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/rooftop-768x360.jpg 768w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/rooftop-1536x720.jpg 1536w, https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/rooftop-18x8.jpg 18w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\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<div class=\"elementor-element elementor-element-42fb824 e-grid e-con-full e-con e-child\" data-id=\"42fb824\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ce294f7 elementor-widget elementor-widget-image\" data-id=\"ce294f7\" 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=\"755\" height=\"58\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/roof-p2.svg\" class=\"attachment-full size-full wp-image-852\" 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-7ca07f9 elementor-widget elementor-widget-image\" data-id=\"7ca07f9\" 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=\"755\" height=\"39\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/10\/roof-p1.svg\" class=\"attachment-full size-full wp-image-851\" 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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"46\" height=\"46\" viewbox=\"0 0 46 46\" fill=\"none\"><rect width=\"46\" height=\"46\" rx=\"23\" fill=\"#183859\"><\/rect><g clip-path=\"url(#clip0_449_2671)\"><path d=\"M30 33L26.5184 22.5L30 12L21.7215 19.9983L10 22.5L21.7215 25.0369L30 33Z\" fill=\"white\"><\/path><\/g><defs><clippath id=\"clip0_449_2671\"><rect width=\"21\" height=\"20\" fill=\"white\" transform=\"translate(30 12) rotate(90)\"><\/rect><\/clippath><\/defs><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"46\" height=\"46\" viewbox=\"0 0 46 46\" fill=\"none\"><rect x=\"46\" y=\"46\" width=\"46\" height=\"46\" rx=\"23\" transform=\"rotate(-180 46 46)\" fill=\"#183859\"><\/rect><g clip-path=\"url(#clip0_449_2675)\"><path d=\"M16 13L19.4816 23.5L16 34L24.2785 26.0017L36 23.5L24.2785 20.9631L16 13Z\" fill=\"white\"><\/path><\/g><defs><clippath id=\"clip0_449_2675\"><rect width=\"21\" height=\"20\" fill=\"white\" transform=\"translate(16 34) rotate(-90)\"><\/rect><\/clippath><\/defs><\/svg>\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-46d35c1 e-con-full e-flex e-con e-parent\" data-id=\"46d35c1\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-96533fb elementor-widget elementor-widget-template\" data-id=\"96533fb\" 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=\"224\" class=\"elementor elementor-224\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-4d76659 e-flex e-con-boxed e-con e-parent\" data-id=\"4d76659\" 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-c7639f2 e-con-full e-flex e-con e-child\" data-id=\"c7639f2\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8b8477f elementor-widget elementor-widget-image\" data-id=\"8b8477f\" 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 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\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-c1a0729 e-con-full e-flex e-con e-child\" data-id=\"c1a0729\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f6d800c elementor-widget elementor-widget-heading\" data-id=\"f6d800c\" 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 &amp;\nAsset Management:<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d29a3b2 elementor-widget elementor-widget-image\" data-id=\"d29a3b2\" 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:\/\/coima.com\/it\/homepage\" target=\"_blank\">\n\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<\/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-dfbb05b e-con-full e-flex e-con e-child\" data-id=\"dfbb05b\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4886126 elementor-widget elementor-widget-heading\" data-id=\"4886126\" 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-13d4a06 elementor-widget elementor-widget-image\" data-id=\"13d4a06\" 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<div class=\"elementor-element elementor-element-946f391 e-con-full e-flex e-con e-child\" data-id=\"946f391\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c9aa9d3 elementor-widget elementor-widget-heading\" data-id=\"c9aa9d3\" 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>\n\t\t<div class=\"elementor-element elementor-element-de62ae5 e-con-full e-flex e-con e-child\" data-id=\"de62ae5\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0cf93bb elementor-widget elementor-widget-image\" data-id=\"0cf93bb\" 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-1bfa12a elementor-widget elementor-widget-text-editor\" data-id=\"1bfa12a\" 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>DILS <br \/>Piazza Armando Diaz, 7 <br \/>20123 Milano, Italy <br \/><a href=\"tel:+3902802921\">+39 02 80 29 21<\/a> <br \/><a href=\"https:\/\/dils.com\/\" target=\"_blank\" rel=\"noopener\">dils.com<\/a> <br \/><a href=\"mailto:office@dils.com\">office@dils.com<\/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<div class=\"elementor-element elementor-element-2f5e34f e-con-full e-flex e-con e-child\" data-id=\"2f5e34f\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dfcd83b elementor-widget elementor-widget-image\" data-id=\"dfcd83b\" 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-517e3c3 elementor-widget elementor-widget-text-editor\" data-id=\"517e3c3\" 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>JLL <br \/>C.so Vittorio Emanuele II, 9<br \/>20122 Milano (MI)<br \/><a href=\"tel:+39 02 85 86 861\">+39 02 85 86 861<\/a> <br \/><a href=\"https:\/\/www.jll.it\/\" target=\"_blank\" rel=\"noopener\">jll.it<\/a><br \/><a href=\"mailto:infoitalia@jll.com\">infoitalia@jll.com<\/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<div class=\"elementor-element elementor-element-a19be60 e-flex e-con-boxed e-con e-parent\" data-id=\"a19be60\" 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-8519576 e-con-full e-flex e-con e-child\" data-id=\"8519576\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-61da199 elementor-widget elementor-widget-text-editor\" data-id=\"61da199\" 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 class=\"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.<\/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-2eab281 e-con-full e-flex e-con e-child\" data-id=\"2eab281\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-84fe1ca elementor-widget elementor-widget-text-editor\" data-id=\"84fe1ca\" 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>\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\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>BENVENUTI IN PALAZZO PELLICO UFFICI CONFORTEVOLI ED ELEGANTI In Palazzo Pellico, la progettazione di ogni piano segue le logiche dell\u2019efficienza e della flessibilit\u00e0.Una composizione di ambienti moderni e personalizzabili nel layout per soddisfare ogni esigenza e necessit\u00e0 dei tenant. Spazi retail, uffici privati e terrazze panoramiche rappresentano gli sviluppi essenziali del progetto. Design contemporaneo e [&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-304","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/pages\/304","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=304"}],"version-history":[{"count":139,"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/pages\/304\/revisions"}],"predecessor-version":[{"id":946,"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/pages\/304\/revisions\/946"}],"wp:attachment":[{"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/media?parent=304"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}