{"id":1015,"date":"2026-02-19T16:08:13","date_gmt":"2026-02-19T16:08:13","guid":{"rendered":"https:\/\/hotelaurora.etruriacollection.com\/?page_id=1015"},"modified":"2026-05-28T07:38:47","modified_gmt":"2026-05-28T07:38:47","slug":"home-2","status":"publish","type":"page","link":"https:\/\/times.etruriacollection.com\/en\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1015\" class=\"elementor elementor-1015\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c10d341 e-con-full hero-swipe e-flex e-con e-parent\" data-id=\"c10d341\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-9fcd8a7 hero-swipe__pin e-con-full e-flex e-con e-child\" data-id=\"9fcd8a7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-37cb6ec elementor-widget elementor-widget-image\" data-id=\"37cb6ec\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"616\" height=\"169\" src=\"https:\/\/times.etruriacollection.com\/wp-content\/uploads\/2026\/02\/TimesSuites-LogoBianco.svg\" class=\"attachment-full size-full wp-image-1057\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-81a7424 elementor-widget elementor-widget-image\" data-id=\"81a7424\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1\" height=\"163\" src=\"https:\/\/times.etruriacollection.com\/wp-content\/uploads\/2026\/02\/Linea-1.svg\" class=\"attachment-full size-full wp-image-48\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9ad4f55 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"9ad4f55\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Guest House di Design nel Centro Storico di Perugia<\/h2>\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-5f43254 e-flex e-con-boxed e-con e-parent\" data-id=\"5f43254\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2f800bf elementor-widget elementor-widget-html\" data-id=\"2f800bf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\n(function(){\n  function clamp(v,min,max){ return Math.max(min, Math.min(max, v)); }\n\n  function init(){\n    const hero = document.querySelector('.hero-swipe');\n    if(!hero) return;\n\n    const pin = hero.querySelector('.hero-swipe__pin');\n    if(!pin) return;\n\n    function getPanelPx(){\n      const panelW = getComputedStyle(hero).getPropertyValue('--panelW').trim();\n\n      let panelPx;\n      if (panelW.endsWith('vw')) {\n        panelPx = (parseFloat(panelW) \/ 100) * window.innerWidth;\n      } else if (panelW.endsWith('px')) {\n        panelPx = parseFloat(panelW);\n      } else {\n        panelPx = window.innerWidth * 0.35;\n      }\n      return panelPx;\n    }\n\n    function setFixed(){\n      const heroRect = hero.getBoundingClientRect();\n      pin.classList.add('is-fixed');\n\n      pin.style.left  = heroRect.left + 'px';\n      pin.style.width = heroRect.width + 'px';\n      pin.style.top   = '0px';\n\n      pin.style.removeProperty('position');\n    }\n\n    function setAbsolute(topPx){\n      pin.classList.remove('is-fixed');\n\n      pin.style.left = '0px';\n      pin.style.width = '100%';\n      pin.style.position = 'absolute';\n      pin.style.top = topPx + 'px';\n    }\n\n    function setMobileNormal(){\n      \/\/ \u2705 su mobile: sezione normale, niente pin, niente blocchi\n      pin.classList.remove('is-fixed');\n      pin.style.position = 'relative';\n      pin.style.top = 'auto';\n      pin.style.left = 'auto';\n      pin.style.width = '100%';\n\n      \/\/ immagine ferma al centro\n      hero.style.setProperty('--move', '0px');\n    }\n\n    function update(){\n      const isMobile = window.matchMedia('(max-width: 768px)').matches;\n\n      \/\/ \u2705 MOBILE: stop totale pin + animazione\n      if (isMobile){\n        setMobileNormal();\n        return;\n      }\n\n      \/\/ \u2705 DESKTOP: tutto come prima\n      const y = window.scrollY;\n\n      const heroRect = hero.getBoundingClientRect();\n      const start = y + heroRect.top;\n\n      const heroH = hero.offsetHeight;\n      const vh = window.innerHeight;\n      const end = start + heroH - vh;\n\n      const denom = (end - start) || 1;\n      const p = clamp((y - start) \/ denom, 0, 1);\n\n      const panelPx = getPanelPx();\n\n      \/\/ DESKTOP SPECCHIATO: parte a DESTRA (+panelPx) e rientra a 0\n      hero.style.setProperty('--move', (panelPx * (1 - p)) + 'px');\n\n      if (y < start){\n        setAbsolute(0);\n        hero.style.setProperty('--move', panelPx + 'px');\n      }\n      else if (y >= start && y <= end){\n        setFixed();\n      }\n      else{\n        setAbsolute(heroH - vh);\n        hero.style.setProperty('--move', '0px');\n      }\n    }\n\n    let ticking = false;\n    function onScroll(){\n      if(ticking) return;\n      ticking = true;\n      requestAnimationFrame(function(){\n        update();\n        ticking = false;\n      });\n    }\n\n    window.addEventListener('scroll', onScroll, {passive:true});\n    window.addEventListener('resize', update);\n    update();\n  }\n\n  if (document.readyState === 'loading'){\n    document.addEventListener('DOMContentLoaded', function(){\n      setTimeout(init, 150);\n      setTimeout(init, 700);\n    });\n  } else {\n    setTimeout(init, 150);\n    setTimeout(init, 700);\n  }\n})();\n<\/script>\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-2b1d8de e-con-full e-flex e-con e-parent\" data-id=\"2b1d8de\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cdfbfda elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"cdfbfda\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Etruria collection<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-61d5bb8 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"61d5bb8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Times Suites<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-573aa45 e-con-full e-flex e-con e-parent\" data-id=\"573aa45\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-28d93da elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"28d93da\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p data-start=\"722\" data-end=\"902\">Times Suites nasce da un\u2019attenta e profonda ristrutturazione in chiave moderna che ha trasformato uno spazio storico in una <strong data-start=\"846\" data-end=\"901\">guest house di design nel centro storico di Perugia<\/strong>.<\/p><p data-start=\"904\" data-end=\"1056\">Arredi contemporanei si fondono con elementi medievali come travi in legno e pietre a vista, creando un ambiente raffinato, intimo e ricco di carattere.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fc7b5e5 e-con-full e-flex e-con e-child\" data-id=\"fc7b5e5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f53691 elementor-position-inline-start elementor-widget-mobile__width-initial elementor-mobile-position-inline-start elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"7f53691\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"660\" height=\"660\" viewBox=\"0 0 660 660\" fill=\"none\"><g clip-path=\"url(#clip0_2293_2)\"><mask id=\"mask0_2293_2\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"660\" height=\"660\"><path d=\"M660 0H0V660H660V0Z\" fill=\"white\"><\/path><\/mask><g mask=\"url(#mask0_2293_2)\"><path d=\"M330 660C253.24 660 181.31 634.36 121.97 585.86C121.56 585.52 121.14 585.21 120.72 584.89C120.44 584.68 120.15 584.47 119.88 584.24C113.55 578.98 107.44 573.21 101.77 567.77C100.9 566.93 100.02 566.11 99.1398 565.3C97.8998 564.16 96.6698 563.02 95.4898 561.81C94.7498 561.06 93.9798 560.36 93.2098 559.65C92.5498 559.05 91.8898 558.46 91.2698 557.81C88.7897 555.21 86.5098 552.48 84.0998 549.59C82.8398 548.08 81.5798 546.57 80.2898 545.08L78.0798 542.55C76.6498 540.93 75.2298 539.31 73.8698 537.64C69.5898 532.39 65.2698 526.61 59.8498 518.9L58.1298 516.47C57.0798 515 56.0198 513.52 55.0198 512.01C50.9098 505.84 46.7598 499.01 42.3198 491.13L41.2898 489.32C40.3998 487.75 39.4998 486.18 38.6498 484.58C34.9798 477.71 31.4998 470.47 27.9798 462.46L27.7298 461.89C26.7398 459.63 25.7398 457.38 24.7898 455.1C21.9398 448.15 19.2998 440.94 16.7298 433.1C15.6798 429.92 14.6598 426.77 13.7098 423.57C11.7798 417.01 9.98973 410.05 8.38973 402.92C7.36973 398.43 6.51973 394.34 5.77973 390.38C4.67973 384.38 3.73973 378.26 2.91973 371.67C2.22973 366.28 1.70973 361.26 1.31973 356.29C0.899727 350.88 0.609727 345.26 0.439727 339.08C0.399727 337.61 0.299727 336.17 0.199727 334.71C0.0897266 333.14 -0.0302734 331.57 -0.0302734 329.97C-0.0302734 328.61 0.0697266 327.28 0.169727 325.94C0.259727 324.61 0.349727 323.27 0.389727 321.92C0.419727 320.62 0.389727 319.33 0.369727 318.04C0.339727 316.76 0.309727 315.48 0.369727 314.18C0.439727 312.59 0.629727 311.04 0.809727 309.49C0.969727 308.08 1.13973 306.67 1.23973 305.25C1.69973 299.08 2.21973 293.69 2.83973 288.77C3.35973 284.67 4.03973 280.23 4.91973 275.2C6.18973 267.63 7.54973 260.81 9.07973 254.31C9.43973 252.8 9.84973 251.28 10.2498 249.74L10.5098 248.77C26.7698 184.9 61.4898 127.88 110.93 83.8C160.77 39.43 221.92 11.48 287.8 3.01C288.84 2.87 289.83 2.71 290.83 2.54C291.84 2.37 292.84 2.2 293.86 2.08C297.59 1.67 301.4 1.48 305.44 1.27C306.98 1.19 308.51 1.11 310.05 1.02C311.88 0.91 313.69 0.76 315.5 0.61C318.68 0.34 321.67 0.09 324.69 0.05C325.18 0.05 325.59 0.07 326.01 0.08C326.6 0.1 327.18 0.12 327.77 0.12C328.35 0.12 328.86 0.08 329.37 0.04C329.58 0.03 329.79 0 330.01 0C330.89 0 331.76 0.07 332.63 0.13C333.66 0.2 334.69 0.28 335.72 0.3C342.58 0.45 349.43 0.8 356.06 1.33L358.28 1.5C361.52 1.75 364.76 2 367.97 2.37C376.35 3.34 384.7 4.62 392.78 6.16C395.48 6.68 398.14 7.3 400.82 7.93L403.61 8.57C409.89 10 416.22 11.63 422.43 13.42L425.18 14.21C427.06 14.75 428.94 15.28 430.8 15.88C439.95 18.79 448.95 22.09 457.56 25.69C457.95 25.85 458.34 26.03 458.74 26.22C459.21 26.44 459.69 26.65 460.17 26.86C468.42 30.39 476.96 34.51 485.54 39.1L488.25 40.54C489.21 41.07 490.18 41.57 491.15 42.07C492.21 42.62 493.28 43.17 494.32 43.75C494.89 44.33 495.36 44.76 495.88 45.15C496.08 45.31 496.29 45.44 496.51 45.58C597.36 104.85 660.01 213.84 660.01 330C660.01 340.45 659.45 351.42 658.36 362.61C658.11 365.11 657.72 367.6 657.31 370.24C657.06 371.86 656.8 373.48 656.58 375.11L656.29 377.22C655.47 383.25 654.69 388.94 653.57 394.62C652.95 397.74 652.17 400.82 651.35 404.08C650.99 405.49 650.09 409.14 650.09 409.14C648.65 415.07 647.28 420.67 645.58 426.25C644.57 429.57 643.41 432.82 642.19 436.27L641.2 439.07C639.3 444.5 637 450.9 634.35 457.24C633.98 458.12 633.67 459.01 633.35 459.9C633.1 460.61 632.86 461.31 632.56 462C631.43 464.59 630.19 467.09 628.94 469.59C628.32 470.84 627.7 472.1 627.08 473.36C626.61 474.33 626.15 475.31 625.7 476.28C624.88 478.03 624.06 479.78 623.17 481.5C622.91 482 622.67 482.52 622.43 483.04C622.37 483.17 622.32 483.3 622.26 483.43C622.01 483.72 621.72 484.09 621.45 484.54C621.38 484.65 621.32 484.77 621.26 484.89C607.37 510.95 590.45 534.72 570.96 555.52C568.26 558.41 564.6 560 560.64 560C557.05 560 553.61 558.64 550.97 556.17C548.22 553.6 546.63 550.1 546.51 546.33C546.39 542.55 547.74 538.95 550.33 536.18C569.21 516.02 585.29 493.23 598.11 468.45C598.91 466.92 599.64 465.35 600.38 463.78L601.52 461.38C603.95 456.37 606.26 451.22 608.4 446.09C610.69 440.62 612.7 435 614.41 430.17L615.3 427.66C616.43 424.47 617.61 421.18 618.63 417.81C620.06 413.09 621.24 408.31 622.37 403.69L623.64 398.6C624.43 395.49 625.25 392.26 625.9 388.96C626.91 383.85 627.61 378.7 628.29 373.72L628.57 371.71C628.76 370.36 628.97 369.01 629.18 367.66C629.58 365.11 629.99 362.48 630.26 359.75C631.27 349.34 631.77 339.6 631.77 329.99C631.77 219.95 571.63 118.56 474.82 65.39L472.12 63.95C464.97 60.12 457.4 56.47 449.65 53.11L448.3 52.5C447.68 52.22 447.06 51.93 446.43 51.67C438.85 48.49 430.9 45.58 422.14 42.76C420.4 42.21 418.66 41.71 416.93 41.21L414.78 40.59C408.74 38.82 402.43 37.19 396.04 35.76L393.63 35.21C391.82 34.79 390.01 34.37 388.18 34.01C379.76 32.36 371.3 31.06 363.02 30.16C361.69 30.01 360.33 29.91 358.98 29.8L356.71 29.61C348.98 28.93 341.29 28.54 333.82 28.45L331.82 28.41C330.77 28.38 329.71 28.36 328.66 28.36H328.21C324.01 28.39 319.91 28.66 315.93 28.92L312.07 29.17C310.62 29.26 309.17 29.33 307.73 29.4C304.21 29.58 300.57 29.76 296.93 30.18C295.86 30.3 294.78 30.48 293.69 30.67C292.99 30.79 292.29 30.91 291.58 31C170.95 47.1 69.0698 137.31 38.0298 255.5L37.5398 257.35C37.2298 258.52 36.9298 259.68 36.6498 260.86C35.1098 267.18 33.9298 273.69 32.8698 279.79C32.1298 284.19 31.4798 288.15 30.9598 292.3C30.3998 296.7 29.9298 301.53 29.4898 307.48C29.0998 312.59 28.8498 317.65 28.7298 322.51C28.6098 327.51 28.6198 332.71 28.7698 338.43C28.9398 344.35 29.1898 349.26 29.5498 353.89C29.8898 358.3 30.3798 362.99 31.0398 368.24C31.8398 374.51 32.6798 380 33.6098 385.05C34.2598 388.54 35.0298 392.28 36.0498 396.83C37.6298 403.78 39.1998 409.86 40.8498 415.42C41.7398 418.44 42.7098 421.44 43.6998 424.44C46.1498 431.85 48.5298 438.33 50.9698 444.27C51.7698 446.22 52.6198 448.16 53.4798 450.1L54.0198 451.33C57.2598 458.67 60.3998 465.17 63.6298 471.25C64.4498 472.79 65.3198 474.32 66.1898 475.86L67.1598 477.57C71.1298 484.6 74.8598 490.73 78.5698 496.33C79.6498 497.96 80.7898 499.56 81.9298 501.16L83.2498 503.02C87.8898 509.62 91.8698 514.95 95.7798 519.77C97.1998 521.51 98.6898 523.21 100.18 524.9L102.02 527C105.97 531.57 110.61 536.88 115.55 541.88C116.8 543.15 118.1 544.35 119.39 545.55C120.14 546.24 120.89 546.93 121.62 547.64C126.72 552.53 132.17 557.7 137.92 562.45C138.33 562.79 138.77 563.12 139.21 563.45C139.45 563.63 139.69 563.81 139.93 564C193.58 607.67 261.1 631.72 330.05 631.72C380.6 631.72 456.99 631.72 487.5 593.86C493.58 586.32 490.59 575.34 488.3 571.49C488 570.99 487.64 570.53 487.23 570.12L463 546.07C461.67 544.76 459.92 544.07 458.13 544.07C457.14 544.07 456.14 544.28 455.21 544.72C425.16 558.76 393.93 563.15 381.89 564.39C380.39 564.54 378.8 564.62 377.14 564.62C366.92 564.62 357.38 561.23 349.54 554.81C288.87 505.08 241.42 436.93 228.32 417.22C228.21 417.06 228.1 416.9 227.98 416.75C227.77 416.48 227.55 416.22 227.38 415.93L224.21 410.93C224.01 410.61 223.83 410.27 223.66 409.91C223.57 409.72 223.47 409.54 223.37 409.36C211 388.62 169.15 314.95 150.11 237.69C147.81 228.31 148.71 218.3 152.65 209.49C165.76 180.16 202.79 111.3 263.33 105.36C263.74 105.32 264.19 105.3 264.65 105.3C266.34 105.3 268 105.58 269.57 106.14C272.94 107.37 277.02 109.36 282 112.23C301.1 123.37 317.18 142.85 326.07 165.64C331.92 180.67 338.17 203.29 334.67 225.68C333.08 235.7 328.1 244.41 320.64 250.2C318.28 252.03 315.43 253.9 312.24 255.97L293 268.69C290.89 270.09 289.71 272.53 289.93 275.06C290.67 283.43 295.76 303.63 321.6 344.93C347.26 385.17 362.73 398.2 369.68 402.4C370.78 403.06 372.02 403.39 373.25 403.39C374.59 403.39 375.93 403 377.1 402.22L395.71 389.76C399.05 387.48 402 385.49 404.7 383.99C409.91 381.06 415.9 379.52 422.04 379.52C425.55 379.52 429.11 380.01 432.62 380.99C454.08 386.92 471.71 402.05 482.72 413.71C499.34 431.38 510.08 454.28 512.16 476.54C512.69 482.29 512.8 486.93 512.5 490.71C512.34 492.63 511.74 494.59 510.78 496.35C505.84 505.32 499.05 513.56 489.43 522.26C488.02 523.53 487.2 525.32 487.16 527.21C487.11 529.1 487.84 530.93 489.18 532.27L508.53 551.62C518.08 561.17 526.84 590.2 509.52 611.63C470.52 660 386 660 330.07 660H330ZM249.29 397.72C249.53 398.26 249.83 398.77 250.21 399.23C250.52 399.61 250.81 400.01 251.09 400.42C259.98 413.88 307.57 483.87 367.43 532.92C370.15 535.14 373.5 536.32 377.11 536.32C377.73 536.32 378.37 536.29 379.02 536.21C402.16 533.84 458.8 524.33 483.14 487.37C483.97 486.11 484.37 484.62 484.27 483.11C484.18 481.75 484.05 480.39 483.92 479.09C482.45 463.27 474.28 446.06 462.07 433.11C450.05 420.36 436.9 411.54 425.04 408.26C424.94 408.23 424.84 408.21 424.74 408.18C423.79 407.93 422.85 407.81 421.96 407.81C421.6 407.81 421.02 407.85 420.67 407.9C419.85 408.03 419.05 408.31 418.33 408.72C416.4 409.82 414.49 411.15 412.27 412.69L411.7 413.08C411.7 413.08 388.28 428.73 388.19 428.81C384.65 431.45 379.8 432.9 374.54 432.9C373.47 432.9 372.4 432.84 371.32 432.72C351.4 430.29 327.29 406.51 297.66 360.02C268.36 313.22 257.04 280.99 263.06 261.52C265.43 253.84 269.81 249.89 273.06 247.93L297.41 231.83C299.61 230.42 301.51 229.2 303.3 227.8C305.46 226.26 306.36 223.38 306.7 221.27C308.66 208.64 306.17 192.54 299.69 175.9C293.15 159.17 281.22 144.52 267.77 136.7C266.95 136.21 265.96 135.64 264.92 135.08C263.9 134.53 262.77 134.24 261.62 134.24C261.16 134.24 260.7 134.29 260.24 134.38C216.27 143.31 186.53 202.92 178.46 220.98C177.05 224.09 176.73 227.55 177.57 230.94C195.92 305.37 236.5 376.3 248.5 396.27C248.67 396.56 248.81 396.78 248.92 396.99C249.04 397.24 249.18 397.48 249.33 397.71L249.29 397.72Z\" fill=\"white\"><\/path><\/g><\/g><defs><clipPath id=\"clip0_2293_2\"><rect width=\"660\" height=\"660\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tassistenza da remoto\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tGuesthouse con assistenza 24 ore su 24\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\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-babbbdc e-con-full e-flex e-con e-parent\" data-id=\"babbbdc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-ee61c72 e-con-full e-flex e-con e-child\" data-id=\"ee61c72\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4f3021c e-con-full e-flex e-con e-parent\" data-id=\"4f3021c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0fc1d4c elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"0fc1d4c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Times Suites<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6828d97 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"6828d97\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Camere &amp; Suites<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-54f831d e-con-full e-flex e-con e-parent\" data-id=\"54f831d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6ce19e6 e-con-full e-flex e-con e-child\" data-id=\"6ce19e6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f295baf elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"f295baf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Le camere di Times Suites sono pensate per offrire un\u2019esperienza elegante e rilassante, in un contesto storico unico.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c2a264a e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"c2a264a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d2ea258 e-con-full e-flex e-con e-child\" data-id=\"d2ea258\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3821d0b elementor-align-right elementor-widget__width-inherit btn elementor-mobile-align-left elementor-widget elementor-widget-button\" data-id=\"3821d0b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Scopri le camere &amp; suites<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\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-ccfe1aa e-con-full elementor-hidden-desktop e-flex e-con e-parent\" data-id=\"ccfe1aa\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6dba048 elementor-pagination-type-bullets elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-n-carousel\" data-id=\"6dba048\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;db0143e&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;c8e7ba8&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;9c9b20b&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;f2232e2&quot;}],&quot;autoplay_speed&quot;:3000,&quot;slides_to_show_tablet&quot;:&quot;2&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&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;pagination&quot;:&quot;bullets&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\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 di 4\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f0b5c69 e-flex e-con-boxed e-con e-child\" data-id=\"f0b5c69\" data-element_type=\"container\" data-e-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-ff65164 e-con-full e-flex e-con e-child\" data-id=\"ff65164\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-da92623 e-con-full hover-card e-flex e-con e-child\" data-id=\"da92623\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1f2e4e7 elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"1f2e4e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\/#king\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">King Sant\u2019Ercolano<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9266875 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"9266875\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">La tipologia pi\u00f9 caratteristica della struttura, dove design moderno e fascino storico si incontrano in modo armonioso. Ideale per chi desidera un\u2019esperienza ancora pi\u00f9 esclusiva nel centro storico.<\/h2>\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 di 4\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-8081864 e-flex e-con-boxed e-con e-child\" data-id=\"8081864\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1d4dd27 e-con-full e-flex e-con e-child\" data-id=\"1d4dd27\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-3dce2c4 e-con-full hover-card e-flex e-con e-child\" data-id=\"3dce2c4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ac7396e elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"ac7396e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\/#deluxe\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Camera Deluxe con Vasca<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e1dd88d elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"e1dd88d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Una soluzione esclusiva per chi desidera un soggiorno romantico con un tocco di benessere. La vasca in camera aggiunge un elemento di relax e intimit\u00e0, perfetto per momenti speciali.<\/h2>\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 di 4\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-63c9ad0 e-flex e-con-boxed e-con e-child\" data-id=\"63c9ad0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a5fecf7 e-con-full e-flex e-con e-child\" data-id=\"a5fecf7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-d2f0435 e-con-full hover-card e-flex e-con e-child\" data-id=\"d2f0435\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-964f7ef elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"964f7ef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\/#superior\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Camera Superior<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9ed66ae elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"9ed66ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Spazi pi\u00f9 ampi e atmosfera ancora pi\u00f9 raffinata, perfetta per chi cerca un livello superiore di comfort in una guest house di design a Perugia<\/h2>\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 di 4\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3b04e98 e-flex e-con-boxed e-con e-child\" data-id=\"3b04e98\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6d3710c e-con-full e-flex e-con e-child\" data-id=\"6d3710c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-125a12b e-con-full hover-card e-flex e-con e-child\" data-id=\"125a12b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9f91d20 elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"9f91d20\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\/\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Camera Standard<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fef10a9 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"fef10a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Soluzione confortevole e curata nei dettagli, ideale per coppie che desiderano soggiornare nel cuore della citt\u00e0 con stile e semplicit\u00e0.<\/h2>\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=\"Precedente\">\n\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<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Successivo\">\n\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<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a8d34e5 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"a8d34e5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-4e14c01 e-con-full e-flex e-con e-child\" data-id=\"4e14c01\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-70fe53a e-con-full e-flex e-con e-child\" data-id=\"70fe53a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-dd0e217 e-con-full hover-card e-flex e-con e-child\" data-id=\"dd0e217\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bc616c8 elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"bc616c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\/#king\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">King Sant\u2019Ercolano<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-24a3e97 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"24a3e97\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">La tipologia pi\u00f9 caratteristica della struttura, dove design moderno e fascino storico si incontrano in modo armonioso. Ideale per chi desidera un\u2019esperienza ancora pi\u00f9 esclusiva nel centro storico.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-131bdc9 e-con-full e-flex e-con e-child\" data-id=\"131bdc9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-65ce22d e-con-full hover-card e-flex e-con e-child\" data-id=\"65ce22d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2b88d90 elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"2b88d90\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\/#deluxe\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Camera Deluxe con Vasca<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9d894d7 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"9d894d7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Una soluzione esclusiva per chi desidera un soggiorno romantico con un tocco di benessere. La vasca in camera aggiunge un elemento di relax e intimit\u00e0, perfetto per momenti speciali.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cd8b5ce e-con-full e-flex e-con e-child\" data-id=\"cd8b5ce\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-e40bbf8 e-con-full hover-card e-flex e-con e-child\" data-id=\"e40bbf8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-69e03c0 elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"69e03c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\/#superior\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Camera Superior<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2ca1fd8 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"2ca1fd8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Spazi pi\u00f9 ampi e atmosfera ancora pi\u00f9 raffinata, perfetta per chi cerca un livello superiore di comfort in una guest house di design a Perugia.<\/h2>\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-b2055f1 e-con-full e-flex e-con e-child\" data-id=\"b2055f1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-39caaea e-con-full e-flex e-con e-child\" data-id=\"39caaea\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6bfcdf2 e-con-full hover-card e-flex e-con e-child\" data-id=\"6bfcdf2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-42f073c elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"42f073c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\/#standard\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Camera Standard<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1d1786f elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"1d1786f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Soluzione confortevole e curata nei dettagli, ideale per coppie che desiderano soggiornare nel cuore della citt\u00e0 con stile e semplicit\u00e0.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a789895 e-con-full elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"a789895\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-9099a42 e-con-full hover-card e-flex e-con e-child\" data-id=\"9099a42\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-62faa58 elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"62faa58\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\/\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Camera Standard<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1a8ba1b elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"1a8ba1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">La Camera Standard delHotel Aurora \u00e8 la soluzione ideale per chi desidera un soggiorno confortevole in un ambiente curato e funzionale. <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ab157eb e-con-full elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"ab157eb\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-034fc96 e-con-full hover-card e-flex e-con e-child\" data-id=\"034fc96\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-654b303 elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"654b303\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/camere-suite\/\">\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=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\"><g clip-path=\"url(#clip0_4886_2)\"><path d=\"M14 27.25C21.3178 27.25 27.25 21.3178 27.25 14C27.25 6.68223 21.3178 0.75 14 0.75C6.68223 0.75 0.75 6.68223 0.75 14C0.75 21.3178 6.68223 27.25 14 27.25Z\" stroke=\"#53575A\" stroke-width=\"1.5\"><\/path><path d=\"M15.038 7.95502L20.077 14.255M20.077 14.255L15.038 20.555M20.077 14.255H6.94995\" stroke=\"#53575A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/g><defs><clipPath id=\"clip0_4886_2\"><rect width=\"28\" height=\"28\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Appartamento<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6376710 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"6376710\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">L\u2019Appartamento del Boutique Hotel Aurora \u00e8 la soluzione perfetta per chi cerca indipendenza, ampi spazi e massima privacy, senza rinunciare ai servizi esclusivi dell\u2019hotel.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-71b4161 e-con-full elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"71b4161\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-a4dc15d e-con-full e-flex e-con e-child\" data-id=\"a4dc15d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-519c813 e-con-full e-flex e-con e-child\" data-id=\"519c813\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c1c3e75 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"c1c3e75\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Private Spa<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1fbdb82 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"1fbdb82\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Ritrova il tuo equilibrio<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d8da7fd elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"d8da7fd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>La Private SPA del Boutique Hotel Aurora \u00e8 un luogo raccolto e silenzioso, pensato per chi desidera staccare davvero. Sauna, idromassaggio e percorsi wellness riservati trasformano ogni soggiorno in un\u2019esperienza intima e profonda, dove corpo e mente ritrovano equilibrio, lontano dal rumore della quotidianit\u00e0.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c9202b2 elementor-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"c9202b2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/spa\">\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=\"45\" height=\"45\" viewBox=\"0 0 45 45\" fill=\"none\"><g clip-path=\"url(#clip0_762_10)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42.1875 22.5C42.1875 26.3938 41.0328 30.2002 38.8696 33.4378C36.7063 36.6754 33.6315 39.1988 30.0341 40.6889C26.4367 42.179 22.4782 42.5689 18.6592 41.8092C14.8402 41.0496 11.3322 39.1745 8.57884 36.4212C5.82549 33.6678 3.95044 30.1598 3.19079 26.3408C2.43114 22.5218 2.82102 18.5633 4.31112 14.9659C5.80122 11.3685 8.32462 8.29373 11.5622 6.13044C14.7998 3.96715 18.6062 2.8125 22.5 2.8125C27.7214 2.8125 32.729 4.88671 36.4212 8.57884C40.1133 12.271 42.1875 17.2785 42.1875 22.5ZM0 22.5C0 26.9501 1.3196 31.3002 3.79193 35.0003C6.26427 38.7004 9.77829 41.5843 13.8896 43.2873C18.001 44.9903 22.525 45.4358 26.8895 44.5677C31.2541 43.6995 35.2632 41.5566 38.4099 38.4099C41.5566 35.2632 43.6995 31.2541 44.5677 26.8895C45.4358 22.525 44.9903 18.001 43.2873 13.8896C41.5843 9.77829 38.7004 6.26427 35.0003 3.79193C31.3002 1.3196 26.9501 0 22.5 0C16.5326 0 10.8097 2.37053 6.5901 6.5901C2.37053 10.8097 0 16.5326 0 22.5ZM12.6546 21.0954C12.2817 21.0954 11.924 21.2435 11.6603 21.5072C11.3966 21.771 11.2484 22.1286 11.2484 22.5016C11.2484 22.8746 11.3966 23.2323 11.6603 23.496C11.924 23.7597 12.2817 23.9079 12.6546 23.9079H28.9479L22.9114 29.9411C22.7727 30.0699 22.6614 30.2253 22.5841 30.3981C22.5069 30.5709 22.4652 30.7575 22.4617 30.9467C22.4582 31.1359 22.4929 31.3239 22.5637 31.4995C22.6345 31.675 22.74 31.8345 22.8738 31.9683C23.0077 32.1021 23.1671 32.2076 23.3427 32.2784C23.5182 32.3492 23.7062 32.3839 23.8954 32.3804C24.0847 32.3769 24.2713 32.3353 24.4441 32.258C24.6169 32.1807 24.7723 32.0694 24.9011 31.9307L33.3386 23.4964C33.47 23.3659 33.5742 23.2106 33.6454 23.0396C33.7166 22.8686 33.7532 22.6852 33.7532 22.5C33.7532 22.3148 33.7166 22.1314 33.6454 21.9604C33.5742 21.7894 33.47 21.6341 33.3386 21.5036L24.9011 13.0661C24.7704 12.9352 24.6153 12.8314 24.4445 12.7605C24.2737 12.6896 24.0907 12.653 23.9058 12.6529C23.7209 12.6527 23.5378 12.689 23.3669 12.7596C23.196 12.8302 23.0407 12.9338 22.9098 13.0645C22.779 13.1951 22.6751 13.3502 22.6042 13.521C22.5333 13.6918 22.4968 13.8749 22.4966 14.0598C22.4965 14.2447 22.5327 14.4278 22.6034 14.5987C22.674 14.7696 22.7776 14.9249 22.9082 15.0557L28.9479 21.0921L12.6546 21.0954Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_762_10\"><rect width=\"45\" height=\"45\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Scopri la spa<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3468d89 e-con-full e-flex e-con e-child\" data-id=\"3468d89\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0f66b02 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"0f66b02\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Private Spa<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-08e450f elementor-align-left elementor-widget__width-inherit btn elementor-widget elementor-widget-button\" data-id=\"08e450f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/spa#pacchetti\">\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=\"45\" height=\"45\" viewBox=\"0 0 45 45\" fill=\"none\"><g clip-path=\"url(#clip0_762_10)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42.1875 22.5C42.1875 26.3938 41.0328 30.2002 38.8696 33.4378C36.7063 36.6754 33.6315 39.1988 30.0341 40.6889C26.4367 42.179 22.4782 42.5689 18.6592 41.8092C14.8402 41.0496 11.3322 39.1745 8.57884 36.4212C5.82549 33.6678 3.95044 30.1598 3.19079 26.3408C2.43114 22.5218 2.82102 18.5633 4.31112 14.9659C5.80122 11.3685 8.32462 8.29373 11.5622 6.13044C14.7998 3.96715 18.6062 2.8125 22.5 2.8125C27.7214 2.8125 32.729 4.88671 36.4212 8.57884C40.1133 12.271 42.1875 17.2785 42.1875 22.5ZM0 22.5C0 26.9501 1.3196 31.3002 3.79193 35.0003C6.26427 38.7004 9.77829 41.5843 13.8896 43.2873C18.001 44.9903 22.525 45.4358 26.8895 44.5677C31.2541 43.6995 35.2632 41.5566 38.4099 38.4099C41.5566 35.2632 43.6995 31.2541 44.5677 26.8895C45.4358 22.525 44.9903 18.001 43.2873 13.8896C41.5843 9.77829 38.7004 6.26427 35.0003 3.79193C31.3002 1.3196 26.9501 0 22.5 0C16.5326 0 10.8097 2.37053 6.5901 6.5901C2.37053 10.8097 0 16.5326 0 22.5ZM12.6546 21.0954C12.2817 21.0954 11.924 21.2435 11.6603 21.5072C11.3966 21.771 11.2484 22.1286 11.2484 22.5016C11.2484 22.8746 11.3966 23.2323 11.6603 23.496C11.924 23.7597 12.2817 23.9079 12.6546 23.9079H28.9479L22.9114 29.9411C22.7727 30.0699 22.6614 30.2253 22.5841 30.3981C22.5069 30.5709 22.4652 30.7575 22.4617 30.9467C22.4582 31.1359 22.4929 31.3239 22.5637 31.4995C22.6345 31.675 22.74 31.8345 22.8738 31.9683C23.0077 32.1021 23.1671 32.2076 23.3427 32.2784C23.5182 32.3492 23.7062 32.3839 23.8954 32.3804C24.0847 32.3769 24.2713 32.3353 24.4441 32.258C24.6169 32.1807 24.7723 32.0694 24.9011 31.9307L33.3386 23.4964C33.47 23.3659 33.5742 23.2106 33.6454 23.0396C33.7166 22.8686 33.7532 22.6852 33.7532 22.5C33.7532 22.3148 33.7166 22.1314 33.6454 21.9604C33.5742 21.7894 33.47 21.6341 33.3386 21.5036L24.9011 13.0661C24.7704 12.9352 24.6153 12.8314 24.4445 12.7605C24.2737 12.6896 24.0907 12.653 23.9058 12.6529C23.7209 12.6527 23.5378 12.689 23.3669 12.7596C23.196 12.8302 23.0407 12.9338 22.9098 13.0645C22.779 13.1951 22.6751 13.3502 22.6042 13.521C22.5333 13.6918 22.4968 13.8749 22.4966 14.0598C22.4965 14.2447 22.5327 14.4278 22.6034 14.5987C22.674 14.7696 22.7776 14.9249 22.9082 15.0557L28.9479 21.0921L12.6546 21.0954Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_762_10\"><rect width=\"45\" height=\"45\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Pacchetti SPA<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\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-19d0021 e-con-full e-flex e-con e-child\" data-id=\"19d0021\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-d9d1cb4 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"d9d1cb4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Guest House di Design nel Centro Storico di Perugia Etruria collection Times Suites Times Suites nasce da un\u2019attenta e profonda ristrutturazione in chiave moderna che ha trasformato uno spazio storico in una guest house di design nel centro storico di Perugia. Arredi contemporanei si fondono con elementi medievali come travi in legno e pietre a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1015","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/times.etruriacollection.com\/en\/wp-json\/wp\/v2\/pages\/1015","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/times.etruriacollection.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/times.etruriacollection.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/times.etruriacollection.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/times.etruriacollection.com\/en\/wp-json\/wp\/v2\/comments?post=1015"}],"version-history":[{"count":43,"href":"https:\/\/times.etruriacollection.com\/en\/wp-json\/wp\/v2\/pages\/1015\/revisions"}],"predecessor-version":[{"id":1263,"href":"https:\/\/times.etruriacollection.com\/en\/wp-json\/wp\/v2\/pages\/1015\/revisions\/1263"}],"wp:attachment":[{"href":"https:\/\/times.etruriacollection.com\/en\/wp-json\/wp\/v2\/media?parent=1015"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}