{"id":21335,"date":"2024-11-12T17:25:38","date_gmt":"2024-11-12T16:25:38","guid":{"rendered":"https:\/\/paulmmueller.com\/?page_id=21335"},"modified":"2024-12-09T10:16:26","modified_gmt":"2024-12-09T09:16:26","slug":"2025-2","status":"publish","type":"page","link":"https:\/\/paulmmueller.fantomas-staging.de\/it\/2025-2\/","title":{"rendered":"2025"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"21335\" class=\"elementor elementor-21335\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f4342ce e-con-full e-flex e-con e-parent\" data-id=\"f4342ce\" data-element_type=\"container\" id=\"abschnitt-000\">\n\t\t<div class=\"elementor-element elementor-element-5041c24 e-con-full e-flex e-con e-child\" data-id=\"5041c24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0f1debc elementor-widget elementor-widget-heading\" data-id=\"0f1debc\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Un caloroso benvenuto<br>alla campagna di raccolta fondi<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1945565 dce_masking-none elementor-widget elementor-widget-image\" data-id=\"1945565\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"3042\" height=\"575\" src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w.png\" class=\"attachment-full size-full wp-image-22570\" alt=\"\" srcset=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w.png 3042w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-300x57.png 300w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-1024x194.png 1024w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-768x145.png 768w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-1536x290.png 1536w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-2048x387.png 2048w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-18x3.png 18w\" sizes=\"(max-width: 3042px) 100vw, 3042px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4af06f7 e-con-full e-flex e-con e-child\" data-id=\"4af06f7\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d383f0a elementor-widget elementor-widget-html\" data-id=\"d383f0a\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\n<div id=\"splashButton\">\n      <video muted=\"muted\" autoplay loop playsinline>\n    <source  src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/1_Splash_screen_Button.mp4\" \/>\n  <\/video>\n    \n<\/div>\n\n\n\n\n\n\n<script>\n\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n    \/\/ Function to check if the device is mobile\n    function isMobileDevice() {\n        return \/Mobi|Android\/i.test(navigator.userAgent);\n    }\n\n    \/\/ Function to check if the URL contains '\/en\/'\n    function isEnglishPage() {\n        return window.location.pathname.includes(\"\/en\/\");\n    }\n\n    \/\/ Function to update file sources based on the device and URL\n    function updateSourcesForMobileAndLanguage() {\n        \/\/ Update video sources\n        document.querySelectorAll(\"video source\").forEach((source) => {\n            let originalSrc = source.getAttribute(\"src\");\n            if (!originalSrc) return;\n\n            \/\/ Add 'EN_' prefix if the page is in English\n            if (isEnglishPage() && !originalSrc.startsWith(\"EN_\")) {\n                originalSrc = originalSrc.replace(\/([^\/]+)$\/, \"EN_$1\");\n            }\n\n            \/\/ Add '_mobil' suffix for mobile devices\n            if (isMobileDevice() && !originalSrc.includes(\"_mobil\")) {\n                originalSrc = originalSrc.replace(\/(\\.\\w+)$\/, \"_mobil$1\");\n            }\n\n            \/\/ Update the source attribute\n            source.setAttribute(\"src\", originalSrc);\n        });\n\n        \/\/ Update image sources\n        document.querySelectorAll(\"img\").forEach((img) => {\n            let originalSrc = img.getAttribute(\"src\");\n            if (!originalSrc) return;\n\n            \/\/ Replace the path and remove `.webp` from the end of the URL\n            let updatedSrc = originalSrc\n                .replace(\"\/wp-content\/webp-express\/webp-images\/uploads\/\", \"\/wp-content\/uploads\/\")\n                .replace(\".webp\", \"\"); \/\/ Remove .webp extension\n\n            \/\/ Add 'EN_' prefix if the page is in English\n            if (isEnglishPage() && !updatedSrc.includes(\"\/EN_\")) {\n                updatedSrc = updatedSrc.replace(\/([^\/]+)$\/, \"EN_$1\");\n            }\n\n            \/\/ Update the src attribute\n            img.setAttribute(\"src\", updatedSrc);\n        });\n\n        \/\/ Reload videos to apply the new sources\n        document.querySelectorAll(\"video\").forEach((video) => {\n            video.load();\n        });\n    }\n\n    \/\/ Call the function to update sources\n    updateSourcesForMobileAndLanguage();\n});\n\n\n\n\n document.addEventListener(\"DOMContentLoaded\", () => {\n\n    const lastPlayedVideo = localStorage.getItem(\"lastPlayedVideo\");\n     if (lastPlayedVideo) {\n        const abschnitt000 = document.getElementById(\"abschnitt-000\");\n        abschnitt000.classList.add(\"hidden\"); \n         updateAfter();\n         \n     }\n    else {  \n    const splashButton = document.getElementById(\"splashButton\");\n    const abschnitt000 = document.getElementById(\"abschnitt-000\");\n        const abschnitt010 = document.getElementById(\"abschnitt-010\");\n    const automat = document.getElementById(\"automat\");\n\n    splashButton.addEventListener(\"click\", () => {\n        if (abschnitt000) {\n            abschnitt000.classList.add(\"hidden\"); \/\/ Add 'hidden' class to hide the element\n        }\n\n        if (automat) {\n            automat.classList.remove(\"hidden\"); \/\/ Remove 'hidden' class to show the element\n            automat.classList.add(\"show\"); \/\/ Optional: Add a 'show' class if needed\n            \n                    \/\/ Play the audio file\n    const audio = new Audio(\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/hotelpachinko-030-24125.mp3\");\n    audio.play().catch(error => console.error(\"Audio playback failed:\", error));\n        }\n                \/\/ Scroll to abschnitt-010\n        if (abschnitt010) {\n            abschnitt010.scrollIntoView({ behavior: \"smooth\", block: \"start\" });\n        }\n    });\n    }\n});\n\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9bae16d hidden e-flex e-con-boxed e-con e-parent\" data-id=\"9bae16d\" data-element_type=\"container\" id=\"automat\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-cd9d2ad e-con-full e-flex e-con e-child\" data-id=\"cd9d2ad\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-be640bf video-container e-con-full e-flex e-con e-child\" data-id=\"be640bf\" data-element_type=\"container\" id=\"abschnitt-010\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2a7dd4b elementor-widget elementor-widget-html\" data-id=\"2a7dd4b\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n    .video-container-010 {\n    width: 50%; \n    height: auto;\n    object-fit: contain;\n    margin: 0 auto;\n    position: relative;\n    padding-top:50px;\n\n}\n\n\n.hidden {\n    display: none !important;\n}\n\n\n.show {\n    display: block !important;\n}\n\n@media (max-width:600px) {\n    .video-container-010 {\n    width: 100%; \n    height: auto;\n    object-fit: contain;\n    margin: 0 auto;\n    position: relative;\n    padding-top:50px;\n}\n    \n}\n\n<\/style>\n\n\n\n<div class=\"video-container-010\">\n  <video muted=\"muted\" autoplay loop playsinline>\n    <source  src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/1_Titel_Jahreszahl_opt.mp4\" type=\"video\/mp4\" \/>\n  <\/video>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f480d93 e-con-full e-flex e-con e-child\" data-id=\"f480d93\" data-element_type=\"container\" id=\"abschnitt-020\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f1ecbb4 elementor-widget elementor-widget-html\" data-id=\"f1ecbb4\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n.abschnitt-020 {\n    position: relative;\n    width: 100%;\n    min-height: 50vh; \/* Make the section occupy full viewport height *\/\n}\n\n\/* Centering the video *\/\n.abschnitt-020 video {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translate(-50%, -50%);\n    min-width: 100%;\n    min-height: 100%;\n    object-fit: cover; \/* Ensure the video covers the container without distortion *\/\n}\n\n\/* Centering the image container *\/\n.image-container-020 {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translate(-50%, -50%);\n    z-index: 1; \/* Place it above the video *\/\n    width: 30%;\n    text-align: center;\n    color: #dc0000;\n    cursor: pointer;\n}\n\n\/* Start and hover image adjustments *\/\n.image-020-start,\n.image-020-hover {\n    display: block; \/* Ensure proper visibility *\/\n    max-width: 100%; \/* Prevent images from exceeding container width *\/\n    height: auto; \/* Maintain aspect ratio *\/\n}\n\n.image-020-hover {\n    display: none;\n}\n\n\/* Show hover image and hide start image on hover *\/\n.image-container-020:hover .image-020-hover {\n    display: block;\n}\n\n.image-container-020:hover .image-020-start {\n    display: none;\n}\n\n\n@media (max-width:600px) {\n    .image-container-020 {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translate(-50%, -50%);\n    z-index: 1; \/* Place it above the video *\/\n    width: 100%;\n    text-align: center;\n    color: #dc0000;\n    cursor: pointer;\n}\n}\n\n\n<\/style>\n\n<!-- Section abschnitt-020 -->\n<div class=\"abschnitt-020\" id=\"\">\n    <div class=\"image-container-020\" id=\"clickable-020\">\n        <div class=\"image-020-start\">\n            <img decoding=\"async\" src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/2_sie_spielen_default_2.png\" alt=\"Immagine predefinita\">\n        <\/div>\n        <div class=\"image-020-hover\">\n            <img decoding=\"async\" src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/2_sie_spielen_hoover_2.png\" alt=\"Immagine in primo piano\">\n        <\/div>\n    <\/div>\n    <video autoplay loop muted playsinline>\n        <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/0_Abschnitt_a_opt.mp4\" type=\"video\/mp4\">\n        Il vostro browser non supporta il tag video.\n    <\/video>\n<\/div>\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n    const clickableElement = document.getElementById(\"clickable-020\");\n    const section30 = document.querySelector(\".abschnitt-030\");\n    const section40 = document.querySelector(\".abschnitt-040\");\n\n    clickableElement.addEventListener(\"click\", (event) => {\n        event.preventDefault(); \/\/ Prevent default anchor behavior\n\n        \/\/ Remove the \"hidden\" class from abschnitt-30 and abschnitt-40\n        if (section30) section30.classList.remove(\"hidden\");\n        if (section40) section40.classList.remove(\"hidden\");\n        \n            \/\/ Scroll to abschnitt-30\n    const abschnitt30 = document.getElementById(\"abschnitt-030\");\n    if (abschnitt30) {\n        abschnitt30.scrollIntoView({ behavior: \"smooth\", block: \"start\" });\n    }\n\n    });\n    \n});\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cf0ce18 e-con-full e-flex e-con e-child\" data-id=\"cf0ce18\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e30dddf elementor-widget elementor-widget-html\" data-id=\"e30dddf\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n\n.abschnitt-030 {\n    position: relative;\n    width: 100%;\n    min-height: 400px; \/* Make the section occupy full viewport height *\/\n}\n\n.abschnitt-030 video {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translate(-50%, -50%);\n    min-width: 100%;\n    min-height: 100%;\n    object-fit: cover; \/* Ensure the video covers the container without distortion *\/\n}\n\n.text-container-030 {\n  z-index: 1;\n  width:25%;\n  margin: 0 auto;\n  position: absolute;\n  text-align: center;\n  color: #dc0000;\n  padding: 10px;\n  color: #fff;\n  font-size: 1.8rem;\n  font-weight: 400;\n    top: 50%;\n  left: 50%;\n  transform: translateX(-50%) translateY(-50%);\n}\n\n@media (max-width:600px) {\n    .text-container-030 {\n  z-index: 1;\n  width:100%;\n  margin: 0 auto;\n  position: absolute;\n  text-align: center;\n  color: #dc0000;\n  padding: 10px;\n  color: #fff;\n  font-size: 1.8rem;\n  font-weight: 400;\n    top: 50%;\n  left: 50%;\n  transform: translateX(-50%) translateY(-50%);\n}\n\n.abschnitt-030 video {\ndisplay: none;\n}\n}\n\n<\/style>\n\n<div class=\"abschnitt-030\" id=\"abschnitt-030\">\n    \n    \n    <div class=\"text-container-030\">\n        <p>\nPartecipate alla campagna di donazione di quest'anno e giocate per le lattine per la\nsu questa pagina per la fondazione <br><strong>cuore di Monaco di Baviera!<\/strong><br> Fate girare la frutta sulla nostra slot machine...\nLa partecipazione \u00e8 gratuita e possibile una sola volta, senza registrazione.\n        <\/p>\n\n    <\/div>\n\n\n  <video autoplay muted loop playsinline>\n    <source  src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/0_Abschnitt_b_opt.mp4\" type=\"video\/mp4\" \/>\n  <\/video>\n  \n<\/div>\n\n\n<script>\n    \nwindow.updateAfter = function() {\n    const totalDosenElement = document.getElementById(\"totaldosen\");\n\n    \/\/ Check for lastPlayedVideo in localStorage\n    const lastPlayedVideo = localStorage.getItem(\"lastPlayedVideo\");\n    console.log(\"lastPlayedVideo: \" + lastPlayedVideo);\n\n    \/\/ Define sections to hide\n    const sectionsToHide = [\"abschnitt-010\", \"abschnitt-020\", \"abschnitt-030\", \"abschnitt-040\", \"automat\"];\n\n    \/\/ Hide specified sections\n    sectionsToHide.forEach(sectionId => {\n        const section = document.getElementById(sectionId);\n        if (section) {\n            console.log(`Hiding section: ${sectionId}`);\n            section.classList.add(\"hidden\");\n            section.classList.remove(\"show\");\n\n        } else {\n            console.error(`Section not found: ${sectionId}`);\n        }\n    });\n\n    \/\/ If lastPlayedVideo exists, show abschnitt-50 and the corresponding video\n    if (lastPlayedVideo) {\n        const abschnitt50 = document.getElementById(\"abschnitt-050\");\n        const abschnitt60 = document.getElementById(\"abschnitt-060\");\n        console.log(\"lastPlayedVideo ok\");\n\n        if (abschnitt50) {\n            abschnitt50.classList.remove(\"hidden\");\n            console.log(\"abschnitt50 visible?\");\n            \n            \/\/ Scroll to danke\n            const danke = document.getElementById(\"danke\");\n            if (danke) {\n                danke.scrollIntoView({ behavior: \"smooth\", block: \"start\" });\n            }\n            \n        }\n\n        if (abschnitt60) {\n            abschnitt60.classList.remove(\"hidden\");\n            abschnitt60.classList.add(\"show\");\n            void abschnitt60.offsetWidth; \/\/ Trigger reflow\n            abschnitt60.style.display = \"block\";\n            console.log(\"abschnitt60 visible?\");\n        } else {\n            console.error(\"#abschnitt-60 not found in the DOM\");\n        }\n\n        let lastVideo;\n        if (lastPlayedVideo === \"3_Automat_Spiel_30_Dosen\") {\n            lastVideo = \"30\";\n            console.log(\"lastVideo: \" + lastVideo);\n        }\n\n        if (lastPlayedVideo === \"3_Automat_Spiel_50_Dosen\") {\n            lastVideo = \"50\";\n            console.log(\"lastVideo: \" + lastVideo);\n        }\n        if (lastPlayedVideo === \"3_Automat_Spiel_100_Dosen\") {\n            lastVideo = \"100\";\n            console.log(\"lastVideo: \" + lastVideo);\n        }\n\n        \/\/ Show the corresponding video\n        const videoElement = document.getElementById(`${lastVideo}v`);\n        if (videoElement) {\n            videoElement.classList.remove(\"hidden\");\n            videoElement.classList.add(\"show\");\n        } else {\n            console.error(`Video element with ID \"${lastVideo}\" not found.`);\n        }\n    }\n\n    function fetchAndDisplayTotalDosen() {\n        const sumUrl = \"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/jak-2025\/sum.txt\";\n        fetch(sumUrl)\n            .then(response => {\n                if (!response.ok) {\n                    throw new Error(`Failed to fetch sum.txt: ${response.statusText}`);\n                }\n                return response.text();\n            })\n            .then(data => {\n                if (!data || isNaN(data.trim())) {\n                    throw new Error(\"Incorrect contents fetched.\");\n                }\n                totalDosenElement.textContent = `${data.trim()}`;\n                console.log(\"Total dosen fetched and displayed:\", data.trim());\n            })\n            .catch(error => {\n                console.error(\"Error fetching total dosen:\", error);\n                totalDosenElement.textContent = \"Error loading total dosen.\";\n            });\n    }\n\n    fetchAndDisplayTotalDosen();\n\n    \/\/ Play the audio file\n    const audio = new Audio(\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/winning-218995.mp3\");\n    audio.play().catch(error => console.error(\"Audio playback failed:\", error));\n    \n};\n\n    \n<\/script>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b68492f e-con-full e-flex e-con e-child\" data-id=\"b68492f\" data-element_type=\"container\" id=\"abschnitt-040\">\n\t\t\t\t<div class=\"elementor-element elementor-element-be627d1 elementor-widget elementor-widget-html\" data-id=\"be627d1\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n.abschnitt-040 {\n    position: relative;\n    width: 100%;\n    min-height:750px; \/* Make the section occupy full viewport height *\/\n}\n\n.abschnitt-040 video {\n  z-index: 1;\n  width:40%;\n  text-align: center;\n    margin: 0 auto;\n}\n\n.abschnitt-040 .bgvideo {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translate(-50%, -50%);\n    min-width: 100%;\n    min-height: 100%;\n    object-fit: contain;\n    z-index: -1;\n}\n\n.abschnitt-040 .boden {\n    position: absolute;\n    bottom: 0;\n}\n\n\n.abschnitt-040 .automat {\n    cursor: pointer;\n}\n\n@media (max-width:600px) {\n    .abschnitt-040 {\n    width: 100%; \n    height: auto;\n    object-fit: contain;\n    margin: 0 auto;\n    position: relative;\n    min-height:500px; \n}\n\n\n.abschnitt-040 video {\n    z-index: 1;\n    width: 100%;\n    text-align: center;\n    margin: 0 auto;\n        position: absolute;\n    bottom: 0;\n}\n\n}\n\n<\/style>\n\n<div class=\"abschnitt-040\" id=\"\">\n    <div class=\"automat\" id=\"automatStart\">\n        <video playsinline autoplay loop muted id=\"3_Automat_Start\" class=\"show\">\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/3_Automat_Start.mp4\" \/>\n        <\/video>\n        <video playsinline id=\"3_Automat_Niete_2_Versuche\" class=\"hidden\">\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/3_Automat_Niete.mp4\" \/>\n        <\/video>\n        <video playsinline id=\"3_Automat_Niete_2_Versuche_Loop\" class=\"hidden\">\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/3_Automat_Niete_2_Versuche_Loop.mp4\" \/>\n        <\/video>\n        <video playsinline id=\"3_Automat_Niete_1_Versuch\" class=\"hidden\">\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/3_Automat_Niete.mp4\" \/>\n        <\/video>\n        <video playsinline id=\"3_Automat_Niete_1_Versuch_Loop\" class=\"hidden\">\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/3_Automat_Niete_1_Versuch_Loop.mp4\" \/>\n        <\/video>\n        <video playsinline id=\"3_Automat_Spiel_100_Dosen\" class=\"hidden\">\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/3_Automat_Spiel_100_Dosen.mp4\" \/>\n        <\/video>\n        <video playsinline id=\"3_Automat_Spiel_50_Dosen\" class=\"hidden\">\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/3_Automat_Spiel_50_Dosen.mp4\" \/>\n        <\/video>\n        <video playsinline id=\"3_Automat_Spiel_30_Dosen\" class=\"hidden\">\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/3_Automat_Spiel_30_Dosen.mp4\" \/>\n        <\/video>\n        <\/div>\n          <video autoplay muted loop playsinline class=\"bgvideo\">\n    <source  src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/0_Abschnitt_c2_opt.mp4\" type=\"video\/mp4\" \/>\n  <\/video>\n<\/div>\n<img decoding=\"async\" class=\"boden\" src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/4_boden.png\">\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n    const startVideo = document.getElementById(\"3_Automat_Start\");\n    const videoOptions = [\n        document.getElementById(\"3_Automat_Spiel_100_Dosen\"),\n        document.getElementById(\"3_Automat_Spiel_50_Dosen\"),\n        document.getElementById(\"3_Automat_Spiel_30_Dosen\"),\n        document.getElementById(\"3_Automat_Niete_1_Versuch\"),\n    ];\n    const automatElement = document.getElementById(\"automat\");\n\n    const videoNiete2Versuche = document.getElementById(\"3_Automat_Niete_2_Versuche\");\n    const videoNiete2VersucheLoop = document.getElementById(\"3_Automat_Niete_2_Versuche_Loop\");\n    const videoNiete1VersuchLoop = document.getElementById(\"3_Automat_Niete_1_Versuch_Loop\");\n\n    const LOCAL_STORAGE_KEY = \"lastPlayedVideo\";\n\n    \/\/ Helper functions\n    function storeLastPlayedVideo(videoId) {\n        localStorage.setItem(LOCAL_STORAGE_KEY, videoId);\n    }\n\n    function playVideo(videoElement, onEndCallback, loop = false) {\n        if (!videoElement) return;\n        hideAllVideos();\n        videoElement.classList.remove(\"hidden\");\n        videoElement.classList.add(\"show\");\n        videoElement.loop = loop;\n        videoElement.play();\n        storeLastPlayedVideo(videoElement.id);\n        videoElement.onended = () => {\n            if (onEndCallback && !loop) onEndCallback();\n        };\n    }\n\n    function hideAllVideos() {\n        document.querySelectorAll(\"video[id*='Automat']\").forEach((video) => {\n            video.pause();\n            video.classList.add(\"hidden\");\n            video.classList.remove(\"show\");\n            video.loop = false; \/\/ Reset loop state\n        });\n    }\n\n    function enablePointerEvents(videoElement) {\n        videoElement.style.pointerEvents = \"auto\";\n    }\n\n    function disablePointerEvents(videoElement) {\n        videoElement.style.pointerEvents = \"none\";\n    }\n\n    function handleSpielVideoEnd() {\n        console.log(\"Executing updateAfter()...\");\n        updateAfter();\n    }\n\n    \/\/ Attach updateAfter to \"Spiel\" videos using addEventListener\n    [\"3_Automat_Spiel_100_Dosen\", \"3_Automat_Spiel_50_Dosen\", \"3_Automat_Spiel_30_Dosen\"].forEach((id) => {\n        const video = document.getElementById(id);\n        if (video) {\n            video.addEventListener(\"ended\", handleSpielVideoEnd);\n        }\n    });\n\n    \/\/ Main logic\n    startVideo.addEventListener(\"click\", () => {\n        hideAllVideos();\n        \/\/ Scroll to automatStart\n        const automatStart = document.getElementById(\"automatStart\");\n        if (automatStart) {\n            automatStart.scrollIntoView({ behavior: \"smooth\", block: \"nearest\" });\n        }\n        playVideo(videoNiete2Versuche, () => {\n            playVideo(videoNiete2VersucheLoop, null, true); \/\/ Enable looping\n            enablePointerEvents(videoNiete2VersucheLoop); \/\/ Ensure clicks work immediately\n        });\n    });\n\n    videoNiete2VersucheLoop.addEventListener(\"click\", () => {\n        videoNiete2VersucheLoop.pause();\n        disablePointerEvents(videoNiete2VersucheLoop);\n\n        const randomVideo = videoOptions[Math.floor(Math.random() * videoOptions.length)];\n        playVideo(randomVideo, () => {\n            if (randomVideo.id === \"3_Automat_Niete_1_Versuch\") {\n                playVideo(videoNiete1VersuchLoop, null, true);\n                enablePointerEvents(videoNiete1VersuchLoop);\n            }\n        });\n        \n            \/\/ Only send result to server if the selected video contributes to the score\n    if ([\"3_Automat_Spiel_100_Dosen\", \"3_Automat_Spiel_50_Dosen\", \"3_Automat_Spiel_30_Dosen\"].includes(randomVideo.id)) {\n        sendResultToServer(randomVideo.id);\n    } else {\n        console.log(`No score update for video: ${randomVideo.id}`);\n    }\n    });\n\n    videoNiete1VersuchLoop.addEventListener(\"click\", () => {\n        videoNiete1VersuchLoop.pause();\n        disablePointerEvents(videoNiete1VersuchLoop);\n\n        const filteredVideoOptions = videoOptions.filter(\n            (video) => video.id !== \"3_Automat_Niete_1_Versuch\"\n        );\n        const randomVideo = filteredVideoOptions[Math.floor(Math.random() * filteredVideoOptions.length)];\n        playVideo(randomVideo);\n    });\n});\n\nfunction sendResultToServer(videoId) {\n    \/\/ Map video IDs to their respective scores\n    const videoScores = {\n        \"3_Automat_Spiel_100_Dosen\": 100,\n        \"3_Automat_Spiel_50_Dosen\": 50,\n        \"3_Automat_Spiel_30_Dosen\": 30\n    };\n\n    \/\/ Get the score for the given videoId\n    const score = videoScores[videoId] || 0;\n    console.log('score: '+score);\n\n    \/\/ Send the score to the server\n    fetch(\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/jak-2025\/jak-2025.php\", {\n        method: \"POST\",\n        headers: {\n            \"Content-Type\": \"application\/json\"\n        },\n    body: JSON.stringify({\n        score: score,\n        token: \"cQfrmY79uUP4RLW6\" \/\/ Add a secret token\n    })\n    })\n        .then(response => {\n            if (!response.ok) {\n                throw new Error(`Server error: ${response.statusText}`);\n            }\n            return response.json();\n        })\n        .then(data => {\n            if (data.status === \"success\") {\n                console.log(\"Score successfully sent to server:\", score);\n            } else {\n                console.error(\"Error from server:\", data.message);\n            }\n        })\n        .catch(error => {\n            console.error(\"Failed to send score to server:\", error);\n        });\n}\n\n\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d782974 e-flex e-con-boxed e-con e-parent\" data-id=\"d782974\" data-element_type=\"container\" id=\"danke\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-2220431 e-con-full e-flex e-con e-child\" data-id=\"2220431\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2a3c6dd elementor-widget elementor-widget-html\" data-id=\"2a3c6dd\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n.abschnitt-050 {\n    width: 55%;\n    height: auto;\n    object-fit: contain;\n    margin: 0 auto;\n    position: relative;\n}\n\n#totaldosen {\n    position: relative;\n    z-index:999;\n    padding-top:5rem;\n    padding-bottom:5rem;\n    font-size: 15rem;\n    color: #FFF;\n    text-align: center;\n    font-weight: 900;\n      -webkit-animation: glow 1s ease-in-out infinite alternate;\n  -moz-animation: glow 1s ease-in-out infinite alternate;\n  animation: glow 1s ease-in-out infinite alternate;\n}\n\n@-webkit-keyframes glow {\n  from {\n    text-shadow: 0 0 0px #fff, 0 0 0px #fff, 0 0 30px #FFE200, 0 0 40px #FFE200, 0 0 50px #FFE200, 0 0 60px #FFE200, 0 0 70px #FFE200;\n  }\n  to {\n    text-shadow: 0 0 0px #fff, 0 0 0px #FFF396, 0 0 40px #FFF396, 0 0 50px #FFF396, 0 0 60px #FFF396, 0 0 70px #FFF396, 0 0 80px #FFF396;\n  }\n}\n\n#totaldosentext {\n    padding-top: 5rem;\n}\n\n#totaldosentext p {\n    font-size:2em;\n}\n\n@media (max-width:600px) {\n    .abschnitt-050 {\n    width: 100%;\n    height: auto;\n    object-fit: contain;\n    margin: 0 auto;\n    position: relative;\n}\n\n#totaldosen {\n    font-size: 8rem;\n    color: #FFF;\n    text-align: center;\n    font-weight: 900;\n    margin-top:2rem;\n    margin-bottom: 2rem;\n}\n\n#totaldosentext {\n    padding-top: 1rem;\n}\n\n#totaldosentext p{\n    font-size:1.7em;\n}\n}\n\n<\/style>\n\n<div class=\"abschnitt-050 hidden\" id=\"abschnitt-050\">\n    <div class=\"thankyou\" id=\"thankyou\">\n        <video id=\"100v\" class=\"hidden\" autoplay loop muted playsinline>\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/1_danke_100_dosen.mp4\" \/>\n        <\/video>\n        <video id=\"50v\" class=\"hidden\" autoplay loop muted playsinline>\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/1_danke_50_dosen.mp4\"\/>\n        <\/video>\n        <video id=\"30v\" class=\"hidden\" autoplay loop muted playsinline>\n            <source src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/1_danke_30_dosen.mp4\" \/>\n        <\/video>\n    <\/div>\n    <div id=\"totaldosen\"><\/div>\n    <div id=\"totaldosentext\">\n    <p style=\"text-align: center;line-height: 4rem;\"><strong><span style=\"color: #ffffff;\">Dosi su<\/span><\/strong><br>\n    <a href=\"https:\/\/smuenchnerherz.de\/\"><strong><span style=\"color: #ffffff;text-decoration:underline;\">cuore di Monaco di Baviera<br><\/span><\/strong><\/a><br>\n    <\/p>\n    <\/div>\n<\/div>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e21399f e-con-full hidden e-flex e-con e-child\" data-id=\"e21399f\" data-element_type=\"container\" id=\"abschnitt-060\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d539dfb elementor-widget elementor-widget-text-editor\" data-id=\"d539dfb\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>A nome di tutto lo staff di Paul M. M\u00fcller, desideriamo ringraziarvi per la vostra partecipazione e la grande collaborazione!<\/p><p>Per favore, diffondete la notizia!<br \/>Pi\u00f9 persone giocano, pi\u00f9 donazioni vengono raccolte per una buona causa.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-16dd1f0 elementor-widget elementor-widget-html\" data-id=\"16dd1f0\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n    \n\/* Centering the image container *\/\n.image-container-weitersagen {\n    position: relative;\n    width: 55%;\n    text-align: center;\n    color: #dc0000;\n    cursor: pointer;\n    margin: auto;\n}\n\n\n\/* Start and hover image adjustments *\/\n.image-weitersagen-start,\n.image-weitersagen-hover {\n    display: block; \/* Ensure proper visibility *\/\n    max-width: 100%; \/* Prevent images from exceeding container width *\/\n    height: auto; \/* Maintain aspect ratio *\/\n}\n\n.image-weitersagen-hover {\n    display: none;\n}\n\n\/* Show hover image and hide start image on hover *\/\n.image-container-weitersagen:hover .image-weitersagen-hover {\n    display: block;\n}\n\n.image-container-weitersagen:hover .image-weitersagen-start {\n    display: none;\n}\n   \n#confirmationModal {\n    z-index: 1000;\n    max-width: 400px;\n    text-align: center;\n} \n\n@media (max-width:600px) {\n    .image-container-weitersagen {\n        width: 100%;\n    }\n    \n    #confirmationModal {\n        width: 90%;\n    max-width: 90%;\n}\n}\n    \n<\/style>\n\n\n\n\n<!-- Section abschnitt-weitersagen -->\n<div class=\"weitersagen\" id=\"weitersagen\">\n    <div class=\"image-container-weitersagen\" id=\"clickable-weitersagen\">\n        <div class=\"image-weitersagen-start\">\n            <img decoding=\"async\" src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/1_Weitersagen_Button_default.png\" alt=\"Immagine predefinita\">\n        <\/div>\n        <div class=\"image-weitersagen-hover\">\n            <img decoding=\"async\" src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/1_Weitersagen_Button_hoover.png\" alt=\"Immagine in primo piano\">\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<!-- Modal -->\n<div id=\"confirmationModal\" style=\"display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);\">\n    <p id=\"modalMessage\"><\/p>\n    <button id=\"closeModalButton\" style=\"margin-top: 20px;font-size: 1.8rem;\">Chiudere<\/button>\n<\/div>\n\n\n<script>\n    \ndocument.addEventListener(\"DOMContentLoaded\", () => {\n    const isEnglish = window.location.pathname.includes(\"\/en\/\");\n\n    \/\/ Define texts for German and English\n    const textToCopyDE = `Weitersagen und gutes Tun - mach auch mit bei der Spendenaktion von Paul M. M\u00fcller! Je mehr mitmachen, desto mehr Spenden kommen f\u00fcr den guten Zweck zusammen! \nhttps:\/\/paulmmueller.fantomas-staging.de\/2025`;\n\n    const modalMessageDE = `\n        <span style=\"font-weight: 600;\">Aktion teilen!<\/span><br>\n        Der Link wurde in die Zwischenablage kopiert und kann nun \u00fcberall zum Weitersagen eingef\u00fcgt werden.\n        <br>\n    `;\n\n    const textToCopyEN = `Spread the word and do something good - take part in Paul M. M\u00fcller's donation campaign! The more people who participate, the more donations will be collected for charity! \nhttps:\/\/paulmmueller.fantomas-staging.de\/en\/2025`;\n\n    const modalMessageEN = `\n        <span style=\"font-weight: 600;\">Share the campaign!<\/span><br>\n        The link has been copied to the clipboard and can now be pasted anywhere to share.\n        <br>\n    `;\n\n    \/\/ Determine text and modal message based on URL\n    const textToCopy = isEnglish ? textToCopyEN : textToCopyDE;\n    const modalMessageText = isEnglish ? modalMessageEN : modalMessageDE;\n\n    \/\/ DOM elements\n    const copyButton = document.getElementById(\"weitersagen\"); \/\/ Button to trigger the copy\n    const modal = document.getElementById(\"confirmationModal\"); \/\/ Modal element\n    const modalMessage = document.getElementById(\"modalMessage\"); \/\/ Message inside modal\n    const closeModalButton = document.getElementById(\"closeModalButton\"); \/\/ Button to close modal\n\n    \/\/ Function to copy text and show the modal\n    copyButton.addEventListener(\"click\", async () => {\n        try {\n            await navigator.clipboard.writeText(textToCopy);\n            modalMessage.innerHTML = modalMessageText; \/\/ Update modal message\n            modal.style.display = \"block\"; \/\/ Show the modal\n        } catch (error) {\n            console.error(\"Failed to copy text: \", error);\n            alert(\"Failed to copy the text to clipboard. Please try again.\");\n        }\n    });\n\n    \/\/ Function to close the modal\n    closeModalButton.addEventListener(\"click\", () => {\n        modal.style.display = \"none\"; \/\/ Hide the modal\n    });\n});\n\n\n<\/script>\n\n\n\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e2eec60 dce_masking-none elementor-widget elementor-widget-video\" data-id=\"e2eec60\" data-element_type=\"widget\" id=\"chefDose\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;play_on_mobile&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/2_Chefdose.mp4\" autoplay=\"\" loop=\"\" muted=\"muted\" playsinline=\"\" controlslist=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0bb4b03 dce_masking-none elementor-widget elementor-widget-image\" data-id=\"0bb4b03\" data-element_type=\"widget\" data-settings=\"{&quot;enabled_visibility&quot;:&quot;yes&quot;,&quot;dce_visibility_selected&quot;:&quot;hide&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/3_Mitarebeiter-min.png\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<!-- dce invisible element c40b278 --><div class=\"elementor-element elementor-element-1e4a05b e-con-full e-flex e-con e-child\" data-id=\"1e4a05b\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ecbce21 dce_masking-none elementor-widget elementor-widget-image\" data-id=\"ecbce21\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"152\" src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-1024x194.png\" class=\"attachment-large size-large wp-image-22570\" alt=\"\" srcset=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-1024x194.png 1024w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-300x57.png 300w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-768x145.png 768w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-1536x290.png 1536w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-2048x387.png 2048w, https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w-18x3.png 18w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d9ab909 elementor-widget elementor-widget-text-editor\" data-id=\"d9ab909\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Vi auguriamo pi\u00f9 tempo libero che necessit\u00e0 per le vacanze, tanti momenti analogici e di cuore e semplicemente qualche giorno di relax per ricaricare le batterie in vista di un 2025 in cui molte cose di questo mondo potrebbero rivelarsi buone, dopo tutto - si spera.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6d8cbc9 dce_masking-none elementor-widget elementor-widget-image\" data-id=\"6d8cbc9\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"258\" height=\"321\" src=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/4_Funkenglitzer.gif\" class=\"attachment-large size-large wp-image-22572\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<!-- dce invisible element c537144 --><style>\n\n\/* Styles for the reset button *\/\n#reset-button {\n    position: fixed;\n    top: 10px;\n    left: 10px;\n    padding: 10px 15px;\n    background-color: #dc3545;\n    color: white;\n    border: none;\n    border-radius: 5px;\n    font-size: 14px;\n    cursor: pointer;\n    z-index: 1000;\n}\n\n#reset-button:hover {\n    background-color: #c82333;\n}\n<\/style>\t\t<section data-dce-background-color=\"#567B60\" class=\"elementor-section elementor-top-section elementor-element elementor-element-6ff094b1 elementor-section-full_width elementor-section-height-min-height elementor-section-height-default elementor-section-items-middle\" data-id=\"6ff094b1\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&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-5b23ebe\" data-id=\"5b23ebe\" data-element_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-32958d77 elementor-hidden-mobile elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"32958d77\" data-element_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-25 elementor-inner-column elementor-element elementor-element-72750fbe\" data-id=\"72750fbe\" data-element_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-3e025ef6 elementor-mobile-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"3e025ef6\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Paul M. M\u00fcller GmbH<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.google.com\/maps\/dir\/48.1532925,11.5747476\/paul+m+mueller\/@48.0900842,11.5165201,12z\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x479dddc1e7656c85:0xae00e46e826417e9!2m2!1d11.583141!2d48.0317366\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Raiffeisenallee 5<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.google.com\/maps\/dir\/48.1532925,11.5747476\/paul+m+mueller\/@48.0900842,11.5165201,12z\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x479dddc1e7656c85:0xae00e46e826417e9!2m2!1d11.583141!2d48.0317366\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">D-82041 Oberhaching<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\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-4eb6caa8\" data-id=\"4eb6caa8\" data-element_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-67624023 elementor-mobile-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"67624023\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"mailto:info@paulmmueller.com\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-envelope\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">info@paulmmueller.com<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"tel:+49896138680\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-phone-alt\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">+49 (0)89 613868-0<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/\/paulmmueller.com\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-globe\" viewbox=\"0 0 496 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">paulmmueller.com<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\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-18f23e33\" data-id=\"18f23e33\" data-element_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-4a5e3fe8 elementor-mobile-align-center elementor-icon-list--layout-inline elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"4a5e3fe8\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/paulmmueller.fantomas-staging.de\/it\/impronta\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Impronta<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-40833a7c elementor-mobile-align-center elementor-icon-list--layout-inline elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"40833a7c\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/paulmmueller.fantomas-staging.de\/it\/protezione-dei-dati\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Protezione dei dati, <\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/paulmmueller.fantomas-staging.de\/it\/agb\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">AGB<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41bf1b7b elementor-mobile-align-center elementor-icon-list--layout-inline elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"41bf1b7b\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjEzMjMwIiwidG9nZ2xlIjpmYWxzZX0%3D\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Newsletter<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\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-60a16ec\" data-id=\"60a16ec\" data-element_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-78e97a5f elementor-widget elementor-widget-html\" data-id=\"78e97a5f\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\n<style>\n    #svg2 {\n        max-width:100%;\n        height:40px;\n        margin-bottom: -10px;\n    }\n    #g14 path {\n        fill:#FBFBFB !important;\n    }\n    \n<\/style>\n\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<a href=\"\/it\/\">\n<svg\n   xmlns:dc=\"http:\/\/purl.org\/dc\/elements\/1.1\/\"\n   xmlns:cc=\"http:\/\/creativecommons.org\/ns#\"\n   xmlns:rdf=\"http:\/\/www.w3.org\/1999\/02\/22-rdf-syntax-ns#\"\n   xmlns:svg=\"http:\/\/www.w3.org\/2000\/svg\"\n   xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n   xmlns:sodipodi=\"http:\/\/sodipodi.sourceforge.net\/DTD\/sodipodi-0.dtd\"\n   xmlns:inkscape=\"http:\/\/www.inkscape.org\/namespaces\/inkscape\"\n   viewbox=\"0 0 973.36052 183.98186\"\n   height=\"183.98186\"\n   width=\"973.36053\"\n   xml:space=\"preserve\"\n   id=\"svg2\"\n   version=\"1.1\"\n   sodipodi:docname=\"PaulMMueller_2021.svg\"\n   inkscape:version=\"0.92.3 (2405546, 2018-03-11)\"><sodipodi:namedview\n     pagecolor=\"#ffffff\"\n     bordercolor=\"#666666\"\n     borderopacity=\"1\"\n     objecttolerance=\"10\"\n     gridtolerance=\"10\"\n     guidetolerance=\"10\"\n     inkscape:pageopacity=\"0\"\n     inkscape:pageshadow=\"2\"\n     inkscape:window-width=\"1920\"\n     inkscape:window-height=\"1027\"\n     id=\"namedview911\"\n     showgrid=\"false\"\n     inkscape:zoom=\"1.083531\"\n     inkscape:cx=\"486.68001\"\n     inkscape:cy=\"91.991327\"\n     inkscape:window-x=\"-8\"\n     inkscape:window-y=\"-8\"\n     inkscape:window-maximized=\"1\"\n     inkscape:current-layer=\"svg2\" \/><metadata\n     id=\"metadata8\"><rdf:rdf><cc:work\n         rdf:about=\"\"><dc:format>immagine\/svg+xml<\/dc:format><dc:type\n           rdf:resource=\"http:\/\/purl.org\/dc\/dcmitype\/StillImage\" \/><\/cc:work><\/rdf:rdf><\/metadata><defs\n     id=\"defs6\"><clippath\n       id=\"clipPath18\"\n       clippathunits=\"userSpaceOnUse\"><path\n         id=\"path16\"\n         d=\"M 0,595.276 H 841.89 V 0 H 0 Z\"\n         inkscape:connector-curvature=\"0\" \/><\/clippath><\/defs><g\n     transform=\"matrix(1.3333333,0,0,-1.3333333,-74.579998,488.84119)\"\n     id=\"g10\"><g\n       id=\"g12\"><g\n         clip-path=\"url(#clipPath18)\"\n         id=\"g14\"><g\n           transform=\"translate(90.145,326.9054)\"\n           id=\"g20\"><path\n             id=\"path22\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c 0,5.673 -3.534,8.722 -9.62,8.722 h -9.537 V -8.958 H -9.62 C -3.534,-8.958 0,-5.838 0,0 m 14.312,0.497 c 0,-13.567 -8.47,-21.462 -23.191,-21.462 H -19.157 V -36.92 H -34.21 v 57.642 h 25.331 c 14.721,0 23.191,-7.399 23.191,-20.225\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(142.9844,311.6915)\"\n           id=\"g24\"><path\n             id=\"path26\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 -7.895,20.563 -15.955,0 Z m 4.439,-11.511 h -24.916 l -4.03,-10.195 h -15.458 l 24.751,57.642 H 0.248 L 24.424,-21.706 H 8.387 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(197.9048,302.1583)\"\n           id=\"g28\"><path\n             id=\"path30\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 C 6.662,0 11.267,4.522 11.267,12 V 45.469 H 26.315 V 12 c 0,-15.215 -10.195,-24.834 -26.398,-24.834 -16.281,0 -26.725,9.619 -26.725,24.834 v 33.469 h 15.049 V 12 C -11.759,4.602 -6.823,0 0,0\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(251.2153,347.6271)\"\n           id=\"g32\"><path\n             id=\"path34\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 V -44.814 H 24.42 V -57.642 H -15.052 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(331.772,347.6271)\"\n           id=\"g36\"><path\n             id=\"path38\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 15.293,-33.627 30.589,0 H 47.037 V -57.642 H 33.713 L 33.631,-21.131 20.229,-51.89 H 10.361 L -3.045,-21.131 V -57.642 H -16.451 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(398.6831,296.4777)\"\n           id=\"g40\"><path\n             id=\"path42\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c 0,-4.191 -2.958,-7.153 -7.071,-7.153 -4.113,0 -6.993,2.962 -6.993,7.153 0,4.199 2.88,7.075 6.993,7.075 C -2.958,7.075 0,4.199 0,0\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(456.6152,347.6271)\"\n           id=\"g44\"><path\n             id=\"path46\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 15.293,-33.627 30.586,0 H 47.037 V -57.642 H 33.714 L 33.627,-21.131 20.226,-51.89 h -9.865 l -13.41,30.759 V -57.642 H -16.45 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(556.6318,360.0519)\"\n           id=\"g48\"><path\n             id=\"path50\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c 0,-3.703 -2.632,-6.5 -6.413,-6.5 -3.782,0 -6.414,2.797 -6.414,6.5 0,3.86 2.632,6.579 6.414,6.579 C -2.632,6.579 0,3.86 0,0 m -15.955,0 c 0,-3.703 -2.71,-6.5 -6.413,-6.5 -3.781,0 -6.492,2.797 -6.492,6.5 0,3.86 2.711,6.579 6.492,6.579 3.703,0 6.413,-2.719 6.413,-6.579 m 1.812,-57.894 c 6.658,0 11.267,4.523 11.267,12 v 33.469 h 15.049 v -33.469 c 0,-15.214 -10.195,-24.834 -26.402,-24.834 -16.278,0 -26.725,9.62 -26.725,24.834 v 33.469 h 15.049 v -33.469 c 0,-7.398 4.939,-12 11.762,-12\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(595.7998,347.6271)\"\n           id=\"g52\"><path\n             id=\"path54\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 V -44.814 H 24.424 V -57.642 H -15.049 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(643.9102,347.6271)\"\n           id=\"g56\"><path\n             id=\"path58\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 V -44.814 H 24.425 V -57.642 H -15.048 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(722.4492,347.6271)\"\n           id=\"g60\"><path\n             id=\"path62\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 v -12 h -30.428 v -10.777 h 27.465 v -11.921 l -27.465,-0.087 V -45.634 H 0.819 V -57.642 H -45.477 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(749.3574,317.9474)\"\n           id=\"g64\"><path\n             id=\"path66\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 h 10.936 c 6.083,0 9.62,3.12 9.62,8.958 0,5.673 -3.537,8.722 -9.62,8.722 H 0 Z m 19.571,-27.962 -8.39,15.955 H 10.857 0 V -27.962 H -15.048 V 29.68 h 25.905 c 15.293,0 24.007,-7.399 24.007,-20.225 0,-8.723 -3.617,-15.136 -10.274,-18.587 l 12.008,-18.83 z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(310.6221,248.462)\"\n           id=\"g68\"><path\n             id=\"path70\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c -1.814,0 -3.046,-0.65 -3.046,-1.952 0,-4.415 12.767,-1.951 12.733,-10.574 0,-4.691 -4.074,-7.223 -9.379,-7.223 -3.936,0 -7.872,1.506 -10.576,3.799 l 2.157,4.415 c 2.464,-2.191 5.955,-3.594 8.487,-3.594 2.225,0 3.56,0.821 3.56,2.293 0,4.518 -12.766,1.883 -12.766,10.37 0,4.347 3.73,7.085 9.275,7.085 3.354,0 6.709,-1.025 9.104,-2.599 L 7.461,-2.466 C 4.929,-0.958 1.917,0 0,0\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(350.5625,252.8429)\"\n           id=\"g72\"><path\n             id=\"path74\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 V -4.483 H -12.834 V -9.686 H -1.3 v -4.485 h -11.534 v -5.305 h 13.21 v -4.483 H -18.243 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><path\n           id=\"path76\"\n           style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n           d=\"m 368.804,228.884 h -5.408 v 23.959 h 5.408 z\"\n           inkscape:connector-curvature=\"0\" \/><g\n           transform=\"translate(399.9839,252.8429)\"\n           id=\"g78\"><path\n             id=\"path80\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 v -4.586 h -7.325 v -19.373 h -5.406 v 19.373 h -7.292 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(440.5039,252.8771)\"\n           id=\"g82\"><path\n             id=\"path84\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 v -23.993 h -5.406 v 19.407 h -4.793 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(462.2705,244.9015)\"\n           id=\"g86\"><path\n             id=\"path88\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c 0,-2.292 1.437,-3.696 3.835,-3.696 2.668,0 4.174,1.676 4.174,3.799 0,1.883 -1.231,3.73 -4.037,3.73 C 1.542,3.833 0,2.43 0,0 m 2.738,-12.015 c 4.074,0 5.99,2.808 5.921,7.189 -1.196,-1.848 -3.181,-2.909 -5.955,-2.909 -4.653,0 -7.597,3.082 -7.597,7.769 0,5.032 3.421,8.18 8.625,8.18 6.228,0 9.993,-4.449 9.993,-11.808 0,-7.665 -4.14,-12.663 -10.677,-12.663 -2.5,0 -5.409,0.753 -7.395,1.95 l 2.02,3.835 c 1.403,-0.994 3.253,-1.543 5.065,-1.543\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(496.1191,244.1486)\"\n           id=\"g90\"><path\n             id=\"path92\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c 5.543,0 9.138,-2.977 9.138,-7.256 0,-4.963 -3.765,-8.214 -9.583,-8.214 -3.115,0 -6.708,1.163 -9.241,2.909 l 2.191,4.28 c 1.915,-1.85 4.208,-2.841 6.433,-2.841 2.807,0 4.415,1.299 4.415,3.523 0,2.02 -1.608,3.218 -4.381,3.218 -1.368,0 -5.064,-0.068 -6.64,-0.204 V 8.729 H 8.077 V 4.211 H -2.704 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(522.1299,236.756)\"\n           id=\"g94\"><path\n             id=\"path96\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c -0.034,-1.883 1.232,-3.696 4.037,-3.696 2.432,0 4.006,1.37 4.006,3.799 0,2.293 -1.438,3.696 -3.867,3.696 C 1.506,3.799 -0.034,2.123 0,0 m 5.271,12.115 c -4.075,0 -6.058,-2.804 -5.956,-7.151 1.199,1.812 3.216,2.875 5.99,2.875 4.69,0 7.667,-3.082 7.667,-7.771 0,-5.031 -3.457,-8.179 -8.694,-8.179 -6.23,0 -10.028,4.449 -10.028,11.807 0,7.666 4.176,12.663 10.679,12.663 2.532,0 5.475,-0.753 7.461,-1.915 l -2.02,-3.869 c -1.403,0.994 -3.285,1.54 -5.099,1.54\"\n             inkscape:connector-curvature=\"0\" \/><\/g><\/g><\/g><\/g><\/svg>\n<\/a>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7b1f11e7 elementor-shape-circle elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons\" data-id=\"7b1f11e7\" data-element_type=\"widget\" data-widget_type=\"social-icons.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-social-icons-wrapper elementor-grid\" role=\"list\">\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-animation-grow elementor-repeater-item-868049c\" href=\"https:\/\/www.facebook.com\/paulmmuellergmbh\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Facebook<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fab-facebook\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-animation-grow elementor-repeater-item-b4180d5\" href=\"https:\/\/www.instagram.com\/paul_m._mueller_gmbh\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Instagram<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fab-instagram\" viewbox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-map-marker-alt elementor-animation-grow elementor-repeater-item-602dcb4\" href=\"https:\/\/www.google.com\/maps\/place\/Paul+M.+M%C3%BCller+GmbH\/@48.0317366,11.583141,15z\/data=!4m5!3m4!1s0x0:0xae00e46e826417e9!8m2!3d48.0317366!4d11.583141\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Mappa-marcatore-alt<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fas-map-marker-alt\" viewbox=\"0 0 384 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-grow elementor-repeater-item-d5656ed\" href=\"https:\/\/www.linkedin.com\/company\/17897510\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Linkedin<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fab-linkedin\" viewbox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\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-634d58c7 elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"634d58c7\" data-element_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-25 elementor-inner-column elementor-element elementor-element-466aee54\" data-id=\"466aee54\" data-element_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-27d788e3 elementor-widget elementor-widget-html\" data-id=\"27d788e3\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\n<style>\n    #svg2 {\n        max-width:100%;\n        height:40px;\n        margin-bottom: -10px;\n    }\n    #g14 path {\n        fill:#FBFBFB !important;\n    }\n    \n<\/style>\n\n<a href=\"\/it\/\">\n\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<svg\n   xmlns:dc=\"http:\/\/purl.org\/dc\/elements\/1.1\/\"\n   xmlns:cc=\"http:\/\/creativecommons.org\/ns#\"\n   xmlns:rdf=\"http:\/\/www.w3.org\/1999\/02\/22-rdf-syntax-ns#\"\n   xmlns:svg=\"http:\/\/www.w3.org\/2000\/svg\"\n   xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n   xmlns:sodipodi=\"http:\/\/sodipodi.sourceforge.net\/DTD\/sodipodi-0.dtd\"\n   xmlns:inkscape=\"http:\/\/www.inkscape.org\/namespaces\/inkscape\"\n   viewbox=\"0 0 973.36052 183.98186\"\n   height=\"183.98186\"\n   width=\"973.36053\"\n   xml:space=\"preserve\"\n   id=\"svg2\"\n   version=\"1.1\"\n   sodipodi:docname=\"PaulMMueller_2021.svg\"\n   inkscape:version=\"0.92.3 (2405546, 2018-03-11)\"><sodipodi:namedview\n     pagecolor=\"#ffffff\"\n     bordercolor=\"#666666\"\n     borderopacity=\"1\"\n     objecttolerance=\"10\"\n     gridtolerance=\"10\"\n     guidetolerance=\"10\"\n     inkscape:pageopacity=\"0\"\n     inkscape:pageshadow=\"2\"\n     inkscape:window-width=\"1920\"\n     inkscape:window-height=\"1027\"\n     id=\"namedview911\"\n     showgrid=\"false\"\n     inkscape:zoom=\"1.083531\"\n     inkscape:cx=\"486.68001\"\n     inkscape:cy=\"91.991327\"\n     inkscape:window-x=\"-8\"\n     inkscape:window-y=\"-8\"\n     inkscape:window-maximized=\"1\"\n     inkscape:current-layer=\"svg2\" \/><metadata\n     id=\"metadata8\"><rdf:rdf><cc:work\n         rdf:about=\"\"><dc:format>immagine\/svg+xml<\/dc:format><dc:type\n           rdf:resource=\"http:\/\/purl.org\/dc\/dcmitype\/StillImage\" \/><\/cc:work><\/rdf:rdf><\/metadata><defs\n     id=\"defs6\"><clippath\n       id=\"clipPath18\"\n       clippathunits=\"userSpaceOnUse\"><path\n         id=\"path16\"\n         d=\"M 0,595.276 H 841.89 V 0 H 0 Z\"\n         inkscape:connector-curvature=\"0\" \/><\/clippath><\/defs><g\n     transform=\"matrix(1.3333333,0,0,-1.3333333,-74.579998,488.84119)\"\n     id=\"g10\"><g\n       id=\"g12\"><g\n         clip-path=\"url(#clipPath18)\"\n         id=\"g14\"><g\n           transform=\"translate(90.145,326.9054)\"\n           id=\"g20\"><path\n             id=\"path22\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c 0,5.673 -3.534,8.722 -9.62,8.722 h -9.537 V -8.958 H -9.62 C -3.534,-8.958 0,-5.838 0,0 m 14.312,0.497 c 0,-13.567 -8.47,-21.462 -23.191,-21.462 H -19.157 V -36.92 H -34.21 v 57.642 h 25.331 c 14.721,0 23.191,-7.399 23.191,-20.225\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(142.9844,311.6915)\"\n           id=\"g24\"><path\n             id=\"path26\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 -7.895,20.563 -15.955,0 Z m 4.439,-11.511 h -24.916 l -4.03,-10.195 h -15.458 l 24.751,57.642 H 0.248 L 24.424,-21.706 H 8.387 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(197.9048,302.1583)\"\n           id=\"g28\"><path\n             id=\"path30\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 C 6.662,0 11.267,4.522 11.267,12 V 45.469 H 26.315 V 12 c 0,-15.215 -10.195,-24.834 -26.398,-24.834 -16.281,0 -26.725,9.619 -26.725,24.834 v 33.469 h 15.049 V 12 C -11.759,4.602 -6.823,0 0,0\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(251.2153,347.6271)\"\n           id=\"g32\"><path\n             id=\"path34\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 V -44.814 H 24.42 V -57.642 H -15.052 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(331.772,347.6271)\"\n           id=\"g36\"><path\n             id=\"path38\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 15.293,-33.627 30.589,0 H 47.037 V -57.642 H 33.713 L 33.631,-21.131 20.229,-51.89 H 10.361 L -3.045,-21.131 V -57.642 H -16.451 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(398.6831,296.4777)\"\n           id=\"g40\"><path\n             id=\"path42\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c 0,-4.191 -2.958,-7.153 -7.071,-7.153 -4.113,0 -6.993,2.962 -6.993,7.153 0,4.199 2.88,7.075 6.993,7.075 C -2.958,7.075 0,4.199 0,0\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(456.6152,347.6271)\"\n           id=\"g44\"><path\n             id=\"path46\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 15.293,-33.627 30.586,0 H 47.037 V -57.642 H 33.714 L 33.627,-21.131 20.226,-51.89 h -9.865 l -13.41,30.759 V -57.642 H -16.45 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(556.6318,360.0519)\"\n           id=\"g48\"><path\n             id=\"path50\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c 0,-3.703 -2.632,-6.5 -6.413,-6.5 -3.782,0 -6.414,2.797 -6.414,6.5 0,3.86 2.632,6.579 6.414,6.579 C -2.632,6.579 0,3.86 0,0 m -15.955,0 c 0,-3.703 -2.71,-6.5 -6.413,-6.5 -3.781,0 -6.492,2.797 -6.492,6.5 0,3.86 2.711,6.579 6.492,6.579 3.703,0 6.413,-2.719 6.413,-6.579 m 1.812,-57.894 c 6.658,0 11.267,4.523 11.267,12 v 33.469 h 15.049 v -33.469 c 0,-15.214 -10.195,-24.834 -26.402,-24.834 -16.278,0 -26.725,9.62 -26.725,24.834 v 33.469 h 15.049 v -33.469 c 0,-7.398 4.939,-12 11.762,-12\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(595.7998,347.6271)\"\n           id=\"g52\"><path\n             id=\"path54\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 V -44.814 H 24.424 V -57.642 H -15.049 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(643.9102,347.6271)\"\n           id=\"g56\"><path\n             id=\"path58\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 V -44.814 H 24.425 V -57.642 H -15.048 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(722.4492,347.6271)\"\n           id=\"g60\"><path\n             id=\"path62\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 v -12 h -30.428 v -10.777 h 27.465 v -11.921 l -27.465,-0.087 V -45.634 H 0.819 V -57.642 H -45.477 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(749.3574,317.9474)\"\n           id=\"g64\"><path\n             id=\"path66\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 h 10.936 c 6.083,0 9.62,3.12 9.62,8.958 0,5.673 -3.537,8.722 -9.62,8.722 H 0 Z m 19.571,-27.962 -8.39,15.955 H 10.857 0 V -27.962 H -15.048 V 29.68 h 25.905 c 15.293,0 24.007,-7.399 24.007,-20.225 0,-8.723 -3.617,-15.136 -10.274,-18.587 l 12.008,-18.83 z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(310.6221,248.462)\"\n           id=\"g68\"><path\n             id=\"path70\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c -1.814,0 -3.046,-0.65 -3.046,-1.952 0,-4.415 12.767,-1.951 12.733,-10.574 0,-4.691 -4.074,-7.223 -9.379,-7.223 -3.936,0 -7.872,1.506 -10.576,3.799 l 2.157,4.415 c 2.464,-2.191 5.955,-3.594 8.487,-3.594 2.225,0 3.56,0.821 3.56,2.293 0,4.518 -12.766,1.883 -12.766,10.37 0,4.347 3.73,7.085 9.275,7.085 3.354,0 6.709,-1.025 9.104,-2.599 L 7.461,-2.466 C 4.929,-0.958 1.917,0 0,0\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(350.5625,252.8429)\"\n           id=\"g72\"><path\n             id=\"path74\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"M 0,0 V -4.483 H -12.834 V -9.686 H -1.3 v -4.485 h -11.534 v -5.305 h 13.21 v -4.483 H -18.243 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><path\n           id=\"path76\"\n           style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n           d=\"m 368.804,228.884 h -5.408 v 23.959 h 5.408 z\"\n           inkscape:connector-curvature=\"0\" \/><g\n           transform=\"translate(399.9839,252.8429)\"\n           id=\"g78\"><path\n             id=\"path80\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 v -4.586 h -7.325 v -19.373 h -5.406 v 19.373 h -7.292 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(440.5039,252.8771)\"\n           id=\"g82\"><path\n             id=\"path84\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 v -23.993 h -5.406 v 19.407 h -4.793 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(462.2705,244.9015)\"\n           id=\"g86\"><path\n             id=\"path88\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c 0,-2.292 1.437,-3.696 3.835,-3.696 2.668,0 4.174,1.676 4.174,3.799 0,1.883 -1.231,3.73 -4.037,3.73 C 1.542,3.833 0,2.43 0,0 m 2.738,-12.015 c 4.074,0 5.99,2.808 5.921,7.189 -1.196,-1.848 -3.181,-2.909 -5.955,-2.909 -4.653,0 -7.597,3.082 -7.597,7.769 0,5.032 3.421,8.18 8.625,8.18 6.228,0 9.993,-4.449 9.993,-11.808 0,-7.665 -4.14,-12.663 -10.677,-12.663 -2.5,0 -5.409,0.753 -7.395,1.95 l 2.02,3.835 c 1.403,-0.994 3.253,-1.543 5.065,-1.543\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(496.1191,244.1486)\"\n           id=\"g90\"><path\n             id=\"path92\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c 5.543,0 9.138,-2.977 9.138,-7.256 0,-4.963 -3.765,-8.214 -9.583,-8.214 -3.115,0 -6.708,1.163 -9.241,2.909 l 2.191,4.28 c 1.915,-1.85 4.208,-2.841 6.433,-2.841 2.807,0 4.415,1.299 4.415,3.523 0,2.02 -1.608,3.218 -4.381,3.218 -1.368,0 -5.064,-0.068 -6.64,-0.204 V 8.729 H 8.077 V 4.211 H -2.704 V 0 Z\"\n             inkscape:connector-curvature=\"0\" \/><\/g><g\n           transform=\"translate(522.1299,236.756)\"\n           id=\"g94\"><path\n             id=\"path96\"\n             style=\"fill:#365043;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n             d=\"m 0,0 c -0.034,-1.883 1.232,-3.696 4.037,-3.696 2.432,0 4.006,1.37 4.006,3.799 0,2.293 -1.438,3.696 -3.867,3.696 C 1.506,3.799 -0.034,2.123 0,0 m 5.271,12.115 c -4.075,0 -6.058,-2.804 -5.956,-7.151 1.199,1.812 3.216,2.875 5.99,2.875 4.69,0 7.667,-3.082 7.667,-7.771 0,-5.031 -3.457,-8.179 -8.694,-8.179 -6.23,0 -10.028,4.449 -10.028,11.807 0,7.666 4.176,12.663 10.679,12.663 2.532,0 5.475,-0.753 7.461,-1.915 l -2.02,-3.869 c -1.403,0.994 -3.285,1.54 -5.099,1.54\"\n             inkscape:connector-curvature=\"0\" \/><\/g><\/g><\/g><\/g><\/svg>\n<\/a>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-12fc4d5c elementor-shape-circle elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons\" data-id=\"12fc4d5c\" data-element_type=\"widget\" data-widget_type=\"social-icons.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-social-icons-wrapper elementor-grid\" role=\"list\">\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-animation-grow elementor-repeater-item-868049c\" href=\"https:\/\/www.facebook.com\/paulmmuellergmbh\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Facebook<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fab-facebook\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-animation-grow elementor-repeater-item-b4180d5\" href=\"https:\/\/www.instagram.com\/paul_m._mueller_gmbh\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Instagram<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fab-instagram\" viewbox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-map-marker-alt elementor-animation-grow elementor-repeater-item-602dcb4\" href=\"https:\/\/www.google.com\/maps\/place\/Paul+M.+M%C3%BCller+GmbH\/@48.0317366,11.583141,15z\/data=!4m5!3m4!1s0x0:0xae00e46e826417e9!8m2!3d48.0317366!4d11.583141\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Mappa-marcatore-alt<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fas-map-marker-alt\" viewbox=\"0 0 384 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-grow elementor-repeater-item-d5656ed\" href=\"https:\/\/www.linkedin.com\/company\/17897510\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Linkedin<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fab-linkedin\" viewbox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\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-679ea4ab\" data-id=\"679ea4ab\" data-element_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-6028a286 elementor-mobile-align-center elementor-tablet-align-right elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"6028a286\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Paul M. M\u00fcller GmbH<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.google.com\/maps\/dir\/48.1532925,11.5747476\/paul+m+mueller\/@48.0900842,11.5165201,12z\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x479dddc1e7656c85:0xae00e46e826417e9!2m2!1d11.583141!2d48.0317366\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Raiffeisenallee 5<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.google.com\/maps\/dir\/48.1532925,11.5747476\/paul+m+mueller\/@48.0900842,11.5165201,12z\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x479dddc1e7656c85:0xae00e46e826417e9!2m2!1d11.583141!2d48.0317366\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">D-82041 Oberhaching<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\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-46479555\" data-id=\"46479555\" data-element_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-221a08c7 elementor-mobile-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"221a08c7\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"mailto:info@paulmmueller.com\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-envelope\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">info@paulmmueller.com<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"tel:+49896138680\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-phone-alt\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">+49 (0)89 613868-0<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/\/paulmmueller.com\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-globe\" viewbox=\"0 0 496 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">paulmmueller.com<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\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-2dae926\" data-id=\"2dae926\" data-element_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-21803544 elementor-mobile-align-center elementor-icon-list--layout-inline elementor-tablet-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"21803544\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/paulmmueller.fantomas-staging.de\/it\/impronta\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Impronta<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1c41f126 elementor-mobile-align-center elementor-icon-list--layout-inline elementor-tablet-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"1c41f126\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/paulmmueller.fantomas-staging.de\/it\/protezione-dei-dati\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Protezione dei dati, <\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/paulmmueller.fantomas-staging.de\/it\/agb\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">AGB<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-36f9ce48 elementor-mobile-align-center elementor-icon-list--layout-inline elementor-tablet-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"36f9ce48\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjEzMjMwIiwidG9nZ2xlIjpmYWxzZX0%3D\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Newsletter<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\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<\/div>","protected":false},"excerpt":{"rendered":"<p>Benvenuti alla campagna di raccolta fondi Il tuo browser non supporta il tag video. Partecipate alla campagna regali di quest'anno e vincete lattine per la Fondazione Monaco di Baviera per il cuore su questa pagina! Fate girare la frutta sulla nostra slot machine... La partecipazione \u00e8 gratuita e possibile solo una volta, senza registrazione. Lattine a 's M\u00fcnchner Herz In nome di [...]<\/p>","protected":false},"author":9,"featured_media":0,"parent":0,"menu_order":5,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-21335","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>2025 - Paul M. M\u00fcller<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/paulmmueller.fantomas-staging.de\/it\/2025-2\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"2025 - Paul M. M\u00fcller\" \/>\n<meta property=\"og:description\" content=\"Herzlich Willkommenzur Spendenaktion Your browser does not support the video tag. Machen Sie mit bei unserer diesj\u00e4hrigen Geschenkaktion und erspielen Sie auf dieser Seite Dosen f\u00fcr die Stiftung \u2019s M\u00fcnchner Herz! Lassen Sie an unserem Spielautomaten die Fr\u00fcchte drehen... Die Teilnahme ist kostenlos und einmalig, ohne Anmeldung m\u00f6glich. Dosen an \u2019s M\u00fcnchner Herz Im Namen [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/paulmmueller.fantomas-staging.de\/it\/2025-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Paul M. M\u00fcller\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/paulmmuellergmbh\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-09T09:16:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3042\" \/>\n\t<meta property=\"og:image:height\" content=\"575\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@PaulMMller1\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/\",\"url\":\"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/\",\"name\":\"2025 - Paul M. M\u00fcller\",\"isPartOf\":{\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w.png\",\"datePublished\":\"2024-11-12T16:25:38+00:00\",\"dateModified\":\"2024-12-09T09:16:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/#primaryimage\",\"url\":\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w.png\",\"contentUrl\":\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/paulmmueller.fantomas-staging.de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"2025\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/en\/#website\",\"url\":\"https:\/\/paulmmueller.fantomas-staging.de\/en\/\",\"name\":\"Paul M. M\u00fcller\",\"description\":\"Die Food Marken Macher\",\"publisher\":{\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/paulmmueller.fantomas-staging.de\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/en\/#organization\",\"name\":\"Paul M. M\u00fcller GmbH\",\"url\":\"https:\/\/paulmmueller.fantomas-staging.de\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2022\/08\/PaulMMueller_2021_EN.svg\",\"contentUrl\":\"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2022\/08\/PaulMMueller_2021_EN.svg\",\"width\":730,\"height\":137,\"caption\":\"Paul M. M\u00fcller GmbH\"},\"image\":{\"@id\":\"https:\/\/paulmmueller.fantomas-staging.de\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/paulmmuellergmbh\/\",\"https:\/\/x.com\/PaulMMller1\",\"https:\/\/www.instagram.com\/paul_m._mueller_gmbh\/\",\"https:\/\/www.linkedin.com\/company\/17897510\/\",\"https:\/\/www.xing.com\/companies\/paulm.mllergmbh\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"2025 - Paul M. M\u00fcller","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:\/\/paulmmueller.fantomas-staging.de\/it\/2025-2\/","og_locale":"it_IT","og_type":"article","og_title":"2025 - Paul M. M\u00fcller","og_description":"Herzlich Willkommenzur Spendenaktion Your browser does not support the video tag. Machen Sie mit bei unserer diesj\u00e4hrigen Geschenkaktion und erspielen Sie auf dieser Seite Dosen f\u00fcr die Stiftung \u2019s M\u00fcnchner Herz! Lassen Sie an unserem Spielautomaten die Fr\u00fcchte drehen... Die Teilnahme ist kostenlos und einmalig, ohne Anmeldung m\u00f6glich. Dosen an \u2019s M\u00fcnchner Herz Im Namen [&hellip;]","og_url":"https:\/\/paulmmueller.fantomas-staging.de\/it\/2025-2\/","og_site_name":"Paul M. M\u00fcller","article_publisher":"https:\/\/www.facebook.com\/paulmmuellergmbh\/","article_modified_time":"2024-12-09T09:16:26+00:00","og_image":[{"width":3042,"height":575,"url":"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@PaulMMller1","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/","url":"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/","name":"2025 - Paul M. M\u00fcller","isPartOf":{"@id":"https:\/\/paulmmueller.fantomas-staging.de\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/#primaryimage"},"image":{"@id":"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/#primaryimage"},"thumbnailUrl":"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w.png","datePublished":"2024-11-12T16:25:38+00:00","dateModified":"2024-12-09T09:16:26+00:00","breadcrumb":{"@id":"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/#primaryimage","url":"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w.png","contentUrl":"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2024\/12\/PaulMMueller_2021_DE_w.png"},{"@type":"BreadcrumbList","@id":"https:\/\/paulmmueller.fantomas-staging.de\/2025-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/paulmmueller.fantomas-staging.de\/"},{"@type":"ListItem","position":2,"name":"2025"}]},{"@type":"WebSite","@id":"https:\/\/paulmmueller.fantomas-staging.de\/en\/#website","url":"https:\/\/paulmmueller.fantomas-staging.de\/en\/","name":"Paul M. M\u00fcller","description":"Die Food Marken Macher","publisher":{"@id":"https:\/\/paulmmueller.fantomas-staging.de\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/paulmmueller.fantomas-staging.de\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Organization","@id":"https:\/\/paulmmueller.fantomas-staging.de\/en\/#organization","name":"Paul M. M\u00fcller GmbH","url":"https:\/\/paulmmueller.fantomas-staging.de\/en\/","logo":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/paulmmueller.fantomas-staging.de\/en\/#\/schema\/logo\/image\/","url":"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2022\/08\/PaulMMueller_2021_EN.svg","contentUrl":"https:\/\/paulmmueller.fantomas-staging.de\/wp-content\/uploads\/2022\/08\/PaulMMueller_2021_EN.svg","width":730,"height":137,"caption":"Paul M. M\u00fcller GmbH"},"image":{"@id":"https:\/\/paulmmueller.fantomas-staging.de\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/paulmmuellergmbh\/","https:\/\/x.com\/PaulMMller1","https:\/\/www.instagram.com\/paul_m._mueller_gmbh\/","https:\/\/www.linkedin.com\/company\/17897510\/","https:\/\/www.xing.com\/companies\/paulm.mllergmbh"]}]}},"_links":{"self":[{"href":"https:\/\/paulmmueller.fantomas-staging.de\/it\/wp-json\/wp\/v2\/pages\/21335","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/paulmmueller.fantomas-staging.de\/it\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/paulmmueller.fantomas-staging.de\/it\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/paulmmueller.fantomas-staging.de\/it\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/paulmmueller.fantomas-staging.de\/it\/wp-json\/wp\/v2\/comments?post=21335"}],"version-history":[{"count":10,"href":"https:\/\/paulmmueller.fantomas-staging.de\/it\/wp-json\/wp\/v2\/pages\/21335\/revisions"}],"predecessor-version":[{"id":23501,"href":"https:\/\/paulmmueller.fantomas-staging.de\/it\/wp-json\/wp\/v2\/pages\/21335\/revisions\/23501"}],"wp:attachment":[{"href":"https:\/\/paulmmueller.fantomas-staging.de\/it\/wp-json\/wp\/v2\/media?parent=21335"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}