{"id":119,"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":"2024-02-18T15:31:35","modified_gmt":"2024-02-18T15:31:35","slug":"home-2","status":"publish","type":"page","link":"https:\/\/googoes.com\/?page_id=119","title":{"rendered":"Home 2"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"119\" class=\"elementor elementor-119\">\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-e-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\" 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-4808274 elementor-widget__width-auto elementor-widget elementor-widget-heading\" data-id=\"4808274\" 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\">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-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-8494dd6 elementor-widget__width-auto elementor-widget elementor-widget-heading\" data-id=\"8494dd6\" 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\">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-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-768400f elementor-widget elementor-widget-listeo-text-typed\" data-id=\"768400f\" 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 >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 = 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 = [\"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\" 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-30477630 elementor-widget elementor-widget-text-editor\" data-id=\"30477630\" 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>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\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\" 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-c6d8ca2 elementor-widget__width-auto elementor-widget elementor-widget-button\" data-id=\"c6d8ca2\" 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=\"\/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-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=\"\/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\" data-e-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-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:\/\/googoes.com\/-\/iphone-12-pro-mint-condition\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-04-1.jpg\" alt=\"iPhone 12 Pro \u2013 Mint Condition\" class=\"listing-thumbnail\"><\/a>\n                            <h4>iPhone 12 Pro \u2013 Mint Condition<\/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:\/\/googoes.com\/eat-drink\/burger-house\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-01-1.jpg\" alt=\"Burger House\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Burger House<\/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:\/\/googoes.com\/lodging\/sunny-apartment\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02a-1-1200x800.jpg\" alt=\"Sunny Apartment\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Sunny Apartment<\/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:\/\/googoes.com\/services\/georges-barber-shop\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02-1.jpg\" alt=\"George\u2019s Barber Shop\" class=\"listing-thumbnail\"><\/a>\n                            <h4>George\u2019s Barber Shop<\/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:\/\/googoes.com\/events\/sticky-band\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02-1.jpg\" alt=\"Sticky Band\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Sticky Band<\/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:\/\/googoes.com\/services\/joes-photography\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/slider-bg-01-1-1200x800.jpg\" alt=\"Joe&#8217;s Photography\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Joe&#8217;s Photography<\/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:\/\/googoes.com\/eat-drink\/toms-restaurant\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-03-1.jpg\" alt=\"Tom&#8217;s Restaurant\" class=\"listing-thumbnail\"><\/a>\n                            <h4>Tom&#8217;s Restaurant<\/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:\/\/googoes.com\/services\/florists-shop\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-04-1.jpg\" alt=\"Florist&#8217;s Shop\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Florist&#8217;s Shop<\/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:\/\/googoes.com\/eat-drink\/think-coffe\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02-1.jpg\" alt=\"Think Coffe\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Think Coffe<\/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:\/\/googoes.com\/travel\/airport\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-04-1.jpg\" alt=\"Airport\" class=\"listing-thumbnail\"><\/a>\n                            <h4>Airport<\/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:\/\/googoes.com\/lodging\/private-bedroom-in-manhattan\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02a-1-1200x800.jpg\" alt=\"Private Bedroom in Manhattan\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Private Bedroom in Manhattan<\/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:\/\/googoes.com\/eat-drink\/bars\/fitness-center\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-01-1.jpg\" alt=\"Fitness Center\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Fitness Center<\/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-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-3b055a7c elementor-widget elementor-widget-listeo-headline\" data-id=\"3b055a7c\" 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 \"> 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-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:\/\/m7lauhbiqx.onrocket.site\/wp-content\/uploads\/2024\/02\/logo-carousel-01.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/m7lauhbiqx.onrocket.site\/wp-content\/uploads\/2024\/02\/logo-carousel-02.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/m7lauhbiqx.onrocket.site\/wp-content\/uploads\/2024\/02\/logo-carousel-03.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/m7lauhbiqx.onrocket.site\/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\" 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-1027d5b5 elementor-widget elementor-widget-listeo-headline\" data-id=\"1027d5b5\" 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 \"> 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-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:\/\/googoes.com\/?listing_category=eat-drink\" 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>Eat &amp; Drink<\/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\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 122.88 120.4\"><defs\/><title>food-and-drink<\/title><path class=\"cls-1\" d=\"M3,103.28q33.87-.07,67.73,0a2.46,2.46,0,0,1,2.45,2.44c0,3.65-1.54,10.79-9.79,10.79H10.35c-8.25,0-9.78-7.14-9.78-10.79A2.45,2.45,0,0,1,3,103.28Zm56.86-59c18.83,14.5,25.55,8.78,36.34,3.46,8.27-4.07,11.5-7.93,21.54-3.86V29.1H59.88V44.28ZM96.62,24.65l3.78-14a3.42,3.42,0,0,1,1.82-2.3L117.7.44a3.48,3.48,0,0,1,3.4,6.07l-14.28,7.26-3,10.88.27-.84h16.5A2.22,2.22,0,0,1,122.77,26h0V54.26c0,18.35-10,32.59-28.74,34v25.82h14.55c1.23,0,2.21,1.94,2.21,3.16s-1,3.17-2.21,3.17H76.82l.48-.51a19.07,19.07,0,0,0,3.57-5.82h3.78V88.34c-1,0-2-.12-3-.23a15,15,0,0,0-1.06-2.57,13.5,13.5,0,0,0,1.26-1.89,14.16,14.16,0,0,0,1-11.25,23.44,23.44,0,0,0-4.81-8.35c-4.58-5.28-12.65-10.66-23.47-13.6V26a2.21,2.21,0,0,1,2.21-2.21H96.87l-.25.84ZM67.55,81.78H7a7,7,0,0,1-7-7H0c0-10,19.85-17.21,36.53-17.37,32.8-.33,47.52,24.36,31,24.36Zm-14-16.14a3.77,3.77,0,1,1-3.76,3.77,3.77,3.77,0,0,1,3.76-3.77Zm-32.81.27A3.77,3.77,0,1,1,17,69.68a3.77,3.77,0,0,1,3.76-3.77Zm16.28-3.59a3.77,3.77,0,1,1-3.77,3.77,3.77,3.77,0,0,1,3.77-3.77ZM73,91.38a1.13,1.13,0,0,1,.16.56c0,.13,0,.27,0,.41s0,.28,0,.4a1.17,1.17,0,0,1-.16.57c-.55,2.42-2.78,5.6-9.62,5.6H10.35c-6.84,0-9.06-3.17-9.62-5.6a1.17,1.17,0,0,1-.16-.57c0-.12,0-.26,0-.4a2.88,2.88,0,0,1,0-.41,1.13,1.13,0,0,1,.16-.56c.56-2.43,2.79-5.6,9.62-5.6H37.83L48,96.24,58,85.78h5.39c6.84,0,9.07,3.17,9.62,5.6Z\"\/><\/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:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/slider-bg-01-1-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:\/\/googoes.com\/?listing_category=events\" 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>Events<\/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\" version=\"1.0\" width=\"728.000000pt\" height=\"508.000000pt\" viewBox=\"0 0 728.000000 508.000000\" preserveAspectRatio=\"xMidYMid meet\">\n\n<g transform=\"translate(0.000000,508.000000) scale(0.100000,-0.100000)\" fill=\"#000000\" stroke=\"none\">\n<path d=\"M2135 5054 c-107 -71 -146 -138 -153 -260 -4 -72 -1 -89 21 -138 114 -250 455 -258 576 -14 59 118 36 265 -57 361 -64 67 -95 77 -229 77 -111 0 -121 -2 -158 -26z\"\/>\n<path d=\"M3242 4917 c-58 -33 -57 -22 -60 -509 -1 -247 -1 -448 1 -448 2 0 41 22 86 49 45 27 95 53 112 56 l30 7 -3 319 -3 319 1118 0 1117 0 0 -800 0 -800 -1115 0 -1114 0 -3 129 -3 129 -112 -67 -112 -66 0 -115 c-1 -142 10 -185 52 -210 31 -19 62 -20 1290 -20 1157 0 1261 1 1287 17 16 9 33 27 39 40 16 35 16 1891 0 1925 -6 14 -23 32 -39 41 -26 16 -130 17 -1287 17 -989 -1 -1263 -3 -1281 -13z\"\/>\n<path d=\"M1797 4349 c-86 -20 -180 -90 -231 -172 -45 -74 -47 -91 -53 -728 -6 -606 -6 -607 16 -651 24 -50 80 -88 130 -88 64 0 128 43 150 102 7 17 11 232 11 590 1 310 4 575 7 591 4 20 11 27 28 27 21 0 23 -5 28 -102 3 -57 4 -422 3 -812 -1 -486 1 -709 9 -711 5 -1 44 -7 85 -12 86 -12 165 -43 227 -90 24 -18 45 -33 48 -33 3 0 5 140 5 310 l0 310 38 0 38 0 -1 -358 c0 -324 2 -360 17 -384 10 -15 29 -61 43 -102 42 -124 32 -275 -26 -387 l-18 -36 69 -12 68 -11 51 34 c27 19 72 42 98 52 26 9 53 21 59 26 8 6 10 321 7 1151 -4 950 -2 1145 9 1160 17 22 44 14 52 -16 3 -12 6 -152 6 -310 0 -246 2 -294 16 -323 35 -74 134 -105 210 -66 21 12 161 97 309 190 296 185 315 202 315 281 0 88 -64 151 -154 151 -44 0 -63 -9 -213 -101 -90 -56 -166 -99 -169 -97 -2 3 -4 61 -5 129 0 145 -13 237 -39 296 -29 66 -111 146 -183 179 -57 26 -72 28 -181 29 l-119 0 -91 -227 c-49 -125 -91 -226 -93 -224 -2 2 6 43 18 91 l21 88 -37 71 -36 71 29 54 c17 30 28 60 25 68 -7 17 -178 19 -189 2 -3 -6 6 -38 22 -71 l29 -60 -33 -58 c-36 -65 -38 -93 -17 -190 21 -95 18 -95 -18 0 -18 47 -60 154 -92 238 l-59 152 -100 -1 c-56 -1 -118 -5 -139 -10z\"\/>\n<path d=\"M4041 4343 c-8 -3 -100 -74 -205 -156 -105 -83 -193 -152 -195 -153 -2 -2 10 -14 26 -28 16 -14 42 -43 57 -65 l28 -39 106 84 c59 46 144 112 189 147 45 34 89 75 98 90 40 67 -32 149 -104 120z\"\/>\n<path d=\"M1805 2198 c-56 -21 -134 -77 -164 -119 -80 -110 -91 -234 -32 -354 93 -189 342 -245 508 -114 120 96 160 264 95 402 -58 126 -157 190 -297 194 -44 1 -93 -3 -110 -9z\"\/>\n<path d=\"M3625 2199 c-56 -19 -140 -84 -173 -133 -119 -178 -59 -394 138 -497 38 -20 59 -24 140 -24 85 0 101 3 148 28 247 130 247 477 0 603 -43 23 -69 28 -138 30 -47 2 -98 -2 -115 -7z\"\/>\n<path d=\"M5284 2197 c-61 -16 -108 -44 -150 -89 -73 -78 -96 -135 -96 -236 0 -188 143 -333 328 -334 109 0 162 21 242 96 168 158 119 438 -94 542 -64 31 -155 40 -230 21z\"\/>\n<path d=\"M2740 1529 c-60 -17 -143 -80 -182 -139 -116 -172 -49 -410 141 -499 47 -22 70 -26 141 -26 102 0 173 28 240 95 67 67 95 138 95 240 0 71 -4 94 -26 141 -57 120 -166 192 -299 196 -41 1 -91 -3 -110 -8z\"\/>\n<path d=\"M4400 1518 c-54 -14 -140 -79 -177 -132 -121 -176 -58 -410 136 -504 48 -23 69 -27 141 -27 70 1 95 5 140 26 72 34 135 97 168 167 23 49 27 71 27 147 0 78 -4 97 -28 147 -35 71 -110 140 -183 167 -59 23 -160 27 -224 9z\"\/>\n<path d=\"M1372 1414 c-107 -28 -203 -110 -251 -214 -24 -52 -26 -69 -35 -282 -5 -124 -6 -233 -3 -242 5 -14 30 -16 167 -16 l160 0 0 200 c0 181 2 200 18 209 11 6 24 6 35 0 15 -9 17 -31 17 -209 l0 -200 229 0 229 0 22 35 c27 44 111 120 175 156 50 29 147 62 217 74 l37 6 -25 48 c-38 73 -59 209 -45 296 7 38 20 88 31 112 l19 43 -472 -1 c-375 0 -483 -3 -525 -15z\"\/>\n<path d=\"M3312 1378 c30 -76 36 -235 13 -313 -9 -33 -26 -76 -36 -97 l-19 -38 29 0 c92 0 241 -58 326 -127 l49 -40 51 38 c71 54 157 91 252 109 l83 15 -19 37 c-11 19 -27 62 -37 94 -23 79 -15 237 15 314 11 30 21 56 21 58 0 1 -168 2 -374 2 l-374 0 20 -52z\"\/>\n<path d=\"M4960 1427 c0 -2 9 -24 19 -48 51 -115 47 -278 -8 -396 l-28 -58 66 -11 c139 -24 259 -94 350 -203 l43 -51 199 0 199 0 0 189 c0 104 3 196 6 205 3 9 14 16 23 16 38 0 41 -18 41 -217 l0 -193 163 2 162 3 -3 215 c-1 118 -7 236 -13 262 -24 107 -121 212 -239 260 -54 22 -66 23 -517 26 -255 2 -463 1 -463 -1z\"\/>\n<path d=\"M2405 749 c-44 -4 -97 -12 -117 -18 -95 -30 -210 -147 -241 -245 -13 -41 -19 -108 -24 -270 l-6 -216 166 0 167 0 0 189 c0 155 3 191 15 201 12 10 18 10 30 0 12 -10 15 -46 15 -201 l0 -189 435 0 435 0 0 195 c0 165 2 197 15 201 8 4 22 1 30 -6 12 -10 15 -46 15 -201 l0 -189 325 0 325 0 0 178 c0 187 7 220 43 206 15 -5 17 -25 17 -195 l0 -189 435 0 435 0 0 190 c0 161 2 192 15 196 8 4 22 1 30 -6 12 -10 15 -46 15 -196 l0 -184 166 0 167 0 -5 218 c-5 193 -8 223 -27 275 -43 109 -134 197 -246 234 -43 15 -112 17 -497 21 -479 4 -555 -1 -643 -42 -104 -47 -202 -172 -224 -286 -7 -37 -9 -39 -10 -15 -2 46 -26 118 -56 164 -64 103 -160 164 -284 181 -81 11 -784 11 -916 -1z\"\/>\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\t2\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:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02a-1-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:\/\/googoes.com\/?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\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" height=\"800px\" width=\"800px\" version=\"1.1\" id=\"_x32_\" viewBox=\"0 0 512 512\" xml:space=\"preserve\">\n\n<g>\n\t<path class=\"st0\" d=\"M292.852,96.841c24.788,0,44.889-20.092,44.889-44.881c0-24.789-20.102-44.881-44.889-44.881 c-24.78,0-44.873,20.092-44.873,44.881C247.979,76.749,268.072,96.841,292.852,96.841z\"\/>\n\t<path class=\"st0\" d=\"M154.269,171.891l60.391,36.036c7.507,4.488,16.664,5.294,24.849,2.205l35.768-19.268l16.959,68.411 l-56.372-0.286c-9.495-0.027-18.513,4.183-24.571,11.5c-6.058,7.316-8.514,16.96-6.709,26.29l18.964,97.634 c2.1,10.814,12.351,18.053,23.243,16.421l0.816-0.122c10.789-1.614,18.436-11.361,17.438-22.219l-6.423-69.956l84.389,3.143 l31.445,50.036c6.484,6.554,13.905,12.126,22.011,16.544l69.278,37.842c9.704,5.016,21.655,1.423,26.984-8.115l0.382-0.668 c5.311-9.521,2.135-21.533-7.178-27.193l-64.193-43.961l-39.743-84.788L364.5,162.639l41.73-5.294l48.995,31.689 c6.588,4.253,15.267,3.055,20.431-2.83l0.286-0.33c5.746-6.518,5.13-16.448-1.371-22.219l-43.839-38.98 c-4.73-4.2-10.771-6.63-17.098-6.865l-94.206-6.101c-3.368-0.182-6.518,0.069-6.518,0.069c-1.406,0.121-2.83,0.295-4.244,0.529 c-7.968,1.372-15.12,4.67-21.074,9.322l-65.26,44.012l-50.67-23.782c-7.872-4.409-17.801-1.796-22.48,5.911l-0.642,1.042 c-2.309,3.827-3.021,8.402-1.945,12.733C147.663,165.877,150.432,169.6,154.269,171.891z\"\/>\n\t<path class=\"st0\" d=\"M510.556,475.243c-0.131-7.56-5.842-13.861-13.349-14.737L54.265,408.551l-3.324-0.486l3.324-19.78 l26.402-157.217l50.878,7.559l5.504-35.203l-56.234-8.462c-16.308-2.456-31.575,8.618-34.309,24.884L19.071,383.129L1.339,488.506 c-0.981,5.841,0.659,11.829,4.486,16.351C9.662,509.388,15.286,512,21.214,512h12.255h462.349c4.062,0,7.941-1.632,10.788-4.522 c2.839-2.89,4.401-6.804,4.331-10.866L510.556,475.243z\"\/>\n\t<path class=\"st0\" d=\"M341.022,26.869c14.138-2.925,29.484,5.597,51.772,11.031c27.791,6.778,51.286-16.838,42.103-36.74 c-5.356,2.3-11.492,14.547-48.995,2.3c-24.285-7.933-45.185-1.068-59.002,8.913C332.586,16.124,337.42,21.07,341.022,26.869z\"\/>\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:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-01-1-446x670.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:\/\/googoes.com\/?listing_category=lodging\" 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>Lodging<\/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.1\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 122.88 119.45\" style=\"enable-background:new 0 0 122.88 119.45\" xml:space=\"preserve\"><g><path class=\"st0\" d=\"M111.65,117.5c0,1.07-0.87,1.95-1.95,1.95H12.65c-1.07,0-1.95-0.87-1.95-1.95V54.76 c-2.18,0.84-4.21,0.85-5.9,0.29c-1.32-0.45-2.44-1.24-3.25-2.28c-0.82-1.03-1.34-2.29-1.49-3.67c-0.23-2.15,0.41-4.59,2.24-6.87 l0,0c0.1-0.12,0.2-0.22,0.32-0.32l57.36-41.4c0.69-0.64,1.75-0.7,2.51-0.11l57.48,41.32l0,0c0.08,0.06,0.16,0.14,0.23,0.21 c2.46,2.65,3.07,5.58,2.48,8.08c-0.3,1.22-0.88,2.33-1.69,3.23c-0.81,0.91-1.83,1.61-3.01,2.03c-1.87,0.68-4.07,0.65-6.32-0.41 C111.65,71.4,111.65,100.98,111.65,117.5L111.65,117.5L111.65,117.5z M69.38,23.91v16.2h-5.72v-6.04h-4.44v6.04H53.5v-16.2h5.72 v5.96h4.44v-5.96H69.38L69.38,23.91z M79.56,32.62c-0.16,4.77-2.15,9.07-5.3,12.22c-3.28,3.28-7.82,5.31-12.82,5.31 c-5.01,0-9.54-2.03-12.82-5.31c-3.15-3.15-5.14-7.44-5.3-12.21L15.54,52.23c0.04,0.16,0.06,0.33,0.06,0.5v61.81h13.16V57.3 c0-1.25,1.03-2.28,2.28-2.28h2.33c1.25,0,2.28,1.03,2.28,2.28v19.54c21.06,0,30.5,0,51.57,0V58.7c0-1.25,1.03-2.28,2.28-2.28h2.33 c1.25,0,2.28,1.03,2.28,2.28v55.84h12.64l0,0V52.59c0-0.13,0.01-0.25,0.03-0.37L79.56,32.62L79.56,32.62z M72.23,21.22 c-2.76-2.76-6.57-4.47-10.79-4.47c-4.21,0-8.03,1.71-10.79,4.47c-2.76,2.76-4.47,6.57-4.47,10.79s1.71,8.03,4.47,10.79 s6.57,4.47,10.79,4.47c4.21,0,8.03-1.71,10.79-4.47c2.76-2.76,4.47-6.57,4.47-10.79S74.99,23.98,72.23,21.22L72.23,21.22z M87.22,114.54v-2.62H35.66v2.62H87.22L87.22,114.54z M43.94,89.19c2.3,0,4.16,1.86,4.16,4.16c0,2.3-1.86,4.16-4.16,4.16 c-2.3,0-4.16-1.86-4.16-4.16C39.78,91.05,41.65,89.19,43.94,89.19L43.94,89.19L43.94,89.19z M57.1,82.85v0.02l-0.79,0.82h0.82v0.3 h-1.33v-0.29l0.78-0.81h-0.7v-0.03H35.66v23.08c1.87,0,23.29,0,51.57,0V82.85H57.1L57.1,82.85z M47.53,85.18h2.66v0.61l-1.71,1.78 h1.77v0.66l-2.89,0.56v-1.19l1.69-1.76h-1.53V85.18L47.53,85.18L47.53,85.18z M52.31,84.11h1.9v0.43l-1.22,1.27h1.26v0.47h-2.06 v-0.45l1.2-1.26H52.3L52.31,84.11L52.31,84.11L52.31,84.11z M56.13,89.96H78.8c2.77,0,5.04,2.27,5.04,5.04v7.72 c-14.68,0-30.12,0-44.79,0v-3.48c0-0.54,0.45-0.99,0.99-0.99h8.81C49.06,92.8,51.49,90.03,56.13,89.96L56.13,89.96z M43.94,59.68 c2.3,0,4.16,1.86,4.16,4.16c0,2.3-1.86,4.16-4.16,4.16c-2.3,0-4.16-1.86-4.16-4.16C39.78,61.55,41.65,59.68,43.94,59.68 L43.94,59.68L43.94,59.68z M55.88,53.08h1.22v0.28l-0.79,0.82h0.82v0.3h-1.33v-0.29l0.78-0.81h-0.7L55.88,53.08L55.88,53.08 L55.88,53.08z M47.53,55.67h2.66v0.61l-1.71,1.78h1.77v0.66l-2.89,0.56v-1.19l1.69-1.76h-1.53V55.67L47.53,55.67L47.53,55.67z M52.31,54.61h1.9v0.43l-1.22,1.27h1.26v0.47h-2.06v-0.45l1.2-1.26H52.3L52.31,54.61L52.31,54.61L52.31,54.61z M56.13,60.46H78.8 c2.77,0,5.04,2.27,5.04,5.04v7.72c-14.68,0-30.12,0-44.79,0v-3.48c0-0.54,0.45-0.99,0.99-0.99h8.81 C49.06,63.29,51.49,60.53,56.13,60.46L56.13,60.46z\"\/><\/g><\/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\t2\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:\/\/googoes.com\/wp-content\/uploads\/2025\/11\/apartment.svg\">\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\" 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-7e72048c elementor-widget elementor-widget-listeo-headline\" data-id=\"7e72048c\" 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 \"> 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\" data-e-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\" 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-6cccffd2 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"6cccffd2\" 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-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\" 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-74da1cef elementor-widget elementor-widget-listeo-iconbox\" data-id=\"74da1cef\" 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-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\" 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-447b865 elementor-widget elementor-widget-listeo-iconbox\" data-id=\"447b865\" 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-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-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-52b828de\" data-id=\"52b828de\" 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-335bf6cc elementor-widget elementor-widget-listeo-headline\" data-id=\"335bf6cc\" 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 \"> 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-e-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=\"iPhone 12 Pro \u2013 Mint Condition\"\r\n\t\tdata-listing-type=\"classifieds\"\r\n\t\tdata-classifieds-price=\"&#36;899\"\r\n\t\tdata-friendly-address=\"\"\r\n\t\tdata-address=\"Ronkonkoma, New York\"\r\n\t\tdata-image=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-04-1-520x397.jpg\"\r\n\t\tdata-longitude=\"-73.112333\"\r\n\t\tdata-latitude=\"40.8153761\"\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;sl sl-icon-location&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:\/\/googoes.com\/-\/iphone-12-pro-mint-condition\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-04-1-520x397.jpg\" alt=\"iPhone 12 Pro \u2013 Mint Condition\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-03-1-520x397.jpg\" alt=\"iPhone 12 Pro \u2013 Mint Condition\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02a-1-520x397.jpg\" alt=\"iPhone 12 Pro \u2013 Mint Condition\" class=\"slider-image-nl\">\r\n\t\t                <\/div>\r\n            <\/a>\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                                                    <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:\/\/googoes.com\/-\/iphone-12-pro-mint-condition\" 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\">iPhone 12 Pro \u2013 Mint Condition                    <div class=\"listing-title-badges-nl\">\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Ronkonkoma, New York<\/p>\t\t\t<div class=\"listing-features-nl\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<!-- Regular Field Template -->\r\n\t\t\t\t\t<div class=\"feature-tag-nl main-detail-_classifieds_condition\">\r\n\t\t\t\t\t\t<i class=\"fas fa-check\"><\/i>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span>New<\/span>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tooltip-nl\">Condition<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Regular Field Template -->\r\n\t\t\t\t\t<div class=\"feature-tag-nl main-detail-_classifieds_price\">\r\n\t\t\t\t\t\t<i class=\"fas fa-check\"><\/i>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span>899<\/span>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tooltip-nl\">Price<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t<\/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                                    <\/div>\r\n                                        <div class=\"listing-booking-nl\">\r\n                            <p class=\"price-nl\">&#36;899.00<\/p>\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=\"Burger House\"\r\n\t\tdata-listing-type=\"service\"\r\n\t\tdata-classifieds-price=\"&#36;\"\r\n\t\tdata-friendly-address=\"Jay St, Brooklyn, New York\"\r\n\t\tdata-address=\"Jay St, Brooklyn, New York\"\r\n\t\tdata-image=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-01-1-520x397.jpg\"\r\n\t\tdata-longitude=\"-73.9867797\"\r\n\t\tdata-latitude=\"40.7041895\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\r\n\t\t\t\tdata-icon=\"&lt;svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; id=&quot;Layer_1&quot; data-name=&quot;Layer 1&quot; viewBox=&quot;0 0 122.88 120.4&quot;&gt;&lt;defs\/&gt;&lt;title&gt;food-and-drink&lt;\/title&gt;&lt;path class=&quot;cls-1&quot; d=&quot;M3,103.28q33.87-.07,67.73,0a2.46,2.46,0,0,1,2.45,2.44c0,3.65-1.54,10.79-9.79,10.79H10.35c-8.25,0-9.78-7.14-9.78-10.79A2.45,2.45,0,0,1,3,103.28Zm56.86-59c18.83,14.5,25.55,8.78,36.34,3.46,8.27-4.07,11.5-7.93,21.54-3.86V29.1H59.88V44.28ZM96.62,24.65l3.78-14a3.42,3.42,0,0,1,1.82-2.3L117.7.44a3.48,3.48,0,0,1,3.4,6.07l-14.28,7.26-3,10.88.27-.84h16.5A2.22,2.22,0,0,1,122.77,26h0V54.26c0,18.35-10,32.59-28.74,34v25.82h14.55c1.23,0,2.21,1.94,2.21,3.16s-1,3.17-2.21,3.17H76.82l.48-.51a19.07,19.07,0,0,0,3.57-5.82h3.78V88.34c-1,0-2-.12-3-.23a15,15,0,0,0-1.06-2.57,13.5,13.5,0,0,0,1.26-1.89,14.16,14.16,0,0,0,1-11.25,23.44,23.44,0,0,0-4.81-8.35c-4.58-5.28-12.65-10.66-23.47-13.6V26a2.21,2.21,0,0,1,2.21-2.21H96.87l-.25.84ZM67.55,81.78H7a7,7,0,0,1-7-7H0c0-10,19.85-17.21,36.53-17.37,32.8-.33,47.52,24.36,31,24.36Zm-14-16.14a3.77,3.77,0,1,1-3.76,3.77,3.77,3.77,0,0,1,3.76-3.77Zm-32.81.27A3.77,3.77,0,1,1,17,69.68a3.77,3.77,0,0,1,3.76-3.77Zm16.28-3.59a3.77,3.77,0,1,1-3.77,3.77,3.77,3.77,0,0,1,3.77-3.77ZM73,91.38a1.13,1.13,0,0,1,.16.56c0,.13,0,.27,0,.41s0,.28,0,.4a1.17,1.17,0,0,1-.16.57c-.55,2.42-2.78,5.6-9.62,5.6H10.35c-6.84,0-9.06-3.17-9.62-5.6a1.17,1.17,0,0,1-.16-.57c0-.12,0-.26,0-.4a2.88,2.88,0,0,1,0-.41,1.13,1.13,0,0,1,.16-.56c.56-2.43,2.79-5.6,9.62-5.6H37.83L48,96.24,58,85.78h5.39c6.84,0,9.07,3.17,9.62,5.6Z&quot;\/&gt;&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:\/\/googoes.com\/eat-drink\/burger-house\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-01-1-520x397.jpg\" alt=\"Burger House\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-03-1-520x397.jpg\" alt=\"Burger House\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02a-1-520x397.jpg\" alt=\"Burger House\" class=\"slider-image-nl\">\r\n\t\t                <\/div>\r\n            <\/a>\r\n                                <div class=\"status-button-nl\">\r\n                        Now Open                    <\/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\">Eat &amp; Drink<\/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:\/\/googoes.com\/eat-drink\/burger-house\" 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\">Burger House                    <div class=\"listing-title-badges-nl\">\r\n                                                    <div class=\"verified-icon-nl title-badge-nl\">\r\n                                <i class=\"fa fa-check\"><\/i>\r\n                                <span class=\"tooltip-nl\">Verified Listing<\/span>\r\n                            <\/div>\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Jay St, Brooklyn, New York<\/p>\t\r\n                    <div class=\"listing-amenities-nl\">\r\n                        \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                                                <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=\"Sunny Apartment\"\r\n\t\tdata-listing-type=\"rental\"\r\n\t\tdata-classifieds-price=\"&#36;\"\r\n\t\tdata-friendly-address=\"Dorothea Lane, New York\"\r\n\t\tdata-address=\"Dorothea Lane, New York\"\r\n\t\tdata-image=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02a-1-520x397.jpg\"\r\n\t\tdata-longitude=\"-73.69608779999999\"\r\n\t\tdata-latitude=\"40.6924327\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\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; version=&quot;1.1&quot; id=&quot;Layer_1&quot; x=&quot;0px&quot; y=&quot;0px&quot; viewBox=&quot;0 0 122.88 119.45&quot; style=&quot;enable-background:new 0 0 122.88 119.45&quot; xml:space=&quot;preserve&quot;&gt;&lt;g&gt;&lt;path class=&quot;st0&quot; d=&quot;M111.65,117.5c0,1.07-0.87,1.95-1.95,1.95H12.65c-1.07,0-1.95-0.87-1.95-1.95V54.76 c-2.18,0.84-4.21,0.85-5.9,0.29c-1.32-0.45-2.44-1.24-3.25-2.28c-0.82-1.03-1.34-2.29-1.49-3.67c-0.23-2.15,0.41-4.59,2.24-6.87 l0,0c0.1-0.12,0.2-0.22,0.32-0.32l57.36-41.4c0.69-0.64,1.75-0.7,2.51-0.11l57.48,41.32l0,0c0.08,0.06,0.16,0.14,0.23,0.21 c2.46,2.65,3.07,5.58,2.48,8.08c-0.3,1.22-0.88,2.33-1.69,3.23c-0.81,0.91-1.83,1.61-3.01,2.03c-1.87,0.68-4.07,0.65-6.32-0.41 C111.65,71.4,111.65,100.98,111.65,117.5L111.65,117.5L111.65,117.5z M69.38,23.91v16.2h-5.72v-6.04h-4.44v6.04H53.5v-16.2h5.72 v5.96h4.44v-5.96H69.38L69.38,23.91z M79.56,32.62c-0.16,4.77-2.15,9.07-5.3,12.22c-3.28,3.28-7.82,5.31-12.82,5.31 c-5.01,0-9.54-2.03-12.82-5.31c-3.15-3.15-5.14-7.44-5.3-12.21L15.54,52.23c0.04,0.16,0.06,0.33,0.06,0.5v61.81h13.16V57.3 c0-1.25,1.03-2.28,2.28-2.28h2.33c1.25,0,2.28,1.03,2.28,2.28v19.54c21.06,0,30.5,0,51.57,0V58.7c0-1.25,1.03-2.28,2.28-2.28h2.33 c1.25,0,2.28,1.03,2.28,2.28v55.84h12.64l0,0V52.59c0-0.13,0.01-0.25,0.03-0.37L79.56,32.62L79.56,32.62z M72.23,21.22 c-2.76-2.76-6.57-4.47-10.79-4.47c-4.21,0-8.03,1.71-10.79,4.47c-2.76,2.76-4.47,6.57-4.47,10.79s1.71,8.03,4.47,10.79 s6.57,4.47,10.79,4.47c4.21,0,8.03-1.71,10.79-4.47c2.76-2.76,4.47-6.57,4.47-10.79S74.99,23.98,72.23,21.22L72.23,21.22z M87.22,114.54v-2.62H35.66v2.62H87.22L87.22,114.54z M43.94,89.19c2.3,0,4.16,1.86,4.16,4.16c0,2.3-1.86,4.16-4.16,4.16 c-2.3,0-4.16-1.86-4.16-4.16C39.78,91.05,41.65,89.19,43.94,89.19L43.94,89.19L43.94,89.19z M57.1,82.85v0.02l-0.79,0.82h0.82v0.3 h-1.33v-0.29l0.78-0.81h-0.7v-0.03H35.66v23.08c1.87,0,23.29,0,51.57,0V82.85H57.1L57.1,82.85z M47.53,85.18h2.66v0.61l-1.71,1.78 h1.77v0.66l-2.89,0.56v-1.19l1.69-1.76h-1.53V85.18L47.53,85.18L47.53,85.18z M52.31,84.11h1.9v0.43l-1.22,1.27h1.26v0.47h-2.06 v-0.45l1.2-1.26H52.3L52.31,84.11L52.31,84.11L52.31,84.11z M56.13,89.96H78.8c2.77,0,5.04,2.27,5.04,5.04v7.72 c-14.68,0-30.12,0-44.79,0v-3.48c0-0.54,0.45-0.99,0.99-0.99h8.81C49.06,92.8,51.49,90.03,56.13,89.96L56.13,89.96z M43.94,59.68 c2.3,0,4.16,1.86,4.16,4.16c0,2.3-1.86,4.16-4.16,4.16c-2.3,0-4.16-1.86-4.16-4.16C39.78,61.55,41.65,59.68,43.94,59.68 L43.94,59.68L43.94,59.68z M55.88,53.08h1.22v0.28l-0.79,0.82h0.82v0.3h-1.33v-0.29l0.78-0.81h-0.7L55.88,53.08L55.88,53.08 L55.88,53.08z M47.53,55.67h2.66v0.61l-1.71,1.78h1.77v0.66l-2.89,0.56v-1.19l1.69-1.76h-1.53V55.67L47.53,55.67L47.53,55.67z M52.31,54.61h1.9v0.43l-1.22,1.27h1.26v0.47h-2.06v-0.45l1.2-1.26H52.3L52.31,54.61L52.31,54.61L52.31,54.61z M56.13,60.46H78.8 c2.77,0,5.04,2.27,5.04,5.04v7.72c-14.68,0-30.12,0-44.79,0v-3.48c0-0.54,0.45-0.99,0.99-0.99h8.81 C49.06,63.29,51.49,60.53,56.13,60.46L56.13,60.46z&quot;\/&gt;&lt;\/g&gt;&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:\/\/googoes.com\/lodging\/sunny-apartment\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02a-1-520x397.jpg\" alt=\"Sunny Apartment\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02-1-520x397.jpg\" alt=\"Sunny Apartment\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-03-1-520x397.jpg\" alt=\"Sunny Apartment\" class=\"slider-image-nl\">\r\n\t\t                <\/div>\r\n            <\/a>\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\">Lodging<\/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:\/\/googoes.com\/lodging\/sunny-apartment\" 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\">Sunny Apartment                    <div class=\"listing-title-badges-nl\">\r\n                                                    <div class=\"verified-icon-nl title-badge-nl\">\r\n                                <i class=\"fa fa-check\"><\/i>\r\n                                <span class=\"tooltip-nl\">Verified Listing<\/span>\r\n                            <\/div>\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Dorothea Lane, New York<\/p>\t\r\n                    <div class=\"listing-amenities-nl\">\r\n                        \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                                                <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=\"George\u2019s Barber Shop\"\r\n\t\tdata-listing-type=\"service\"\r\n\t\tdata-classifieds-price=\"&#36;\"\r\n\t\tdata-friendly-address=\"Auburndale, Queens, NY\"\r\n\t\tdata-address=\"Auburndale, Queens, NY\"\r\n\t\tdata-image=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02-1-520x397.jpg\"\r\n\t\tdata-longitude=\"-73.78602760000001\"\r\n\t\tdata-latitude=\"40.75411500000001\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\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; version=&quot;1.1&quot; id=&quot;Layer_1&quot; x=&quot;0px&quot; y=&quot;0px&quot; viewBox=&quot;0 0 122.88 117.09&quot; style=&quot;enable-background:new 0 0 122.88 117.09&quot; xml:space=&quot;preserve&quot;&gt;&lt;g&gt;&lt;path class=&quot;st0&quot; d=&quot;M36.82,107.86L35.65,78.4l13.25-0.53c5.66,0.78,11.39,3.61,17.15,6.92l10.29-0.41c4.67,0.1,7.3,4.72,2.89,8 c-3.5,2.79-8.27,2.83-13.17,2.58c-3.37-0.03-3.34,4.5,0.17,4.37c1.22,0.05,2.54-0.29,3.69-0.34c6.09-0.25,11.06-1.61,13.94-6.55 l1.4-3.66l15.01-8.2c7.56-2.83,12.65,4.3,7.23,10.1c-10.77,8.51-21.2,16.27-32.62,22.09c-8.24,5.47-16.7,5.64-25.34,1.01 L36.82,107.86L36.82,107.86z M29.74,62.97h91.9c0.68,0,1.24,0.57,1.24,1.24v5.41c0,0.67-0.56,1.24-1.24,1.24h-91.9 c-0.68,0-1.24-0.56-1.24-1.24v-5.41C28.5,63.53,29.06,62.97,29.74,62.97L29.74,62.97z M79.26,11.23 c25.16,2.01,46.35,23.16,43.22,48.06l-93.57,0C25.82,34.23,47.09,13.05,72.43,11.2V7.14l-4,0c-0.7,0-1.28-0.58-1.28-1.28V1.28 c0-0.7,0.57-1.28,1.28-1.28h14.72c0.7,0,1.28,0.58,1.28,1.28v4.58c0,0.7-0.58,1.28-1.28,1.28h-3.89L79.26,11.23L79.26,11.23 L79.26,11.23z M0,77.39l31.55-1.66l1.4,35.25L1.4,112.63L0,77.39L0,77.39z&quot;\/&gt;&lt;\/g&gt;&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:\/\/googoes.com\/services\/georges-barber-shop\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02-1-520x397.jpg\" alt=\"George\u2019s Barber Shop\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-01-1-520x397.jpg\" alt=\"George\u2019s Barber Shop\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02a-1-520x397.jpg\" alt=\"George\u2019s Barber Shop\" 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\">Services<\/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:\/\/googoes.com\/services\/georges-barber-shop\" 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\">George\u2019s Barber Shop                    <div class=\"listing-title-badges-nl\">\r\n                                                    <div class=\"verified-icon-nl title-badge-nl\">\r\n                                <i class=\"fa fa-check\"><\/i>\r\n                                <span class=\"tooltip-nl\">Verified Listing<\/span>\r\n                            <\/div>\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Auburndale, Queens, NY<\/p>\t\r\n                    <div class=\"listing-amenities-nl\">\r\n                        \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                                                <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=\"Sticky Band\"\r\n\t\tdata-listing-type=\"event\"\r\n\t\tdata-classifieds-price=\"&#36;\"\r\n\t\tdata-friendly-address=\"West Orange, New York\"\r\n\t\tdata-address=\"West Orange, New York\"\r\n\t\tdata-image=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02-1-520x397.jpg\"\r\n\t\tdata-longitude=\"-74.25970469999999\"\r\n\t\tdata-latitude=\"40.7708499\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\r\n\t\t\t\tdata-icon=\"&lt;svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; version=&quot;1.0&quot; width=&quot;728.000000pt&quot; height=&quot;508.000000pt&quot; viewBox=&quot;0 0 728.000000 508.000000&quot; preserveAspectRatio=&quot;xMidYMid meet&quot;&gt;\n\n&lt;g transform=&quot;translate(0.000000,508.000000) scale(0.100000,-0.100000)&quot; fill=&quot;#000000&quot; stroke=&quot;none&quot;&gt;\n&lt;path d=&quot;M2135 5054 c-107 -71 -146 -138 -153 -260 -4 -72 -1 -89 21 -138 114 -250 455 -258 576 -14 59 118 36 265 -57 361 -64 67 -95 77 -229 77 -111 0 -121 -2 -158 -26z&quot;\/&gt;\n&lt;path d=&quot;M3242 4917 c-58 -33 -57 -22 -60 -509 -1 -247 -1 -448 1 -448 2 0 41 22 86 49 45 27 95 53 112 56 l30 7 -3 319 -3 319 1118 0 1117 0 0 -800 0 -800 -1115 0 -1114 0 -3 129 -3 129 -112 -67 -112 -66 0 -115 c-1 -142 10 -185 52 -210 31 -19 62 -20 1290 -20 1157 0 1261 1 1287 17 16 9 33 27 39 40 16 35 16 1891 0 1925 -6 14 -23 32 -39 41 -26 16 -130 17 -1287 17 -989 -1 -1263 -3 -1281 -13z&quot;\/&gt;\n&lt;path d=&quot;M1797 4349 c-86 -20 -180 -90 -231 -172 -45 -74 -47 -91 -53 -728 -6 -606 -6 -607 16 -651 24 -50 80 -88 130 -88 64 0 128 43 150 102 7 17 11 232 11 590 1 310 4 575 7 591 4 20 11 27 28 27 21 0 23 -5 28 -102 3 -57 4 -422 3 -812 -1 -486 1 -709 9 -711 5 -1 44 -7 85 -12 86 -12 165 -43 227 -90 24 -18 45 -33 48 -33 3 0 5 140 5 310 l0 310 38 0 38 0 -1 -358 c0 -324 2 -360 17 -384 10 -15 29 -61 43 -102 42 -124 32 -275 -26 -387 l-18 -36 69 -12 68 -11 51 34 c27 19 72 42 98 52 26 9 53 21 59 26 8 6 10 321 7 1151 -4 950 -2 1145 9 1160 17 22 44 14 52 -16 3 -12 6 -152 6 -310 0 -246 2 -294 16 -323 35 -74 134 -105 210 -66 21 12 161 97 309 190 296 185 315 202 315 281 0 88 -64 151 -154 151 -44 0 -63 -9 -213 -101 -90 -56 -166 -99 -169 -97 -2 3 -4 61 -5 129 0 145 -13 237 -39 296 -29 66 -111 146 -183 179 -57 26 -72 28 -181 29 l-119 0 -91 -227 c-49 -125 -91 -226 -93 -224 -2 2 6 43 18 91 l21 88 -37 71 -36 71 29 54 c17 30 28 60 25 68 -7 17 -178 19 -189 2 -3 -6 6 -38 22 -71 l29 -60 -33 -58 c-36 -65 -38 -93 -17 -190 21 -95 18 -95 -18 0 -18 47 -60 154 -92 238 l-59 152 -100 -1 c-56 -1 -118 -5 -139 -10z&quot;\/&gt;\n&lt;path d=&quot;M4041 4343 c-8 -3 -100 -74 -205 -156 -105 -83 -193 -152 -195 -153 -2 -2 10 -14 26 -28 16 -14 42 -43 57 -65 l28 -39 106 84 c59 46 144 112 189 147 45 34 89 75 98 90 40 67 -32 149 -104 120z&quot;\/&gt;\n&lt;path d=&quot;M1805 2198 c-56 -21 -134 -77 -164 -119 -80 -110 -91 -234 -32 -354 93 -189 342 -245 508 -114 120 96 160 264 95 402 -58 126 -157 190 -297 194 -44 1 -93 -3 -110 -9z&quot;\/&gt;\n&lt;path d=&quot;M3625 2199 c-56 -19 -140 -84 -173 -133 -119 -178 -59 -394 138 -497 38 -20 59 -24 140 -24 85 0 101 3 148 28 247 130 247 477 0 603 -43 23 -69 28 -138 30 -47 2 -98 -2 -115 -7z&quot;\/&gt;\n&lt;path d=&quot;M5284 2197 c-61 -16 -108 -44 -150 -89 -73 -78 -96 -135 -96 -236 0 -188 143 -333 328 -334 109 0 162 21 242 96 168 158 119 438 -94 542 -64 31 -155 40 -230 21z&quot;\/&gt;\n&lt;path d=&quot;M2740 1529 c-60 -17 -143 -80 -182 -139 -116 -172 -49 -410 141 -499 47 -22 70 -26 141 -26 102 0 173 28 240 95 67 67 95 138 95 240 0 71 -4 94 -26 141 -57 120 -166 192 -299 196 -41 1 -91 -3 -110 -8z&quot;\/&gt;\n&lt;path d=&quot;M4400 1518 c-54 -14 -140 -79 -177 -132 -121 -176 -58 -410 136 -504 48 -23 69 -27 141 -27 70 1 95 5 140 26 72 34 135 97 168 167 23 49 27 71 27 147 0 78 -4 97 -28 147 -35 71 -110 140 -183 167 -59 23 -160 27 -224 9z&quot;\/&gt;\n&lt;path d=&quot;M1372 1414 c-107 -28 -203 -110 -251 -214 -24 -52 -26 -69 -35 -282 -5 -124 -6 -233 -3 -242 5 -14 30 -16 167 -16 l160 0 0 200 c0 181 2 200 18 209 11 6 24 6 35 0 15 -9 17 -31 17 -209 l0 -200 229 0 229 0 22 35 c27 44 111 120 175 156 50 29 147 62 217 74 l37 6 -25 48 c-38 73 -59 209 -45 296 7 38 20 88 31 112 l19 43 -472 -1 c-375 0 -483 -3 -525 -15z&quot;\/&gt;\n&lt;path d=&quot;M3312 1378 c30 -76 36 -235 13 -313 -9 -33 -26 -76 -36 -97 l-19 -38 29 0 c92 0 241 -58 326 -127 l49 -40 51 38 c71 54 157 91 252 109 l83 15 -19 37 c-11 19 -27 62 -37 94 -23 79 -15 237 15 314 11 30 21 56 21 58 0 1 -168 2 -374 2 l-374 0 20 -52z&quot;\/&gt;\n&lt;path d=&quot;M4960 1427 c0 -2 9 -24 19 -48 51 -115 47 -278 -8 -396 l-28 -58 66 -11 c139 -24 259 -94 350 -203 l43 -51 199 0 199 0 0 189 c0 104 3 196 6 205 3 9 14 16 23 16 38 0 41 -18 41 -217 l0 -193 163 2 162 3 -3 215 c-1 118 -7 236 -13 262 -24 107 -121 212 -239 260 -54 22 -66 23 -517 26 -255 2 -463 1 -463 -1z&quot;\/&gt;\n&lt;path d=&quot;M2405 749 c-44 -4 -97 -12 -117 -18 -95 -30 -210 -147 -241 -245 -13 -41 -19 -108 -24 -270 l-6 -216 166 0 167 0 0 189 c0 155 3 191 15 201 12 10 18 10 30 0 12 -10 15 -46 15 -201 l0 -189 435 0 435 0 0 195 c0 165 2 197 15 201 8 4 22 1 30 -6 12 -10 15 -46 15 -201 l0 -189 325 0 325 0 0 178 c0 187 7 220 43 206 15 -5 17 -25 17 -195 l0 -189 435 0 435 0 0 190 c0 161 2 192 15 196 8 4 22 1 30 -6 12 -10 15 -46 15 -196 l0 -184 166 0 167 0 -5 218 c-5 193 -8 223 -27 275 -43 109 -134 197 -246 234 -43 15 -112 17 -497 21 -479 4 -555 -1 -643 -42 -104 -47 -202 -172 -224 -286 -7 -37 -9 -39 -10 -15 -2 46 -26 118 -56 164 -64 103 -160 164 -284 181 -81 11 -784 11 -916 -1z&quot;\/&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:\/\/googoes.com\/events\/sticky-band\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02-1-520x397.jpg\" alt=\"Sticky Band\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-04-1-520x397.jpg\" alt=\"Sticky Band\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/single-listing-02a-1-520x397.jpg\" alt=\"Sticky Band\" class=\"slider-image-nl\">\r\n\t\t                <\/div>\r\n            <\/a>\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\">Events<\/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:\/\/googoes.com\/events\/sticky-band\" 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\">Sticky Band                    <div class=\"listing-title-badges-nl\">\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">West Orange, New York<\/p>\t\t\t<div class=\"listing-features-nl\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<!-- Regular Field Template -->\r\n\t\t\t\t\t<div class=\"feature-tag-nl main-detail-_event_date\">\r\n\t\t\t\t\t\t<i class=\"fas fa-check\"><\/i>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span>October 24, 2030 at 12:52 am<\/span>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tooltip-nl\">Event date:<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t<\/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                                                <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=\"Joe&#8217;s Photography\"\r\n\t\tdata-listing-type=\"service\"\r\n\t\tdata-classifieds-price=\"&#36;\"\r\n\t\tdata-friendly-address=\"Sunrise Hwy, New York\"\r\n\t\tdata-address=\"Sunrise Hwy, New York\"\r\n\t\tdata-image=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/slider-bg-01-1-520x397.jpg\"\r\n\t\tdata-longitude=\"-72.56813710664062\"\r\n\t\tdata-latitude=\"40.87392535781701\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\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; version=&quot;1.1&quot; id=&quot;Layer_1&quot; x=&quot;0px&quot; y=&quot;0px&quot; viewBox=&quot;0 0 122.88 117.09&quot; style=&quot;enable-background:new 0 0 122.88 117.09&quot; xml:space=&quot;preserve&quot;&gt;&lt;g&gt;&lt;path class=&quot;st0&quot; d=&quot;M36.82,107.86L35.65,78.4l13.25-0.53c5.66,0.78,11.39,3.61,17.15,6.92l10.29-0.41c4.67,0.1,7.3,4.72,2.89,8 c-3.5,2.79-8.27,2.83-13.17,2.58c-3.37-0.03-3.34,4.5,0.17,4.37c1.22,0.05,2.54-0.29,3.69-0.34c6.09-0.25,11.06-1.61,13.94-6.55 l1.4-3.66l15.01-8.2c7.56-2.83,12.65,4.3,7.23,10.1c-10.77,8.51-21.2,16.27-32.62,22.09c-8.24,5.47-16.7,5.64-25.34,1.01 L36.82,107.86L36.82,107.86z M29.74,62.97h91.9c0.68,0,1.24,0.57,1.24,1.24v5.41c0,0.67-0.56,1.24-1.24,1.24h-91.9 c-0.68,0-1.24-0.56-1.24-1.24v-5.41C28.5,63.53,29.06,62.97,29.74,62.97L29.74,62.97z M79.26,11.23 c25.16,2.01,46.35,23.16,43.22,48.06l-93.57,0C25.82,34.23,47.09,13.05,72.43,11.2V7.14l-4,0c-0.7,0-1.28-0.58-1.28-1.28V1.28 c0-0.7,0.57-1.28,1.28-1.28h14.72c0.7,0,1.28,0.58,1.28,1.28v4.58c0,0.7-0.58,1.28-1.28,1.28h-3.89L79.26,11.23L79.26,11.23 L79.26,11.23z M0,77.39l31.55-1.66l1.4,35.25L1.4,112.63L0,77.39L0,77.39z&quot;\/&gt;&lt;\/g&gt;&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:\/\/googoes.com\/services\/joes-photography\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/slider-bg-01-1-520x397.jpg\" alt=\"Joe&#8217;s Photography\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/slider-bg-02-1-520x397.jpg\" alt=\"Joe&#8217;s Photography\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2019\/02\/1203105-2-1-520x397.jpg\" alt=\"Joe&#8217;s Photography\" class=\"slider-image-nl\">\r\n\t\t                <\/div>\r\n            <\/a>\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\">Services<\/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:\/\/googoes.com\/services\/joes-photography\" 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\">Joe&#8217;s Photography                    <div class=\"listing-title-badges-nl\">\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Sunrise Hwy, New York<\/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>\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-1f0f9cc9 e-flex e-con-boxed e-con e-parent\" data-id=\"1f0f9cc9\" 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-72ef7673 elementor-widget elementor-widget-listeo-taxonomy-tabs\" data-id=\"72ef7673\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-taxonomy-tabs.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\n\t\t<div class=\"services-container\">\n\t\t\t<nav class=\"services-nav\">\n\t\t\t\t\t\t\t\t\t<div class=\"nav-item active\" data-tab=\"tab-0\" data-bg-color=\"#FFF9F0\">\n\t\t\t\t\t\t<div class=\"nav-icon\">\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\t\t\t\t\t\t<i class=\"fas fa-home\"><\/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\t\t<\/div>\n\t\t\t\t\t\t<div class=\"nav-label\">Apartments<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"nav-item \" data-tab=\"tab-1\" data-bg-color=\"#E0F0EB\">\n\t\t\t\t\t\t<div class=\"nav-icon\">\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\t\t\t\t\t\t<i class=\"far fa-user\"><\/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\t\t<\/div>\n\t\t\t\t\t\t<div class=\"nav-label\">Coaching<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"nav-item \" data-tab=\"tab-2\" data-bg-color=\"#EAF1FF\">\n\t\t\t\t\t\t<div class=\"nav-icon\">\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\t\t\t\t\t\t<i class=\"far fa-heart\"><\/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\t\t<\/div>\n\t\t\t\t\t\t<div class=\"nav-label\">Service<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/nav>\n\n\t\t\t<div class=\"content-area\">\n\t\t\t\t\t\t\t\t\t<div class=\"tab-content active\" \n\t\t\t\t\t\t id=\"tab-0\" \n\t\t\t\t\t\t data-bg-color=\"#FFF9F0\"\n\t\t\t\t\t\t style=\"background-color: #FFF9F0;\">\n\t\t\t\t\t\t<div class=\"content-background-image\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/m7lauhbiqx.onrocket.site\/wp-content\/uploads\/2025\/02\/fed6f4-a687-47d6-acfc-7c949399f0fa_0-1.png\" alt=\"Apartment Rentals\">\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"content-card\">\n\t\t\t\t\t\t\t<h2 class=\"content-title\">Apartment Rentals<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-description\">Discover our premium apartment listings with modern amenities.<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ul class=\"content-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"content-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"check-icon\">\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\t\t\t\t\t\t\t\t\t\t\t<i class=\"fas fa-check\"><\/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\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span>Modern kitchen facilities<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"content-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"check-icon\">\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\t\t\t\t\t\t\t\t\t\t\t<i class=\"fas fa-check\"><\/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\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span>High-speed internet included<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"content-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"check-icon\">\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\t\t\t\t\t\t\t\t\t\t\t<i class=\"fas fa-check\"><\/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\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span>24\/7 security service<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-button-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-button\" >\n\t\t\t\t\t\t\t\t\t\t<span class=\"button-text\">Learn More<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"button-icon\">\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<i class=\"fas fa-arrow-right\"><\/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<\/span>\n\t\t\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\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"tab-content \" \n\t\t\t\t\t\t id=\"tab-1\" \n\t\t\t\t\t\t data-bg-color=\"#E0F0EB\"\n\t\t\t\t\t\t style=\"background-color: #E0F0EB;\">\n\t\t\t\t\t\t<div class=\"content-background-image\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/m7lauhbiqx.onrocket.site\/wp-content\/uploads\/2025\/02\/z356g35bx4658-2-1.png\" alt=\"Business Coaching\">\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"content-card\">\n\t\t\t\t\t\t\t<h2 class=\"content-title\">Business Coaching<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-description\">Connect with certified coaches to accelerate your professional growth and success.<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ul class=\"content-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"content-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"check-icon\">\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\t\t\t\t\t\t\t\t\t\t\t<i class=\"fas fa-check\"><\/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\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span>1-on-1 personalized coaching sessions<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"content-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"check-icon\">\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\t\t\t\t\t\t\t\t\t\t\t<i class=\"fas fa-check\"><\/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\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span>Goal tracking and progress monitoring<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"content-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"check-icon\">\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\t\t\t\t\t\t\t\t\t\t\t<i class=\"fas fa-check\"><\/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\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span>Flexible scheduling and video consultations<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"tab-content \" \n\t\t\t\t\t\t id=\"tab-2\" \n\t\t\t\t\t\t data-bg-color=\"#EAF1FF\"\n\t\t\t\t\t\t style=\"background-color: #EAF1FF;\">\n\t\t\t\t\t\t<div class=\"content-background-image\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/m7lauhbiqx.onrocket.site\/wp-content\/uploads\/2025\/08\/bonkers_image_energetic_group_fitness-1.jpeg\" alt=\"Fitness &amp; Wellness\">\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"content-card\">\n\t\t\t\t\t\t\t<h2 class=\"content-title\">Fitness &amp; Wellness<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"content-description\">Book personal trainers, group classes, and wellness sessions to achieve your health goals.\n<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ul class=\"content-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"content-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"check-icon\">\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\t\t\t\t\t\t\t\t\t\t\t<i class=\"fas fa-check\"><\/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\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span>Certified trainers and flexible scheduling<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"content-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"check-icon\">\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\t\t\t\t\t\t\t\t\t\t\t<i class=\"fas fa-check\"><\/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\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span>Group classes and personal training options<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"content-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"check-icon\">\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\t\t\t\t\t\t\t\t\t\t\t<i class=\"fas fa-check\"><\/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\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<span>Progress tracking and nutrition guidance<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/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-297671fb e-flex e-con-boxed e-con e-parent\" data-id=\"297671fb\" 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-5906b78 e-con-full e-flex e-con e-child\" data-id=\"5906b78\" data-element_type=\"container\" data-e-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\" 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-3adc7de4 elementor-widget elementor-widget-text-editor\" data-id=\"3adc7de4\" 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>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-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 \">   <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-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<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\" 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-183bcd9e e-transform elementor-widget elementor-widget-image\" data-id=\"183bcd9e\" data-element_type=\"widget\" data-e-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=\"1456\" height=\"816\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1.png\" class=\"attachment-1536x1536 size-1536x1536 wp-image-45\" alt=\"\" srcset=\"https:\/\/googoes.com\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1.png 1456w, https:\/\/googoes.com\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1-600x336.png 600w, https:\/\/googoes.com\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1-300x168.png 300w, https:\/\/googoes.com\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1-1024x574.png 1024w, https:\/\/googoes.com\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1-768x430.png 768w, https:\/\/googoes.com\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1-590x331.png 590w, https:\/\/googoes.com\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1-1195x670.png 1195w, https:\/\/googoes.com\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1-577x323.png 577w, https:\/\/googoes.com\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1-1200x673.png 1200w\" sizes=\"(max-width: 1456px) 100vw, 1456px\" \/>\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-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"123\" height=\"106\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2024\/02\/555-1-1.svg\" class=\"attachment-large size-large wp-image-51\" 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-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"158\" height=\"108\" src=\"https:\/\/googoes.com\/wp-content\/uploads\/2024\/02\/666-1-1.svg\" class=\"attachment-large size-large wp-image-52\" 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-e-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-e-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-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 \"> 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-e-type=\"widget\" data-widget_type=\"listeo-reviews-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\tYou need to have at least couple reviews on your listings to use this widget.\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-119","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/googoes.com\/index.php?rest_route=\/wp\/v2\/pages\/119","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/googoes.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/googoes.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/googoes.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/googoes.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=119"}],"version-history":[{"count":0,"href":"https:\/\/googoes.com\/index.php?rest_route=\/wp\/v2\/pages\/119\/revisions"}],"wp:attachment":[{"href":"https:\/\/googoes.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=119"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}