{"id":8843,"date":"2025-05-03T17:02:05","date_gmt":"2025-05-03T16:02:05","guid":{"rendered":"https:\/\/afterwork-stuttgart.de\/services\/"},"modified":"2026-03-10T11:55:31","modified_gmt":"2026-03-10T10:55:31","slug":"services","status":"publish","type":"page","link":"https:\/\/afterwork-stuttgart.de\/en\/services\/","title":{"rendered":"Services"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"8843\" class=\"elementor elementor-8843 elementor-334\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d2a691 e-con-full e-flex e-con e-parent\" data-id=\"5d2a691\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5ea66dd7 e-flex e-con-boxed e-con e-child\" data-id=\"5ea66dd7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6dff4f0c elementor-widget__width-auto elementor-widget elementor-widget-heading\" data-id=\"6dff4f0c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">For providers with high standards<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-289cef7c elementor-widget__width-auto elementor-widget elementor-widget-heading\" data-id=\"289cef7c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-55341058 elementor-widget__width-auto elementor-widget elementor-widget-heading\" data-id=\"55341058\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">For guests with style<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3c4fca31 elementor-widget__width-auto elementor-widget elementor-widget-heading\" data-id=\"3c4fca31\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-42d87c3c elementor-widget elementor-widget-listeo-text-typed\" data-id=\"42d87c3c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-text-typed.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h1 >Places and companies that you <span class=\"typed-words\"><\/span><\/h1>\n\t\t\n    \n    <script>\n    \/\/ Check if TranslatePress is active (client-side detection as backup)\n    const isTranslatePressActive = false || \n                                  document.querySelector('link[href*=\"translatepress\"]') !== null ||\n                                  document.querySelector('script[src*=\"translatepress\"]') !== null;\n\n    if (isTranslatePressActive) {\n        \/\/ Use fade animation for TranslatePress compatibility\n        function createWordSwapper(element, words, options = {}) {\n            const defaults = {\n                swapDelay: 4000,\n                fadeSpeed: 500,\n                startDelay: 1000,\n                loop: true,\n                showCursor: true\n            };\n            \n            const settings = { ...defaults, ...options };\n            let currentIndex = 0;\n            let isRunning = false;\n            \n            \/\/ Add cursor if enabled\n            if (settings.showCursor) {\n                element.style.position = 'relative';\n                element.innerHTML = words[0] + '<span class=\"custom-cursor\">|<\/span>';\n                \n                \/\/ Add cursor blinking CSS if not already added\n                if (!document.querySelector('#word-swapper-styles')) {\n                    const style = document.createElement('style');\n                    style.id = 'word-swapper-styles';\n                    style.textContent = `\n                        .custom-cursor {\n                            animation: blink 1s infinite;\n                        }\n                        @keyframes blink {\n                            0%, 50% { opacity: 1; }\n                            51%, 100% { opacity: 0; }\n                        }\n\t\t\t\t\t\t\tbody[class*=\"translatepress-\"] .custom-cursor { display: none !important;}\n                    `;\n                    document.head.appendChild(style);\n                }\n            } else {\n                element.textContent = words[0];\n            }\n            \n            function swapWord() {\n                if (!isRunning) return;\n                \n                \/\/ Fade out\n                element.style.transition = `opacity ${settings.fadeSpeed}ms ease`;\n                element.style.opacity = '0';\n                \n                setTimeout(() => {\n                    \/\/ Change word\n                    currentIndex = (currentIndex + 1) % words.length;\n                    const newWord = words[currentIndex];\n                    \n                    if (settings.showCursor) {\n                        element.innerHTML = newWord + '<span class=\"custom-cursor\">|<\/span>';\n                    } else {\n                        element.textContent = newWord;\n                    }\n                    \n                    \/\/ Fade in\n                    element.style.opacity = '1';\n                    \n                    \/\/ Continue loop if enabled\n                    if (settings.loop || currentIndex < words.length - 1) {\n                        setTimeout(swapWord, settings.swapDelay);\n                    }\n                }, settings.fadeSpeed);\n            }\n            \n            \/\/ Start the animation\n            setTimeout(() => {\n                isRunning = true;\n                setTimeout(swapWord, settings.swapDelay);\n            }, settings.startDelay);\n            \n            return {\n                start: () => { isRunning = true; swapWord(); },\n                stop: () => { isRunning = false; },\n                destroy: () => {\n                    isRunning = false;\n                    element.style = '';\n                    element.textContent = words[0];\n                }\n            };\n        }\n\n        \/\/ Initialize the word swapper\n        document.addEventListener('DOMContentLoaded', function() {\n            const typedElement = document.querySelector('.typed-words');\n            if (typedElement) {\n                const words = [\"would want to visit\",\"recommend\",\"experience\",\"and enjoy\"];\n                \n                createWordSwapper(typedElement, words, {\n                    swapDelay: 3000,\n                    fadeSpeed: 300,\n                    startDelay: 700,\n                    loop: true,\n                    showCursor: true\n                });\n            }\n        });\n\n    } else {\n        \/\/ Use original typed.js for the typing effect when TranslatePress is not active\n                \/*!\n         * typed.js - A JavaScript Typing Animation Library\n         * Author: Matt Boldt <me@mattboldt.com>\n         * Version: v2.0.9\n         *\/\n        (function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.Typed=e():t.Typed=e()})(this,function(){return function(t){function e(n){if(s[n])return s[n].exports;var i=s[n]={exports:{},id:n,loaded:!1};return t[n].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var s={};return e.m=t,e.c=s,e.p=\"\",e(0)}([function(t,e,s){\"use strict\";function n(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")}Object.defineProperty(e,\"__esModule\",{value:!0});var i=function(){function t(t,e){for(var s=0;s<e.length;s++){var n=e[s];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,s,n){return s&&t(e.prototype,s),n&&t(e,n),e}}(),r=s(1),o=s(3),a=function(){function t(e,s){n(this,t),r.initializer.load(this,s,e),this.begin()}return i(t,[{key:\"toggle\",value:function(){this.pause.status?this.start():this.stop()}},{key:\"stop\",value:function(){this.typingComplete||this.pause.status||(this.toggleBlinking(!0),this.pause.status=!0,this.options.onStop(this.arrayPos,this))}},{key:\"start\",value:function(){this.typingComplete||this.pause.status&&(this.pause.status=!1,this.pause.typewrite?this.typewrite(this.pause.curString,this.pause.curStrPos):this.backspace(this.pause.curString,this.pause.curStrPos),this.options.onStart(this.arrayPos,this))}},{key:\"destroy\",value:function(){this.reset(!1),this.options.onDestroy(this)}},{key:\"reset\",value:function(){var t=arguments.length<=0||void 0===arguments[0]||arguments[0];clearInterval(this.timeout),this.replaceText(\"\"),this.cursor&&this.cursor.parentNode&&(this.cursor.parentNode.removeChild(this.cursor),this.cursor=null),this.strPos=0,this.arrayPos=0,this.curLoop=0,t&&(this.insertCursor(),this.options.onReset(this),this.begin())}},{key:\"begin\",value:function(){var t=this;this.typingComplete=!1,this.shuffleStringsIfNeeded(this),this.insertCursor(),this.bindInputFocusEvents&&this.bindFocusEvents(),this.timeout=setTimeout(function(){t.currentElContent&&0!==t.currentElContent.length?t.backspace(t.currentElContent,t.currentElContent.length):t.typewrite(t.strings[t.sequence[t.arrayPos]],t.strPos)},this.startDelay)}},{key:\"typewrite\",value:function(t,e){var s=this;this.fadeOut&&this.el.classList.contains(this.fadeOutClass)&&(this.el.classList.remove(this.fadeOutClass),this.cursor&&this.cursor.classList.remove(this.fadeOutClass));var n=this.humanizer(this.typeSpeed),i=1;return this.pause.status===!0?void this.setPauseStatus(t,e,!0):void(this.timeout=setTimeout(function(){e=o.htmlParser.typeHtmlChars(t,e,s);var n=0,r=t.substr(e);if(\"^\"===r.charAt(0)&&\/^\\^\\d+\/.test(r)){var a=1;r=\/\\d+\/.exec(r)[0],a+=r.length,n=parseInt(r),s.temporaryPause=!0,s.options.onTypingPaused(s.arrayPos,s),t=t.substring(0,e)+t.substring(e+a),s.toggleBlinking(!0)}if(\"`\"===r.charAt(0)){for(;\"`\"!==t.substr(e+i).charAt(0)&&(i++,!(e+i>t.length)););var u=t.substring(0,e),l=t.substring(u.length+1,e+i),c=t.substring(e+i+1);t=u+l+c,i--}s.timeout=setTimeout(function(){s.toggleBlinking(!1),e===t.length?s.doneTyping(t,e):s.keepTyping(t,e,i),s.temporaryPause&&(s.temporaryPause=!1,s.options.onTypingResumed(s.arrayPos,s))},n)},n))}},{key:\"keepTyping\",value:function(t,e,s){0===e&&(this.toggleBlinking(!1),this.options.preStringTyped(this.arrayPos,this)),e+=s;var n=t.substr(0,e);this.replaceText(n),this.typewrite(t,e)}},{key:\"doneTyping\",value:function(t,e){var s=this;this.options.onStringTyped(this.arrayPos,this),this.toggleBlinking(!0),this.arrayPos===this.strings.length-1&&(this.complete(),this.loop===!1||this.curLoop===this.loopCount)||(this.timeout=setTimeout(function(){s.backspace(t,e)},this.backDelay))}},{key:\"backspace\",value:function(t,e){var s=this;if(this.pause.status===!0)return void this.setPauseStatus(t,e,!0);if(this.fadeOut)return this.initFadeOut();this.toggleBlinking(!1);var n=this.humanizer(this.backSpeed);this.timeout=setTimeout(function(){e=o.htmlParser.backSpaceHtmlChars(t,e,s);var n=t.substr(0,e);if(s.replaceText(n),s.smartBackspace){var i=s.strings[s.arrayPos+1];i&&n===i.substr(0,e)?s.stopNum=e:s.stopNum=0}e>s.stopNum?(e--,s.backspace(t,e)):e<=s.stopNum&&(s.arrayPos++,s.arrayPos===s.strings.length?(s.arrayPos=0,s.options.onLastStringBackspaced(),s.shuffleStringsIfNeeded(),s.begin()):s.typewrite(s.strings[s.sequence[s.arrayPos]],e))},n)}},{key:\"complete\",value:function(){this.options.onComplete(this),this.loop?this.curLoop++:this.typingComplete=!0}},{key:\"setPauseStatus\",value:function(t,e,s){this.pause.typewrite=s,this.pause.curString=t,this.pause.curStrPos=e}},{key:\"toggleBlinking\",value:function(t){this.cursor&&(this.pause.status||this.cursorBlinking!==t&&(this.cursorBlinking=t,t?this.cursor.classList.add(\"typed-cursor--blink\"):this.cursor.classList.remove(\"typed-cursor--blink\")))}},{key:\"humanizer\",value:function(t){return Math.round(Math.random()*t\/2)+t}},{key:\"shuffleStringsIfNeeded\",value:function(){this.shuffle&&(this.sequence=this.sequence.sort(function(){return Math.random()-.5}))}},{key:\"initFadeOut\",value:function(){var t=this;return this.el.className+=\" \"+this.fadeOutClass,this.cursor&&(this.cursor.className+=\" \"+this.fadeOutClass),setTimeout(function(){t.arrayPos++,t.replaceText(\"\"),t.strings.length>t.arrayPos?t.typewrite(t.strings[t.sequence[t.arrayPos]],0):(t.typewrite(t.strings[0],0),t.arrayPos=0)},this.fadeOutDelay)}},{key:\"replaceText\",value:function(t){this.attr?this.el.setAttribute(this.attr,t):this.isInput?this.el.value=t:\"html\"===this.contentType?this.el.innerHTML=t:this.el.textContent=t}},{key:\"bindFocusEvents\",value:function(){var t=this;this.isInput&&(this.el.addEventListener(\"focus\",function(e){t.stop()}),this.el.addEventListener(\"blur\",function(e){t.el.value&&0!==t.el.value.length||t.start()}))}},{key:\"insertCursor\",value:function(){this.showCursor&&(this.cursor||(this.cursor=document.createElement(\"span\"),this.cursor.className=\"typed-cursor\",this.cursor.innerHTML=this.cursorChar,this.el.parentNode&&this.el.parentNode.insertBefore(this.cursor,this.el.nextSibling)))}}]),t}();e[\"default\"]=a,t.exports=e[\"default\"]},function(t,e,s){\"use strict\";function n(t){return t&&t.__esModule?t:{\"default\":t}}function i(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")}Object.defineProperty(e,\"__esModule\",{value:!0});var r=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var s=arguments[e];for(var n in s)Object.prototype.hasOwnProperty.call(s,n)&&(t[n]=s[n])}return t},o=function(){function t(t,e){for(var s=0;s<e.length;s++){var n=e[s];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,s,n){return s&&t(e.prototype,s),n&&t(e,n),e}}(),a=s(2),u=n(a),l=function(){function t(){i(this,t)}return o(t,[{key:\"load\",value:function(t,e,s){if(\"string\"==typeof s?t.el=document.querySelector(s):t.el=s,t.options=r({},u[\"default\"],e),t.isInput=\"input\"===t.el.tagName.toLowerCase(),t.attr=t.options.attr,t.bindInputFocusEvents=t.options.bindInputFocusEvents,t.showCursor=!t.isInput&&t.options.showCursor,t.cursorChar=t.options.cursorChar,t.cursorBlinking=!0,t.elContent=t.attr?t.el.getAttribute(t.attr):t.el.textContent,t.contentType=t.options.contentType,t.typeSpeed=t.options.typeSpeed,t.startDelay=t.options.startDelay,t.backSpeed=t.options.backSpeed,t.smartBackspace=t.options.smartBackspace,t.backDelay=t.options.backDelay,t.fadeOut=t.options.fadeOut,t.fadeOutClass=t.options.fadeOutClass,t.fadeOutDelay=t.options.fadeOutDelay,t.isPaused=!1,t.strings=t.options.strings.map(function(t){return t.trim()}),\"string\"==typeof t.options.stringsElement?t.stringsElement=document.querySelector(t.options.stringsElement):t.stringsElement=t.options.stringsElement,t.stringsElement){t.strings=[],t.stringsElement.style.display=\"none\";var n=Array.prototype.slice.apply(t.stringsElement.children),i=n.length;if(i)for(var o=0;o<i;o+=1){var a=n[o];t.strings.push(a.innerHTML.trim())}}t.strPos=0,t.arrayPos=0,t.stopNum=0,t.loop=t.options.loop,t.loopCount=t.options.loopCount,t.curLoop=0,t.shuffle=t.options.shuffle,t.sequence=[],t.pause={status:!1,typewrite:!0,curString:\"\",curStrPos:0},t.typingComplete=!1;for(var o in t.strings)t.sequence[o]=o;t.currentElContent=this.getCurrentElContent(t),t.autoInsertCss=t.options.autoInsertCss,this.appendAnimationCss(t)}},{key:\"getCurrentElContent\",value:function(t){var e=\"\";return e=t.attr?t.el.getAttribute(t.attr):t.isInput?t.el.value:\"html\"===t.contentType?t.el.innerHTML:t.el.textContent}},{key:\"appendAnimationCss\",value:function(t){var e=\"data-typed-js-css\";if(t.autoInsertCss&&(t.showCursor||t.fadeOut)&&!document.querySelector(\"[\"+e+\"]\")){var s=document.createElement(\"style\");s.type=\"text\/css\",s.setAttribute(e,!0);var n=\"\";t.showCursor&&(n+=\"\\n        .typed-cursor{\\n          opacity: 1;\\n        }\\n        .typed-cursor.typed-cursor--blink{\\n          animation: typedjsBlink 0.7s infinite;\\n          -webkit-animation: typedjsBlink 0.7s infinite;\\n                  animation: typedjsBlink 0.7s infinite;\\n        }\\n        @keyframes typedjsBlink{\\n          50% { opacity: 0.0; }\\n        }\\n        @-webkit-keyframes typedjsBlink{\\n          0% { opacity: 1; }\\n          50% { opacity: 0.0; }\\n          100% { opacity: 1; }\\n        }\\n      \"),t.fadeOut&&(n+=\"\\n        .typed-fade-out{\\n          opacity: 0;\\n          transition: opacity .25s;\\n        }\\n        .typed-cursor.typed-cursor--blink.typed-fade-out{\\n          -webkit-animation: 0;\\n          animation: 0;\\n        }\\n      \"),0!==s.length&&(s.innerHTML=n,document.body.appendChild(s))}}}]),t}();e[\"default\"]=l;var c=new l;e.initializer=c},function(t,e){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var s={strings:[\"These are the default values...\",\"You know what you should do?\",\"Use your own!\",\"Have a great day!\"],stringsElement:null,typeSpeed:0,startDelay:0,backSpeed:0,smartBackspace:!0,shuffle:!1,backDelay:700,fadeOut:!1,fadeOutClass:\"typed-fade-out\",fadeOutDelay:500,loop:!1,loopCount:1\/0,showCursor:!0,cursorChar:\"|\",autoInsertCss:!0,attr:null,bindInputFocusEvents:!1,contentType:\"html\",onComplete:function(t){},preStringTyped:function(t,e){},onStringTyped:function(t,e){},onLastStringBackspaced:function(t){},onTypingPaused:function(t,e){},onTypingResumed:function(t,e){},onReset:function(t){},onStop:function(t,e){},onStart:function(t,e){},onDestroy:function(t){}};e[\"default\"]=s,t.exports=e[\"default\"]},function(t,e){\"use strict\";function s(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")}Object.defineProperty(e,\"__esModule\",{value:!0});var n=function(){function t(t,e){for(var s=0;s<e.length;s++){var n=e[s];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,s,n){return s&&t(e.prototype,s),n&&t(e,n),e}}(),i=function(){function t(){s(this,t)}return n(t,[{key:\"typeHtmlChars\",value:function(t,e,s){if(\"html\"!==s.contentType)return e;var n=t.substr(e).charAt(0);if(\"<\"===n||\"&\"===n){var i=\"\";for(i=\"<\"===n?\">\":\";\";t.substr(e+1).charAt(0)!==i&&(e++,!(e+1>t.length)););e++}return e}},{key:\"backSpaceHtmlChars\",value:function(t,e,s){if(\"html\"!==s.contentType)return e;var n=t.substr(e).charAt(0);if(\">\"===n||\";\"===n){var i=\"\";for(i=\">\"===n?\"<\":\"&\";t.substr(e-1).charAt(0)!==i&&(e--,!(e<0)););e--}return e}}]),t}();e[\"default\"]=i;var r=new i;e.htmlParser=r}])});\n\n        \/\/ Initialize original typed.js\n        document.addEventListener('DOMContentLoaded', function() {\n            const typedElement = document.querySelector('.typed-words');\n            if (typedElement) {\n                var typed = new Typed('.typed-words', {\n                    strings: [\"would want to visit\",\"recommend\",\"experience\",\"and enjoy\"],\n                    typeSpeed: 70,\n                    backSpeed: 80,\n                    backDelay: 4000,\n                    startDelay: 1000,\n                    loop: true,\n                    showCursor: true\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-5f90b46f e-flex e-con-boxed e-con e-child\" data-id=\"5f90b46f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ae6d03e elementor-widget elementor-widget-text-editor\" data-id=\"ae6d03e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Present your company to a wide audience of local professionals, business guests, and event participants.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4f08f5f2 e-flex e-con-boxed e-con e-child\" data-id=\"4f08f5f2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f2a8296 elementor-widget__width-auto elementor-widget elementor-widget-button\" data-id=\"f2a8296\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/afterwork-stuttgart.de\/en\/afterwork-region-stuttgart-mediadaten-2025\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"far fa-file-pdf\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Media data<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b4cfd43 elementor-widget__width-auto elementor-widget elementor-widget-button\" data-id=\"b4cfd43\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/afterwork-stuttgart.de\/en\/afterwork-business-region-stuttgart-infomappe\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"far fa-file-pdf\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">AFTERWORK Brochure<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-75ce70c7 e-con-full e-flex e-con e-child\" data-id=\"75ce70c7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4e70b32b elementor-widget elementor-widget-listeo-listings-wide\" data-id=\"4e70b32b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-listings-wide.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"fullgrid-slick-carousel listings-wide-carousel\" data-slick='{\"autoplay\": true, \"autoplaySpeed\": 3000}' >\n            <div class=\"fw-carousel-item\">\n                        <div class=\"taxonoomy-wide-grid-element\">                        <div class=\"slg-half\">\n                            <a data-grid-start-index=\"0\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/mos-eisley-stuttgart\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/09\/import-97.jpg\" alt=\"Mos Eisley &#8211; Stuttgart\" class=\"listing-thumbnail\"><\/a>\n                            <h4>Mos Eisley &#8211; Stuttgart<\/h4>\n                        <\/div>                        <div class=\"slg-half\">\n                            <div class=\"slg-grid\">\n                                <div class=\"slg-grid-top\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"1\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/schmuecker-gastro-catering\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/08\/header-catering-1200x432.jpg\" alt=\"Schm\u00fccker Gastro &#038; Catering\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Schm\u00fccker Gastro &#038; Catering<\/h4>\n                                    <\/div>\n                                <\/div>\n                                                            <div class=\"slg-grid-bottom\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"2\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/waldhotel-stuttgart\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/09\/import-28.jpg\" alt=\"Waldhotel Stuttgart\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Waldhotel Stuttgart<\/h4>\n                                    <\/div>\n\n                                <\/div>\n\n                            <\/div>\n                        <\/div>\n                        <\/div><\/div><div class=\"fw-carousel-item\">\n                        <div class=\"taxonoomy-wide-grid-element\">                        <div class=\"slg-half\">\n                            <a data-grid-start-index=\"3\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/gin-sushi\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/05\/gin-sushi-1.jpg\" alt=\"Gin Sushi &#038; Bar\" class=\"listing-thumbnail\"><\/a>\n                            <h4>Gin Sushi &#038; Bar<\/h4>\n                        <\/div>                        <div class=\"slg-half\">\n                            <div class=\"slg-grid\">\n                                <div class=\"slg-grid-top\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"4\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/almresi-metzingen\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/08\/import.png\" alt=\"Almresi Metzingen\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Almresi Metzingen<\/h4>\n                                    <\/div>\n                                <\/div>\n                                                            <div class=\"slg-grid-bottom\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"5\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/alte-kanzlei\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/05\/alte_kanzlei-4.jpg\" alt=\"Alte Kanzlei\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Alte Kanzlei<\/h4>\n                                    <\/div>\n\n                                <\/div>\n\n                            <\/div>\n                        <\/div>\n                        <\/div><\/div><div class=\"fw-carousel-item\">\n                        <div class=\"taxonoomy-wide-grid-element\">                        <div class=\"slg-half\">\n                            <a data-grid-start-index=\"6\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/breitengrad-17-stuttgart\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2026\/01\/import.jpg\" alt=\"Breitengrad 17 Stuttgart\" class=\"listing-thumbnail\"><\/a>\n                            <h4>Breitengrad 17 Stuttgart<\/h4>\n                        <\/div>                        <div class=\"slg-half\">\n                            <div class=\"slg-grid\">\n                                <div class=\"slg-grid-top\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"7\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/taverna-athos\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/09\/import-230.jpg\" alt=\"Taverna Athos\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Taverna Athos<\/h4>\n                                    <\/div>\n                                <\/div>\n                                                            <div class=\"slg-grid-bottom\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"8\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/ross-messehotel\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/09\/import-19.jpg\" alt=\"Ross Messehotel\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Ross Messehotel<\/h4>\n                                    <\/div>\n\n                                <\/div>\n\n                            <\/div>\n                        <\/div>\n                        <\/div><\/div><div class=\"fw-carousel-item\">\n                        <div class=\"taxonoomy-wide-grid-element\">                        <div class=\"slg-half\">\n                            <a data-grid-start-index=\"9\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/das-metropol-kino-stuttgart\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/09\/import-205.jpg\" alt=\"Das Metropol Kino Stuttgart\" class=\"listing-thumbnail\"><\/a>\n                            <h4>Das Metropol Kino Stuttgart<\/h4>\n                        <\/div>                        <div class=\"slg-half\">\n                            <div class=\"slg-grid\">\n                                <div class=\"slg-grid-top\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"10\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/waranga\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/06\/waranga_2-1200x800.jpg\" alt=\"WARANGA\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>WARANGA<\/h4>\n                                    <\/div>\n                                <\/div>\n                                                            <div class=\"slg-grid-bottom\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"11\" href=\"https:\/\/afterwork-stuttgart.de\/en\/partner\/sitt-wein-stuttgart\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/09\/import-12.png\" alt=\"Sitt Wein Stuttgart\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Sitt Wein Stuttgart<\/h4>\n                                    <\/div>\n\n                                <\/div>\n\n                            <\/div>\n                        <\/div>\n                                <\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7b210418 e-flex e-con-boxed e-con e-parent\" data-id=\"7b210418\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-45b0c2b9 e-con-full e-flex e-con e-child\" data-id=\"45b0c2b9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b06aa20 elementor-widget elementor-widget-listeo-headline\" data-id=\"b06aa20\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 \n\t\tstyle=\"text-align:left;\" class=\"headline  headline-aligned-to-left  headline-box  headline-with-subtitle \"> Your stage in our main categories \ud83d\udcc1  <span > Present your company in the right areas \u2013 and reach the guests who are looking for what you offer.<\/span><\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-12a0b40e e-grid e-con-boxed e-con e-child\" data-id=\"12a0b40e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-135d74e5 elementor-widget elementor-widget-listeo-taxonomy-box\" data-id=\"135d74e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-taxonomy-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t\t<div class=\"taxonomy-boxes-wrapper\">\n\n\t\t\t\t<!-- Item -->\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/afterwork-stuttgart.de\/kategorie\/essen-und-trinken\/\" class=\"taxonomy-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"taxonomy-box-top\">\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-left\">\n\t\t\t\t\t\t\t\t<h4>Essen &amp; Trinken<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#000000\" width=\"800px\" height=\"800px\" viewBox=\"0 -0.5 122.88 122.88\" version=\"1.1\" id=\"Layer_1\" style=\"enable-background:new 0 0 122.88 121.87\" xml:space=\"preserve\">\n\n<g>\n\n<path d=\"M97.34,0.74c0.86-0.93,2.3-0.99,3.23-0.13c0.93,0.86,0.99,2.3,0.13,3.23L81.98,24.1l-0.03,0.04 c-2.29,2.77-3.86,5.33-4.56,7.67c-0.62,2.07-0.53,3.95,0.39,5.59c0.49,0.88,0.33,1.96-0.32,2.67l0,0l-8.89,9.62 c-0.87-0.95-1.56-1.72-2.02-2.22c-0.21-0.28-0.45-0.55-0.7-0.81l-0.02,0.02c-0.12-0.13-0.25-0.25-0.38-0.37l7.6-8.23 c-0.89-2.38-0.88-4.91-0.06-7.6c0.88-2.92,2.75-6.03,5.44-9.27c0.06-0.08,0.11-0.16,0.18-0.23L97.32,0.72L97.34,0.74L97.34,0.74z M57.13,55.01c-0.84-0.94-0.76-2.39,0.18-3.23c0.94-0.84,2.39-0.76,3.23,0.18c9.41,10.54,38.5,41.73,46.56,53.39 c10.63,15.05-5.83,19.79-11.29,14.31c-13.64-13.19-42.6-46.82-55.33-61.08c-4.58,1.94-9.03,2.24-13.5,0.96 c-4.81-1.37-9.52-4.58-14.3-9.51l-0.06-0.06c-3.64-3.84-6.49-7.63-8.55-11.38c-2.11-3.86-3.4-7.68-3.86-11.47 c-0.49-4.08-0.11-7.88,0.99-11.25c1.29-3.96,3.58-7.31,6.58-9.8c3.02-2.5,6.73-4.12,10.87-4.62c3.44-0.41,7.19-0.06,11.07,1.21 c5.37,1.75,11.63,6.1,16.82,11.68c3.83,4.11,7.11,8.92,9.06,13.87c2.03,5.16,2.65,10.5,1.02,15.5c-0.96,2.96-2.7,5.74-5.4,8.25 c-0.93,0.86-2.37,0.8-3.23-0.12c-0.86-0.93-0.8-2.37,0.12-3.23c2.09-1.95,3.43-4.08,4.16-6.33c1.26-3.87,0.73-8.16-0.93-12.38 c-1.74-4.42-4.69-8.74-8.15-12.45c-4.68-5.02-10.23-8.91-14.91-10.44c-3.21-1.04-6.28-1.34-9.09-1c-3.26,0.4-6.18,1.65-8.51,3.6 c-2.34,1.95-4.13,4.58-5.16,7.71c-0.89,2.73-1.2,5.87-0.79,9.26c0.39,3.2,1.5,6.47,3.32,9.81c1.91,3.43,4.53,6.9,7.9,10.45 l0.02,0.03c4.22,4.35,8.27,7.15,12.28,8.29c3.79,1.08,7.65,0.66,11.68-1.35c0.92-0.53,2.11-0.35,2.84,0.47 c12.42,13.91,42.63,48.92,56.01,61.89c5.81,2.37,9.03-0.55,6.25-5.7C100.7,102.43,63.5,62.17,57.13,55.01L57.13,55.01L57.13,55.01z M45.07,75.12l-29.16,31.55c-0.06,0.06-0.11,0.12-0.18,0.18c-4.26,4.6,3.28,11.3,7.96,6.82l28.32-30.65l3.04,3.45l-28.1,30.41l0,0 c-0.06,0.07-0.12,0.13-0.2,0.2c-1.68,1.41-3.37,2.33-5.08,2.71c-1.76,0.4-3.49,0.22-5.15-0.56c-0.28-0.11-0.54-0.25-0.77-0.46 l-4.03-3.73l0,0c-0.06-0.06-0.12-0.11-0.18-0.18c-1.56-1.8-2.3-3.72-2.1-5.75c0.19-1.92,1.21-3.79,3.14-5.59l29.44-31.86 L45.07,75.12L45.07,75.12z M75.63,57.46l1.73-1.87c0.86-0.93,2.31-0.99,3.23-0.13s0.99,2.3,0.13,3.23l-2,2.16L75.63,57.46 L75.63,57.46z M104.45,7.43c0.86-0.93,2.3-0.99,3.23-0.13c0.93,0.86,0.99,2.3,0.13,3.23L91.4,28.3c-0.86,0.93-2.3,0.99-3.23,0.13 c-0.93-0.86-0.99-2.3-0.13-3.23L104.45,7.43L104.45,7.43L104.45,7.43z M111.55,14c0.86-0.93,2.3-0.99,3.23-0.13 c0.93,0.86,0.99,2.3,0.13,3.23L98.51,34.86c-0.86,0.93-2.3,0.99-3.23,0.13c-0.93-0.86-0.99-2.3-0.13-3.23L111.55,14L111.55,14 L111.55,14z M118.91,20.83c0.86-0.93,2.3-0.99,3.23-0.13c0.93,0.86,0.99,2.31,0.13,3.23L103.55,44.2c-0.07,0.07-0.14,0.13-0.21,0.2 c-4.26,4.1-8.33,6.47-12.22,7.14c-4.22,0.73-8.09-0.47-11.64-3.57c-0.95-0.83-1.04-2.28-0.22-3.22c0.83-0.95,2.28-1.04,3.22-0.22 c2.45,2.14,5.07,2.98,7.84,2.49c2.98-0.51,6.26-2.48,9.84-5.93l0.02-0.02l18.71-20.25L118.91,20.83L118.91,20.83z\"\/>\n\n<\/g>\n\n<\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t139\t\t\t\t\t\t\t\t\t\t\tListings\n\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-right\">\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18.925\" height=\"12.091\" viewBox=\"0 0 18.925 12.091\">\n\t\t\t\t\t\t\t\t\t<g id=\"square-filled\" transform=\"translate(0 0)\">\n\t\t\t\t\t\t\t\t\t\t<path id=\"right-arrow\" d=\"M175.2,39.153l5.542,5.494.031.028a.518.518,0,0,1,.153.338v.065a.518.518,0,0,1-.153.338l-.027.023-5.546,5.5a.528.528,0,0,1-.743,0,.517.517,0,0,1,0-.737l4.735-4.7H162.525a.521.521,0,1,1,0-1.042h16.543l-4.612-4.573a.517.517,0,0,1,0-.737A.528.528,0,0,1,175.2,39.153Zm5.261,5.831-5.632,5.586,5.573-5.524v0l-.031-.028-.032-.031Z\" transform=\"translate(-162 -39)\" fill=\"#252528\" \/>\n\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"taxonomy-box-bottom\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/05\/afterwork_essen-1117x670.jpeg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/afterwork-stuttgart.de\/kategorie\/eventplanung\/\" class=\"taxonomy-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"taxonomy-box-top\">\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-left\">\n\t\t\t\t\t\t\t\t<h4>Eventplanung<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"#000000\" width=\"800px\" height=\"800px\" viewBox=\"0 0 122.88 122.88\" id=\"Layer_1\" data-name=\"Layer 1\"><title>event-calendar<\/title><path d=\"M81.6,4.73C81.6,2.12,84.18,0,87.37,0s5.77,2.12,5.77,4.73V25.45c0,2.61-2.58,4.73-5.77,4.73s-5.77-2.12-5.77-4.73V4.73Zm-19,56.57,6,13.91,15.07,1.35a1.2,1.2,0,0,1,1.1,1.31,1.18,1.18,0,0,1-.41.81h0l-11.41,10,3.37,14.75a1.2,1.2,0,0,1-.91,1.45,1.27,1.27,0,0,1-.94-.17l-13-7.74-13,7.78a1.22,1.22,0,0,1-1.66-.42,1.2,1.2,0,0,1-.14-.9h0L50,88.64l-11.4-10A1.22,1.22,0,0,1,38.48,77a1.26,1.26,0,0,1,.86-.4l15-1.34,6-13.93a1.21,1.21,0,0,1,1.59-.64,1.17,1.17,0,0,1,.65.64ZM29.61,4.73C29.61,2.12,32.19,0,35.38,0s5.77,2.12,5.77,4.73V25.45c0,2.61-2.58,4.73-5.77,4.73s-5.77-2.12-5.77-4.73V4.73ZM6.4,45.32H116.47V21.47a3,3,0,0,0-.86-2.07,2.92,2.92,0,0,0-2.07-.86H103a3.2,3.2,0,1,1,0-6.4h10.55a9.36,9.36,0,0,1,9.33,9.33v92.08a9.36,9.36,0,0,1-9.33,9.33H9.33A9.36,9.36,0,0,1,0,113.54V21.47a9.36,9.36,0,0,1,9.33-9.33H20.6a3.2,3.2,0,1,1,0,6.4H9.33a3,3,0,0,0-2.07.86,2.92,2.92,0,0,0-.86,2.07V45.32Zm110.07,6.41H6.4v61.81a3,3,0,0,0,.86,2.07,2.92,2.92,0,0,0,2.07.86H113.54a3,3,0,0,0,2.07-.86,2.92,2.92,0,0,0,.86-2.07V51.73Zm-66-33.19a3.2,3.2,0,0,1,0-6.4H71.91a3.2,3.2,0,1,1,0,6.4Z\"\/><\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t47\t\t\t\t\t\t\t\t\t\t\tListings\n\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-right\">\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18.925\" height=\"12.091\" viewBox=\"0 0 18.925 12.091\">\n\t\t\t\t\t\t\t\t\t<g id=\"square-filled\" transform=\"translate(0 0)\">\n\t\t\t\t\t\t\t\t\t\t<path id=\"right-arrow\" d=\"M175.2,39.153l5.542,5.494.031.028a.518.518,0,0,1,.153.338v.065a.518.518,0,0,1-.153.338l-.027.023-5.546,5.5a.528.528,0,0,1-.743,0,.517.517,0,0,1,0-.737l4.735-4.7H162.525a.521.521,0,1,1,0-1.042h16.543l-4.612-4.573a.517.517,0,0,1,0-.737A.528.528,0,0,1,175.2,39.153Zm5.261,5.831-5.632,5.586,5.573-5.524v0l-.031-.028-.032-.031Z\" transform=\"translate(-162 -39)\" fill=\"#252528\" \/>\n\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"taxonomy-box-bottom\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/05\/afterwork_eventlocation-1195x670.jpeg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/afterwork-stuttgart.de\/kategorie\/freizeit\/\" class=\"taxonomy-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"taxonomy-box-top\">\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-left\">\n\t\t\t\t\t\t\t\t<h4>Freizeit<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#000000\" height=\"800px\" width=\"800px\" version=\"1.1\" id=\"Layer_1\" viewBox=\"0 0 512.009 512.009\" xml:space=\"preserve\">\n<g>\n\t<g>\n\t\t<g>\n\t\t\t<path d=\"M76.804,494.933H8.538c-4.719,0-8.533,3.823-8.533,8.533S3.819,512,8.538,512h68.267c4.719,0,8.533-3.823,8.533-8.533 S81.523,494.933,76.804,494.933z\"\/>\n\t\t\t<path d=\"M460.804,264.533c18.825,0,34.133-15.309,34.133-34.133v-17.067c0-9.412-7.663-17.067-17.067-17.067h-20.036 c-4.079-24.457-12.467-47.599-24.994-69.009c6.665-6.229,10.897-15.036,10.897-24.858V85.333c0-9.412-7.663-17.067-17.067-17.067 h-45.73c-24.226-18.679-52.463-31.71-82.27-38.05v-13.15C298.671,7.654,291.017,0,281.604,0h-51.2 c-9.412,0-17.067,7.654-17.067,17.067v13.15c-29.807,6.34-58.044,19.371-82.27,38.05h-45.73c-9.412,0-17.067,7.654-17.067,17.067 V102.4c0,9.822,4.233,18.628,10.897,24.858c-12.527,21.41-20.915,44.552-24.994,69.009H34.138 c-9.412,0-17.067,7.654-17.067,17.067V230.4c0,18.825,15.309,34.133,34.133,34.133h3.012 c4.608,27.401,14.771,53.606,29.85,76.928c-8.815,0.666-15.795,7.962-15.795,16.939v17.067c0,18.825,15.309,34.133,34.133,34.133 h17.067c8.823,0,16.802-3.456,22.869-8.969c9.037,6.042,18.577,11.349,28.493,15.889l-31.531,78.413h-28.365 c-4.719,0-8.533,3.823-8.533,8.533s3.814,8.533,8.533,8.533h34.108c0.009,0,0.017,0.009,0.026,0.009 c0.009,0,0.017-0.009,0.026-0.009h221.816c0.009,0,0.017,0.009,0.026,0.009s0.017-0.009,0.026-0.009h85.308 c4.719,0,8.533-3.823,8.533-8.533s-3.814-8.533-8.533-8.533h-79.582l-31.795-78.285c10.01-4.565,19.644-9.916,28.774-16.017 c6.067,5.513,14.046,8.969,22.869,8.969h17.067c18.825,0,34.133-15.309,34.133-34.133V358.4c0-8.977-6.98-16.273-15.795-16.939 c15.078-23.322,25.242-49.527,29.85-76.928H460.804z M375.471,85.333h51.2V102.4c0,6.767-3.994,12.578-9.719,15.334 c-0.017,0.008-0.034,0.008-0.051,0.017c-0.008,0.009-0.008,0.017-0.017,0.026c-2.21,1.05-4.659,1.69-7.279,1.69h-17.067 c-9.412,0-17.067-7.654-17.067-17.067V85.333z M392.538,136.533h17.067c2.85,0,5.581-0.452,8.235-1.118 c11.153,18.918,18.799,39.313,22.733,60.851h-13.901c-9.412,0-17.067,7.654-17.067,17.067v8.533H297.801 c-1.101-5.436-3.268-10.487-6.238-14.959l78.78-78.78C376.333,133.291,384.03,136.533,392.538,136.533z M296.085,47.087 c23.416,5.103,45.747,14.746,65.587,28.288c-2.039,2.807-3.268,6.229-3.268,9.958V102.4c0,4.028,0.828,7.834,2.108,11.426 l-81.016,81.016c-4.48-2.97-9.523-5.137-14.959-6.246V68.267C278.78,68.267,290.974,59.494,296.085,47.087z M281.604,392.533 h-17.067V273.98l54.093,133.222c-6.562,2.321-13.193,4.412-19.959,5.99v-3.063V409.6 C298.671,400.188,291.017,392.533,281.604,392.533z M230.404,409.6h51.2v17.067c0,9.412-7.663,17.067-17.067,17.067h-17.067 c-9.412,0-17.067-7.654-17.067-17.067V409.6z M213.338,409.6v3.584c-6.895-1.604-13.696-3.61-20.369-5.99l54.289-135.04 c0.068,0.008,0.137,0.034,0.213,0.051v120.328h-17.067C220.992,392.533,213.338,400.188,213.338,409.6z M256.004,256 c-14.114,0-25.6-11.486-25.6-25.6s11.486-25.6,25.6-25.6c14.114,0,25.6,11.486,25.6,25.6S270.118,256,256.004,256z M230.404,17.067h51.2v17.067c0,0.486-0.102,0.947-0.145,1.425c-0.009,0.026-0.026,0.051-0.034,0.077 c-0.009,0.068,0.017,0.119,0.008,0.179c-0.862,8.619-8.064,15.386-16.896,15.386h-17.067c-8.832,0-16.034-6.767-16.905-15.386 c0-0.06,0.026-0.111,0.009-0.179c-0.009-0.026-0.017-0.051-0.026-0.077c-0.043-0.478-0.145-0.939-0.145-1.425V17.067z M215.932,47.104c5.111,12.399,17.306,21.163,31.539,21.163v120.329c-5.436,1.109-10.479,3.277-14.959,6.246l-81.016-81.016 c1.28-3.593,2.108-7.398,2.108-11.426V85.333c0-3.738-1.246-7.168-3.285-9.975C170.167,61.815,192.516,52.207,215.932,47.104z M85.338,85.333h51.2V102.4c0,9.412-7.663,17.067-17.067,17.067h-17.067c-2.62,0-5.069-0.64-7.287-1.69 c-0.009-0.009-0.009-0.017-0.017-0.026s-0.026-0.009-0.043-0.017c-5.726-2.756-9.719-8.568-9.719-15.334V85.333z M94.17,135.415 c2.654,0.666,5.385,1.118,8.235,1.118h17.067c8.508,0,16.205-3.243,22.195-8.405l78.78,78.78 c-2.97,4.471-5.146,9.523-6.238,14.959H102.404v-8.533c0-9.412-7.663-17.067-17.067-17.067H71.437 C75.371,174.729,83.017,154.334,94.17,135.415z M51.204,247.467c-9.412,0-17.067-7.654-17.067-17.067v-17.067h51.2V230.4 c0,9.412-7.663,17.067-17.067,17.067H51.204z M136.538,375.467c0,9.412-7.663,17.067-17.067,17.067h-17.067 c-9.412,0-17.067-7.654-17.067-17.067V358.4h51.2V375.467z M133.005,341.333H104.7c-16.785-22.878-28.177-49.271-33.254-77.124 c14.421-1.348,26.189-11.597,29.747-25.276h113.015c1.092,5.436,3.268,10.487,6.238,14.959L133.005,341.333z M151.659,386.338 c1.169-3.43,1.946-7.049,1.946-10.871V358.4c0-3.806-1.289-7.287-3.405-10.129l80.367-80.367l-53.367,132.77 C168.324,396.561,159.782,391.782,151.659,386.338z M354.266,494.933H157.692l28.911-71.902c8.858,3.2,17.946,5.717,27.145,7.654 c2.014,16.913,16.273,30.114,33.724,30.114h17.067c17.451,0,31.71-13.201,33.724-30.114c9.097-1.92,18.082-4.386,26.854-7.535 L354.266,494.933z M358.822,379.554c0.008,0.29-0.094,0.555-0.051,0.853c0.051,0.316,0.171,0.614,0.222,0.93 c0.188,1.05,0.469,2.039,0.742,3.038c0.188,0.7,0.273,1.434,0.512,2.116c-8.175,5.47-16.862,10.155-25.805,14.268 l-54.596-134.451l81.963,81.963c-2.116,2.842-3.405,6.323-3.405,10.129v17.067C358.404,376.866,358.652,378.197,358.822,379.554z M426.671,375.467c0,9.412-7.654,17.067-17.067,17.067h-17.067c-6.007,0-11.273-3.14-14.319-7.842 c-0.631-0.973-1.126-1.997-1.545-3.038c-0.137-0.341-0.222-0.7-0.333-1.058c-0.23-0.734-0.444-1.476-0.58-2.244 c-0.154-0.939-0.29-1.894-0.29-2.884V358.4h51.2V375.467z M407.3,341.333h-28.297l-87.441-87.441 c2.97-4.471,5.137-9.523,6.238-14.959h113.016c3.558,13.679,15.317,23.927,29.747,25.276 C435.486,292.062,424.094,318.456,407.3,341.333z M426.671,230.426c0-0.008,0.009-0.017,0.009-0.026 c0-0.017-0.009-0.026-0.009-0.043v-17.024h51.2V230.4c0,9.412-7.654,17.067-17.067,17.067h-17.067 C434.334,247.467,426.688,239.829,426.671,230.426z\"\/>\n\t\t\t<path d=\"M503.471,494.933h-17.067c-4.719,0-8.533,3.823-8.533,8.533s3.814,8.533,8.533,8.533h17.067 c4.719,0,8.533-3.823,8.533-8.533S508.19,494.933,503.471,494.933z\"\/>\n\t\t\t<path d=\"M256.26,221.867h-0.094c-4.702,0-8.482,3.823-8.482,8.533s3.857,8.533,8.576,8.533c4.71,0,8.533-3.823,8.533-8.533 S260.971,221.867,256.26,221.867z\"\/>\n\t\t<\/g>\n\t<\/g>\n<\/g>\n<\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t4\t\t\t\t\t\t\t\t\t\t\tListings\n\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-right\">\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18.925\" height=\"12.091\" viewBox=\"0 0 18.925 12.091\">\n\t\t\t\t\t\t\t\t\t<g id=\"square-filled\" transform=\"translate(0 0)\">\n\t\t\t\t\t\t\t\t\t\t<path id=\"right-arrow\" d=\"M175.2,39.153l5.542,5.494.031.028a.518.518,0,0,1,.153.338v.065a.518.518,0,0,1-.153.338l-.027.023-5.546,5.5a.528.528,0,0,1-.743,0,.517.517,0,0,1,0-.737l4.735-4.7H162.525a.521.521,0,1,1,0-1.042h16.543l-4.612-4.573a.517.517,0,0,1,0-.737A.528.528,0,0,1,175.2,39.153Zm5.261,5.831-5.632,5.586,5.573-5.524v0l-.031-.028-.032-.031Z\" transform=\"translate(-162 -39)\" fill=\"#252528\" \/>\n\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"taxonomy-box-bottom\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/08\/freizeit_afterwork-1012x670.jpeg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/afterwork-stuttgart.de\/kategorie\/kultur\/\" class=\"taxonomy-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"taxonomy-box-top\">\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-left\">\n\t\t\t\t\t\t\t\t<h4>Kultur<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#000000\" height=\"800px\" width=\"800px\" version=\"1.1\" id=\"Capa_1\" viewBox=\"0 0 399.02 399.02\" xml:space=\"preserve\">\n<g>\n\t<path d=\"M13.076,135.976c0.004,0.166,0.01,0.332,0.025,0.499c0.009,0.098,0.023,0.194,0.036,0.292 c0.02,0.144,0.038,0.288,0.066,0.431c0.023,0.12,0.052,0.238,0.081,0.356c0.028,0.116,0.055,0.232,0.089,0.348 c0.042,0.143,0.092,0.281,0.142,0.42c0.032,0.09,0.063,0.18,0.099,0.269c0.064,0.159,0.137,0.313,0.211,0.466 c0.026,0.055,0.047,0.111,0.075,0.165c0.007,0.013,0.016,0.024,0.023,0.037c0.148,0.283,0.313,0.555,0.496,0.815 c0.044,0.063,0.092,0.123,0.138,0.184c0.143,0.191,0.293,0.375,0.453,0.552c0.061,0.068,0.121,0.138,0.185,0.203 c0.203,0.208,0.416,0.406,0.642,0.589c0.059,0.048,0.121,0.09,0.182,0.136c0.188,0.144,0.382,0.278,0.583,0.403 c0.071,0.045,0.144,0.09,0.216,0.132c0.525,0.304,1.089,0.546,1.684,0.716c0.066,0.019,0.131,0.034,0.195,0.05 c0.233,0.06,0.471,0.108,0.712,0.146c0.083,0.013,0.164,0.028,0.247,0.038c0.279,0.034,0.563,0.056,0.851,0.058 c0.022,0.001,0.045,0.005,0.067,0.005c0.008,0,0.017-0.001,0.025-0.001h7.221v17.745c0,4.142,3.357,7.5,7.5,7.5h9.326v132h-9.326 c-4.143,0-7.5,3.357-7.5,7.5c0,4.142,3.357,7.5,7.5,7.5h16.826h28.311h59.89h28.311h59.889h28.311h59.889h28.311h18.646 c4.143,0,7.5-3.358,7.5-7.5c0-4.143-3.357-7.5-7.5-7.5h-11.146v-132h12.954c0.039,0,0.078-0.006,0.117-0.006 c0.039,0.001,0.078,0.006,0.117,0.006c4.143,0,7.5-3.358,7.5-7.5v-17.745h6.895c0.04,0,0.079-0.005,0.119-0.006 c0.043,0.001,0.086,0.008,0.128,0.008c2.714,0,5.334-1.479,6.667-4.056c1.903-3.679,0.464-8.204-3.215-10.107L204.912,36.568 c-1.324-0.685-2.756-0.93-4.137-0.801c-1.377-0.128-2.804,0.116-4.122,0.796L17.13,129.119c-0.016,0.008-0.029,0.018-0.045,0.026 c-0.153,0.081-0.302,0.17-0.448,0.261c-0.069,0.043-0.142,0.082-0.209,0.127c-0.116,0.077-0.228,0.162-0.34,0.246 c-0.09,0.067-0.183,0.131-0.269,0.201c-0.073,0.06-0.141,0.126-0.212,0.188c-0.113,0.101-0.229,0.199-0.336,0.306 c-0.039,0.039-0.074,0.081-0.112,0.122c-0.13,0.135-0.258,0.27-0.376,0.413c-0.036,0.044-0.066,0.091-0.102,0.136 c-0.113,0.143-0.225,0.286-0.326,0.435c-0.087,0.128-0.163,0.263-0.242,0.396c-0.041,0.07-0.088,0.138-0.127,0.21 c-0.112,0.204-0.214,0.415-0.307,0.63c-0.002,0.004-0.004,0.008-0.006,0.012c-0.086,0.201-0.161,0.407-0.229,0.616 c-0.007,0.02-0.017,0.041-0.023,0.062c-0.052,0.163-0.093,0.33-0.133,0.497c-0.019,0.073-0.041,0.145-0.057,0.218 c-0.025,0.122-0.042,0.247-0.063,0.372c-0.02,0.124-0.043,0.249-0.057,0.374c-0.01,0.091-0.013,0.184-0.02,0.276 c-0.012,0.162-0.023,0.323-0.024,0.486c0,0.019-0.003,0.038-0.003,0.057C13.066,135.85,13.074,135.912,13.076,135.976z M200.773,51.315l148.796,76.97H51.479L200.773,51.315z M132.845,168.53v132h-44.89v-132H132.845z M221.044,168.53v132h-44.889 v-132H221.044z M59.645,300.53V169.619h13.311V300.53H59.645z M147.845,300.53V169.619h13.311V300.53H147.845z M236.044,300.53 V169.619h13.311V300.53H236.044z M324.244,300.53V169.619h13.311V300.53H324.244z M309.244,300.53h-44.889v-132h44.889V300.53z M358.244,153.53H42.818v-10.245h315.426V153.53z\"\/>\n\t<path d=\"M21.655,324.407c-4.143,0-7.5,3.358-7.5,7.5c0,4.142,3.357,7.5,7.5,7.5h355.709c4.143,0,7.5-3.358,7.5-7.5 c0-4.142-3.357-7.5-7.5-7.5H21.655z\"\/>\n\t<path d=\"M391.52,348.285H7.5c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h384.02c4.143,0,7.5-3.358,7.5-7.5 C399.02,351.643,395.662,348.285,391.52,348.285z\"\/>\n<\/g>\n<\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t29\t\t\t\t\t\t\t\t\t\t\tListings\n\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-right\">\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18.925\" height=\"12.091\" viewBox=\"0 0 18.925 12.091\">\n\t\t\t\t\t\t\t\t\t<g id=\"square-filled\" transform=\"translate(0 0)\">\n\t\t\t\t\t\t\t\t\t\t<path id=\"right-arrow\" d=\"M175.2,39.153l5.542,5.494.031.028a.518.518,0,0,1,.153.338v.065a.518.518,0,0,1-.153.338l-.027.023-5.546,5.5a.528.528,0,0,1-.743,0,.517.517,0,0,1,0-.737l4.735-4.7H162.525a.521.521,0,1,1,0-1.042h16.543l-4.612-4.573a.517.517,0,0,1,0-.737A.528.528,0,0,1,175.2,39.153Zm5.261,5.831-5.632,5.586,5.573-5.524v0l-.031-.028-.032-.031Z\" transform=\"translate(-162 -39)\" fill=\"#252528\" \/>\n\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"taxonomy-box-bottom\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/05\/afterwork_museum-1200x593.jpeg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/afterwork-stuttgart.de\/kategorie\/mobilitaet\/\" class=\"taxonomy-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"taxonomy-box-top\">\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-left\">\n\t\t\t\t\t\t\t\t<h4>Mobilit\u00e4t<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"#000000\" width=\"800px\" height=\"800px\" viewBox=\"0 0 32 32\" version=\"1.1\">\n    <path d=\"M15.999 1.129c-8.812 0-15.98 7.169-15.98 15.981 0 5.536 2.803 10.6 7.497 13.544 0.467 0.296 1.084 0.152 1.378-0.316s0.152-1.085-0.316-1.378c-1.691-1.061-3.095-2.439-4.17-4.027l1.048-0.605c0.478-0.276 0.643-0.887 0.366-1.366-0.277-0.48-0.889-0.642-1.366-0.366l-1.050 0.606c-0.763-1.579-1.228-3.306-1.353-5.107h1.113c0.552 0 1-0.448 1-1s-0.447-1-1-1h-1.108c0.132-1.834 0.618-3.572 1.393-5.143l1.005 0.58c0.157 0.091 0.329 0.134 0.499 0.134 0.346 0 0.681-0.179 0.867-0.5 0.277-0.479 0.112-1.090-0.366-1.366l-0.995-0.574c1.003-1.463 2.277-2.728 3.75-3.719l0.563 0.975c0.185 0.322 0.521 0.5 0.867 0.5 0.17 0 0.342-0.043 0.499-0.134 0.479-0.277 0.643-0.887 0.366-1.366l-0.561-0.971c1.542-0.744 3.24-1.208 5.030-1.338v1.246c0 0.553 0.447 1 1 1s1-0.447 1-1v-1.25c1.831 0.127 3.567 0.606 5.137 1.373l-0.543 0.939c-0.276 0.479-0.113 1.090 0.366 1.366 0.157 0.091 0.329 0.134 0.499 0.134 0.346 0 0.681-0.178 0.867-0.5l0.54-0.936c1.459 0.993 2.721 2.255 3.715 3.713l-0.936 0.541c-0.479 0.277-0.642 0.887-0.366 1.366 0.186 0.322 0.521 0.5 0.867 0.5 0.17 0 0.342-0.043 0.499-0.134l0.942-0.543c0.768 1.571 1.248 3.307 1.377 5.139h-1.098c-0.552 0-1 0.448-1 1s0.448 1 1 1h1.098c-0.127 1.777-0.581 3.482-1.328 5.041l-0.99-0.572c-0.477-0.276-1.091-0.111-1.366 0.366-0.276 0.479-0.113 1.090 0.366 1.366l0.993 0.573c-1.097 1.633-2.545 3.044-4.292 4.119-0.471 0.29-0.616 0.907-0.327 1.376 0.189 0.306 0.517 0.476 0.852 0.476 0.178 0 0.36-0.048 0.523-0.148 4.764-2.934 7.608-8.024 7.608-13.614 0-8.811-7.169-15.98-15.98-15.98zM23.378 13.992c0.478-0.277 0.642-0.887 0.366-1.366s-0.888-0.642-1.366-0.366l-5.432 3.136c-0.29-0.164-0.62-0.265-0.977-0.265-1.102 0-1.995 0.893-1.995 1.994 0 1.102 0.893 1.995 1.995 1.995s1.995-0.893 1.995-1.995c0-0.002-0-0.005-0-0.007z\"\/>\n<\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t1\t\t\t\t\t\t\t\t\t\t\tListing\n\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-right\">\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18.925\" height=\"12.091\" viewBox=\"0 0 18.925 12.091\">\n\t\t\t\t\t\t\t\t\t<g id=\"square-filled\" transform=\"translate(0 0)\">\n\t\t\t\t\t\t\t\t\t\t<path id=\"right-arrow\" d=\"M175.2,39.153l5.542,5.494.031.028a.518.518,0,0,1,.153.338v.065a.518.518,0,0,1-.153.338l-.027.023-5.546,5.5a.528.528,0,0,1-.743,0,.517.517,0,0,1,0-.737l4.735-4.7H162.525a.521.521,0,1,1,0-1.042h16.543l-4.612-4.573a.517.517,0,0,1,0-.737A.528.528,0,0,1,175.2,39.153Zm5.261,5.831-5.632,5.586,5.573-5.524v0l-.031-.028-.032-.031Z\" transform=\"translate(-162 -39)\" fill=\"#252528\" \/>\n\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"taxonomy-box-bottom\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/07\/mobilitaet-1030x670.jpeg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/afterwork-stuttgart.de\/kategorie\/shopping\/\" class=\"taxonomy-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"taxonomy-box-top\">\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-left\">\n\t\t\t\t\t\t\t\t<h4>Shopping<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"800px\" height=\"800px\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\">\n<g>\n\t<path fill=\"#231F20\" d=\"M54,20H44v-8c0-6.627-5.373-12-12-12S20,5.373,20,12v8H10c-1.105,0-2,0.895-2,2v38c0,2.211,1.789,4,4,4h40 c2.211,0,4-1.789,4-4V22C56,20.895,55.105,20,54,20z M22,12c0-5.522,4.478-10,10-10s10,4.478,10,10v12h-2V12c0-4.418-3.582-8-8-8 s-8,3.582-8,8v12h-2V12z M38,12v8H26v-8c0-3.313,2.687-6,6-6S38,8.687,38,12z M54,60c0,1.104-0.896,2-2,2H12c-1.104,0-2-0.896-2-2 v-2h44V60z M54,56H10V23c0-0.553,0.447-1,1-1h9v3c0,0.553,0.447,1,1,1h4c0.553,0,1-0.447,1-1v-3h12v3c0,0.553,0.447,1,1,1h4 c0.553,0,1-0.447,1-1v-3h9c0.553,0,1,0.447,1,1V56z\"\/>\n\t<path fill=\"#231F20\" d=\"M36,34c-1.104,0-2.104,0.448-2.828,1.172L32,36.336l-1.172-1.164C30.104,34.448,29.104,34,28,34 c-2.209,0-4,1.791-4,4c0,1.104,0.713,2.136,1.438,2.859l5.855,5.856c0.391,0.391,1.023,0.391,1.414,0l5.84-5.841 C39.271,40.151,40,39.104,40,38C40,35.791,38.209,34,36,34z M37.156,39.438L32,44.594l-5.156-5.156C26.481,39.076,26,38.553,26,38 c0-1.104,0.896-2,2-2c0.553,0,1.053,0.224,1.414,0.586l1.879,1.871c0.391,0.391,1.023,0.391,1.414,0l1.879-1.871 C34.947,36.224,35.447,36,36,36c1.104,0,2,0.896,2,2C38,38.553,37.519,39.076,37.156,39.438z\"\/>\n<\/g>\n<\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t17\t\t\t\t\t\t\t\t\t\t\tListings\n\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-right\">\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18.925\" height=\"12.091\" viewBox=\"0 0 18.925 12.091\">\n\t\t\t\t\t\t\t\t\t<g id=\"square-filled\" transform=\"translate(0 0)\">\n\t\t\t\t\t\t\t\t\t\t<path id=\"right-arrow\" d=\"M175.2,39.153l5.542,5.494.031.028a.518.518,0,0,1,.153.338v.065a.518.518,0,0,1-.153.338l-.027.023-5.546,5.5a.528.528,0,0,1-.743,0,.517.517,0,0,1,0-.737l4.735-4.7H162.525a.521.521,0,1,1,0-1.042h16.543l-4.612-4.573a.517.517,0,0,1,0-.737A.528.528,0,0,1,175.2,39.153Zm5.261,5.831-5.632,5.586,5.573-5.524v0l-.031-.028-.032-.031Z\" transform=\"translate(-162 -39)\" fill=\"#252528\" \/>\n\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"taxonomy-box-bottom\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/05\/afterwork_shopping-1026x670.jpeg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/afterwork-stuttgart.de\/kategorie\/uebernachtung\/\" class=\"taxonomy-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"taxonomy-box-top\">\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-left\">\n\t\t\t\t\t\t\t\t<h4>\u00dcbernachtung<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#000000\" width=\"800px\" height=\"800px\" viewBox=\"0 0 50 50\"><path d=\"M28 0L28 2L32 2L28 6L28 8L35 8L35 6L30.5 6L34.5 2L34.5 0 Z M 16 10L16 12L21.5 12L16 18L16 20L25 20L25 18L18.5 18L24 12L24 10 Z M 3 17C1.355469 17 0 18.355469 0 20L0 50L6 50L6 45L44 45L44 50L50 50L50 37.15625C50.003906 37.105469 50.003906 37.050781 50 37L50 31C50 28.253906 47.746094 26 45 26L19 26C18.96875 26 18.9375 26 18.90625 26C18.390625 26.046875 17.996094 26.480469 18 27L18 36L6 36L6 20C6 18.355469 4.644531 17 3 17 Z M 12 36C14.75 36 17 33.75 17 31C17 28.25 14.75 26 12 26C9.25 26 7 28.25 7 31C7 33.75 9.25 36 12 36 Z M 3 19C3.554688 19 4 19.445313 4 20L4 38L48 38L48 48L46 48L46 43L4 43L4 48L2 48L2 20C2 19.445313 2.445313 19 3 19 Z M 12 28C13.667969 28 15 29.332031 15 31C15 32.667969 13.667969 34 12 34C10.332031 34 9 32.667969 9 31C9 29.332031 10.332031 28 12 28 Z M 20 28L45 28C46.65625 28 48 29.34375 48 31L48 36L20 36Z\"\/><\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t56\t\t\t\t\t\t\t\t\t\t\tListings\n\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-right\">\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18.925\" height=\"12.091\" viewBox=\"0 0 18.925 12.091\">\n\t\t\t\t\t\t\t\t\t<g id=\"square-filled\" transform=\"translate(0 0)\">\n\t\t\t\t\t\t\t\t\t\t<path id=\"right-arrow\" d=\"M175.2,39.153l5.542,5.494.031.028a.518.518,0,0,1,.153.338v.065a.518.518,0,0,1-.153.338l-.027.023-5.546,5.5a.528.528,0,0,1-.743,0,.517.517,0,0,1,0-.737l4.735-4.7H162.525a.521.521,0,1,1,0-1.042h16.543l-4.612-4.573a.517.517,0,0,1,0-.737A.528.528,0,0,1,175.2,39.153Zm5.261,5.831-5.632,5.586,5.573-5.524v0l-.031-.028-.032-.031Z\" transform=\"translate(-162 -39)\" fill=\"#252528\" \/>\n\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"taxonomy-box-bottom\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/05\/afteworkstuttgart_hotels-1005x670.jpeg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/afterwork-stuttgart.de\/kategorie\/wellness-sport\/\" class=\"taxonomy-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"taxonomy-box-top\">\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-left\">\n\t\t\t\t\t\t\t\t<h4>Wellness &amp; Sport<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#000000\" height=\"800px\" width=\"800px\" version=\"1.1\" id=\"Layer_1\" viewBox=\"0 0 512.003 512.003\" xml:space=\"preserve\">\n<g>\n\t<g>\n\t\t<path d=\"M511.955,204.025c-0.427-13.474-11.307-24.32-24.789-24.781l-3.55-0.043c-8.277,0-31.258,0.802-59.674,6.332 c-5.086-38.4-15.386-65.664-16.239-67.84c-2.526-6.511-7.612-11.699-14.063-14.37c-3.14-1.297-6.468-1.946-9.796-1.946 c-3.516,0-7.023,0.725-10.308,2.167c-1.877,0.828-22.554,10.146-48.35,28.305c-22.605-43.008-48.759-70.733-50.679-72.738 c-4.838-5.052-11.52-7.902-18.5-7.902c-6.98,0-13.662,2.85-18.492,7.893c-1.92,2.005-28.109,29.773-50.722,72.823 c-25.737-18.108-46.438-27.563-48.307-28.39c-3.285-1.442-6.793-2.167-10.308-2.167c-3.328,0-6.656,0.648-9.796,1.946 c-6.451,2.671-11.529,7.868-14.063,14.37c-0.845,2.176-11.145,29.431-16.23,67.84c-28.433-5.538-51.405-6.323-59.682-6.323 l-3.567,0.043c-13.474,0.461-24.363,11.307-24.789,24.781c-0.154,4.796-2.876,118.349,67.746,188.979 c64.521,64.521,165.769,67.789,185.412,67.789l2.628-0.034c0.051,0,0.102,0.034,0.154,0.034c0.051,0,0.102-0.034,0.154-0.034 l2.628,0.034c19.644,0,120.892-3.268,185.412-67.789C514.83,322.382,512.108,208.829,511.955,204.025z M383.844,126.969 c0,0,10.257,26.863,14.942,64.563c-14.831,4.156-30.242,9.737-45.542,17.203c-3.968-19.055-9.916-36.915-16.922-53.248 C362.468,136.543,383.844,126.969,383.844,126.969z M128.168,126.969c0,0,21.376,9.523,47.539,28.467 c-7.023,16.384-12.996,34.313-16.964,53.436c-15.3-7.467-30.686-13.133-45.525-17.297 C117.902,153.858,128.168,126.969,128.168,126.969z M85.911,374.905C22.303,311.298,25.64,204.836,25.64,204.836 s0.964-0.026,2.756-0.026c13.414,0,73.199,2.133,126.182,30.677c-0.614,6.733-0.973,13.568-0.973,20.514 c0,78.805,42.769,145.374,67.268,177.075C184.172,428.716,126.402,415.396,85.911,374.905z M256.569,434.596 c-0.495-0.162-0.981-0.316-1.613-0.546c-9.011-9.822-75.75-85.76-75.75-178.048c0-98.97,76.8-179.2,76.8-179.2 s76.8,80.23,76.8,179.2C332.806,350.969,262.286,428.469,256.569,434.596z M426.109,374.905 c-40.491,40.491-98.261,53.811-134.963,58.172c24.491-31.701,67.26-98.27,67.26-177.075c0-6.989-0.358-13.867-0.99-20.642 c52.983-28.518,112.794-30.558,126.199-30.558c1.792,0,2.756,0.026,2.756,0.026S489.708,311.298,426.109,374.905z\"\/>\n\t<\/g>\n<\/g>\n<\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t11\t\t\t\t\t\t\t\t\t\t\tListings\n\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-right\">\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18.925\" height=\"12.091\" viewBox=\"0 0 18.925 12.091\">\n\t\t\t\t\t\t\t\t\t<g id=\"square-filled\" transform=\"translate(0 0)\">\n\t\t\t\t\t\t\t\t\t\t<path id=\"right-arrow\" d=\"M175.2,39.153l5.542,5.494.031.028a.518.518,0,0,1,.153.338v.065a.518.518,0,0,1-.153.338l-.027.023-5.546,5.5a.528.528,0,0,1-.743,0,.517.517,0,0,1,0-.737l4.735-4.7H162.525a.521.521,0,1,1,0-1.042h16.543l-4.612-4.573a.517.517,0,0,1,0-.737A.528.528,0,0,1,175.2,39.153Zm5.261,5.831-5.632,5.586,5.573-5.524v0l-.031-.028-.032-.031Z\" transform=\"translate(-162 -39)\" fill=\"#252528\" \/>\n\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"taxonomy-box-bottom\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/05\/afterwork_wellnesserholung-1004x670.jpeg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6e487b3 e-flex e-con-boxed e-con e-parent\" data-id=\"6e487b3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1e9fbf4 elementor-widget elementor-widget-listeo-headline\" data-id=\"1e9fbf4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 \n\t\tstyle=\"text-align:left;\" class=\"headline  headline-aligned-to-left  headline-box  headline-with-subtitle \"> AFTERWORK offers in the Stuttgart region \ud83d\udccd  <span > The business service with a local focus<\/span><\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6c22a96 elementor-widget elementor-widget-text-editor\" data-id=\"6c22a96\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\"><span class=\"OYPEnA font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">Since 2020, AFTERWORK has been the central platform for carefully selected recommendations in Stuttgart and the surrounding area \u2013 specifically for <mark><b>business travelers, trade fair guests, and event participants<\/b><\/mark>. Our goal: to make planning your leisure time before, during, and after business appointments as easy and pleasant as possible. <\/span><\/p><p style=\"text-align: left;\">Instead of searching for a long time, AFTERWORK users quickly find verified addresses in the areas of <strong data-start=\"807\" data-end=\"879\">gastronomy \ud83c\udf74, hotels \ud83d\udecf\ufe0f, shopping \ud83d\udecd\ufe0f, wellness \ud83e\udeb7, culture \ud83c\udfad<\/strong> and more.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-46a6e70 e-flex e-con-boxed e-con e-parent\" data-id=\"46a6e70\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-ba293cb e-con-full e-flex e-con e-child\" data-id=\"ba293cb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0b49520 elementor-widget elementor-widget-image\" data-id=\"0b49520\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"256\" height=\"522\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/10\/suche-2.png\" class=\"attachment-large size-large wp-image-8851\" alt=\"\" srcset=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/10\/suche-2.png 256w, https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/10\/suche-2-147x300.png 147w, https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/10\/suche-2-6x12.png 6w\" sizes=\"(max-width: 256px) 100vw, 256px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2bfb018 e-con-full e-flex e-con e-child\" data-id=\"2bfb018\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e526115 elementor-widget elementor-widget-listeo-headline\" data-id=\"e526115\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 \n\t\tstyle=\"text-align:left;\" class=\"headline  headline-aligned-to-left  headline-box \"> More visibility. More success.  <\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1b79f88 elementor-widget elementor-widget-text-editor\" data-id=\"1b79f88\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\">There are many possibilities in Stuttgart \u2013 we make sure your location stands out. With AFTERWORK Stuttgart, you gain new guests and stay present with regular customers. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1aa4d560 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"1aa4d560\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-angle-right\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Digital company profiles that immediately catch the eye<\/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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-angle-right\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Virtual 360\u00b0 tours that make the atmosphere tangible<\/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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-angle-right\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Social media marketing with impact<\/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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-angle-right\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Newsletters &amp; emails that actually get read<\/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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-angle-right\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Print &amp; on-site promotions for a direct connection<\/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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-angle-right\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Event promotion that increases visitor numbers<\/span>\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>\n\t\t\t\t<div class=\"elementor-element elementor-element-eddc5f8 elementor-widget elementor-widget-text-editor\" data-id=\"eddc5f8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\">Take the next step \u2013 we&#8217;ll accompany you along the way.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9665926 e-con-full e-flex e-con e-child\" data-id=\"9665926\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a1fe0f4 elementor-widget__width-auto elementor-widget elementor-widget-button\" data-id=\"a1fe0f4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/afterwork-stuttgart.de\/en\/afterwork-region-stuttgart-mediadaten-2025\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Media data<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b6991f0 elementor-widget__width-auto elementor-widget elementor-widget-button\" data-id=\"b6991f0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"https:\/\/afterwork-stuttgart.de\/en\/afterwork-business-region-stuttgart-infomappe\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">AFTERWORK Brochure<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a419d3e e-flex e-con-boxed e-con e-parent\" data-id=\"a419d3e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3ff8d64 elementor-widget elementor-widget-listeo-headline\" data-id=\"3ff8d64\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 \n\t\tstyle=\"text-align:left;\" class=\"headline  headline-aligned-to-left  headline-box  headline-with-subtitle \"> How to present your company on AFTERWORK Stuttgart  <span > Maximum visibility \u2013 specifically within your target group<\/span><\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e048145 elementor-widget elementor-widget-text-editor\" data-id=\"e048145\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\">Whether it&#8217;s gastronomy, hotels, shopping, or culture: with AFTERWORK Stuttgart, you place your company right where guests are actively looking for inspiration. Our marketing and presentation options help you gain attention, stand out from the competition, and reach new guests. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6799bd3 e-flex e-con-boxed e-con e-parent\" data-id=\"6799bd3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-9ee26a8 e-con-full e-flex e-con e-child\" data-id=\"9ee26a8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c242042 elementor-position-inline-start elementor-view-default elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"c242042\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"icon icon-page-list\"><\/i>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tPremium Listing \u2013 your digital business card\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5f8ba38 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"5f8ba38\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Comprehensive profile with text, images &amp; contact details<\/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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Includes a 360\u00b0 tour or image gallery<\/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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Placement in relevant categories<\/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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Mobile-optimized for all devices<\/span>\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>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8b583ae e-con-full e-flex e-con e-child\" data-id=\"8b583ae\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0a8b40 elementor-position-inline-start elementor-view-default elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"e0a8b40\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"icon icon-post-banner\"><\/i>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tBanner advertising \u2013 right where guests are searching\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-494cd84 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"494cd84\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Placement on high-traffic topic pages<\/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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Flexible banner formats (header, sidebar, content)<\/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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Ideal for promotions, specials, or events<\/span>\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>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-3a26498 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3a26498\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-cfdf7fe\" data-id=\"cfdf7fe\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-aea727f elementor-widget elementor-widget-listeo-headline\" data-id=\"aea727f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 \n\t\tstyle=\"text-align:center;\" class=\"headline  headline-aligned-to-center headline-extra-spacing headline-box \">  Build and expand your business effectively \ud83d\ude80 <\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-16fab37 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"16fab37\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-extended\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5053801\" data-id=\"5053801\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f3e8316 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"f3e8316\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"fas fa-pencil-alt\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Book your post<\/h3>\n\t\t\t\t<p>Design your listing according to your ideas: with images, details, and everything that sets you apart.<\/p>\n\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<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-c9e3f2d\" data-id=\"c9e3f2d\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e2fbb1b elementor-widget elementor-widget-listeo-iconbox\" data-id=\"e2fbb1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"fas fa-chart-bar\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Make success measurable<\/h3>\n\t\t\t\t<p>Important insights and analytics help you target your strategy \u2013 and win even more guests.<\/p>\n\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<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-de1ea9e\" data-id=\"de1ea9e\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-71c7449 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"71c7449\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"fas fa-rocket\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Promote your listing<\/h3>\n\t\t\t\t<p>Increase your visibility and access tools that help you effectively improve your performance.<\/p>\n\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<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<div class=\"elementor-element elementor-element-4b065fb elementor-widget elementor-widget-text-editor\" data-id=\"4b065fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\">The AFTERWORK team <strong>researches<\/strong> \ud83d\udd0d, <strong>verifies<\/strong> \u2705 and prepares information so that it is clearly available online for business travelers. All information can be accessed on <strong>laptops<\/strong>, <strong>smartphones<\/strong> and <strong>tablets<\/strong> \u2013 and soon in our specially developed <strong>app \ud83d\udcf1<\/strong>! <\/p><p style=\"text-align: left;\"><span class=\"OYPEnA font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">A special feature is the individual service for companies: tailored information is prepared in online and print media for their business guests. This includes an exclusive pool of verified addresses that can be adapted or expanded to specific requirements upon request. Whether it&#8217;s restaurant recommendations, hotel suggestions, wellness offers, unusual meeting locations outside the company, or shuttle services \u2013 AFTERWORK helps you find your way around quickly and locally.   <\/span><\/p><p style=\"text-align: left;\"><strong>Would you like to manage your listing yourself?<\/strong> No problem. You can easily adjust your information via your own <strong><a href=\"https:\/\/afterwork-stuttgart.de\/en\/dashboard\/\">dashboard<\/a><\/strong> and always keep it up to date. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-05b6ca0 elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default\" data-id=\"05b6ca0\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d6f30ba\" data-id=\"d6f30ba\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4171932 elementor-widget elementor-widget-listeo-headline\" data-id=\"4171932\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 \n\t\tstyle=\"text-align:center;\" class=\"headline  headline-aligned-to-center headline-extra-spacing headline-box  headline-with-subtitle \"> All site functions for owners  <span > AFTERWORK provides the tools and resources you need to create a professional listing \u2013 whether you are a beginner, marketer, or pro.<\/span><\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-8d545a3 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8d545a3\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-extended\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-cd695e0\" data-id=\"cd695e0\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-520fff5 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"520fff5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"fas fa-chart-bar\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>SEO-optimized<\/h3>\n\t\t\t\t<p>Our platform is SEO-optimized so that you can be found more easily in search engines \u2013 more visibility, more customers.<\/p>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-86bef87 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"86bef87\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"far fa-calendar\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Integrated booking system<\/h3>\n\t\t\t\t<p>Reservations, rentals, or other services \u2013 manage availability and inquiries directly through your profile.<\/p>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d09f312 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"d09f312\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"fab fa-google\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Social Login<\/h3>\n\t\t\t\t<p>Create an account on our platform simply and easily, or log in via Google, Facebook, and many more.<\/p>\n\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<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6c6a58e\" data-id=\"6c6a58e\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f35ac11 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"f35ac11\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"far fa-play-circle\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>360\u00b0 and Video<\/h3>\n\t\t\t\t<p>Present your premises impressively with virtual 360\u00b0 tours and 3D models.<\/p>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2775678 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"2775678\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"fas fa-heart\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Let reviews speak for themselves<\/h3>\n\t\t\t\t<p>Google reviews strengthen your reputation and increase visibility. These can be easily integrated. <\/p>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ec11bf7 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"ec11bf7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"fas fa-ticket-alt\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Coupon system<\/h3>\n\t\t\t\t<p>Listing owners can create, manage, and track coupons for their listings in real-time via the dashboard.<\/p>\n\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<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-62b34b1\" data-id=\"62b34b1\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6ba6479 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"6ba6479\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"fas fa-directions\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Route planner<\/h3>\n\t\t\t\t<p>Let your customers find you \u2013 with our integrated Google Maps route planner directly to your location.<\/p>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4fb3ea4 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"4fb3ea4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"fas fa-bullhorn\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Advertise &amp; stand out<\/h3>\n\t\t\t\t<p>Highlight your listing through targeted placement and advertising space. This is how you stand out from other entries. <\/p>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7b02173 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"7b02173\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-iconbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"icon-box-color-icon\">\n\t\t\t\t<div class=\"ibc-ico\"><i aria-hidden=\"true\" class=\"far fa-list-alt\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>User-friendly dashboard<\/h3>\n\t\t\t\t<p>Keep track of everything: manage listings, check bookings, reply to messages \u2013 clear and simple!<\/p>\n\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<\/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<div class=\"elementor-element elementor-element-fc49c3d e-flex e-con-boxed e-con e-parent\" data-id=\"fc49c3d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6dcbca6 elementor-widget elementor-widget-listeo-headline\" data-id=\"6dcbca6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 \n\t\tstyle=\"text-align:center;\" class=\"headline  headline-aligned-to-center headline-extra-spacing headline-box \"> Questions? We're happy to answer them!  <\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-eaa8990 elementor-widget elementor-widget-listeo-faq\" data-id=\"eaa8990\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-faq.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\n\t\t<div class=\"faq-container\" data-behavior=\"single\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<div class=\"faq-item active\">\n\t\t\t\t\t<button class=\"faq-question\" type=\"button\" aria-expanded=\"true\">\n\t\t\t\t\t\tWhat is a listing on afterwork-stuttgart.de?\t\t\t\t\t\t<span class=\"faq-icon\" aria-hidden=\"true\"><\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t\t<div class=\"faq-answer\">\n\t\t\t\t\t\t<div class=\"faq-answer-content\">\n\t\t\t\t\t\t\t<p>A listing on AFTERWORK Region Stuttgart is a page dedicated to a specific place or company, e.g., accommodation, a sight, or a restaurant. A listing contains important information: description, location, reviews, etc. It may also include content provided by the respective company, such as photos and responses to traveler reviews. If you cannot find a specific place or company on AFTERWORK, you can <strong><a class=\"BzAOL Cj Wb\" href=\"https:\/\/afterwork-stuttgart.de\/en\/dashboard\/\" target=\"_blank\" rel=\"noopener\">add a place<\/a><\/strong> via our platform.  <\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"faq-item \">\n\t\t\t\t\t<button class=\"faq-question\" type=\"button\" aria-expanded=\"false\">\n\t\t\t\t\t\tWhich industries is AFTERWORK suitable for?\t\t\t\t\t\t<span class=\"faq-icon\" aria-hidden=\"true\"><\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t\t<div class=\"faq-answer\">\n\t\t\t\t\t\t<div class=\"faq-answer-content\">\n\t\t\t\t\t\t\t<p>AFTERWORK is aimed at <strong data-start=\"624\" data-end=\"644\">all companies<\/strong> that want to present themselves professionally and reach new target groups. Whether you are a service provider, retailer, healthcare provider, educational institution, craft business, creative agency, or start-up \u2013 we develop individually tailored solutions for your presence. The focus is always on what makes your company special and how to communicate this optimally.  <\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"faq-item \">\n\t\t\t\t\t<button class=\"faq-question\" type=\"button\" aria-expanded=\"false\">\n\t\t\t\t\t\tWhy should company representatives claim their listing?\t\t\t\t\t\t<span class=\"faq-icon\" aria-hidden=\"true\"><\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t\t<div class=\"faq-answer\">\n\t\t\t\t\t\t<div class=\"faq-answer-content\">\n\t\t\t\t\t\t\t<p>Claiming an AFTERWORK online listing is the first step for company representatives to gain access to the Management Center and use the associated free and paid marketing products. After claiming, representatives must verify their identity. This ensures the security of both our community and the business account. Afterwards, company representatives can update information, upload photos, respond to reviews, and much more.   <\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"faq-item \">\n\t\t\t\t\t<button class=\"faq-question\" type=\"button\" aria-expanded=\"false\">\n\t\t\t\t\t\tI didn&#039;t create this listing. Why is it on AFTERWORK? \t\t\t\t\t\t<span class=\"faq-icon\" aria-hidden=\"true\"><\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t\t<div class=\"faq-answer\">\n\t\t\t\t\t\t<div class=\"faq-answer-content\">\n\t\t\t\t\t\t\t<p>Business owners, users, and AFTERWORK itself can have listings created on AFTERWORK Region Stuttgart to provide visitors with the most comprehensive information possible. Regardless of who takes the initiative, AFTERWORK carefully reviews all listing requests to ensure they meet our quality standards. If your company is already listed on AFTERWORK but you didn't create the entry yourself, it may have been created by a user. We recommend that you claim ownership of the listing \u2013 this allows you to keep the information up to date and use our free marketing features.   <\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"faq-item \">\n\t\t\t\t\t<button class=\"faq-question\" type=\"button\" aria-expanded=\"false\">\n\t\t\t\t\t\tWhat is a 360\u00b0 tour and how can I use it?\t\t\t\t\t\t<span class=\"faq-icon\" aria-hidden=\"true\"><\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t\t<div class=\"faq-answer\">\n\t\t\t\t\t\t<div class=\"faq-answer-content\">\n\t\t\t\t\t\t\t<p>A 360\u00b0 tour is an interactive experience that allows your customers to virtually explore your premises or products \u2013 from the comfort of their own home.<br \/>\nThese tours can be integrated into your website, Google Street View, or social networks. They convey a realistic feel for what you offer, creating transparency and trust \u2013 especially when it's not possible to get a personal impression on-site immediately. <\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"faq-item \">\n\t\t\t\t\t<button class=\"faq-question\" type=\"button\" aria-expanded=\"false\">\n\t\t\t\t\t\tWhat does the on-site and print presence include?\t\t\t\t\t\t<span class=\"faq-icon\" aria-hidden=\"true\"><\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t\t<div class=\"faq-answer\">\n\t\t\t\t\t\t<div class=\"faq-answer-content\">\n\t\t\t\t\t\t\t<p>In addition to digital measures, we also offer classic advertising options. These include high-quality print products such as flyers, brochures, or city maps placed at high-traffic locations \u2013 e.g., in hotels, trade fairs, caf\u00e9s, or partner businesses. This physical presence complements your digital presentation and ensures additional visibility with a wide audience.<\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"faq-item \">\n\t\t\t\t\t<button class=\"faq-question\" type=\"button\" aria-expanded=\"false\">\n\t\t\t\t\t\tHow does AFTERWORK differ from other marketing agencies?\t\t\t\t\t\t<span class=\"faq-icon\" aria-hidden=\"true\"><\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t\t<div class=\"faq-answer\">\n\t\t\t\t\t\t<div class=\"faq-answer-content\">\n\t\t\t\t\t\t\t<p>AFTERWORK Region Stuttgart is not a traditional advertising agency, but a platform with a regional focus and a modular approach. We don't offer isolated individual services; instead, we develop well-thought-out, interconnected presentation solutions. Our customers benefit from our local network, our digital expertise, and the combination of online and offline presence. We think ahead, accompany you personally, and focus on partnership instead of standard solutions.   <\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"faq-item \">\n\t\t\t\t\t<button class=\"faq-question\" type=\"button\" aria-expanded=\"false\">\n\t\t\t\t\t\tHow can I use or book AFTERWORK?\t\t\t\t\t\t<span class=\"faq-icon\" aria-hidden=\"true\"><\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t\t<div class=\"faq-answer\">\n\t\t\t\t\t\t<div class=\"faq-answer-content\">\n\t\t\t\t\t\t\t<p>It's simple: get in touch with us via our website or by phone. In a non-binding conversation, we will clarify your goals and needs together. Based on this, we create an individual concept that fits your company perfectly \u2013 transparent, efficient, and with real added value. You can also get started independently by claiming an <a href=\"https:\/\/afterwork-stuttgart.de\/partner\/\"><strong>existing listing<\/strong><\/a> or <a href=\"https:\/\/afterwork-stuttgart.de\/en\/dashboard\/\"><strong>creating an account<\/strong><\/a>.   <\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-592a9b3 elementor-widget elementor-widget-spacer\" data-id=\"592a9b3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-26d4018b e-flex e-con-boxed e-con e-parent\" data-id=\"26d4018b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2d0cb643 elementor-widget elementor-widget-listeo-headline\" data-id=\"2d0cb643\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 \n\t\tstyle=\"text-align:center;\" class=\"headline  headline-aligned-to-center headline-extra-spacing headline-box \"> Strong partners by our side <\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-17d62a36 elementor-widget elementor-widget-listeo-logo-slider\" data-id=\"17d62a36\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-logo-slider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"trusted-by-container\"><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/06\/in-stuttgart-1.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/06\/outletcity-metzingen-logos-id5cmz4bia.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/06\/nvbw-logo.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/06\/ETS-rot_grau.png\" alt=\"\"\/><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7fd051b elementor-widget elementor-widget-listeo-logo-slider\" data-id=\"7fd051b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-logo-slider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"trusted-by-container\"><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/06\/LE_LOGO_02_BLAU-scaled.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/06\/offizin-scheufele-L.svg\" alt=\"\"\/><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>For providers with high standards . For guests with style . Places and companies that you Present your company to a wide audience of local professionals, business guests, and event participants. Media data AFTERWORK Brochure Hotel Martins Klause Grabkapelle auf dem W\u00fcrttemberg Christk\u00f6nigshaus Kauf dich gl\u00fccklich Hotel Krehl&#8217;s Linde Laana&#8217;s Caf\u00e9 Hupperts Restaurant Restaurant Balthazar [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-8843","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Services &#8211; AFTERWORK Region Stuttgart<\/title>\n<meta name=\"description\" content=\"Take advantage of AFTERWORK services: digital marketing, listing management, 360\u00b0 tours, and targeted advertising \u2013 visibility &amp; reach for your company in Stuttgart.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/afterwork-stuttgart.de\/en\/services\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Services\" \/>\n<meta property=\"og:description\" content=\"Take advantage of AFTERWORK services: digital marketing, listing management, 360\u00b0 tours, and targeted advertising \u2013 visibility &amp; reach for your company in Stuttgart.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/afterwork-stuttgart.de\/en\/services\/\" \/>\n<meta property=\"og:site_name\" content=\"AFTERWORK Region Stuttgart\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/AFTERWORKServices\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-10T10:55:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/07\/martinsklause1.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/\",\"url\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/\",\"name\":\"Services &#8211; AFTERWORK Region Stuttgart\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/martinsklause1.jpg\",\"datePublished\":\"2025-05-03T16:02:05+00:00\",\"dateModified\":\"2026-03-10T10:55:31+00:00\",\"description\":\"Take advantage of AFTERWORK services: digital marketing, listing management, 360\u00b0 tours, and targeted advertising \u2013 visibility & reach for your company in Stuttgart.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/#primaryimage\",\"url\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/martinsklause1.jpg\",\"contentUrl\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/martinsklause1.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Services\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/\",\"name\":\"AFTERWORK Region Stuttgart\",\"description\":\"Die besten After-Work-Locations in Stuttgart: Exklusive Bars, Restaurants und Events f\u00fcr Gesch\u00e4ftsleute, Networker und Genie\u00dfer.\",\"publisher\":{\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/#organization\"},\"alternateName\":\"AFTERWORK Business\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Organization\",\"Place\"],\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/#organization\",\"name\":\"AFTERWORK Region Stuttgart\",\"alternateName\":\"AFTERWORK Business\",\"url\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/\",\"logo\":{\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/#local-main-organization-logo\"},\"image\":{\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/#local-main-organization-logo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/AFTERWORKServices\",\"https:\\\/\\\/www.instagram.com\\\/afterwork_stuttgart\\\/\",\"https:\\\/\\\/www.tiktok.com\\\/@afterwork_stuttgart\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/97799861\\\/admin\\\/dashboard\\\/\"],\"description\":\"AFTERWORK ist seit 2020 die zentrale Plattform f\u00fcr sorgf\u00e4ltig ausgew\u00e4hlte Empfehlungen in der Region Stuttgart \u2013 speziell konzipiert f\u00fcr Gesch\u00e4ftsreisende, Messebesucher und Teilnehmer von Veranstaltungen. Ziel ist es, diesen G\u00e4sten die Freizeitgestaltung vor, w\u00e4hrend oder nach gesch\u00e4ftlichen Terminen so einfach und angenehm wie m\u00f6glich zu machen. Anstatt selbst lange recherchieren zu m\u00fcssen, finden Nutzer bei AFTERWORK schnell passende Adressen aus verschiedenen Lebensbereichen: Gastronomie, Hotellerie, Shopping, Wellness, Kultur und mehr.\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1\",\"maxValue\":\"10\"},\"telephone\":[],\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"],\"opens\":\"09:00\",\"closes\":\"17:00\"}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/en\\\/services\\\/#local-main-organization-logo\",\"url\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/AFTERWORK_Interneticon.png\",\"contentUrl\":\"https:\\\/\\\/afterwork-stuttgart.de\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/AFTERWORK_Interneticon.png\",\"width\":262,\"height\":297,\"caption\":\"AFTERWORK Region Stuttgart\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Services &#8211; AFTERWORK Region Stuttgart","description":"Take advantage of AFTERWORK services: digital marketing, listing management, 360\u00b0 tours, and targeted advertising \u2013 visibility & reach for your company in Stuttgart.","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:\/\/afterwork-stuttgart.de\/en\/services\/","og_locale":"en_US","og_type":"article","og_title":"Services","og_description":"Take advantage of AFTERWORK services: digital marketing, listing management, 360\u00b0 tours, and targeted advertising \u2013 visibility & reach for your company in Stuttgart.","og_url":"https:\/\/afterwork-stuttgart.de\/en\/services\/","og_site_name":"AFTERWORK Region Stuttgart","article_publisher":"https:\/\/www.facebook.com\/AFTERWORKServices","article_modified_time":"2026-03-10T10:55:31+00:00","og_image":[{"url":"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/07\/martinsklause1.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/afterwork-stuttgart.de\/en\/services\/","url":"https:\/\/afterwork-stuttgart.de\/en\/services\/","name":"Services &#8211; AFTERWORK Region Stuttgart","isPartOf":{"@id":"https:\/\/afterwork-stuttgart.de\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/afterwork-stuttgart.de\/en\/services\/#primaryimage"},"image":{"@id":"https:\/\/afterwork-stuttgart.de\/en\/services\/#primaryimage"},"thumbnailUrl":"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/07\/martinsklause1.jpg","datePublished":"2025-05-03T16:02:05+00:00","dateModified":"2026-03-10T10:55:31+00:00","description":"Take advantage of AFTERWORK services: digital marketing, listing management, 360\u00b0 tours, and targeted advertising \u2013 visibility & reach for your company in Stuttgart.","breadcrumb":{"@id":"https:\/\/afterwork-stuttgart.de\/en\/services\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/afterwork-stuttgart.de\/en\/services\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/afterwork-stuttgart.de\/en\/services\/#primaryimage","url":"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/07\/martinsklause1.jpg","contentUrl":"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/07\/martinsklause1.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/afterwork-stuttgart.de\/en\/services\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/afterwork-stuttgart.de\/en\/home\/"},{"@type":"ListItem","position":2,"name":"Services"}]},{"@type":"WebSite","@id":"https:\/\/afterwork-stuttgart.de\/en\/#website","url":"https:\/\/afterwork-stuttgart.de\/en\/","name":"AFTERWORK Region Stuttgart","description":"Die besten After-Work-Locations in Stuttgart: Exklusive Bars, Restaurants und Events f\u00fcr Gesch\u00e4ftsleute, Networker und Genie\u00dfer.","publisher":{"@id":"https:\/\/afterwork-stuttgart.de\/en\/#organization"},"alternateName":"AFTERWORK Business","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/afterwork-stuttgart.de\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Organization","Place"],"@id":"https:\/\/afterwork-stuttgart.de\/en\/#organization","name":"AFTERWORK Region Stuttgart","alternateName":"AFTERWORK Business","url":"https:\/\/afterwork-stuttgart.de\/en\/","logo":{"@id":"https:\/\/afterwork-stuttgart.de\/en\/services\/#local-main-organization-logo"},"image":{"@id":"https:\/\/afterwork-stuttgart.de\/en\/services\/#local-main-organization-logo"},"sameAs":["https:\/\/www.facebook.com\/AFTERWORKServices","https:\/\/www.instagram.com\/afterwork_stuttgart\/","https:\/\/www.tiktok.com\/@afterwork_stuttgart","https:\/\/www.linkedin.com\/company\/97799861\/admin\/dashboard\/"],"description":"AFTERWORK ist seit 2020 die zentrale Plattform f\u00fcr sorgf\u00e4ltig ausgew\u00e4hlte Empfehlungen in der Region Stuttgart \u2013 speziell konzipiert f\u00fcr Gesch\u00e4ftsreisende, Messebesucher und Teilnehmer von Veranstaltungen. Ziel ist es, diesen G\u00e4sten die Freizeitgestaltung vor, w\u00e4hrend oder nach gesch\u00e4ftlichen Terminen so einfach und angenehm wie m\u00f6glich zu machen. Anstatt selbst lange recherchieren zu m\u00fcssen, finden Nutzer bei AFTERWORK schnell passende Adressen aus verschiedenen Lebensbereichen: Gastronomie, Hotellerie, Shopping, Wellness, Kultur und mehr.","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1","maxValue":"10"},"telephone":[],"openingHoursSpecification":[{"@type":"OpeningHoursSpecification","dayOfWeek":["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],"opens":"09:00","closes":"17:00"}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/afterwork-stuttgart.de\/en\/services\/#local-main-organization-logo","url":"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/05\/AFTERWORK_Interneticon.png","contentUrl":"https:\/\/afterwork-stuttgart.de\/wp-content\/uploads\/2025\/05\/AFTERWORK_Interneticon.png","width":262,"height":297,"caption":"AFTERWORK Region Stuttgart"}]}},"_links":{"self":[{"href":"https:\/\/afterwork-stuttgart.de\/en\/wp-json\/wp\/v2\/pages\/8843","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/afterwork-stuttgart.de\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/afterwork-stuttgart.de\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/afterwork-stuttgart.de\/en\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/afterwork-stuttgart.de\/en\/wp-json\/wp\/v2\/comments?post=8843"}],"version-history":[{"count":1,"href":"https:\/\/afterwork-stuttgart.de\/en\/wp-json\/wp\/v2\/pages\/8843\/revisions"}],"predecessor-version":[{"id":8853,"href":"https:\/\/afterwork-stuttgart.de\/en\/wp-json\/wp\/v2\/pages\/8843\/revisions\/8853"}],"wp:attachment":[{"href":"https:\/\/afterwork-stuttgart.de\/en\/wp-json\/wp\/v2\/media?parent=8843"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}