{"id":88,"date":"2024-02-18T15:31:35","date_gmt":"2024-02-18T15:31:35","guid":{"rendered":"https:\/\/wordpress-722045-2402992.cloudwaysapps.com\/?page_id=622"},"modified":"2025-02-13T09:56:01","modified_gmt":"2025-02-13T09:56:01","slug":"home-2","status":"publish","type":"page","link":"https:\/\/azwellness.me\/index.php\/home-2\/","title":{"rendered":"Home 2"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"88\" class=\"elementor elementor-88\">\n\t\t\t\t<div class=\"elementor-element elementor-element-55611a7d e-con-full e-flex e-con e-parent\" data-id=\"55611a7d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5e65d417 e-flex e-con-boxed e-con e-child\" data-id=\"5e65d417\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4808274 elementor-widget__width-auto elementor-widget elementor-widget-heading\" data-id=\"4808274\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Read Reviews<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3a2c7da6 elementor-widget__width-auto elementor-widget elementor-widget-heading\" data-id=\"3a2c7da6\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8494dd6 elementor-widget__width-auto elementor-widget elementor-widget-heading\" data-id=\"8494dd6\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Write Reviews<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-284d5143 elementor-widget__width-auto elementor-widget elementor-widget-heading\" data-id=\"284d5143\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">.<\/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-768400f elementor-widget elementor-widget-listeo-text-typed\" data-id=\"768400f\" data-element_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 >Find places and companies you can <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 = true || \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 = [\"visit\",\"book\",\"review\",\"trust\"];\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: [\"visit\",\"book\",\"review\",\"trust\"],\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-43d86353 e-flex e-con-boxed e-con e-child\" data-id=\"43d86353\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-30477630 elementor-widget elementor-widget-text-editor\" data-id=\"30477630\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Let&#8217;s enhance your online visibility, boost your reputation and engage with your customers on our platform.<\/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-d1a4ab1 elementor-widget elementor-widget-listeo-listing-map\" data-id=\"d1a4ab1\" data-element_type=\"widget\" data-widget_type=\"listeo-listing-map.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- Location -->\r\n\r\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-2690a8b7 e-flex e-con-boxed e-con e-child\" data-id=\"2690a8b7\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c6d8ca2 elementor-widget__width-auto elementor-widget elementor-widget-button\" data-id=\"c6d8ca2\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"\/dashboard\/\">\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\">Create an Account<\/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-75d779cd elementor-widget__width-auto elementor-widget elementor-widget-button\" data-id=\"75d779cd\" data-element_type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-md\" href=\"\/listings\/\">\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\">Browse Listings<\/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-755c4ccb e-con-full e-flex e-con e-child\" data-id=\"755c4ccb\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1a9a86ea elementor-widget elementor-widget-listeo-listings-wide\" data-id=\"1a9a86ea\" data-element_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:\/\/azwellness.me\/index.php\/listing\/inner-flow\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/11\/IMG_8860-1200x800.jpg\" alt=\"Inner Flow\" class=\"listing-thumbnail\"><\/a>\n                            <h4>Inner Flow<\/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:\/\/azwellness.me\/index.php\/listing\/az-massage\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/AZ-AgataZaremba-1200x543.jpg\" alt=\"AZ Massage\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>AZ Massage<\/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:\/\/azwellness.me\/index.php\/listing\/az-massage\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/AZ-AgataZaremba-1200x543.jpg\" alt=\"AZ Massage\" class=\"listing-thumbnail\"><\/a>\n                                                <h4>AZ Massage<\/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-2b1a1cc6 e-flex e-con-boxed e-con e-parent\" data-id=\"2b1a1cc6\" data-element_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-3b055a7c elementor-widget elementor-widget-listeo-headline\" data-id=\"3b055a7c\" data-element_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 \"> Trusted by Cutting-Edge Companies <\/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-746b7fbd elementor-widget elementor-widget-listeo-logo-slider\" data-id=\"746b7fbd\" data-element_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:\/\/wordpress-722045-2402992.cloudwaysapps.com\/wp-content\/uploads\/2024\/02\/logo-carousel-01.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/wordpress-722045-2402992.cloudwaysapps.com\/wp-content\/uploads\/2024\/02\/logo-carousel-02.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/wordpress-722045-2402992.cloudwaysapps.com\/wp-content\/uploads\/2024\/02\/logo-carousel-03.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/wordpress-722045-2402992.cloudwaysapps.com\/wp-content\/uploads\/2024\/02\/logo-carousel-04.png\" 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<div class=\"elementor-element elementor-element-20f25b8c e-flex e-con-boxed e-con e-parent\" data-id=\"20f25b8c\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1027d5b5 elementor-widget elementor-widget-listeo-headline\" data-id=\"1027d5b5\" data-element_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 \"> Browse by Category  <span > Explore wide range of listings for every preference<\/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-7c5f42c8 elementor-widget elementor-widget-listeo-taxonomy-box\" data-id=\"7c5f42c8\" data-element_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:\/\/azwellness.me\/index.php\/listing-category\/coaching\/\" 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>Coaching<\/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 <i class=\"fa fab fa-500px\"><\/i>\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<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/azwellness.me\/index.php\/listing-category\/fitness\/\" 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>Fitness<\/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\" width=\"800px\" height=\"800px\" viewBox=\"0 0 25 25\" fill=\"none\">\n<path d=\"M16.9977 1.2416L16.4455 0.689198L16.4453 0.689365L16.9977 1.2416ZM16.9977 3.45054L16.4453 4.00277L16.4454 4.00286L16.9977 3.45054ZM21.5499 8.00277L22.1024 7.45058L22.1023 7.45045L21.5499 8.00277ZM23.7599 5.79383L24.3124 5.24164L24.3122 5.24145L23.7599 5.79383ZM19.2066 1.2416L19.7589 0.689218L19.7589 0.689198L19.2066 1.2416ZM18.1022 0.784211V0.00311472V0.784211ZM16.4453 0.689365C16.006 1.1288 15.7592 1.72471 15.7592 2.34607H17.3214C17.3214 2.13895 17.4037 1.94031 17.5501 1.79383L16.4453 0.689365ZM15.7592 2.34607C15.7592 2.96743 16.006 3.56334 16.4453 4.00277L17.5501 2.8983C17.4037 2.75183 17.3214 2.55319 17.3214 2.34607H15.7592ZM16.4454 4.00286L20.9976 8.55509L22.1023 7.45045L17.55 2.89822L16.4454 4.00286ZM20.9975 8.55496C21.215 8.77262 21.4733 8.94529 21.7576 9.06312L22.3558 7.61999C22.261 7.5807 22.1749 7.52314 22.1024 7.45058L20.9975 8.55496ZM21.7576 9.06312C22.0419 9.18096 22.3466 9.24164 22.6544 9.24172L22.6547 7.67953C22.5522 7.6795 22.4506 7.65927 22.3558 7.61999L21.7576 9.06312ZM22.6544 9.24172C22.9621 9.24179 23.2669 9.18125 23.5512 9.06355L22.9537 7.62013C22.8589 7.65937 22.7573 7.67955 22.6547 7.67953L22.6544 9.24172ZM23.5512 9.06355C23.8356 8.94585 24.0939 8.77329 24.3116 8.55574L23.2072 7.45084C23.1346 7.52337 23.0485 7.58089 22.9537 7.62013L23.5512 9.06355ZM24.3116 8.55574C24.5292 8.33818 24.7019 8.07989 24.8198 7.7956L23.3766 7.19743C23.3373 7.2922 23.2798 7.37831 23.2072 7.45084L24.3116 8.55574ZM24.8198 7.7956C24.9376 7.51131 24.9983 7.20659 24.9983 6.89885L23.4362 6.89848C23.4361 7.00107 23.4159 7.10265 23.3766 7.19743L24.8198 7.7956ZM24.9983 6.89885C24.9984 6.59111 24.9379 6.28636 24.8202 6.00202L23.3768 6.5995C23.416 6.6943 23.4362 6.79589 23.4362 6.89848L24.9983 6.89885ZM24.8202 6.00202C24.7025 5.71768 24.5299 5.4593 24.3124 5.24164L23.2075 6.34602C23.28 6.41857 23.3375 6.50471 23.3768 6.5995L24.8202 6.00202ZM24.3122 5.24145L19.7589 0.689218L18.6544 1.79398L23.2077 6.34621L24.3122 5.24145ZM19.7589 0.689198C19.3195 0.249899 18.7235 0.00311472 18.1022 0.00311472V1.56531C18.3093 1.56531 18.5079 1.64757 18.6544 1.794L19.7589 0.689198ZM18.1022 0.00311472C17.4808 0.00311472 16.8849 0.249899 16.4455 0.689198L17.5499 1.794C17.6964 1.64757 17.8951 1.56531 18.1022 1.56531V0.00311472Z\" fill=\"#71717A\"\/>\n<path d=\"M12.5781 1.24057L13.1303 1.79307L13.1314 1.79193L12.5781 1.24057ZM12.5781 3.45055L13.1304 2.89823L13.1303 2.89806L12.5781 3.45055ZM21.5503 12.4227L20.998 12.9751L20.9985 12.9756L21.5503 12.4227ZM23.7593 10.2096L23.2069 10.7619L23.2075 10.7625L23.7593 10.2096ZM14.7912 1.24057L14.2379 1.79193L14.2389 1.79286L14.7912 1.24057ZM13.6847 0.781096V0V0.781096ZM12.026 0.688076C11.8082 0.90569 11.6355 1.16408 11.5176 1.44848L12.9608 2.04653C13.0001 1.95173 13.0577 1.8656 13.1303 1.79307L12.026 0.688076ZM11.5176 1.44848C11.3998 1.73288 11.3391 2.03771 11.3391 2.34556H12.9013C12.9013 2.24294 12.9215 2.14133 12.9608 2.04653L11.5176 1.44848ZM11.3391 2.34556C11.3391 2.65341 11.3998 2.95825 11.5176 3.24265L12.9608 2.64459C12.9215 2.54979 12.9013 2.44818 12.9013 2.34556H11.3391ZM11.5176 3.24265C11.6355 3.52704 11.8082 3.78543 12.026 4.00305L13.1303 2.89806C13.0577 2.82552 13.0001 2.73939 12.9608 2.64459L11.5176 3.24265ZM12.0258 4.00287L20.998 12.9751L22.1026 11.8704L13.1304 2.89823L12.0258 4.00287ZM20.9985 12.9756C21.2164 13.1931 21.475 13.3655 21.7596 13.4831L22.3561 12.0393C22.2611 12 22.1748 11.9425 22.1021 11.8699L20.9985 12.9756ZM21.7596 13.4831C22.0442 13.6006 22.3491 13.661 22.657 13.6607L22.6555 12.0985C22.5528 12.0986 22.451 12.0785 22.3561 12.0393L21.7596 13.4831ZM22.657 13.6607C22.9649 13.6604 23.2697 13.5995 23.554 13.4814L22.9548 12.0387C22.86 12.0781 22.7583 12.0984 22.6555 12.0985L22.657 13.6607ZM23.554 13.4814C23.8384 13.3633 24.0967 13.1904 24.3142 12.9725L23.2085 11.8689C23.1359 11.9416 23.0497 11.9993 22.9548 12.0387L23.554 13.4814ZM24.3142 12.9725C24.5317 12.7545 24.7041 12.4959 24.8217 12.2114L23.3778 11.6149C23.3386 11.7098 23.2811 11.7961 23.2085 11.8689L24.3142 12.9725ZM24.8217 12.2114C24.9392 11.9268 24.9996 11.6219 24.9993 11.314L23.4371 11.3155C23.4372 11.4182 23.4171 11.5199 23.3778 11.6149L24.8217 12.2114ZM24.9993 11.314C24.999 11.0061 24.9381 10.7013 24.82 10.4169L23.3773 11.0161C23.4167 11.111 23.437 11.2127 23.4371 11.3155L24.9993 11.314ZM24.82 10.4169C24.7019 10.1326 24.529 9.8743 24.311 9.6568L23.2075 10.7625C23.2802 10.8351 23.3379 10.9212 23.3773 11.0161L24.82 10.4169ZM24.3116 9.65735L15.3436 0.688285L14.2389 1.79286L23.2069 10.7619L24.3116 9.65735ZM15.3445 0.689212C15.1268 0.470755 14.8681 0.297422 14.5833 0.179151L13.9842 1.62191C14.0792 1.66133 14.1654 1.71911 14.2379 1.79193L15.3445 0.689212ZM14.5833 0.179151C14.2985 0.0608808 13.9931 0 13.6847 0V1.56219C13.7875 1.56219 13.8893 1.58249 13.9842 1.62191L14.5833 0.179151ZM13.6847 0C13.3763 0 13.0709 0.0608808 12.7861 0.179151L13.3851 1.62191C13.4801 1.58249 13.5819 1.56219 13.6847 1.56219V0ZM12.7861 0.179151C12.5012 0.297422 12.2425 0.470755 12.0248 0.689212L13.1314 1.79193C13.204 1.71911 13.2902 1.66133 13.3851 1.62191L12.7861 0.179151Z\" fill=\"#71717A\"\/>\n<path d=\"M1.24154 16.9979L1.79394 17.5501L1.79403 17.55L1.24154 16.9979ZM3.45152 16.9979L2.89902 17.55L2.8992 17.5502L3.45152 16.9979ZM8.00375 21.5501L8.56566 21.0074L8.55606 20.9978L8.00375 21.5501ZM5.79481 23.759L5.24247 24.3115L5.25217 24.3209L5.79481 23.759ZM1.24154 19.2068L0.689134 19.7591L0.689281 19.7592L1.24154 19.2068ZM0.784147 18.1023H0.00305116H0.784147ZM1.79403 17.55C1.86657 17.4774 1.9527 17.4199 2.0475 17.3806L1.44944 15.9374C1.16504 16.0552 0.906653 16.228 0.689041 16.4457L1.79403 17.55ZM2.0475 17.3806C2.1423 17.3413 2.24391 17.3211 2.34653 17.3211V15.7589C2.03868 15.7589 1.73384 15.8195 1.44944 15.9374L2.0475 17.3806ZM2.34653 17.3211C2.44915 17.3211 2.55076 17.3413 2.64555 17.3806L3.24361 15.9374C2.95921 15.8195 2.65438 15.7589 2.34653 15.7589V17.3211ZM2.64555 17.3806C2.74035 17.4199 2.82648 17.4774 2.89902 17.55L4.00401 16.4457C3.7864 16.228 3.52801 16.0552 3.24361 15.9374L2.64555 17.3806ZM2.8992 17.5502L7.45143 22.1024L8.55606 20.9978L4.00384 16.4456L2.8992 17.5502ZM7.44191 22.0927C7.58419 22.2401 7.66292 22.4374 7.66114 22.6422L9.22328 22.6557C9.22862 22.0413 8.99243 21.4494 8.56558 21.0075L7.44191 22.0927ZM7.66114 22.6422C7.65937 22.847 7.57722 23.0429 7.4324 23.1877L8.53703 24.2923C8.9715 23.8579 9.21794 23.2701 9.22328 22.6557L7.66114 22.6422ZM7.4324 23.1877C7.28757 23.3325 7.09167 23.4147 6.88687 23.4164L6.90044 24.9786C7.51484 24.9732 8.10257 24.7268 8.53703 24.2923L7.4324 23.1877ZM6.88687 23.4164C6.68206 23.4182 6.48476 23.3395 6.33744 23.1972L5.25217 24.3209C5.69412 24.7477 6.28604 24.9839 6.90044 24.9786L6.88687 23.4164ZM6.34706 23.2067L1.79379 18.6544L0.689281 19.7592L5.24255 24.3114L6.34706 23.2067ZM1.79394 18.6546C1.6475 18.5081 1.56524 18.3095 1.56524 18.1023H0.00305116C0.00305116 18.7237 0.249836 19.3196 0.689134 19.7591L1.79394 18.6546ZM1.56524 18.1023C1.56524 17.8952 1.6475 17.6966 1.79394 17.5501L0.689134 16.4456C0.249835 16.8851 0.00305116 17.481 0.00305116 18.1023H1.56524Z\" fill=\"#71717A\"\/>\n<path d=\"M1.24109 12.5779L1.79219 13.1315L1.79333 13.1303L1.24109 12.5779ZM3.45003 12.5779L4.00235 12.0256L4.00227 12.0255L3.45003 12.5779ZM12.4222 21.5501L12.9749 20.9982L12.9745 20.9978L12.4222 21.5501ZM10.2091 23.7601L10.7618 23.2082L10.7614 23.2078L10.2091 23.7601ZM1.24109 14.7921L1.79341 14.2397L1.79219 14.2385L1.24109 14.7921ZM0.781096 13.685H1.56219H0.781096ZM1.79333 13.1303C1.93981 12.9839 2.13845 12.9016 2.34556 12.9016V11.3394C1.72421 11.3394 1.12829 11.5862 0.688859 12.0255L1.79333 13.1303ZM2.34556 12.9016C2.55268 12.9016 2.75132 12.9839 2.8978 13.1303L4.00227 12.0255C3.56284 11.5862 2.96692 11.3394 2.34556 11.3394V12.9016ZM2.89771 13.1302L11.8699 22.1024L12.9745 20.9978L4.00235 12.0256L2.89771 13.1302ZM11.8695 22.102C12.0162 22.2489 12.0985 22.4481 12.0984 22.6557L13.6606 22.6568C13.661 22.0349 13.4144 21.4382 12.9749 20.9982L11.8695 22.102ZM12.0984 22.6557C12.0982 22.8632 12.0156 23.0623 11.8687 23.2089L12.9726 24.3144C13.4127 23.8749 13.6601 23.2787 13.6606 22.6568L12.0984 22.6557ZM11.8687 23.2089C11.7218 23.3556 11.5227 23.4379 11.3151 23.4378L11.314 25C11.9359 25.0004 12.5325 24.7538 12.9726 24.3144L11.8687 23.2089ZM11.3151 23.4378C11.1075 23.4377 10.9085 23.3551 10.7618 23.2082L9.65641 24.312C10.0959 24.7521 10.6921 24.9996 11.314 25L11.3151 23.4378ZM10.7614 23.2078L1.79341 14.2397L0.688775 15.3444L9.6568 24.3124L10.7614 23.2078ZM1.79219 14.2385C1.71929 14.166 1.66145 14.0797 1.62198 13.9847L0.179364 14.5841C0.297773 14.8691 0.471305 15.1279 0.689997 15.3456L1.79219 14.2385ZM1.62198 13.9847C1.58251 13.8897 1.56219 13.7879 1.56219 13.685H0C0 13.9936 0.0609545 14.2991 0.179364 14.5841L1.62198 13.9847ZM1.56219 13.685C1.56219 13.5821 1.58251 13.4803 1.62198 13.3853L0.179364 12.7859C0.0609545 13.0708 0 13.3764 0 13.685H1.56219ZM1.62198 13.3853C1.66145 13.2903 1.71929 13.204 1.79219 13.1315L0.689997 12.0244C0.471305 12.2421 0.297773 12.5009 0.179364 12.7859L1.62198 13.3853Z\" fill=\"#71717A\"\/>\n<path d=\"M6.83154 15.9598L6.27922 15.4075C6.13274 15.554 6.05044 15.7527 6.05044 15.9598C6.05044 16.167 6.13274 16.3657 6.27922 16.5122L6.83154 15.9598ZM15.9595 6.83186L16.5118 6.27954C16.3654 6.13305 16.1667 6.05076 15.9595 6.05076C15.7524 6.05076 15.5537 6.13305 15.4072 6.27954L15.9595 6.83186ZM18.1688 9.04113L18.7211 9.59345C19.0261 9.28841 19.0261 8.79385 18.7211 8.48881L18.1688 9.04113ZM9.04081 18.1691L8.48849 18.7214C8.63498 18.8679 8.83365 18.9502 9.04081 18.9502C9.24797 18.9502 9.44665 18.8679 9.59313 18.7214L9.04081 18.1691ZM7.38386 16.5122L16.5118 7.38418L15.4072 6.27954L6.27922 15.4075L7.38386 16.5122ZM15.4072 7.38418L17.6165 9.59345L18.7211 8.48881L16.5118 6.27954L15.4072 7.38418ZM17.6165 8.48881L8.48849 17.6168L9.59313 18.7214L18.7211 9.59345L17.6165 8.48881ZM9.59313 17.6168L7.38386 15.4075L6.27922 16.5122L8.48849 18.7214L9.59313 17.6168Z\" fill=\"#71717A\"\/>\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\t0\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:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/Fitness-1003x670.png\">\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:\/\/azwellness.me\/index.php\/listing-category\/massage\/\" 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>Massage<\/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 460.042 460.042\" xml:space=\"preserve\">\n<g>\n\t<g>\n\t\t<g>\n\t\t\t<path d=\"M287.523,224.484v-27.015l-22.807,3.276c-6.099,0.879-12.209-0.249-17.568-3.191c-1.118,2.036-2.395,3.971-3.804,5.8 h3.696C263.673,203.354,278.477,211.597,287.523,224.484z\"\/>\n\t\t\t<circle cx=\"245.451\" cy=\"33.06\" r=\"33.06\"\/>\n\t\t\t<path d=\"M152.77,370.686l0.571-0.284c-0.822-0.771,1.507,1.574-27.72-28.149l-6.049,3.006c-9.159,4.55-12.99,15.597-8.614,24.84 l37.48,79.196c4.436,9.376,15.633,13.371,24.997,8.938c9.372-4.435,13.373-15.626,8.938-24.997L152.77,370.686z\"\/>\n\t\t\t<path d=\"M289.957,345.259l-5.913-2.938c-28.95,29.441-26.885,27.368-27.722,28.148l0.437,0.217l-29.601,62.55 c-4.436,9.371-0.434,20.562,8.938,24.997c9.363,4.433,20.56,0.439,24.997-8.938l37.479-79.196 C302.946,360.855,299.116,349.809,289.957,345.259z\"\/>\n\t\t\t<path d=\"M226.42,361.277c6.16,6.059,16.066,5.973,22.122-0.186l37.123-37.753c3.266-3.32,4.881-7.923,4.408-12.556 c-0.688-6.739-5.404-52.971-6.028-59.08c-0.558-19.915-16.982-35.975-37.005-35.975h-18.399 c-6.216,3.271-13.285,5.132-20.784,5.132c-7.335,0-14.482-1.817-20.784-5.132h-24.382c-20.023,0-36.447,16.06-37.005,35.975 c-0.623,6.109-5.34,52.34-6.028,59.08c-0.472,4.633,1.143,9.236,4.408,12.556l37.123,37.753 c6.057,6.161,15.961,6.243,22.122,0.186s6.244-15.961,0.186-22.122l-31.969-32.511c5.795-56.801,5.422-52.836,5.429-53.927 c0.009-1.759,1.439-3.178,3.197-3.173c1.758,0.005,3.18,1.431,3.18,3.189v48.582l28.829,29.318 c5.498,5.592,8.142,12.919,7.961,20.184h9.482c-0.181-7.266,2.463-14.593,7.961-20.184l28.625-29.111V252.96 c0-1.772,1.401-3.227,3.172-3.292c1.771-0.066,3.278,1.28,3.408,3.047c0,0.001,0,0.001,0,0.001 c0.08,1.089,0.699,7.348,5.429,53.928l-31.969,32.511C220.176,345.316,220.26,355.221,226.42,361.277z\"\/>\n\t\t\t<path d=\"M207.858,143.645c-17.905,0-32.421,14.515-32.421,32.421s14.515,32.421,32.421,32.421 c13.296,0,24.717-8.008,29.719-19.46c-2.534-3.565-4.277-7.742-4.93-12.291c-0.867-6.035,0.206-12.05,3.027-17.327 C230.006,149.966,219.671,143.645,207.858,143.645z\"\/>\n\t\t\t<path d=\"M348.171,153.161l-0.018-0.027l-0.061-0.091c-5.438-8.107-40.839-60.893-46.492-69.321 c-2.961-4.416-7.93-7.066-13.247-7.066c-2.636,0,12.086,0-85.805,0c-1.811,0-3.607,0.308-5.314,0.911l-62.171,21.966 c-8.975,3.171-13.183,13.451-9.04,21.998l28.178,58.134c2.153,4.442,6.098,7.425,10.543,8.522 c-1.087-3.859-1.681-7.922-1.681-12.123c0-11.088,4.058-21.24,10.756-29.07l-11.306-23.324l40.518-14.317v22.181 c1.586-0.171,3.195-0.264,4.826-0.264c14.872,0,28.066,7.291,36.218,18.479c3.674-2.664,7.962-4.416,12.581-5.079l30.867-4.433 v-20.231c12.834,19.136,10.648,15.876,20.023,29.855l-48.241,6.929c-10.569,1.519-15.567,10.139-14.412,18.184 c1.252,8.719,9.375,14.773,18.057,13.521l74.24-10.663C348.616,176.196,354.801,163.084,348.171,153.161z\"\/>\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\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:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/AZ-massage-01-1005x670.jpg\">\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:\/\/azwellness.me\/index.php\/listing-category\/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>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\" width=\"800px\" height=\"800px\" viewBox=\"0 0 24 24\">\n\n<defs>\n\n\n\n<\/defs>\n\n<g id=\"ic-sport-soccer-field\">\n\n<rect class=\"cls-1\" x=\"2\" y=\"5\" width=\"20\" height=\"14\" rx=\"0.2\"\/>\n\n<line class=\"cls-1\" x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"\/>\n\n<circle class=\"cls-1\" cx=\"12\" cy=\"12\" r=\"3\"\/>\n\n<path class=\"cls-1\" d=\"M2,9H4.8a.2.2,0,0,1,.2.2v5.6a.2.2,0,0,1-.2.2H2\"\/>\n\n<path class=\"cls-1\" d=\"M22,15H19.2a.2.2,0,0,1-.2-.2V9.2a.2.2,0,0,1,.2-.2H22\"\/>\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\t0\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:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/Sport-894x670.png\">\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<div class=\"elementor-element elementor-element-5933e0d e-flex e-con-boxed e-con e-parent\" data-id=\"5933e0d\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7e72048c elementor-widget elementor-widget-listeo-headline\" data-id=\"7e72048c\" data-element_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 \"> Boost  Your Brand Captivating  <span >  Boost \ud83d\ude80 online presence, engage with customers. Over 300k monthly individuals search and evaluate businesses on Listeo.<\/span><\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1d7d3339 e-flex e-con-boxed e-con e-child\" data-id=\"1d7d3339\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-22ad7b21 e-flex e-con-boxed e-con e-child\" data-id=\"22ad7b21\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6cccffd2 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"6cccffd2\" data-element_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-magnet\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Find Interesting Place<\/h3>\n\t\t\t\t<p>You can search for areas of interest, local events, trendy restaurants or just things you want to do.<\/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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6905ac93 e-flex e-con-boxed e-con e-child\" data-id=\"6905ac93\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-74da1cef elementor-widget elementor-widget-listeo-iconbox\" data-id=\"74da1cef\" data-element_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-bookmark\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Check Reviews<\/h3>\n\t\t\t\t<p>We collect reviews from our users so you can get an honest opinion of their experience.<\/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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-75ee3e00 e-flex e-con-boxed e-con e-child\" data-id=\"75ee3e00\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-447b865 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"447b865\" data-element_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-alt\"><\/i>\t\t\t\t<\/div>\n\t\t\t\t<h3>Make Reservation<\/h3>\n\t\t\t\t<p>Book your desired experience effortlessly via our user-friendly website. The joy awaits you.<\/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\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\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-22a056f9 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"22a056f9\" data-element_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-52b828de\" data-id=\"52b828de\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-335bf6cc elementor-widget elementor-widget-listeo-headline\" data-id=\"335bf6cc\" data-element_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 \"> Most Visited Places  <span > Discover top-rated local businesses<\/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-629d51c4 elementor-widget elementor-widget-listeo-listings-carousel\" data-id=\"629d51c4\" data-element_type=\"widget\" data-widget_type=\"listeo-listings-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <!-- Carousel \/ Start -->\n        \t<div class=\"simple-slick-carousel dots-nav\" data-slick='{&quot;autoplay&quot;:true,&quot;autoplaySpeed&quot;:3000,&quot;slidesToShow&quot;:3,&quot;slidesToScroll&quot;:1,&quot;responsive&quot;:[{&quot;breakpoint&quot;:1024,&quot;settings&quot;:{&quot;slidesToShow&quot;:2,&quot;slidesToScroll&quot;:1}},{&quot;breakpoint&quot;:768,&quot;settings&quot;:{&quot;slidesToShow&quot;:1,&quot;slidesToScroll&quot;:1}}]}'>\n                            <div class=\"fw-carousel-item\">                    \n                        <div  class=\"listing-card-container-nl listing-geo-data\" \r\n\t\tdata-title=\"Inner Flow\"\r\n\t\tdata-listing-type=\"service\"\r\n\t\tdata-classifieds-price=\"DKK\"\r\n\t\tdata-friendly-address=\"Vigerslevvej 25\"\r\n\t\tdata-address=\"Vigerslevvej 25\"\r\n\t\tdata-image=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/11\/IMG_8860-520x397.jpg\"\r\n\t\tdata-longitude=\"55.670633\"\r\n\t\tdata-latitude=\"12.491167\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\r\n\t\t\t\tdata-icon=\"&lt;i class=&quot;fab fa-500px&quot;&gt;&lt;\/i&gt;\"\r\n\r\n\t>\r\n    <div class=\"listing-card-nl\">\r\n        <!-- ===== LEFT: IMAGE SLIDER ===== -->\r\n        <div class=\"listing-image-container-nl\">\r\n            <a href=\"https:\/\/azwellness.me\/index.php\/listing\/inner-flow\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/11\/IMG_8860-520x397.jpg\" alt=\"\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/11\/IMG_8859-520x397.jpg\" alt=\"\" class=\"slider-image-nl\">\r\n\t\t                <\/div>\r\n            <\/a>\r\n                                <div class=\"status-button-nl closed-nl\">\r\n                        Now Closed                    <\/div>\r\n            \r\n            <div class=\"slider-arrow-nl left-nl\" id=\"prevBtn\"><i class=\"fa-solid fa-chevron-left\"><\/i><\/div>\r\n            <div class=\"slider-arrow-nl right-nl\" id=\"nextBtn\"><i class=\"fa-solid fa-chevron-right\"><\/i><\/div>\r\n            <div class=\"image-overlay-top-nl\">\r\n                <span class=\"listing-category-tag-nl\">Coaching<\/span>                                    <div class=\"favorite-icon-nl\" id=\"favoriteBtn\">\r\n                        \r\n                                <span class=\"save fa-regular fa-heart tooltip left\" title=\"Login To Bookmark Items\"><\/span>\r\n                                                    \r\n                    <\/div>\r\n                            <\/div>\r\n        <\/div>\r\n\r\n        <!-- ===== RIGHT: LISTING DETAILS (NOW 2-COLUMN) ===== -->\r\n        <a href=\"https:\/\/azwellness.me\/index.php\/listing\/inner-flow\/\" class=\"listing-details-nl\">\r\n\r\n            <!-- Main Content Column (Left) -->\r\n            <div class=\"details-main-col-nl\">\r\n                                <h2 class=\"listing-title-nl\">Inner Flow                    <div class=\"listing-title-badges-nl\">\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Vigerslevvej 25<\/p>\t            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                                                <div class=\"listing-rating-nl\">\r\n                                <div class=\"rating-text-nl no-rating\">No reviews yet<\/div>\r\n                            <\/div>\r\n                                    <\/div>\r\n                            <\/div>\r\n\r\n        <\/a>\r\n\r\n    <\/div>\r\n<\/div>\n                    <\/div>\n                                      <div class=\"fw-carousel-item\">                    \n                        <div  class=\"listing-card-container-nl listing-geo-data\" \r\n\t\tdata-title=\"AZ Massage\"\r\n\t\tdata-listing-type=\"service\"\r\n\t\tdata-classifieds-price=\"DKK\"\r\n\t\tdata-friendly-address=\"Holbergsgade 26, 1tv, K\u00f8benhavn\"\r\n\t\tdata-address=\"Holbergsgade 26, 1tv, K\u00f8benhavn\"\r\n\t\tdata-image=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/AZ-AgataZaremba-520x397.jpg\"\r\n\t\tdata-longitude=\"55.678876\"\r\n\t\tdata-latitude=\"12.590966\"\r\n\t\t\t\t\tdata-rating=\"5\"\r\n\t\t\tdata-reviews=\"1\"\r\n\t\t\t\tdata-icon=\"&lt;svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; xmlns:xlink=&quot;http:\/\/www.w3.org\/1999\/xlink&quot; fill=&quot;#000000&quot; height=&quot;800px&quot; width=&quot;800px&quot; version=&quot;1.1&quot; id=&quot;Layer_1&quot; viewBox=&quot;0 0 460.042 460.042&quot; xml:space=&quot;preserve&quot;&gt;\n&lt;g&gt;\n\t&lt;g&gt;\n\t\t&lt;g&gt;\n\t\t\t&lt;path d=&quot;M287.523,224.484v-27.015l-22.807,3.276c-6.099,0.879-12.209-0.249-17.568-3.191c-1.118,2.036-2.395,3.971-3.804,5.8 h3.696C263.673,203.354,278.477,211.597,287.523,224.484z&quot;\/&gt;\n\t\t\t&lt;circle cx=&quot;245.451&quot; cy=&quot;33.06&quot; r=&quot;33.06&quot;\/&gt;\n\t\t\t&lt;path d=&quot;M152.77,370.686l0.571-0.284c-0.822-0.771,1.507,1.574-27.72-28.149l-6.049,3.006c-9.159,4.55-12.99,15.597-8.614,24.84 l37.48,79.196c4.436,9.376,15.633,13.371,24.997,8.938c9.372-4.435,13.373-15.626,8.938-24.997L152.77,370.686z&quot;\/&gt;\n\t\t\t&lt;path d=&quot;M289.957,345.259l-5.913-2.938c-28.95,29.441-26.885,27.368-27.722,28.148l0.437,0.217l-29.601,62.55 c-4.436,9.371-0.434,20.562,8.938,24.997c9.363,4.433,20.56,0.439,24.997-8.938l37.479-79.196 C302.946,360.855,299.116,349.809,289.957,345.259z&quot;\/&gt;\n\t\t\t&lt;path d=&quot;M226.42,361.277c6.16,6.059,16.066,5.973,22.122-0.186l37.123-37.753c3.266-3.32,4.881-7.923,4.408-12.556 c-0.688-6.739-5.404-52.971-6.028-59.08c-0.558-19.915-16.982-35.975-37.005-35.975h-18.399 c-6.216,3.271-13.285,5.132-20.784,5.132c-7.335,0-14.482-1.817-20.784-5.132h-24.382c-20.023,0-36.447,16.06-37.005,35.975 c-0.623,6.109-5.34,52.34-6.028,59.08c-0.472,4.633,1.143,9.236,4.408,12.556l37.123,37.753 c6.057,6.161,15.961,6.243,22.122,0.186s6.244-15.961,0.186-22.122l-31.969-32.511c5.795-56.801,5.422-52.836,5.429-53.927 c0.009-1.759,1.439-3.178,3.197-3.173c1.758,0.005,3.18,1.431,3.18,3.189v48.582l28.829,29.318 c5.498,5.592,8.142,12.919,7.961,20.184h9.482c-0.181-7.266,2.463-14.593,7.961-20.184l28.625-29.111V252.96 c0-1.772,1.401-3.227,3.172-3.292c1.771-0.066,3.278,1.28,3.408,3.047c0,0.001,0,0.001,0,0.001 c0.08,1.089,0.699,7.348,5.429,53.928l-31.969,32.511C220.176,345.316,220.26,355.221,226.42,361.277z&quot;\/&gt;\n\t\t\t&lt;path d=&quot;M207.858,143.645c-17.905,0-32.421,14.515-32.421,32.421s14.515,32.421,32.421,32.421 c13.296,0,24.717-8.008,29.719-19.46c-2.534-3.565-4.277-7.742-4.93-12.291c-0.867-6.035,0.206-12.05,3.027-17.327 C230.006,149.966,219.671,143.645,207.858,143.645z&quot;\/&gt;\n\t\t\t&lt;path d=&quot;M348.171,153.161l-0.018-0.027l-0.061-0.091c-5.438-8.107-40.839-60.893-46.492-69.321 c-2.961-4.416-7.93-7.066-13.247-7.066c-2.636,0,12.086,0-85.805,0c-1.811,0-3.607,0.308-5.314,0.911l-62.171,21.966 c-8.975,3.171-13.183,13.451-9.04,21.998l28.178,58.134c2.153,4.442,6.098,7.425,10.543,8.522 c-1.087-3.859-1.681-7.922-1.681-12.123c0-11.088,4.058-21.24,10.756-29.07l-11.306-23.324l40.518-14.317v22.181 c1.586-0.171,3.195-0.264,4.826-0.264c14.872,0,28.066,7.291,36.218,18.479c3.674-2.664,7.962-4.416,12.581-5.079l30.867-4.433 v-20.231c12.834,19.136,10.648,15.876,20.023,29.855l-48.241,6.929c-10.569,1.519-15.567,10.139-14.412,18.184 c1.252,8.719,9.375,14.773,18.057,13.521l74.24-10.663C348.616,176.196,354.801,163.084,348.171,153.161z&quot;\/&gt;\n\t\t&lt;\/g&gt;\n\t&lt;\/g&gt;\n&lt;\/g&gt;\n&lt;\/svg&gt;\"\r\n\r\n\t>\r\n    <div class=\"listing-card-nl\">\r\n        <!-- ===== LEFT: IMAGE SLIDER ===== -->\r\n        <div class=\"listing-image-container-nl\">\r\n            <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/AZ-AgataZaremba-520x397.jpg\" alt=\"\" class=\"slider-image-nl\">\r\n\t\t                <\/div>\r\n            <\/a>\r\n                                <div class=\"status-button-nl closed-nl\">\r\n                        Now Closed                    <\/div>\r\n            \r\n            <div class=\"slider-arrow-nl left-nl\" id=\"prevBtn\"><i class=\"fa-solid fa-chevron-left\"><\/i><\/div>\r\n            <div class=\"slider-arrow-nl right-nl\" id=\"nextBtn\"><i class=\"fa-solid fa-chevron-right\"><\/i><\/div>\r\n            <div class=\"image-overlay-top-nl\">\r\n                <span class=\"listing-category-tag-nl\">Massage<\/span>                                    <div class=\"favorite-icon-nl\" id=\"favoriteBtn\">\r\n                        \r\n                                <span class=\"save fa-regular fa-heart tooltip left\" title=\"Login To Bookmark Items\"><\/span>\r\n                                                    \r\n                    <\/div>\r\n                            <\/div>\r\n        <\/div>\r\n\r\n        <!-- ===== RIGHT: LISTING DETAILS (NOW 2-COLUMN) ===== -->\r\n        <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/\" class=\"listing-details-nl\">\r\n\r\n            <!-- Main Content Column (Left) -->\r\n            <div class=\"details-main-col-nl\">\r\n                                    <div class=\"listing-badges-nl\">\r\n                                                <span class=\"badge-nl featured-nl\"><i class=\"fa-solid fa-star\"><\/i> Featured<\/span>                        \r\n                                            <\/div>\r\n                                <h2 class=\"listing-title-nl\">AZ Massage                    <div class=\"listing-title-badges-nl\">\r\n                                                                            <div class=\"instant-badge-nl title-badge-nl\">\r\n                                <i class=\" fa fa-bolt\"><\/i>\r\n                                <span class=\"tooltip-nl\">Instant Booking<\/span>\r\n                            <\/div>\r\n                                            <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Holbergsgade 26, 1tv, K\u00f8benhavn<\/p>\t\r\n                    <div class=\"listing-amenities-nl\">\r\n                        <div class=\"amenity-icon-nl\"><i class=\"fab fa-500px\"><\/i> <span class=\"tooltip-nl\">Dyb V\u00e6vs Massage \/ Dybdeg\u00e5ende Massage<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fab fa-500px\"><\/i> <span class=\"tooltip-nl\">Fysiurgisk Massage<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fab fa-500px\"><\/i> <span class=\"tooltip-nl\">Klassisk Massage<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fab fa-500px\"><\/i> <span class=\"tooltip-nl\">SportsMassage<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fab fa-500px\"><\/i> <span class=\"tooltip-nl\">Wellness Massage<\/span><\/div>\r\n                    <\/div>\r\n                            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                    \r\n                            <div class=\"listing-rating-nl\">\r\n                                        <div class=\"stars-nl\">\r\n                                            <i class=\"fa-solid fa-star\"><\/i>\r\n                                        <\/div>\r\n                                        <div class=\"rating-text-nl\">5.0<\/div>\r\n                                    <\/div>\r\n                                        <\/div>\r\n                            <\/div>\r\n\r\n        <\/a>\r\n\r\n    <\/div>\r\n<\/div>\n                    <\/div>\n                          <\/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<div class=\"elementor-element elementor-element-297671fb e-flex e-con-boxed e-con e-parent\" data-id=\"297671fb\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5906b78 e-con-full e-flex e-con e-child\" data-id=\"5906b78\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a0c41b6 e-flex e-con-boxed e-con e-child\" data-id=\"a0c41b6\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3adc7de4 elementor-widget elementor-widget-text-editor\" data-id=\"3adc7de4\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Outcomes That <br \/><strong>Keep You Growing<\/strong><\/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-51c3771 elementor-widget elementor-widget-listeo-headline\" data-id=\"51c3771\" data-element_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 \">   <span > Join over 9,000 brands that have opted for our platform over competitors, for an advanced review collection solution.<\/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-4deeba37 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"4deeba37\" data-element_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<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\"><g id=\"Group_33\" data-name=\"Group 33\" transform=\"translate(-1122 -2972)\"><circle id=\"Ellipse_4\" data-name=\"Ellipse 4\" cx=\"21\" cy=\"21\" r=\"21\" transform=\"translate(1122 2972)\" fill=\"rgba(248,0,68,0.11)\"><\/circle><path id=\"Vector\" d=\"M6,12l4.243,4.243,8.484-8.485\" transform=\"translate(1131.136 2980.5)\" fill=\"none\" stroke=\"#f80044\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><\/path><\/g><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">More Afforable Cost<\/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<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\"><g id=\"Group_33\" data-name=\"Group 33\" transform=\"translate(-1122 -2972)\"><circle id=\"Ellipse_4\" data-name=\"Ellipse 4\" cx=\"21\" cy=\"21\" r=\"21\" transform=\"translate(1122 2972)\" fill=\"rgba(248,0,68,0.11)\"><\/circle><path id=\"Vector\" d=\"M6,12l4.243,4.243,8.484-8.485\" transform=\"translate(1131.136 2980.5)\" fill=\"none\" stroke=\"#f80044\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><\/path><\/g><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">The Insight Gained is Much Wider<\/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<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"42\" height=\"42\" viewBox=\"0 0 42 42\"><g id=\"Group_33\" data-name=\"Group 33\" transform=\"translate(-1122 -2972)\"><circle id=\"Ellipse_4\" data-name=\"Ellipse 4\" cx=\"21\" cy=\"21\" r=\"21\" transform=\"translate(1122 2972)\" fill=\"rgba(248,0,68,0.11)\"><\/circle><path id=\"Vector\" d=\"M6,12l4.243,4.243,8.484-8.485\" transform=\"translate(1131.136 2980.5)\" fill=\"none\" stroke=\"#f80044\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><\/path><\/g><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">More Flexible Study Time<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1fbd7e3f e-flex e-con-boxed e-con e-child\" data-id=\"1fbd7e3f\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-183bcd9e e-transform elementor-widget elementor-widget-image\" data-id=\"183bcd9e\" data-element_type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_widescreen&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"578\" height=\"660\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2020\/11\/new-home.jpg\" class=\"attachment-1536x1536 size-1536x1536 wp-image-48\" alt=\"\" srcset=\"https:\/\/azwellness.me\/wp-content\/uploads\/2020\/11\/new-home.jpg 578w, https:\/\/azwellness.me\/wp-content\/uploads\/2020\/11\/new-home-263x300.jpg 263w, https:\/\/azwellness.me\/wp-content\/uploads\/2020\/11\/new-home-517x590.jpg 517w\" sizes=\"(max-width: 578px) 100vw, 578px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6a95a649 elementor-absolute elementor-widget elementor-widget-image\" data-id=\"6a95a649\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"123\" height=\"106\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2024\/02\/555-1.svg\" class=\"attachment-large size-large wp-image-22\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-624210c2 elementor-widget__width-inherit elementor-absolute elementor-widget elementor-widget-image\" data-id=\"624210c2\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"158\" height=\"108\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2024\/02\/666-1.svg\" class=\"attachment-large size-large wp-image-23\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3efefa00 elementor-absolute elementor-widget elementor-widget-text-editor\" data-id=\"3efefa00\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tGenerate own blob on <a href=\"https:\/\/www.blobmaker.app\/\">blobmaker.app<\/a>\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\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-21a6bc9f e-con-full e-flex e-con e-parent\" data-id=\"21a6bc9f\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2fa9cddc elementor-widget elementor-widget-listeo-headline\" data-id=\"2fa9cddc\" data-element_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 \"> Recent Reviews \ud83d\ude0a <\/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-6d9552c3 elementor-widget elementor-widget-listeo-reviews-carousel\" data-id=\"6d9552c3\" data-element_type=\"widget\" data-widget_type=\"listeo-reviews-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t\t<div class=\"reviews-slick-carousel reviews-carousel\" >\n\t\t\t\t<!-- Item -->\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Agata masserede ret p\u00e5tr\u00e6ngende skuldersp\u00e6ndinger v\u00e6k p\u00e5 2 massager.\r\n5 stjerner p\u00e5 alle fronter.\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/azwellness.me\/wp-content\/uploads\/2025\/02\/havfrue-590x402.jpg\" class=\"avatar avatar-70 photo\" width=\"70\" height=\"70\" alt=\"lille_havfrue\" \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>lille_havfrue reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/azwellness.me\/index.php\/listing\/az-massage\/#comment-3\">AZ Massage<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\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<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Read Reviews . Write Reviews . Find places and companies you can Let&#8217;s enhance your online visibility, boost your reputation and engage with your customers on our platform. Create an Account Browse Listings iPhone 12 Pro \u2013 Mint Condition Burger House Sunny Apartment George\u2019s Barber Shop Sticky Band Joe&#8217;s Photography Tom&#8217;s Restaurant Florist&#8217;s Shop Think [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-88","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/azwellness.me\/index.php\/wp-json\/wp\/v2\/pages\/88","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/azwellness.me\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/azwellness.me\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/azwellness.me\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/azwellness.me\/index.php\/wp-json\/wp\/v2\/comments?post=88"}],"version-history":[{"count":4,"href":"https:\/\/azwellness.me\/index.php\/wp-json\/wp\/v2\/pages\/88\/revisions"}],"predecessor-version":[{"id":376,"href":"https:\/\/azwellness.me\/index.php\/wp-json\/wp\/v2\/pages\/88\/revisions\/376"}],"wp:attachment":[{"href":"https:\/\/azwellness.me\/index.php\/wp-json\/wp\/v2\/media?parent=88"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}