{"id":359,"date":"2024-07-16T11:25:23","date_gmt":"2024-07-16T11:25:23","guid":{"rendered":"https:\/\/pell.postvalidation.blog\/?page_id=359"},"modified":"2024-10-15T14:26:25","modified_gmt":"2024-10-15T14:26:25","slug":"gallery","status":"publish","type":"page","link":"https:\/\/palazzopellico.coima.com\/en\/gallery\/","title":{"rendered":"Gallery"},"content":{"rendered":"<div data-elementor-type=\"wp-post\" data-elementor-id=\"359\" class=\"elementor elementor-359\" 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-ec07413 e-grid e-con-full e-con e-child\" data-id=\"ec07413\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0640aaa e-con-full e-flex e-con e-child\" data-id=\"0640aaa\" 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<h2 class=\"elementor-heading-title elementor-size-default\">CHECK OUT THE EXTERIOR<\/h2>\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 class=\"elementor-element elementor-element-36da193 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-image-carousel\" data-id=\"36da193\" data-element_type=\"widget\" data-settings=\"{&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Image Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 4\"><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"36da193\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDU0LCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wN1wvcGFsYXp6by1wZWxsaWNvLWctMTEud2VicCIsInNsaWRlc2hvdyI6IjM2ZGExOTMifQ%3D%3D\" href=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-11.webp\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-11-150x150.webp\" alt=\"\" \/><\/figure><\/a><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 4\"><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"36da193\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUwLCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wN1wvcGFsYXp6by1wZWxsaWNvLWctNy53ZWJwIiwic2xpZGVzaG93IjoiMzZkYTE5MyJ9\" href=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-7.webp\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-7-150x150.webp\" alt=\"\" \/><\/figure><\/a><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 4\"><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"36da193\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUyLCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wN1wvcGFsYXp6by1wZWxsaWNvLWctOS53ZWJwIiwic2xpZGVzaG93IjoiMzZkYTE5MyJ9\" href=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-9.webp\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-9-150x150.webp\" alt=\"\" \/><\/figure><\/a><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 4\"><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"36da193\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUxLCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wN1wvcGFsYXp6by1wZWxsaWNvLWctOC53ZWJwIiwic2xpZGVzaG93IjoiMzZkYTE5MyJ9\" href=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-8.webp\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-8-150x150.webp\" alt=\"\" \/><\/figure><\/a><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewbox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewbox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\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 class=\"elementor-element elementor-element-391eab6 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"391eab6\" 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\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-1.webp\" data-elementor-lightbox-slideshow=\"54c0c53\">\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\">BROWSE THROUGH 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>\n\t\t<div class=\"elementor-element elementor-element-2a75841 e-con-full e-flex e-con e-child\" data-id=\"2a75841\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-50dec3a elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"50dec3a\" 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-968bc48 elementor-widget elementor-widget-heading\" data-id=\"968bc48\" 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\">CHECK OUT THE INTERIORS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8f5d59e elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"8f5d59e\" 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 class=\"elementor-element elementor-element-54c0c53 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-image-carousel\" data-id=\"54c0c53\" data-element_type=\"widget\" data-settings=\"{&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Image Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 4\"><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"54c0c53\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQ3LCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wN1wvcGFsYXp6by1wZWxsaWNvLWctNC53ZWJwIiwic2xpZGVzaG93IjoiNTRjMGM1MyJ9\" href=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-4.webp\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-4-150x150.webp\" alt=\"\" \/><\/figure><\/a><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 4\"><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"54c0c53\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQ5LCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wN1wvcGFsYXp6by1wZWxsaWNvLWctNi53ZWJwIiwic2xpZGVzaG93IjoiNTRjMGM1MyJ9\" href=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-6.webp\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-6-150x150.webp\" alt=\"\" \/><\/figure><\/a><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 4\"><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"54c0c53\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQ1LCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wN1wvcGFsYXp6by1wZWxsaWNvLWctMi53ZWJwIiwic2xpZGVzaG93IjoiNTRjMGM1MyJ9\" href=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-2.webp\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-2-150x150.webp\" alt=\"\" \/><\/figure><\/a><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 4\"><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"54c0c53\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDUzLCJ1cmwiOiJodHRwczpcL1wvcGFsYXp6b3BlbGxpY28uY29pbWEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wN1wvcGFsYXp6by1wZWxsaWNvLWctMTAud2VicCIsInNsaWRlc2hvdyI6IjU0YzBjNTMifQ%3D%3D\" href=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-10.webp\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/palazzopellico.coima.com\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-10-150x150.webp\" alt=\"\" \/><\/figure><\/a><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewbox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewbox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\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 class=\"elementor-element elementor-element-2fb409a elementor-align-center elementor-widget elementor-widget-button\" data-id=\"2fb409a\" 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\/wp-content\/uploads\/2024\/07\/palazzo-pellico-g-13.webp\" data-elementor-lightbox-slideshow=\"36da193\">\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\">BROWSE THROUGH 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>\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-8c97a08 e-flex e-con-boxed e-con e-parent\" data-id=\"8c97a08\" 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\t\t<div class=\"elementor-element elementor-element-a2c368b elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"a2c368b\" 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 class=\"elementor-element elementor-element-953eb96 elementor-widget elementor-widget-video\" data-id=\"953eb96\" data-element_type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;vimeo&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<iframe class=\"elementor-video-iframe\" allowfullscreen allow=\"clipboard-write\" title=\"vimeo Video Player\" src=\"https:\/\/player.vimeo.com\/video\/984795407?color&amp;autopause=0&amp;loop=0&amp;muted=0&amp;title=1&amp;portrait=1&amp;byline=1&amp;h=2ce2e10ebe#t=\"><\/iframe>\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-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 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>SCOPRI GLI ESTERNI SFOGLIA LA GALLERY SCOPRI GLI INTERNI SFOGLIA LA GALLERY<\/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-359","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/pages\/359","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=359"}],"version-history":[{"count":55,"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/pages\/359\/revisions"}],"predecessor-version":[{"id":839,"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/pages\/359\/revisions\/839"}],"wp:attachment":[{"href":"https:\/\/palazzopellico.coima.com\/en\/wp-json\/wp\/v2\/media?parent=359"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}