{"id":2352,"date":"2021-08-18T11:06:30","date_gmt":"2021-08-18T11:06:30","guid":{"rendered":"http:\/\/demo.themecube.net\/ters\/?page_id=18"},"modified":"2024-09-05T14:05:26","modified_gmt":"2024-09-05T14:05:26","slug":"home","status":"publish","type":"page","link":"https:\/\/www.tessiturefestival.it\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2352\" class=\"elementor elementor-2352\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6df3716 elementor-section-height-full overflow-hidden elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-height-default elementor-section-items-middle\" data-id=\"6df3716\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b4261cc\" data-id=\"b4261cc\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-4252333 elementor-section-full_width elementor-section-content-middle elementor-section-height-default elementor-section-height-default\" data-id=\"4252333\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-9863947\" data-id=\"9863947\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-357098a elementor-widget elementor-widget-heading\" data-id=\"357098a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">UXCONF23<br>\nJANUARY 24-26, 2024<br>\nNEWYORK<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-0f42e44\" data-id=\"0f42e44\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-99b6f98 elementor-widget elementor-widget-tc_countdown_timer\" data-id=\"99b6f98\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"tc_countdown_timer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"col-md-8 offset-md-2 ml-0\">\n\t\t \t\t\t\t\t<div id=\"timer\" class=\"row text-center\">\n\t\t\t\t\t\t\t\t<div id=\"days\" class=\"col ml-2 mr-2\"><\/div>\n\t\t\t\t\t\t\t\t<div id=\"hours\" class=\"col ml-2 mr-2\"><\/div>\n\t\t\t\t\t\t\t\t<div id=\"minutes\" class=\"col ml-2 mr-2\"><\/div>\n\t\t\t\t\t\t\t\t<div id=\"seconds\" class=\"col ml-2 mr-2\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div><script>\n\t\t\t\t\t\t(function($) {\n\n\t\t\t    \t\t\"use strict\";\n\n\t\t\t\t\t\t\t\tfunction makeTimer() {\n\n\t\t\t\t\t\t\t\tvar endTime = new Date(\"2024\/01\/23 11:00\");\n\t\t\t\t\t\t\t\tendTime = (Date.parse(endTime) \/ 1000);\n\n\n\t\t\t\t\t\t\t\tvar now = new Date();\n\t\t\t\t\t\t\t\tnow = (Date.parse(now) \/ 1000);\n\n\t\t\t\t\t\t\t\tvar timeLeft = endTime - now;\n\n\t\t\t\t\t\t\t\tvar days = Math.floor(timeLeft \/ 86400);\n\t\t\t\t\t\t\t\tvar hours = Math.floor((timeLeft - (days * 86400)) \/ 3600);\n\t\t\t\t\t\t\t\tvar minutes = Math.floor((timeLeft - (days * 86400) - (hours * 3600 )) \/ 60);\n\t\t\t\t\t\t\t\tvar seconds = Math.floor((timeLeft - (days * 86400) - (hours * 3600) - (minutes * 60)));\n\n\t\t\t\t\t\t\t\tif (hours < \"10\") { hours = \"0\" + hours; }\n\t\t\t\t\t\t\t\tif (minutes < \"10\") { minutes = \"0\" + minutes; }\n\t\t\t\t\t\t\t\tif (seconds < \"10\") { seconds = \"0\" + seconds; }\n\n\t\t\t\t\t\t\t\t$(\"#days\").html(days + \"<span class=\\\"d-block\\\">Days<\/span>\");\n\t\t\t\t\t\t\t\t$(\"#hours\").html(hours + \"<span class=\\\"d-block\\\">Hours<\/span>\");\n\t\t\t\t\t\t\t\t$(\"#minutes\").html(minutes + \"<span class=\\\"d-block\\\">Minutes<\/span>\");\n\t\t\t\t\t\t\t\t$(\"#seconds\").html(seconds + \"<span class=\\\"d-block\\\">Seconds<\/span>\");\n\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tsetInterval(function() { makeTimer(); }, 1000);\n\t\t\t\t\t\t\t}(jQuery));\n\n\t\t\t\t    <\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<div data-paroller-factor=\"-0.05\" data-paroller-type=\"foreground\" class=\"elementor-element elementor-element-46c512c elementor-widget__width-auto elementor-absolute tc-parallax elementor-widget elementor-widget-image\" data-id=\"46c512c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"259\" height=\"294\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape6-1.png\" class=\"attachment-large size-large wp-image-2223\" alt=\"\" srcset=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape6-1.png 259w, https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape6-1-220x250.png 220w\" sizes=\"(max-width: 259px) 100vw, 259px\" \/>\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 data-paroller-factor=\"0.9\" data-paroller-type=\"foreground\" class=\"elementor-element elementor-element-0fe9513 elementor-widget__width-auto elementor-absolute tc-parallax elementor-widget elementor-widget-image\" data-id=\"0fe9513\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" 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=\"130\" height=\"136\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape4-1.png\" class=\"attachment-large size-large wp-image-2221\" 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 data-paroller-factor=\"-0.1\" data-paroller-type=\"foreground\" data-paroller-direction=\"horizontal\" class=\"elementor-element elementor-element-783b452 elementor-widget__width-auto elementor-absolute tc-parallax elementor-widget elementor-widget-image\" data-id=\"783b452\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" 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\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/shape3-1.png\" title=\"\" alt=\"\" loading=\"lazy\" \/>\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 data-paroller-factor=\"-0.1\" data-paroller-type=\"foreground\" class=\"elementor-element elementor-element-61a318b elementor-widget__width-auto elementor-absolute tc-parallax elementor-widget elementor-widget-image\" data-id=\"61a318b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" 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=\"126\" height=\"132\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape5.png\" class=\"attachment-large size-large wp-image-2339\" 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 data-paroller-factor=\"-0.1\" data-paroller-type=\"foreground\" class=\"elementor-element elementor-element-a6f648e elementor-widget__width-auto elementor-absolute tc-parallax elementor-widget elementor-widget-image\" data-id=\"a6f648e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" 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=\"126\" height=\"132\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape5-1.png\" class=\"attachment-large size-large wp-image-2222\" 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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-e70b725 elementor-section-height-full overflow-hidden elementor-section-full_width elementor-section-height-default elementor-section-items-middle\" data-id=\"e70b725\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4dfea35\" data-id=\"4dfea35\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-aaf78c0 elementor-section-full_width elementor-section-content-middle elementor-section-height-default elementor-section-height-default\" data-id=\"aaf78c0\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-c61a744\" data-id=\"c61a744\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ef0ee10 elementor-widget elementor-widget-heading\" data-id=\"ef0ee10\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\"><h1 class=\"fonta\">Non te ne frega nulla della letteratura?<\/h1><br>\n<h3 class=\"caca\">Perfetto!<\/h3>\n<h3 class=\"caca\">Tessiture \u00e8 il festival per te.<\/h3><\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-9692277\" data-id=\"9692277\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<div data-paroller-factor=\"-0.1\" data-paroller-type=\"foreground\" data-paroller-direction=\"horizontal\" class=\"elementor-element elementor-element-8284384 elementor-widget__width-auto elementor-absolute tc-parallax elementor-widget elementor-widget-image\" data-id=\"8284384\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" 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\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/shape3-1.png\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-f5ec977 elementor-section-content-middle elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f5ec977\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-f272b5c\" data-id=\"f272b5c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-944ab89 elementor-widget elementor-widget-heading\" data-id=\"944ab89\" data-element_type=\"widget\" data-e-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\">Why should you attend the Conference<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9f0a394 animated-fast elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"9f0a394\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\" 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\tSed eget est enim. In hac habitasse platea dictumst.\nSed quis lectus porttitor, maximus turpis id,\npharetra mi. Ut vehicula mauris vel tempor ornare.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-4f06669 lead\" data-id=\"4f06669\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-b8a0acd elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b8a0acd\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-148e99b\" data-id=\"148e99b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div data-paroller-factor=\"0.06\" data-paroller-type=\"foreground\" class=\"elementor-element elementor-element-bde9276 tc-parallax elementor-widget elementor-widget-icon-box\" data-id=\"bde9276\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\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\tSelected speakers\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\tLearn from leading UX experts and gain new perspectives\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 data-paroller-factor=\"0.07\" data-paroller-type=\"foreground\" class=\"elementor-element elementor-element-23bdba3 tc-parallax elementor-widget elementor-widget-icon-box\" data-id=\"23bdba3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\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\tWorkshops\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\tHigh-quality workshops provide hands-on knowhow for you and your business.\n\n\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-97f8bd8\" data-id=\"97f8bd8\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div data-paroller-factor=\"-0.07\" data-paroller-type=\"foreground\" class=\"elementor-element elementor-element-565c6ee tc-parallax elementor-widget elementor-widget-icon-box\" data-id=\"565c6ee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\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\tInspiring Talks\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\tGet useful insights into applied UX design, future trends and ways to succeed.\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 data-paroller-factor=\"-0.06\" data-paroller-type=\"foreground\" class=\"elementor-element elementor-element-383c230 tc-parallax elementor-widget elementor-widget-icon-box\" data-id=\"383c230\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\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\tNetworking\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\tMeet others, expand your professional network and join the After Party.\n\n\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-a89ce5f overflow-hidden elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a89ce5f\" data-element_type=\"section\" data-e-type=\"section\" id=\"agenda\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7f2e2c5\" data-id=\"7f2e2c5\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-c211262 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c211262\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e8e3aaa\" data-id=\"e8e3aaa\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-58830c0 section-title elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"58830c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\" 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\">Programma<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-b1032fa elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b1032fa\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;animation&quot;:&quot;none&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-2b18574\" data-id=\"2b18574\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-184e2ec elementor-invisible elementor-widget elementor-widget-tc_agenda\" data-id=\"184e2ec\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"tc_agenda.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"agenda-list\"><ul class=\"nav nav-tab d-flex justify-content-center mb-4\" id=\"myTab\" role=\"tablist\"><li role=\"presentation\" class=\"nav-item pt-1 pb-1 pl-2 pr-2 mb-2\">\n\t\t\t\t\t\t\t\t<a class=\"nav-link active\"\n\t\t\t\t\t\t\t\t\t href=\"#ven06\"\n\t\t\t\t\t\t\t\t\t id=\"ven06-tab\"\n\t\t\t\t\t\t\t\t\t role=\"tab\"\n\t\t\t\t\t\t\t\t\t data-toggle=\"tab\"\n\t\t\t\t\t\t\t\t\t aria-controls=\"ven06\"\n\t\t\t\t\t\t\t\t\t aria-expanded=\"true\">\n\t\t\t\t\t\t\t\t\t\tVen06\n\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<\/li><li role=\"presentation\" class=\"nav-item pt-1 pb-1 pl-2 pr-2 mb-2\">\n\t\t\t\t\t\t\t\t<a class=\"nav-link \"\n\t\t\t\t\t\t\t\t\t href=\"#sab07\"\n\t\t\t\t\t\t\t\t\t id=\"sab07-tab\"\n\t\t\t\t\t\t\t\t\t role=\"tab\"\n\t\t\t\t\t\t\t\t\t data-toggle=\"tab\"\n\t\t\t\t\t\t\t\t\t aria-controls=\"sab07\"\n\t\t\t\t\t\t\t\t\t aria-expanded=\"true\">\n\t\t\t\t\t\t\t\t\t\tSab07\n\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<\/li><li role=\"presentation\" class=\"nav-item pt-1 pb-1 pl-2 pr-2 mb-2\">\n\t\t\t\t\t\t\t\t<a class=\"nav-link \"\n\t\t\t\t\t\t\t\t\t href=\"#dom08\"\n\t\t\t\t\t\t\t\t\t id=\"dom08-tab\"\n\t\t\t\t\t\t\t\t\t role=\"tab\"\n\t\t\t\t\t\t\t\t\t data-toggle=\"tab\"\n\t\t\t\t\t\t\t\t\t aria-controls=\"dom08\"\n\t\t\t\t\t\t\t\t\t aria-expanded=\"true\">\n\t\t\t\t\t\t\t\t\t\tDom08\n\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<\/li><\/ul><div class=\"tab-content\" id=\"myTabContent\"><div class=\"tab-pane fade active show\"\n\t\t\t\t\t\t\t\tid=\"ven06\"\n\t\t\t\t\t\t\t\trole=\"tabpanel\"\n\t\t\t\t\t\t\t\taria-labelledby=\"ven06-tab\"><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">17:00<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/apertura-tessiture-festival\/\">Apertura Tessiture Festival<\/a><\/h3><\/div>\n\t\t\t\t\t\t\t\t<\/div><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">17:30<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/intrecci-le-donne-il-telaio-e-la-programmazione\/\">Intrecci: le donne, il telaio e la programmazione<\/a><\/h3><p class=\"agenda-duration mb-0\">Presentazione di \u201cLe Tessitrici. Mitologia dell\u2019informatica\u201d<br>\r\ncon l\u2019autrice Loreta Minutilli<br>Modera: Angela Chiariello<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">19:00<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/contaminazioni-il-futuro-appartiene-ai-meticci\/\">Contaminazioni: il futuro appartiene ai meticci<\/a><\/h3><p class=\"agenda-duration mb-0\">Presentazione di \"Hijra\" <br>con l\u2019autore Saif ur Rehman Raja<br>Modera: Marica Miccardi<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">20:00<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/racconti-di-liberta-delliran-del-futuro\/\">Racconti di libert\u00e0 dell\u2019Iran del futuro<\/a><\/h3><p class=\"agenda-duration mb-0\">Presentazione di \u201cIran Under 30\u201d <br>con il curatore Giacomo Longhi <br>\r\nModera: Shady Alizadeh<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">21:00<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/talk-corpi-e-spazio-riflessioni-politiche-e-rappresentazioni\/\">Corpi e spazio: riflessioni, politiche e rappresentazioni<\/a><\/h3><p class=\"agenda-duration mb-0\">Con Daphne Boh\u00e9mien, Marina Cuollo e Chiara Meloni <br>Modera: Marianna Di Gioia<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><\/div><div class=\"tab-pane fade \"\n\t\t\t\t\t\t\t\tid=\"sab07\"\n\t\t\t\t\t\t\t\trole=\"tabpanel\"\n\t\t\t\t\t\t\t\taria-labelledby=\"sab07-tab\"><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">17:30<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/la-comicita-e-una-cosa-seria\/\">La comicit\u00e0 \u00e8 una cosa seria<\/a><\/h3><p class=\"agenda-duration mb-0\">Presentazione di \u201cLa vita della mia ex per come me la immagino io\u201d <br>con l\u2019autore Gero Arnone\r\n<br>Modera: Daniele Devino<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">19:00<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/grassofobia-e-razzismo-rompere-gli-stereotipi\/\">Grassofobia e razzismo: rompere gli stereotipi<\/a><\/h3><p class=\"agenda-duration mb-0\">Presentazione di \u201cNera con forme. Storia di un corpo grasso\u201d <br>con Marianna the influenza<br>Modera: Valeria Modugno<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">20:00<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/oltre-lantropocentrismo\/\">Oltre l&#8217;antropocentrismo\u00a0<\/a><\/h3><p class=\"agenda-duration mb-0\">Presentazione di \u201cAnimali si diventa. Femminismi e liberazione animale\u201d <br>con l\u2019autrice Federica Timeto\r\n<br>Modera: Angela Maria Lamacchia\u00a0<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">21:00<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/il-lavoro-e-la-citta-ripensare-lo-spazio-urbano-dalla-prospettiva-working-class\/\">Il lavoro e la citt\u00e0: ripensare lo spazio urbano dalla prospettiva working class<\/a><\/h3><p class=\"agenda-duration mb-0\">Con:\u00a0Simona Baldanzi\u00a0 e Salvatore Romeo\u00a0\r\n<br>\r\nModera: Rino Quarto<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><\/div><div class=\"tab-pane fade \"\n\t\t\t\t\t\t\t\tid=\"dom08\"\n\t\t\t\t\t\t\t\trole=\"tabpanel\"\n\t\t\t\t\t\t\t\taria-labelledby=\"dom08-tab\"><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">17:30<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/super-mario-e-noi-levoluzione-dei-giochi-sul-piccolo-schermo\/\">Super Mario e noi: L&#8217;evoluzione dei giochi sul piccolo schermo<\/a><\/h3><p class=\"agenda-duration mb-0\">Presentazione di \u201cVivere mille vite. Come i videogiochi ci hanno cambiato il futuro\u201d <br>con l\u2019autore Lorenzo Fantoni\r\n<br>Moderano: Gloria Galantino ed Enrico Spera<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">19:00<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/identita-e-sessualita-una-storia-partenopea\/\">Identit\u00e0 e sessualit\u00e0: una storia partenopea<\/a><\/h3><p class=\"agenda-duration mb-0\">Presentazione di \u201cMaleuforia\u201d<br> con l\u2019autrice Deborah D\u2019addetta\r\n<br>Modera: Maria Ida Lagrasta<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">20:00<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/dalla-lingua-della-poesia\/\">Dalla lingua della poesia<\/a><\/h3><p class=\"agenda-duration mb-0\">Mara Venuto autrice di \u201cVora\u201d<br>\r\nElisabetta Stragapede autrice di \u201cLa variabile umana\u201d<br>\r\nModera: Angela Re David\u00a0<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><div class=\"d-flex align-items-start mb-3\">\n\t\t\t\t\t\t\t\t\t<div class=\"pr-4\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"agenda-start-time\">21:00<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"flex-fill\"><h3 class=\"agenda-title\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/agenda\/raccontare-il-sud\/\">Raccontare il Sud\u00a0<\/a><\/h3><p class=\"agenda-duration mb-0\">Con Carmen Notarangelo, Carmine Conelli e Leonardo Mastromauro\r\n<br>Modera: Adriana Baldini<\/p><\/div>\n\t\t\t\t\t\t\t\t<\/div><\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-paroller-factor=\"0.5\" data-paroller-type=\"foreground\" class=\"elementor-element elementor-element-48a4721 elementor-absolute tc-parallax elementor-widget__width-auto elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"48a4721\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" 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\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/shape3-1.png\" title=\"\" alt=\"\" loading=\"lazy\" \/>\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 data-paroller-factor=\"0.9\" data-paroller-type=\"foreground\" data-paroller-direction=\"vertical\" class=\"elementor-element elementor-element-07a4574 elementor-absolute tc-parallax elementor-widget__width-auto elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"07a4574\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" 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=\"130\" height=\"136\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape4-1.png\" class=\"attachment-large size-large wp-image-2221\" 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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-665fe3a elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"665fe3a\" data-element_type=\"section\" data-e-type=\"section\" id=\"speakers\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-13d378c\" data-id=\"13d378c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-56e52a0 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"56e52a0\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-82f8a89\" data-id=\"82f8a89\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7574ef4 section-title elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7574ef4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\" 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\">OSPITI<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-d7c3872 elementor-section-full_width elementor-section-height-default elementor-section-height-default elementor-invisible\" data-id=\"d7c3872\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;animation&quot;:&quot;pulse&quot;,&quot;animation_delay&quot;:200}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-50e5214\" data-id=\"50e5214\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b9743ab text-right elementor-widget elementor-widget-tc_speaker_list\" data-id=\"b9743ab\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"tc_speaker_list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"speakers-list\">\n\t\t\t\t\t\t<div class=\"row\"><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/carmen-notarangelo\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/NOTARANGELO.jpg\" alt=\"Carmen Notarangelo\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/carmen-notarangelo\/\">Carmen Notarangelo<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/carmine-conelli\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/conelli-2.jpg\" alt=\"Carmine Conelli\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/carmine-conelli\/\">Carmine Conelli<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/chiara-meloni\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/Chiara-Meloni.jpg\" alt=\"Chiara Meloni\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/chiara-meloni\/\">Chiara Meloni<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/daphne-bohemien\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/daphne-boemienne.jpg\" alt=\"Daphne Boh\u00e9mien\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/daphne-bohemien\/\">Daphne Boh\u00e9mien<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/deborah-daddetta\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2017\/09\/Foto-deborah.jpg\" alt=\"Deborah D\u2019Addetta\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/deborah-daddetta\/\">Deborah D\u2019Addetta<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/elisabetta-stragapede\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2017\/09\/stragapede.jpg\" alt=\"Elisabetta Stragapede\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/elisabetta-stragapede\/\">Elisabetta Stragapede<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/federica-timeto\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2017\/09\/timeto.jpg\" alt=\"Federica Timeto\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/federica-timeto\/\">Federica Timeto<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/gero-arnone\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2017\/09\/Arnone_Gero.jpg\" alt=\"Gero Arnone\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/gero-arnone\/\">Gero Arnone<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/giacomo-longhi\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2017\/09\/foto-g-longhi.jpg\" alt=\"Giacomo Longhi\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/giacomo-longhi\/\">Giacomo Longhi<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/leonardo-mastromauro\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/mastromauro_.jpg\" alt=\"Leonardo Mastromauro\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/leonardo-mastromauro\/\">Leonardo Mastromauro<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/lorenzo-fantoni\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2017\/09\/lorenzofantoni.jpg\" alt=\"Lorenzo Fantoni\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/lorenzo-fantoni\/\">Lorenzo Fantoni<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/loreta-minutilli\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2017\/09\/loreta-minutilli_HIGHT.jpg\" alt=\"Loreta Minutilli\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/loreta-minutilli\/\">Loreta Minutilli<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/mara-venuto\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2017\/09\/Mara-Venuto.jpg\" alt=\"Mara Venuto\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/mara-venuto\/\">Mara Venuto<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/marianna-the-influenza\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2017\/09\/mariannatheinfluenza.jpg\" alt=\"Marianna The Influenza\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/marianna-the-influenza\/\">Marianna The Influenza<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/marina-cuollo\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/marina-cuollo.jpg\" alt=\"Marina Cuollo\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/marina-cuollo\/\">Marina Cuollo<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/saif-ur-rehman-raja\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2017\/09\/saifur.jpg\" alt=\"Saif ur Rehman Raja\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/saif-ur-rehman-raja\/\">Saif ur Rehman Raja<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/salvatore-romeo\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/foto-Romeo.jpg\" alt=\"Salvatore Romeo\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/salvatore-romeo\/\">Salvatore Romeo<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><div class=\" speaker-thumb col-lg-3 col-sm-6\">\n\n\t\t\t\t\t<div class=\"card mb-2\"><a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/simona-baldanzi\/\"><figure><img decoding=\"async\" class=\"img-fluid card-img-top\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/Simona-Baldanzi.jpg\" alt=\"Simona Baldanzi\" \/><figcaption><ul class=\"list-inline style=\"display:none;\" right social-list\"><li class=\"social-account list-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<\/li><\/ul><\/figcaption><\/figure><\/a><\/div><div class=\"position-relative mb-4 mt-3\"><h5 class=\"card-title right mb-0\">\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.tessiturefestival.it\/index.php\/speaker\/simona-baldanzi\/\">Simona Baldanzi<\/a>\n\t\t\t\t\t\t\t\t<\/h5><\/div>\n\t\t\t\t\t <\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2f738f4 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"2f738f4\" data-element_type=\"section\" data-e-type=\"section\" id=\"venue\" data-settings=\"{&quot;shape_divider_top&quot;:&quot;pyramids&quot;,&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;pyramids&quot;}\">\n\t\t\t\t\t<div class=\"elementor-shape elementor-shape-top\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M761.9,44.1L643.1,27.2L333.8,98L0,3.8V0l1000,0v3.9\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M761.9,44.1L643.1,27.2L333.8,98L0,3.8V0l1000,0v3.9\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ab94a00\" data-id=\"ab94a00\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-43d47b4 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"43d47b4\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-66 elementor-inner-column elementor-element elementor-element-4090ffc\" data-id=\"4090ffc\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t<div data-paroller-factor=\"-0.05\" data-paroller-type=\"foreground\" data-paroller-direction=\"vertical\" class=\"elementor-element elementor-element-baa222e tc-parallax elementor-widget elementor-widget-image\" data-id=\"baa222e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" 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=\"1200\" height=\"800\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/GIARDINI-DE-NITTIS_.jpg\" class=\"attachment-full size-full wp-image-2451\" alt=\"\" srcset=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/GIARDINI-DE-NITTIS_.jpg 1200w, https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/GIARDINI-DE-NITTIS_-300x200.jpg 300w, https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/GIARDINI-DE-NITTIS_-1024x683.jpg 1024w, https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/GIARDINI-DE-NITTIS_-768x512.jpg 768w, https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/GIARDINI-DE-NITTIS_-618x412.jpg 618w, https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/GIARDINI-DE-NITTIS_-600x400.jpg 600w, https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/GIARDINI-DE-NITTIS_-250x167.jpg 250w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4761d28 overflow-hidden\" data-id=\"4761d28\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t<div data-paroller-factor=\"0.9\" data-paroller-type=\"foreground\" data-paroller-direction=\"vertical\" class=\"elementor-element elementor-element-e319248 elementor-widget__width-auto elementor-absolute tc-parallax elementor-widget elementor-widget-image\" data-id=\"e319248\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" 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=\"92\" height=\"254\" src=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2021\/08\/bg_points.png\" class=\"attachment-full size-full wp-image-801\" alt=\"\" srcset=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2021\/08\/bg_points.png 92w, https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2021\/08\/bg_points-91x250.png 91w\" sizes=\"(max-width: 92px) 100vw, 92px\" \/>\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-7959def elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7959def\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInRight&quot;}\" 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\">Giardini De Nittis<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e84906e elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"e84906e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInRight&quot;,&quot;_animation_delay&quot;:200}\" 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=\"location-info__address-text\">nei pressi della stazione ferroviaria di Barletta.<\/p>\n1773 Viale Carlo Giannone 76121 Barletta\n\ninfo@tessiturefestival.it\n<br><br>\n<a style=\"color:#7C4BEA\" href=\"https:\/\/maps.app.goo.gl\/1f8VxRQ7gBt4Ahuj9\" target=\"_blank\" rel=\"noopener\">Ottieni indicazioni -&gt;<\/a>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-paroller-factor=\"0.2\" data-paroller-type=\"foreground\" data-paroller-direction=\"vertical\" class=\"elementor-element elementor-element-92aa431 elementor-absolute tc-parallax elementor-widget__width-auto elementor-widget elementor-widget-image\" data-id=\"92aa431\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" 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\" src=\"http:\/\/demo.themecube.net\/ters\/zy\/wp-content\/uploads\/2022\/06\/shape4-1.png\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-581ebd1 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"581ebd1\" data-element_type=\"section\" data-e-type=\"section\" id=\"faq\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2d98bd9\" data-id=\"2d98bd9\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-5386444 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5386444\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-42c2fa7\" data-id=\"42c2fa7\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3516fa3 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"3516fa3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;}\" 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\">Frequently<br>\nAsked Questions<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-db1f870 elementor-invisible elementor-widget elementor-widget-accordion\" data-id=\"db1f870\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"accordion.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-accordion\">\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2291\" class=\"elementor-tab-title\" data-tab=\"1\" role=\"button\" aria-controls=\"elementor-tab-content-2291\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Quanto costano i biglietti?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2291\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"1\" role=\"region\" aria-labelledby=\"elementor-tab-title-2291\"><p>L&#8217;evento \u00e8 totalmente Gratuito<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2292\" class=\"elementor-tab-title\" data-tab=\"2\" role=\"button\" aria-controls=\"elementor-tab-content-2292\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Dove si terr\u00e0 l'evento?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2292\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"2\" role=\"region\" aria-labelledby=\"elementor-tab-title-2292\"><p>L&#8217;evento si terr\u00e0 ai Giardini De Nittis in Viale Carlo Giannone, 1773, 76121 Barletta BT<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2293\" class=\"elementor-tab-title\" data-tab=\"3\" role=\"button\" aria-controls=\"elementor-tab-content-2293\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Posso portare degli amici?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2293\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"3\" role=\"region\" aria-labelledby=\"elementor-tab-title-2293\"><p>Certo, devi portare amici, l&#8217;importate \u00e8 registrarsi e avere un biglietto per garantirsi un posto a sedere.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2294\" class=\"elementor-tab-title\" data-tab=\"4\" role=\"button\" aria-controls=\"elementor-tab-content-2294\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Ho delle domande da fare, con chi posso parlare?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2294\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"4\" role=\"region\" aria-labelledby=\"elementor-tab-title-2294\"><p>Per qualsiasi info puoi contattarci via email all&#8217;indirizzo <a href=\"mailto:info@tessiturefestival.it\">info@tessiturefestival.it<\/a><\/p><\/div>\n\t\t\t\t<\/div>\n\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-9df3cda elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"9df3cda\" data-element_type=\"section\" data-e-type=\"section\" id=\"tickets\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b40e897\" data-id=\"b40e897\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-93dead5 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"93dead5\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-703e118 position-relative\" data-id=\"703e118\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c385e70 section-title elementor-widget__width-auto elementor-absolute elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"c385e70\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;,&quot;_position&quot;:&quot;absolute&quot;}\" 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\">TICKET<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5c87337 elementor-widget elementor-widget-tc_ticket\" data-id=\"5c87337\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"tc_ticket.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ticket-price-table d-flex flex-sm-row flex-column justify-content-between\">\n\t\t\t\t\t\t\t<h3 class=\"ticket-title mb-0 w-100 flex-shrink-1 align-self-center\">Tessiture Festival<\/h3>\n\t\t\t\t\t\t\t<p class=\"ticket-price mb-0 w-100 flex-shrink-1 align-self-center\">Gratis<\/p>\n\t\t\t\t\t\t\t<a class=\"btn btn-ticket flex-shrink-1 align-self-center btn-dark btn-md\" href=\"https:\/\/www.eventbrite.it\/e\/tessiture-festival-tickets-1001123696927\" target=\"_blank\">Registrati<\/a><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-69f8861 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-tc_ticket\" data-id=\"69f8861\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"tc_ticket.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ticket-price-table d-flex flex-sm-row flex-column justify-content-between\">\n\t\t\t\t\t\t\t<h3 class=\"ticket-title mb-0 w-100 flex-shrink-1 align-self-center\">One-day pass<\/h3>\n\t\t\t\t\t\t\t<p class=\"ticket-price mb-0 w-100 flex-shrink-1 align-self-center\">$275<\/p>\n\t\t\t\t\t\t\t<a class=\"btn btn-ticket flex-shrink-1 align-self-center btn-dark btn-md\" href=\"http:\/\/themecu.be\/ters\/zy\/checkout\/?add-to-cart=1011\">purchase<\/a><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0064c21 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-tc_ticket\" data-id=\"0064c21\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"tc_ticket.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ticket-price-table d-flex flex-sm-row flex-column justify-content-between\">\n\t\t\t\t\t\t\t<h3 class=\"ticket-title mb-0 w-100 flex-shrink-1 align-self-center\">Multi-day pass<\/h3>\n\t\t\t\t\t\t\t<p class=\"ticket-price mb-0 w-100 flex-shrink-1 align-self-center\">$425<\/p>\n\t\t\t\t\t\t\t<a class=\"btn btn-ticket flex-shrink-1 align-self-center btn-dark btn-md\" href=\"http:\/\/themecu.be\/ters\/zy\/checkout\/?add-to-cart=1012\">purchase<\/a><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-76e5253 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-text-editor\" data-id=\"76e5253\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;,&quot;_animation_delay&quot;:250}\" 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>Your ticket includes access to all sessions, the event app, and all talk recordings.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-9bb5b8c elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-height-default elementor-section-height-default\" data-id=\"9bb5b8c\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a8da162\" data-id=\"a8da162\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-5cb6265 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5cb6265\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-062f781\" data-id=\"062f781\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a918272 elementor-widget elementor-widget-heading\" data-id=\"a918272\" data-element_type=\"widget\" data-e-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\">Thanks to our partners...<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<div class=\"elementor-element elementor-element-b4f95ca elementor-widget elementor-widget-tc_partner_carousel\" data-id=\"b4f95ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"tc_partner_carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div  id=\"partner-carousel\" class=\"swiper-container\">\n\t\t\t\t\t\t<div class=\"swiper-wrapper\"><div class=\"swiper-slide\">\n\t\t \t\t\t\t<div class=\"partner-thumb ml-4 mr-4\">\n\t\t\t\t\t\t\t\t<div class=\"card\"><div class=\"card-body\"><div class=\"s-logo\"><a href=\"#\" class=\"text-dark\"><img decoding=\"async\" class=\"img-fluid p-2\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/partner7.png\" alt=\"atica\"><\/a><\/div><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div><div class=\"swiper-slide\">\n\t\t \t\t\t\t<div class=\"partner-thumb ml-4 mr-4\">\n\t\t\t\t\t\t\t\t<div class=\"card\"><div class=\"card-body\"><div class=\"s-logo\"><img decoding=\"async\" class=\"img-fluid p-2\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/partner6.png\" alt=\"circle\"><\/div><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div><div class=\"swiper-slide\">\n\t\t \t\t\t\t<div class=\"partner-thumb ml-4 mr-4\">\n\t\t\t\t\t\t\t\t<div class=\"card\"><div class=\"card-body\"><div class=\"s-logo\"><a href=\"#\" class=\"text-dark\"><img decoding=\"async\" class=\"img-fluid p-2\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/partner5.png\" alt=\"CodeLab\"><\/a><\/div><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div><div class=\"swiper-slide\">\n\t\t \t\t\t\t<div class=\"partner-thumb ml-4 mr-4\">\n\t\t\t\t\t\t\t\t<div class=\"card\"><div class=\"card-body\"><div class=\"s-logo\"><a href=\"#\" class=\"text-dark\"><img decoding=\"async\" class=\"img-fluid p-2\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/partner3.png\" alt=\"FoxHub\"><\/a><\/div><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div><div class=\"swiper-slide\">\n\t\t \t\t\t\t<div class=\"partner-thumb ml-4 mr-4\">\n\t\t\t\t\t\t\t\t<div class=\"card\"><div class=\"card-body\"><div class=\"s-logo\"><a href=\"#\" class=\"text-dark\"><img decoding=\"async\" class=\"img-fluid p-2\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/partner4.png\" alt=\"HexLab\"><\/a><\/div><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div><div class=\"swiper-slide\">\n\t\t \t\t\t\t<div class=\"partner-thumb ml-4 mr-4\">\n\t\t\t\t\t\t\t\t<div class=\"card\"><div class=\"card-body\"><div class=\"s-logo\"><a href=\"#\" class=\"text-dark\"><img decoding=\"async\" class=\"img-fluid p-2\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/partner2.png\" alt=\"Muzica\"><\/a><\/div><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div><div class=\"swiper-slide\">\n\t\t \t\t\t\t<div class=\"partner-thumb ml-4 mr-4\">\n\t\t\t\t\t\t\t\t<div class=\"card\"><div class=\"card-body\"><div class=\"s-logo\"><a href=\"#\" class=\"text-dark\"><img decoding=\"async\" class=\"img-fluid p-2\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/partner1.png\" alt=\"treva\"><\/a><\/div><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div><div class=\"swiper-slide\">\n\t\t \t\t\t\t<div class=\"partner-thumb ml-4 mr-4\">\n\t\t\t\t\t\t\t\t<div class=\"card\"><div class=\"card-body\"><div class=\"s-logo\"><a href=\"#\" class=\"text-dark\"><img decoding=\"async\" class=\"img-fluid p-2\" src=\"http:\/\/themecu.be\/ters\/zy\/wp-content\/uploads\/2022\/06\/partner8.png\" alt=\"velocity9\"><\/a><\/div><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div><\/div><\/div><script>\n\t\t\t\t      var swiper = new Swiper(\"#partner-carousel\", {\n\t\t\t\t\t\t\t\t\/\/slidesPerView: 6,\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\/\/spaceBetween: 0,\n\t\t\t\t\t\t\t\tcenteredSlides: true,\n\t\t\t\t\t\t\t\tloop: true,\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tbreakpoints: {\n\t\t\t\t          640: {\n\t\t\t\t            slidesPerView: 1,\n\t\t\t\t            spaceBetween: 20,\n\t\t\t\t          },\n\t\t\t\t          1024: {\n\t\t\t\t            slidesPerView: 6,\n\t\t\t\t            spaceBetween: 0,\n\t\t\t\t          },\n\t\t\t\t        },\n\t\t\t\t      });\n\t\t\t\t    <\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-8b79889 elementor-section-full_width elementor-section-content-middle elementor-section-height-default elementor-section-height-default\" data-id=\"8b79889\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-narrow\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9a343ee\" data-id=\"9a343ee\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-7114b75 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7114b75\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-8e4adb2\" data-id=\"8e4adb2\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-31c7f99\" data-id=\"31c7f99\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7967943 elementor-widget elementor-widget-heading\" data-id=\"7967943\" data-element_type=\"widget\" data-e-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\">Resta aggiornato!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b2be25e elementor-widget elementor-widget-text-editor\" data-id=\"b2be25e\" data-element_type=\"widget\" data-e-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>Iscriviti alla nostra newsletter per ricevere aggiornamenti sulla letteratura indipendente e basta.<\/p>\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-097c63a elementor-widget elementor-widget-shortcode\" data-id=\"097c63a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><script>(function() {\n\twindow.mc4wp = window.mc4wp || {\n\t\tlisteners: [],\n\t\tforms: {\n\t\t\ton: function(evt, cb) {\n\t\t\t\twindow.mc4wp.listeners.push(\n\t\t\t\t\t{\n\t\t\t\t\t\tevent   : evt,\n\t\t\t\t\t\tcallback: cb\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n})();\n<\/script><!-- Mailchimp for WordPress v4.14.0 - https:\/\/wordpress.org\/plugins\/mailchimp-for-wp\/ --><form id=\"mc4wp-form-1\" class=\"mc4wp-form mc4wp-form-783\" method=\"post\" data-id=\"783\" data-name=\"Newsletter Form\" ><div class=\"mc4wp-form-fields\"><div class=\"form-inline\">\r\n  <div class=\"form-group\">\r\n\t<input type=\"email\" class=\"form-control br-0 br-w\" name=\"EMAIL\" placeholder=\"Inserisci la tua email\" required \/>\r\n\t<input class=\"br-0 btn btn-primary\" type=\"submit\" value=\"Registrati\" \/>\r\n  <\/div>\r\n  <p style=\"margin-top:10px;\">\r\n    <label>\r\n        <input type=\"checkbox\" name=\"AGREE_TO_TERMS\" value=\"1\" required=\"\" style=\"margin-right:10px;\">Ho letto e accetto i termini e le condizioni<\/label>\r\n<\/p>\r\n\r\n<\/div>\t\t<\/div><label style=\"display: none !important;\">Lascia questo campo vuoto se sei umano: <input type=\"text\" name=\"_mc4wp_honeypot\" value=\"\" tabindex=\"-1\" autocomplete=\"off\" \/><\/label><input type=\"hidden\" name=\"_mc4wp_timestamp\" value=\"1788477507\" \/><input type=\"hidden\" name=\"_mc4wp_form_id\" value=\"783\" \/><input type=\"hidden\" name=\"_mc4wp_form_element_id\" value=\"mc4wp-form-1\" \/><div class=\"mc4wp-response\"><\/div><\/form><!-- \/ Mailchimp for WordPress Plugin --><\/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<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-55a893d\" data-id=\"55a893d\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>UXCONF23 JANUARY 24-26, 2024 NEWYORK Non te ne frega nulla della letteratura? Perfetto! Tessiture \u00e8 il festival per te. Why should you attend the Conference Sed eget est enim. In hac habitasse platea dictumst. Sed quis lectus porttitor, maximus turpis id, pharetra mi. Ut vehicula mauris vel tempor ornare. Selected speakers Learn from leading UX [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"home_template.php","meta":{"footnotes":""},"class_list":["post-2352","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Tessiture Festival - Idee e letterature indipendenti<\/title>\n<meta name=\"description\" content=\"Tessiture Festival - Idee e letterature indipendenti. Primo Festival della letteratura indipendente! Libri e idee a Barletta. 6 7 8 Settembre\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.tessiturefestival.it\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tessiture Festival - Idee e letterature indipendenti\" \/>\n<meta property=\"og:description\" content=\"Tessiture Festival - Idee e letterature indipendenti. Primo Festival della letteratura indipendente! Libri e idee a Barletta. 6 7 8 Settembre\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.tessiturefestival.it\/\" \/>\n<meta property=\"og:site_name\" content=\"Tessiture Festival\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/tessiturefestival\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-05T14:05:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/TESSITURE-LOGO-SOCIAL-27.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2083\" \/>\n\t<meta property=\"og:image:height\" content=\"2083\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Tessiture Festival - Idee e letterature indipendenti\" \/>\n<meta name=\"twitter:description\" content=\"Tessiture Festival - Idee e letterature indipendenti. Primo Festival della letteratura indipendente! Libri e idee a Barletta. 6 7 8 Settembre\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/TESSITURE-LOGO-SOCIAL-27.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Tempo di lettura stimato\" \/>\n\t<meta name=\"twitter:data1\" content=\"13 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.tessiturefestival.it\/\",\"url\":\"https:\/\/www.tessiturefestival.it\/\",\"name\":\"Tessiture Festival - Idee e letterature indipendenti\",\"isPartOf\":{\"@id\":\"https:\/\/www.tessiturefestival.it\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.tessiturefestival.it\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.tessiturefestival.it\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape6-1.png\",\"datePublished\":\"2021-08-18T11:06:30+00:00\",\"dateModified\":\"2024-09-05T14:05:26+00:00\",\"description\":\"Tessiture Festival - Idee e letterature indipendenti. Primo Festival della letteratura indipendente! Libri e idee a Barletta. 6 7 8 Settembre\",\"breadcrumb\":{\"@id\":\"https:\/\/www.tessiturefestival.it\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.tessiturefestival.it\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/www.tessiturefestival.it\/#primaryimage\",\"url\":\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape6-1.png\",\"contentUrl\":\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape6-1.png\",\"width\":259,\"height\":294},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.tessiturefestival.it\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.tessiturefestival.it\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.tessiturefestival.it\/#website\",\"url\":\"https:\/\/www.tessiturefestival.it\/\",\"name\":\"Tessiture Festival\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.tessiturefestival.it\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.tessiturefestival.it\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.tessiturefestival.it\/#organization\",\"name\":\"Tessiture Festival\",\"url\":\"https:\/\/www.tessiturefestival.it\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/www.tessiturefestival.it\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/TESSITURE-LOGO-SOCIAL-27.jpg\",\"contentUrl\":\"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/TESSITURE-LOGO-SOCIAL-27.jpg\",\"width\":2083,\"height\":2083,\"caption\":\"Tessiture Festival\"},\"image\":{\"@id\":\"https:\/\/www.tessiturefestival.it\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/tessiturefestival\/\",\"https:\/\/www.instagram.com\/tessiturefestival\/\",\"https:\/\/www.tiktok.com\/@tessiturefestival\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tessiture Festival - Idee e letterature indipendenti","description":"Tessiture Festival - Idee e letterature indipendenti. Primo Festival della letteratura indipendente! Libri e idee a Barletta. 6 7 8 Settembre","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.tessiturefestival.it\/","og_locale":"it_IT","og_type":"article","og_title":"Tessiture Festival - Idee e letterature indipendenti","og_description":"Tessiture Festival - Idee e letterature indipendenti. Primo Festival della letteratura indipendente! Libri e idee a Barletta. 6 7 8 Settembre","og_url":"https:\/\/www.tessiturefestival.it\/","og_site_name":"Tessiture Festival","article_publisher":"https:\/\/www.facebook.com\/tessiturefestival\/","article_modified_time":"2024-09-05T14:05:26+00:00","og_image":[{"width":2083,"height":2083,"url":"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/TESSITURE-LOGO-SOCIAL-27.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_title":"Tessiture Festival - Idee e letterature indipendenti","twitter_description":"Tessiture Festival - Idee e letterature indipendenti. Primo Festival della letteratura indipendente! Libri e idee a Barletta. 6 7 8 Settembre","twitter_image":"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/TESSITURE-LOGO-SOCIAL-27.jpg","twitter_misc":{"Tempo di lettura stimato":"13 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.tessiturefestival.it\/","url":"https:\/\/www.tessiturefestival.it\/","name":"Tessiture Festival - Idee e letterature indipendenti","isPartOf":{"@id":"https:\/\/www.tessiturefestival.it\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.tessiturefestival.it\/#primaryimage"},"image":{"@id":"https:\/\/www.tessiturefestival.it\/#primaryimage"},"thumbnailUrl":"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape6-1.png","datePublished":"2021-08-18T11:06:30+00:00","dateModified":"2024-09-05T14:05:26+00:00","description":"Tessiture Festival - Idee e letterature indipendenti. Primo Festival della letteratura indipendente! Libri e idee a Barletta. 6 7 8 Settembre","breadcrumb":{"@id":"https:\/\/www.tessiturefestival.it\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.tessiturefestival.it\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/www.tessiturefestival.it\/#primaryimage","url":"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape6-1.png","contentUrl":"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2022\/06\/shape6-1.png","width":259,"height":294},{"@type":"BreadcrumbList","@id":"https:\/\/www.tessiturefestival.it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.tessiturefestival.it\/"},{"@type":"ListItem","position":2,"name":"Home"}]},{"@type":"WebSite","@id":"https:\/\/www.tessiturefestival.it\/#website","url":"https:\/\/www.tessiturefestival.it\/","name":"Tessiture Festival","description":"","publisher":{"@id":"https:\/\/www.tessiturefestival.it\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.tessiturefestival.it\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Organization","@id":"https:\/\/www.tessiturefestival.it\/#organization","name":"Tessiture Festival","url":"https:\/\/www.tessiturefestival.it\/","logo":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/www.tessiturefestival.it\/#\/schema\/logo\/image\/","url":"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/TESSITURE-LOGO-SOCIAL-27.jpg","contentUrl":"https:\/\/www.tessiturefestival.it\/wp-content\/uploads\/2024\/09\/TESSITURE-LOGO-SOCIAL-27.jpg","width":2083,"height":2083,"caption":"Tessiture Festival"},"image":{"@id":"https:\/\/www.tessiturefestival.it\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/tessiturefestival\/","https:\/\/www.instagram.com\/tessiturefestival\/","https:\/\/www.tiktok.com\/@tessiturefestival"]}]}},"_links":{"self":[{"href":"https:\/\/www.tessiturefestival.it\/index.php\/wp-json\/wp\/v2\/pages\/2352"}],"collection":[{"href":"https:\/\/www.tessiturefestival.it\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.tessiturefestival.it\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.tessiturefestival.it\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tessiturefestival.it\/index.php\/wp-json\/wp\/v2\/comments?post=2352"}],"version-history":[{"count":163,"href":"https:\/\/www.tessiturefestival.it\/index.php\/wp-json\/wp\/v2\/pages\/2352\/revisions"}],"predecessor-version":[{"id":2752,"href":"https:\/\/www.tessiturefestival.it\/index.php\/wp-json\/wp\/v2\/pages\/2352\/revisions\/2752"}],"wp:attachment":[{"href":"https:\/\/www.tessiturefestival.it\/index.php\/wp-json\/wp\/v2\/media?parent=2352"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}