{"id":120,"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:\/\/demo.lmi-listeo.online\/ckb\/home-2\/","title":{"rendered":"Home 2"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"120\" class=\"elementor elementor-120\" data-elementor-post-type=\"page\">\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 = true || \n                                  document.querySelector('link[href*=\"translatepress\"]') !== null ||\n                                  document.querySelector('script[src*=\"translatepress\"]') !== null;\n\n    if (isTranslatePressActive) {\n        \/\/ Use fade animation for TranslatePress compatibility\n        function createWordSwapper(element, words, options = {}) {\n            const defaults = {\n                swapDelay: 4000,\n                fadeSpeed: 500,\n                startDelay: 1000,\n                loop: true,\n                showCursor: true\n            };\n            \n            const settings = { ...defaults, ...options };\n            let currentIndex = 0;\n            let isRunning = false;\n            \n            \/\/ Add cursor if enabled\n            if (settings.showCursor) {\n                element.style.position = 'relative';\n                element.innerHTML = words[0] + '<span class=\"custom-cursor\">|<\/span>';\n                \n                \/\/ Add cursor blinking CSS if not already added\n                if (!document.querySelector('#word-swapper-styles')) {\n                    const style = document.createElement('style');\n                    style.id = 'word-swapper-styles';\n                    style.textContent = `\n                        .custom-cursor {\n                            animation: blink 1s infinite;\n                        }\n                        @keyframes blink {\n                            0%, 50% { opacity: 1; }\n                            51%, 100% { opacity: 0; }\n                        }\n\t\t\t\t\t\t\tbody[class*=\"translatepress-\"] .custom-cursor { display: none !important;}\n                    `;\n                    document.head.appendChild(style);\n                }\n            } else {\n                element.textContent = words[0];\n            }\n            \n            function swapWord() {\n                if (!isRunning) return;\n                \n                \/\/ Fade out\n                element.style.transition = `opacity ${settings.fadeSpeed}ms ease`;\n                element.style.opacity = '0';\n                \n                setTimeout(() => {\n                    \/\/ Change word\n                    currentIndex = (currentIndex + 1) % words.length;\n                    const newWord = words[currentIndex];\n                    \n                    if (settings.showCursor) {\n                        element.innerHTML = newWord + '<span class=\"custom-cursor\">|<\/span>';\n                    } else {\n                        element.textContent = newWord;\n                    }\n                    \n                    \/\/ Fade in\n                    element.style.opacity = '1';\n                    \n                    \/\/ Continue loop if enabled\n                    if (settings.loop || currentIndex < words.length - 1) {\n                        setTimeout(swapWord, settings.swapDelay);\n                    }\n                }, settings.fadeSpeed);\n            }\n            \n            \/\/ Start the animation\n            setTimeout(() => {\n                isRunning = true;\n                setTimeout(swapWord, settings.swapDelay);\n            }, settings.startDelay);\n            \n            return {\n                start: () => { isRunning = true; swapWord(); },\n                stop: () => { isRunning = false; },\n                destroy: () => {\n                    isRunning = false;\n                    element.style = '';\n                    element.textContent = words[0];\n                }\n            };\n        }\n\n        \/\/ Initialize the word swapper\n        document.addEventListener('DOMContentLoaded', function() {\n            const typedElement = document.querySelector('.typed-words');\n            if (typedElement) {\n                const words = [\"visit\",\"book\",\"review\",\"trust\"];\n                \n                createWordSwapper(typedElement, words, {\n                    swapDelay: 3000,\n                    fadeSpeed: 300,\n                    startDelay: 700,\n                    loop: true,\n                    showCursor: true\n                });\n            }\n        });\n\n    } else {\n        \/\/ Use original typed.js for the typing effect when TranslatePress is not active\n                \/*!\n         * typed.js - A JavaScript Typing Animation Library\n         * Author: Matt Boldt <me@mattboldt.com>\n         * Version: v2.0.9\n         *\/\n        (function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.Typed=e():t.Typed=e()})(this,function(){return function(t){function e(n){if(s[n])return s[n].exports;var i=s[n]={exports:{},id:n,loaded:!1};return t[n].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var s={};return e.m=t,e.c=s,e.p=\"\",e(0)}([function(t,e,s){\"use strict\";function n(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")}Object.defineProperty(e,\"__esModule\",{value:!0});var i=function(){function t(t,e){for(var s=0;s<e.length;s++){var n=e[s];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,s,n){return s&&t(e.prototype,s),n&&t(e,n),e}}(),r=s(1),o=s(3),a=function(){function t(e,s){n(this,t),r.initializer.load(this,s,e),this.begin()}return i(t,[{key:\"toggle\",value:function(){this.pause.status?this.start():this.stop()}},{key:\"stop\",value:function(){this.typingComplete||this.pause.status||(this.toggleBlinking(!0),this.pause.status=!0,this.options.onStop(this.arrayPos,this))}},{key:\"start\",value:function(){this.typingComplete||this.pause.status&&(this.pause.status=!1,this.pause.typewrite?this.typewrite(this.pause.curString,this.pause.curStrPos):this.backspace(this.pause.curString,this.pause.curStrPos),this.options.onStart(this.arrayPos,this))}},{key:\"destroy\",value:function(){this.reset(!1),this.options.onDestroy(this)}},{key:\"reset\",value:function(){var t=arguments.length<=0||void 0===arguments[0]||arguments[0];clearInterval(this.timeout),this.replaceText(\"\"),this.cursor&&this.cursor.parentNode&&(this.cursor.parentNode.removeChild(this.cursor),this.cursor=null),this.strPos=0,this.arrayPos=0,this.curLoop=0,t&&(this.insertCursor(),this.options.onReset(this),this.begin())}},{key:\"begin\",value:function(){var t=this;this.typingComplete=!1,this.shuffleStringsIfNeeded(this),this.insertCursor(),this.bindInputFocusEvents&&this.bindFocusEvents(),this.timeout=setTimeout(function(){t.currentElContent&&0!==t.currentElContent.length?t.backspace(t.currentElContent,t.currentElContent.length):t.typewrite(t.strings[t.sequence[t.arrayPos]],t.strPos)},this.startDelay)}},{key:\"typewrite\",value:function(t,e){var s=this;this.fadeOut&&this.el.classList.contains(this.fadeOutClass)&&(this.el.classList.remove(this.fadeOutClass),this.cursor&&this.cursor.classList.remove(this.fadeOutClass));var n=this.humanizer(this.typeSpeed),i=1;return this.pause.status===!0?void this.setPauseStatus(t,e,!0):void(this.timeout=setTimeout(function(){e=o.htmlParser.typeHtmlChars(t,e,s);var n=0,r=t.substr(e);if(\"^\"===r.charAt(0)&&\/^\\^\\d+\/.test(r)){var a=1;r=\/\\d+\/.exec(r)[0],a+=r.length,n=parseInt(r),s.temporaryPause=!0,s.options.onTypingPaused(s.arrayPos,s),t=t.substring(0,e)+t.substring(e+a),s.toggleBlinking(!0)}if(\"`\"===r.charAt(0)){for(;\"`\"!==t.substr(e+i).charAt(0)&&(i++,!(e+i>t.length)););var u=t.substring(0,e),l=t.substring(u.length+1,e+i),c=t.substring(e+i+1);t=u+l+c,i--}s.timeout=setTimeout(function(){s.toggleBlinking(!1),e===t.length?s.doneTyping(t,e):s.keepTyping(t,e,i),s.temporaryPause&&(s.temporaryPause=!1,s.options.onTypingResumed(s.arrayPos,s))},n)},n))}},{key:\"keepTyping\",value:function(t,e,s){0===e&&(this.toggleBlinking(!1),this.options.preStringTyped(this.arrayPos,this)),e+=s;var n=t.substr(0,e);this.replaceText(n),this.typewrite(t,e)}},{key:\"doneTyping\",value:function(t,e){var s=this;this.options.onStringTyped(this.arrayPos,this),this.toggleBlinking(!0),this.arrayPos===this.strings.length-1&&(this.complete(),this.loop===!1||this.curLoop===this.loopCount)||(this.timeout=setTimeout(function(){s.backspace(t,e)},this.backDelay))}},{key:\"backspace\",value:function(t,e){var s=this;if(this.pause.status===!0)return void this.setPauseStatus(t,e,!0);if(this.fadeOut)return this.initFadeOut();this.toggleBlinking(!1);var n=this.humanizer(this.backSpeed);this.timeout=setTimeout(function(){e=o.htmlParser.backSpaceHtmlChars(t,e,s);var n=t.substr(0,e);if(s.replaceText(n),s.smartBackspace){var i=s.strings[s.arrayPos+1];i&&n===i.substr(0,e)?s.stopNum=e:s.stopNum=0}e>s.stopNum?(e--,s.backspace(t,e)):e<=s.stopNum&&(s.arrayPos++,s.arrayPos===s.strings.length?(s.arrayPos=0,s.options.onLastStringBackspaced(),s.shuffleStringsIfNeeded(),s.begin()):s.typewrite(s.strings[s.sequence[s.arrayPos]],e))},n)}},{key:\"complete\",value:function(){this.options.onComplete(this),this.loop?this.curLoop++:this.typingComplete=!0}},{key:\"setPauseStatus\",value:function(t,e,s){this.pause.typewrite=s,this.pause.curString=t,this.pause.curStrPos=e}},{key:\"toggleBlinking\",value:function(t){this.cursor&&(this.pause.status||this.cursorBlinking!==t&&(this.cursorBlinking=t,t?this.cursor.classList.add(\"typed-cursor--blink\"):this.cursor.classList.remove(\"typed-cursor--blink\")))}},{key:\"humanizer\",value:function(t){return Math.round(Math.random()*t\/2)+t}},{key:\"shuffleStringsIfNeeded\",value:function(){this.shuffle&&(this.sequence=this.sequence.sort(function(){return Math.random()-.5}))}},{key:\"initFadeOut\",value:function(){var t=this;return this.el.className+=\" \"+this.fadeOutClass,this.cursor&&(this.cursor.className+=\" \"+this.fadeOutClass),setTimeout(function(){t.arrayPos++,t.replaceText(\"\"),t.strings.length>t.arrayPos?t.typewrite(t.strings[t.sequence[t.arrayPos]],0):(t.typewrite(t.strings[0],0),t.arrayPos=0)},this.fadeOutDelay)}},{key:\"replaceText\",value:function(t){this.attr?this.el.setAttribute(this.attr,t):this.isInput?this.el.value=t:\"html\"===this.contentType?this.el.innerHTML=t:this.el.textContent=t}},{key:\"bindFocusEvents\",value:function(){var t=this;this.isInput&&(this.el.addEventListener(\"focus\",function(e){t.stop()}),this.el.addEventListener(\"blur\",function(e){t.el.value&&0!==t.el.value.length||t.start()}))}},{key:\"insertCursor\",value:function(){this.showCursor&&(this.cursor||(this.cursor=document.createElement(\"span\"),this.cursor.className=\"typed-cursor\",this.cursor.innerHTML=this.cursorChar,this.el.parentNode&&this.el.parentNode.insertBefore(this.cursor,this.el.nextSibling)))}}]),t}();e[\"default\"]=a,t.exports=e[\"default\"]},function(t,e,s){\"use strict\";function n(t){return t&&t.__esModule?t:{\"default\":t}}function i(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")}Object.defineProperty(e,\"__esModule\",{value:!0});var r=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var s=arguments[e];for(var n in s)Object.prototype.hasOwnProperty.call(s,n)&&(t[n]=s[n])}return t},o=function(){function t(t,e){for(var s=0;s<e.length;s++){var n=e[s];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,s,n){return s&&t(e.prototype,s),n&&t(e,n),e}}(),a=s(2),u=n(a),l=function(){function t(){i(this,t)}return o(t,[{key:\"load\",value:function(t,e,s){if(\"string\"==typeof s?t.el=document.querySelector(s):t.el=s,t.options=r({},u[\"default\"],e),t.isInput=\"input\"===t.el.tagName.toLowerCase(),t.attr=t.options.attr,t.bindInputFocusEvents=t.options.bindInputFocusEvents,t.showCursor=!t.isInput&&t.options.showCursor,t.cursorChar=t.options.cursorChar,t.cursorBlinking=!0,t.elContent=t.attr?t.el.getAttribute(t.attr):t.el.textContent,t.contentType=t.options.contentType,t.typeSpeed=t.options.typeSpeed,t.startDelay=t.options.startDelay,t.backSpeed=t.options.backSpeed,t.smartBackspace=t.options.smartBackspace,t.backDelay=t.options.backDelay,t.fadeOut=t.options.fadeOut,t.fadeOutClass=t.options.fadeOutClass,t.fadeOutDelay=t.options.fadeOutDelay,t.isPaused=!1,t.strings=t.options.strings.map(function(t){return t.trim()}),\"string\"==typeof t.options.stringsElement?t.stringsElement=document.querySelector(t.options.stringsElement):t.stringsElement=t.options.stringsElement,t.stringsElement){t.strings=[],t.stringsElement.style.display=\"none\";var n=Array.prototype.slice.apply(t.stringsElement.children),i=n.length;if(i)for(var o=0;o<i;o+=1){var a=n[o];t.strings.push(a.innerHTML.trim())}}t.strPos=0,t.arrayPos=0,t.stopNum=0,t.loop=t.options.loop,t.loopCount=t.options.loopCount,t.curLoop=0,t.shuffle=t.options.shuffle,t.sequence=[],t.pause={status:!1,typewrite:!0,curString:\"\",curStrPos:0},t.typingComplete=!1;for(var o in t.strings)t.sequence[o]=o;t.currentElContent=this.getCurrentElContent(t),t.autoInsertCss=t.options.autoInsertCss,this.appendAnimationCss(t)}},{key:\"getCurrentElContent\",value:function(t){var e=\"\";return e=t.attr?t.el.getAttribute(t.attr):t.isInput?t.el.value:\"html\"===t.contentType?t.el.innerHTML:t.el.textContent}},{key:\"appendAnimationCss\",value:function(t){var e=\"data-typed-js-css\";if(t.autoInsertCss&&(t.showCursor||t.fadeOut)&&!document.querySelector(\"[\"+e+\"]\")){var s=document.createElement(\"style\");s.type=\"text\/css\",s.setAttribute(e,!0);var n=\"\";t.showCursor&&(n+=\"\\n        .typed-cursor{\\n          opacity: 1;\\n        }\\n        .typed-cursor.typed-cursor--blink{\\n          animation: typedjsBlink 0.7s infinite;\\n          -webkit-animation: typedjsBlink 0.7s infinite;\\n                  animation: typedjsBlink 0.7s infinite;\\n        }\\n        @keyframes typedjsBlink{\\n          50% { opacity: 0.0; }\\n        }\\n        @-webkit-keyframes typedjsBlink{\\n          0% { opacity: 1; }\\n          50% { opacity: 0.0; }\\n          100% { opacity: 1; }\\n        }\\n      \"),t.fadeOut&&(n+=\"\\n        .typed-fade-out{\\n          opacity: 0;\\n          transition: opacity .25s;\\n        }\\n        .typed-cursor.typed-cursor--blink.typed-fade-out{\\n          -webkit-animation: 0;\\n          animation: 0;\\n        }\\n      \"),0!==s.length&&(s.innerHTML=n,document.body.appendChild(s))}}}]),t}();e[\"default\"]=l;var c=new l;e.initializer=c},function(t,e){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var s={strings:[\"These are the default values...\",\"You know what you should do?\",\"Use your own!\",\"Have a great day!\"],stringsElement:null,typeSpeed:0,startDelay:0,backSpeed:0,smartBackspace:!0,shuffle:!1,backDelay:700,fadeOut:!1,fadeOutClass:\"typed-fade-out\",fadeOutDelay:500,loop:!1,loopCount:1\/0,showCursor:!0,cursorChar:\"|\",autoInsertCss:!0,attr:null,bindInputFocusEvents:!1,contentType:\"html\",onComplete:function(t){},preStringTyped:function(t,e){},onStringTyped:function(t,e){},onLastStringBackspaced:function(t){},onTypingPaused:function(t,e){},onTypingResumed:function(t,e){},onReset:function(t){},onStop:function(t,e){},onStart:function(t,e){},onDestroy:function(t){}};e[\"default\"]=s,t.exports=e[\"default\"]},function(t,e){\"use strict\";function s(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")}Object.defineProperty(e,\"__esModule\",{value:!0});var n=function(){function t(t,e){for(var s=0;s<e.length;s++){var n=e[s];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,s,n){return s&&t(e.prototype,s),n&&t(e,n),e}}(),i=function(){function t(){s(this,t)}return n(t,[{key:\"typeHtmlChars\",value:function(t,e,s){if(\"html\"!==s.contentType)return e;var n=t.substr(e).charAt(0);if(\"<\"===n||\"&\"===n){var i=\"\";for(i=\"<\"===n?\">\":\";\";t.substr(e+1).charAt(0)!==i&&(e++,!(e+1>t.length)););e++}return e}},{key:\"backSpaceHtmlChars\",value:function(t,e,s){if(\"html\"!==s.contentType)return e;var n=t.substr(e).charAt(0);if(\">\"===n||\";\"===n){var i=\"\";for(i=\">\"===n?\"<\":\"&\";t.substr(e-1).charAt(0)!==i&&(e--,!(e<0)););e--}return e}}]),t}();e[\"default\"]=i;var r=new i;e.htmlParser=r}])});\n\n        \/\/ Initialize original typed.js\n        document.addEventListener('DOMContentLoaded', function() {\n            const typedElement = document.querySelector('.typed-words');\n            if (typedElement) {\n                var typed = new Typed('.typed-words', {\n                    strings: [\"visit\",\"book\",\"review\",\"trust\"],\n                    typeSpeed: 70,\n                    backSpeed: 80,\n                    backDelay: 4000,\n                    startDelay: 1000,\n                    loop: true,\n                    showCursor: true\n                });\n            }\n        });\n    }\n    <\/script>\n    \n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-43d86353 e-flex e-con-boxed e-con e-child\" data-id=\"43d86353\" data-element_type=\"container\" 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:\/\/demo.lmi-listeo.online\/ckb\/listing\/bloo-restaurant\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/bloo-restaurant-da86db8ed8b4d8aad8aed8a7d986db95db8c-d8a8d984d988d988-1.jpg\" alt=\"BLOO Restaurant\" class=\"listing-thumbnail\"><\/a>\n                            <h4>BLOO 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=\"1\" href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/khashoka-restaurant\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/671503492_122289439244020073_5210983899944885909_n-1200x1500.jpg\" alt=\"Khashoka Restaurant\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Khashoka Restaurant<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing\/eln-london-erbil-avenue\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/eln-london-erbil-avenue-1.jpg\" alt=\"EL&amp;N London &#8211; Erbil Avenue\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>EL&amp;N London &#8211; Erbil Avenue<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/05\/605458239_17850805317609713_2136499238976893678_n.webp\" alt=\"Fontana Di Trevi\" class=\"listing-thumbnail\"><\/a>\n                            <h4>Fontana Di Trevi<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing\/hiror\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/658360755_18096686501475383_8531200628343592810_n-1200x1501.jpg\" alt=\"Hiror\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Hiror<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing\/huqqabaz\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/530071018_18230881324288078_682397909082478544_n.jpg\" alt=\"HuQQabaz\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>HuQQabaz<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing-category\/cafes\/\" 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>Cafes<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" height=\"800px\" width=\"800px\" version=\"1.1\" id=\"Layer_1\" viewBox=\"-51.2 -51.2 614.40 614.40\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g> <g> <path d=\"M396.8,486.4h-384c-7.074,0-12.8,5.726-12.8,12.8c0,7.074,5.726,12.8,12.8,12.8h384c7.074,0,12.8-5.726,12.8-12.8 C409.6,492.126,403.874,486.4,396.8,486.4z\"\/> <\/g> <\/g> <g> <g> <path d=\"M422.4,204.8c-4.395,0-8.644,0.503-12.8,1.263V204.8c0-14.14-11.46-25.6-25.6-25.6H25.6C11.46,179.2,0,190.66,0,204.8 v76.8c0,72.482,37.265,138.103,99.678,175.556c3.977,2.381,8.533,3.644,13.167,3.644h183.91c4.642,0,9.19-1.263,13.167-3.644 c33.434-20.062,59.341-48.358,76.484-81.314C397.44,380.868,409.481,384,422.4,384c49.408,0,89.6-40.192,89.6-89.6 S471.808,204.8,422.4,204.8z M384,281.6c0,65.306-35.046,122.283-87.245,153.6h-183.91C60.646,403.883,25.6,346.906,25.6,281.6 c0-27.529,0-76.8,0-76.8H384C384,204.8,384,254.071,384,281.6z M422.4,358.4c-9.199,0-17.886-2.048-25.788-5.538 c8.303-22.409,12.988-46.37,12.988-71.262v-49.604c4.122-0.956,8.371-1.596,12.8-1.596c35.345,0,64,28.655,64,64 C486.4,329.745,457.745,358.4,422.4,358.4z\"\/> <\/g> <\/g> <g> <g> <path d=\"M194.654,0h-28.134c12.348,22.135,2.569,41.685-14.558,70.221c-14.31,23.842-31.113,51.994-20.745,83.379h28.134 c-12.348-22.135-2.569-41.685,14.558-70.221C188.22,59.529,205.022,31.377,194.654,0z\"\/> <\/g> <\/g> <g> <g> <path d=\"M250.061,0h-28.134c12.348,22.135,2.569,41.685-14.558,70.221c-14.31,23.851-31.112,52.002-20.736,83.379h28.134 c-12.348-22.135-2.569-41.685,14.558-70.221C243.635,59.529,260.437,31.377,250.061,0z\"\/> <\/g> <\/g> <g> <g> <path d=\"M306.227,0h-28.134c12.348,22.135,2.568,41.685-14.558,70.221c-14.31,23.851-31.121,52.002-20.745,83.379h28.134 c-12.348-22.135-2.569-41.685,14.558-70.221C299.793,59.529,316.595,31.377,306.227,0z\"\/> <\/g> <\/g> <\/g>\n\n<\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t0\t\t\t\t\t\t\t\t\t\t\tListings\n\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-right\">\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18.925\" height=\"12.091\" viewBox=\"0 0 18.925 12.091\">\n\t\t\t\t\t\t\t\t\t<g id=\"square-filled\" transform=\"translate(0 0)\">\n\t\t\t\t\t\t\t\t\t\t<path id=\"right-arrow\" d=\"M175.2,39.153l5.542,5.494.031.028a.518.518,0,0,1,.153.338v.065a.518.518,0,0,1-.153.338l-.027.023-5.546,5.5a.528.528,0,0,1-.743,0,.517.517,0,0,1,0-.737l4.735-4.7H162.525a.521.521,0,1,1,0-1.042h16.543l-4.612-4.573a.517.517,0,0,1,0-.737A.528.528,0,0,1,175.2,39.153Zm5.261,5.831-5.632,5.586,5.573-5.524v0l-.031-.028-.032-.031Z\" transform=\"translate(-162 -39)\" fill=\"#252528\" \/>\n\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"taxonomy-box-bottom\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/05\/ChatGPT-Image-May-24-2026-03_28_02-PM-670x670.png\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing-category\/fitness\/\" class=\"taxonomy-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"taxonomy-box-top\">\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-left\">\n\t\t\t\t\t\t\t\t<h4>Fitness<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"800px\" height=\"800px\" viewBox=\"-2.4 -2.4 28.80 28.80\" fill=\"none\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 7.5H7.5V11.25V12.75V16.5H6V7.5ZM9 12.75V18H4.5V16.5H1.5V7.5H4.5V6H9V11.25L15 11.25V6H19.5V7.5L22.5 7.5V16.5H19.5V18H15V12.75L9 12.75ZM16.5 12.75L16.5 16.5H18L18 7.5L16.5 7.5L16.5 11.25V12.75ZM4.5 9H3V15H4.5V9ZM19.5 15H21V9H19.5V15Z\" fill=\"#1f3b5f\"\/> <\/g>\n\n<\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t0\t\t\t\t\t\t\t\t\t\t\tListings\n\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"taxonomy-box-right\">\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18.925\" height=\"12.091\" viewBox=\"0 0 18.925 12.091\">\n\t\t\t\t\t\t\t\t\t<g id=\"square-filled\" transform=\"translate(0 0)\">\n\t\t\t\t\t\t\t\t\t\t<path id=\"right-arrow\" d=\"M175.2,39.153l5.542,5.494.031.028a.518.518,0,0,1,.153.338v.065a.518.518,0,0,1-.153.338l-.027.023-5.546,5.5a.528.528,0,0,1-.743,0,.517.517,0,0,1,0-.737l4.735-4.7H162.525a.521.521,0,1,1,0-1.042h16.543l-4.612-4.573a.517.517,0,0,1,0-.737A.528.528,0,0,1,175.2,39.153Zm5.261,5.831-5.632,5.586,5.573-5.524v0l-.031-.028-.032-.031Z\" transform=\"translate(-162 -39)\" fill=\"#252528\" \/>\n\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"taxonomy-box-bottom\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/05\/ChatGPT-Image-May-24-2026-03_28_17-PM-670x670.png\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing-category\/restaurants\/\" 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>Restaurants<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" height=\"800px\" width=\"800px\" version=\"1.1\" id=\"Layer_1\" viewBox=\"-51.2 -51.2 614.40 614.40\" xml:space=\"preserve\" transform=\"rotate(0)\" stroke=\"#1f3b5f\" stroke-width=\"0.0051199900000000005\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g> <g> <path d=\"M256.747,86.809C149.033,86.809,61.4,174.442,61.4,282.156c0,107.715,87.633,195.348,195.347,195.348 c107.715,0,195.347-87.633,195.347-195.348C452.094,174.441,364.462,86.809,256.747,86.809z M256.747,462.295 c-99.328,0-180.138-80.81-180.138-180.139s80.81-180.138,180.138-180.138c99.329,0,180.138,80.809,180.138,180.138 S356.076,462.295,256.747,462.295z\"\/> <\/g> <\/g> <g> <g> <path d=\"M256.748,155.943c-69.594,0-126.214,56.619-126.214,126.213c0,11.232,1.478,22.375,4.392,33.119l14.678-3.983 c-2.564-9.445-3.863-19.249-3.863-29.137c0-61.208,49.797-111.004,111.005-111.004c17.825,0,34.844,4.093,50.584,12.167 l6.941-13.534C296.364,160.6,277.01,155.943,256.748,155.943z\"\/> <\/g> <\/g> <g> <g> <path d=\"M156.761,330.436l-13.691,6.624c7.979,16.492,19.726,31.348,33.97,42.961l9.611-11.787 C174.116,358.013,163.78,344.943,156.761,330.436z\"\/> <\/g> <\/g> <g> <g> <path d=\"M333.721,182.124l-9.282,12.046c27.526,21.212,43.314,53.281,43.314,87.984c0,61.208-49.797,111.005-111.005,111.005 c-21.791,0-42.88-6.309-60.991-18.241l-8.368,12.699c20.602,13.575,44.585,20.751,69.359,20.751 c69.595,0,126.214-56.619,126.214-126.214C382.961,242.698,365.013,206.238,333.721,182.124z\"\/> <\/g> <\/g> <g> <g> <path d=\"M63.945,48.058v88.065H47.181V48.058H31.972v88.065H15.209V48.058H0v88.065v13.111v2.098h0.057 c0.96,18.283,14.386,33.312,31.916,36.738v281.83h15.209V188.07c17.529-3.427,30.955-18.455,31.916-36.739h0.057v-2.098v-13.111 V48.058H63.945z M39.577,173.601c-12.73,0-23.211-9.813-24.278-22.27h48.557C62.787,163.788,52.306,173.601,39.577,173.601z\"\/> <\/g> <\/g> <g> <g> <path d=\"M499.327,42.243c-22.486,13.731-36.456,38.628-36.456,64.975V273.63h33.919v196.269h15.209v-196.27v-92.423V34.496 L499.327,42.243z M496.791,181.205v77.215h-18.711V107.217c0-16.624,6.948-32.525,18.711-43.896V181.205z\"\/> <\/g> <\/g> <\/g>\n\n<\/svg>\t\t\t\t\t\t\t\t\t\t<\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"category-box-counter\">\n\t\t\t\t\t\t\t\t\t\t\t6\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:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/05\/ChatGPT-Image-May-24-2026-03_28_32-PM-670x670.png\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5933e0d e-flex e-con-boxed e-con e-parent\" data-id=\"5933e0d\" data-element_type=\"container\" 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\" \n\t\tdata-title=\"BLOO Restaurant\"\n\t\tdata-listing-type=\"service\"\n\t\tdata-classifieds-price=\"\"\n\t\tdata-friendly-address=\"Empire World, Erbil, KRI\"\n\t\tdata-address=\"Empire World, Erbil, KRI\"\n\t\tdata-image=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/bloo-restaurant-da86db8ed8b4d8aad8aed8a7d986db95db8c-d8a8d984d988d988-1-520x397.jpg\"\n\t\tdata-longitude=\"43.9714065\"\n\t\tdata-latitude=\"36.2002283\"\n\t\t\t\t\tdata-rating=\"3.6\"\n\t\t\tdata-reviews=\"1\"\n\t\t\t\tdata-icon=\"&lt;svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; xmlns:xlink=&quot;http:\/\/www.w3.org\/1999\/xlink&quot; fill=&quot;#1f3b5f&quot; height=&quot;800px&quot; width=&quot;800px&quot; version=&quot;1.1&quot; id=&quot;Layer_1&quot; viewBox=&quot;-51.2 -51.2 614.40 614.40&quot; xml:space=&quot;preserve&quot; transform=&quot;rotate(0)&quot; stroke=&quot;#1f3b5f&quot; stroke-width=&quot;0.0051199900000000005&quot;&gt;\n\n&lt;g id=&quot;SVGRepo_bgCarrier&quot; stroke-width=&quot;0&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_tracerCarrier&quot; stroke-linecap=&quot;round&quot; stroke-linejoin=&quot;round&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_iconCarrier&quot;&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.747,86.809C149.033,86.809,61.4,174.442,61.4,282.156c0,107.715,87.633,195.348,195.347,195.348 c107.715,0,195.347-87.633,195.347-195.348C452.094,174.441,364.462,86.809,256.747,86.809z M256.747,462.295 c-99.328,0-180.138-80.81-180.138-180.139s80.81-180.138,180.138-180.138c99.329,0,180.138,80.809,180.138,180.138 S356.076,462.295,256.747,462.295z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.748,155.943c-69.594,0-126.214,56.619-126.214,126.213c0,11.232,1.478,22.375,4.392,33.119l14.678-3.983 c-2.564-9.445-3.863-19.249-3.863-29.137c0-61.208,49.797-111.004,111.005-111.004c17.825,0,34.844,4.093,50.584,12.167 l6.941-13.534C296.364,160.6,277.01,155.943,256.748,155.943z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M156.761,330.436l-13.691,6.624c7.979,16.492,19.726,31.348,33.97,42.961l9.611-11.787 C174.116,358.013,163.78,344.943,156.761,330.436z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M333.721,182.124l-9.282,12.046c27.526,21.212,43.314,53.281,43.314,87.984c0,61.208-49.797,111.005-111.005,111.005 c-21.791,0-42.88-6.309-60.991-18.241l-8.368,12.699c20.602,13.575,44.585,20.751,69.359,20.751 c69.595,0,126.214-56.619,126.214-126.214C382.961,242.698,365.013,206.238,333.721,182.124z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M63.945,48.058v88.065H47.181V48.058H31.972v88.065H15.209V48.058H0v88.065v13.111v2.098h0.057 c0.96,18.283,14.386,33.312,31.916,36.738v281.83h15.209V188.07c17.529-3.427,30.955-18.455,31.916-36.739h0.057v-2.098v-13.111 V48.058H63.945z M39.577,173.601c-12.73,0-23.211-9.813-24.278-22.27h48.557C62.787,163.788,52.306,173.601,39.577,173.601z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M499.327,42.243c-22.486,13.731-36.456,38.628-36.456,64.975V273.63h33.919v196.269h15.209v-196.27v-92.423V34.496 L499.327,42.243z M496.791,181.205v77.215h-18.711V107.217c0-16.624,6.948-32.525,18.711-43.896V181.205z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;\/g&gt;\n\n&lt;\/svg&gt;\"\n\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:\/\/demo.lmi-listeo.online\/ckb\/listing\/bloo-restaurant\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    <img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/bloo-restaurant-da86db8ed8b4d8aad8aed8a7d986db95db8c-d8a8d984d988d988-1-520x397.jpg\" alt=\"BLOO Restaurant\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/641569120_17948612784107070_3961627181979727975_n-520x397.jpg\" alt=\"BLOO Restaurant\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/641100474_17948612820107070_8153510307156735294_n-520x397.jpg\" alt=\"BLOO Restaurant\" class=\"slider-image-nl\">                <\/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\">Restaurants<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing\/bloo-restaurant\/\" 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\">BLOO Restaurant                    <div class=\"listing-title-badges-nl\">\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Empire World, Erbil, KRI<\/p>\t\r\n                    <div class=\"listing-amenities-nl\">\r\n                        <div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" width=\"256px\" height=\"256px\" viewBox=\"-12.29 -12.29 147.46 147.46\" version=\"1.1\" id=\"Layer_1\" style=\"enable-background:new 0 0 122.88 67.41\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g> <path d=\"M79.93,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C81.22,56.36,82.7,54,79.93,51.37L79.93,51.37z M14.57,28.11h73.65c0.96,0,1.74,0.78,1.74,1.74v12.26h24.13 c1.46,0,2.79-0.6,3.75-1.56c0.96-0.96,1.56-2.29,1.56-3.75V8.8c0-1.46-0.6-2.79-1.56-3.75c-0.96-0.96-2.29-1.56-3.75-1.56H8.8 c-1.46,0-2.79,0.6-3.75,1.56C4.08,6.01,3.48,7.34,3.48,8.8V36.8c0,1.46,0.6,2.79,1.56,3.75c0.96,0.96,2.29,1.56,3.75,1.56h4.03 V29.85C12.83,28.89,13.61,28.11,14.57,28.11L14.57,28.11z M86.48,31.59H16.31v10.09h70.17V31.59L86.48,31.59z M15.21,13.64 c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21 L15.21,13.64z M98.58,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46s-2.46-1.1-2.46-2.46S97.23,31.99,98.58,31.99 L98.58,31.99z M108.85,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46c-1.36,0-2.46-1.1-2.46-2.46S107.49,31.99,108.85,31.99 L108.85,31.99z M8.8,0h105.29c2.42,0,4.62,0.99,6.21,2.58c1.59,1.59,2.58,3.79,2.58,6.21V36.8c0,2.42-0.99,4.62-2.58,6.21 c-1.59,1.59-3.79,2.58-6.21,2.58H8.8c-2.42,0-4.62-0.99-6.21-2.58C0.99,41.42,0,39.22,0,36.8V8.8c0-2.42,0.99-4.62,2.58-6.21 C4.18,0.99,6.38,0,8.8,0L8.8,0z M15.21,21.76c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74 c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21L15.21,21.76z M21.37,51.37c-0.53-0.51-0.32-1.2,0.48-1.54 c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55 c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C22.66,56.36,24.13,54,21.37,51.37L21.37,51.37z M36.01,51.37 c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19 c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C37.3,56.36,38.77,54,36.01,51.37 L36.01,51.37z M50.65,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C51.94,56.36,53.42,54,50.65,51.37L50.65,51.37z M65.29,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3 c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24 c-3.47-3.03-1.85-5.62-0.17-8.32C66.58,56.36,68.06,54,65.29,51.37L65.29,51.37z\"\/> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Air conditioning<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" height=\"256px\" width=\"256px\" version=\"1.1\" id=\"Layer_1\" viewBox=\"-51.2 -51.2 614.40 614.40\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g transform=\"translate(1 1)\"> <g> <g> <path d=\"M383,203.8c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533c0,89.6-72.533,162.133-162.133,162.133 c-5.12,0-8.533,3.413-8.533,8.533S198.68,383,203.8,383C302.787,383,383,302.787,383,203.8z\"\/> <path d=\"M203.8,323.267c-5.12,0-8.533,3.413-8.533,8.533c0,5.12,3.413,8.533,8.533,8.533c75.093,0,136.533-61.44,136.533-136.533 c0-5.12-3.413-8.533-8.533-8.533c-5.12,0-8.533,3.413-8.533,8.533C323.267,269.507,269.507,323.267,203.8,323.267z\"\/> <path d=\"M203.8,280.6c-5.12,0-8.533,3.413-8.533,8.533s3.413,8.533,8.533,8.533c52.053,0,93.867-41.813,93.867-93.867 c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533C280.6,246.467,246.467,280.6,203.8,280.6z\"\/> <path d=\"M502.467,493.933h-11.464L424.813,303.64c-0.853-3.413-4.267-5.973-7.68-5.973c-3.413,0-6.827,2.56-7.68,5.973 l-66.189,190.293H331.8c-5.12,0-8.533,3.413-8.533,8.533S326.68,511,331.8,511h17.067H485.4h17.067 c5.12,0,8.533-3.413,8.533-8.533S507.587,493.933,502.467,493.933z M360.813,493.933l56.32-162.133l56.32,162.133H360.813z\"\/> <path d=\"M272.067,135.533C272.067,60.44,210.627-1,135.533-1h-128C2.413-1-1,2.413-1,7.533v494.933 c0,5.12,3.413,8.533,8.533,8.533h51.2c5.12,0,8.533-3.413,8.533-8.533v-230.4h68.267 C210.627,272.067,272.067,210.627,272.067,135.533z M135.533,255h-76.8c-5.12,0-8.533,3.413-8.533,8.533v230.4H16.067V16.067 h119.467C201.24,16.067,255,69.827,255,135.533S201.24,255,135.533,255z\"\/> <path d=\"M135.533,50.2h-76.8c-5.12,0-8.533,3.413-8.533,8.533v153.6c0,5.12,3.413,8.533,8.533,8.533h76.8 c46.933,0,85.333-38.4,85.333-85.333S182.467,50.2,135.533,50.2z M135.533,203.8H67.267V67.267h68.267 c37.547,0,68.267,30.72,68.267,68.267C203.8,173.08,173.08,203.8,135.533,203.8z\"\/> <\/g> <\/g> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Free Parking<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-wifi\"><\/i> <span class=\"tooltip-nl\">Wireless Internet<\/span><\/div>\r\n                    <\/div>\r\n                            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                    \r\n                            <div class=\"listing-rating-nl\">\r\n                                        <div class=\"stars-nl\">\r\n                                            <i class=\"fa-solid fa-star\"><\/i>\r\n                                        <\/div>\r\n                                        <div class=\"rating-text-nl\">3.6<\/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\" \n\t\tdata-title=\"Khashoka Restaurant\"\n\t\tdata-listing-type=\"service\"\n\t\tdata-classifieds-price=\"\"\n\t\tdata-friendly-address=\"Empire World, C5, Erbil, KRI\"\n\t\tdata-address=\"Empire World, C5, Erbil, KRI\"\n\t\tdata-image=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/658951307_122287450232020073_305319073206336229_n-520x397.jpg\"\n\t\tdata-longitude=\"43.9707933\"\n\t\tdata-latitude=\"36.2028573\"\n\t\t\t\t\tdata-rating=\"0\"\n\t\t\tdata-reviews=\"0\"\n\t\t\t\tdata-icon=\"&lt;svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; xmlns:xlink=&quot;http:\/\/www.w3.org\/1999\/xlink&quot; fill=&quot;#1f3b5f&quot; height=&quot;800px&quot; width=&quot;800px&quot; version=&quot;1.1&quot; id=&quot;Layer_1&quot; viewBox=&quot;-51.2 -51.2 614.40 614.40&quot; xml:space=&quot;preserve&quot; transform=&quot;rotate(0)&quot; stroke=&quot;#1f3b5f&quot; stroke-width=&quot;0.0051199900000000005&quot;&gt;\n\n&lt;g id=&quot;SVGRepo_bgCarrier&quot; stroke-width=&quot;0&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_tracerCarrier&quot; stroke-linecap=&quot;round&quot; stroke-linejoin=&quot;round&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_iconCarrier&quot;&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.747,86.809C149.033,86.809,61.4,174.442,61.4,282.156c0,107.715,87.633,195.348,195.347,195.348 c107.715,0,195.347-87.633,195.347-195.348C452.094,174.441,364.462,86.809,256.747,86.809z M256.747,462.295 c-99.328,0-180.138-80.81-180.138-180.139s80.81-180.138,180.138-180.138c99.329,0,180.138,80.809,180.138,180.138 S356.076,462.295,256.747,462.295z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.748,155.943c-69.594,0-126.214,56.619-126.214,126.213c0,11.232,1.478,22.375,4.392,33.119l14.678-3.983 c-2.564-9.445-3.863-19.249-3.863-29.137c0-61.208,49.797-111.004,111.005-111.004c17.825,0,34.844,4.093,50.584,12.167 l6.941-13.534C296.364,160.6,277.01,155.943,256.748,155.943z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M156.761,330.436l-13.691,6.624c7.979,16.492,19.726,31.348,33.97,42.961l9.611-11.787 C174.116,358.013,163.78,344.943,156.761,330.436z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M333.721,182.124l-9.282,12.046c27.526,21.212,43.314,53.281,43.314,87.984c0,61.208-49.797,111.005-111.005,111.005 c-21.791,0-42.88-6.309-60.991-18.241l-8.368,12.699c20.602,13.575,44.585,20.751,69.359,20.751 c69.595,0,126.214-56.619,126.214-126.214C382.961,242.698,365.013,206.238,333.721,182.124z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M63.945,48.058v88.065H47.181V48.058H31.972v88.065H15.209V48.058H0v88.065v13.111v2.098h0.057 c0.96,18.283,14.386,33.312,31.916,36.738v281.83h15.209V188.07c17.529-3.427,30.955-18.455,31.916-36.739h0.057v-2.098v-13.111 V48.058H63.945z M39.577,173.601c-12.73,0-23.211-9.813-24.278-22.27h48.557C62.787,163.788,52.306,173.601,39.577,173.601z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M499.327,42.243c-22.486,13.731-36.456,38.628-36.456,64.975V273.63h33.919v196.269h15.209v-196.27v-92.423V34.496 L499.327,42.243z M496.791,181.205v77.215h-18.711V107.217c0-16.624,6.948-32.525,18.711-43.896V181.205z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;\/g&gt;\n\n&lt;\/svg&gt;\"\n\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:\/\/demo.lmi-listeo.online\/ckb\/listing\/khashoka-restaurant\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    <img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/658951307_122287450232020073_305319073206336229_n-520x397.jpg\" alt=\"Khashoka Restaurant\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/671503492_122289439244020073_5210983899944885909_n-520x397.jpg\" alt=\"Khashoka Restaurant\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/687730758_122291851796020073_8292452397132046887_n-520x397.jpg\" alt=\"Khashoka Restaurant\" class=\"slider-image-nl\">                <\/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\">Restaurants<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing\/khashoka-restaurant\/\" 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\">Khashoka Restaurant                    <div class=\"listing-title-badges-nl\">\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Empire World, C5, Erbil, KRI<\/p>\t\r\n                    <div class=\"listing-amenities-nl\">\r\n                        <div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" width=\"256px\" height=\"256px\" viewBox=\"-12.29 -12.29 147.46 147.46\" version=\"1.1\" id=\"Layer_1\" style=\"enable-background:new 0 0 122.88 67.41\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g> <path d=\"M79.93,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C81.22,56.36,82.7,54,79.93,51.37L79.93,51.37z M14.57,28.11h73.65c0.96,0,1.74,0.78,1.74,1.74v12.26h24.13 c1.46,0,2.79-0.6,3.75-1.56c0.96-0.96,1.56-2.29,1.56-3.75V8.8c0-1.46-0.6-2.79-1.56-3.75c-0.96-0.96-2.29-1.56-3.75-1.56H8.8 c-1.46,0-2.79,0.6-3.75,1.56C4.08,6.01,3.48,7.34,3.48,8.8V36.8c0,1.46,0.6,2.79,1.56,3.75c0.96,0.96,2.29,1.56,3.75,1.56h4.03 V29.85C12.83,28.89,13.61,28.11,14.57,28.11L14.57,28.11z M86.48,31.59H16.31v10.09h70.17V31.59L86.48,31.59z M15.21,13.64 c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21 L15.21,13.64z M98.58,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46s-2.46-1.1-2.46-2.46S97.23,31.99,98.58,31.99 L98.58,31.99z M108.85,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46c-1.36,0-2.46-1.1-2.46-2.46S107.49,31.99,108.85,31.99 L108.85,31.99z M8.8,0h105.29c2.42,0,4.62,0.99,6.21,2.58c1.59,1.59,2.58,3.79,2.58,6.21V36.8c0,2.42-0.99,4.62-2.58,6.21 c-1.59,1.59-3.79,2.58-6.21,2.58H8.8c-2.42,0-4.62-0.99-6.21-2.58C0.99,41.42,0,39.22,0,36.8V8.8c0-2.42,0.99-4.62,2.58-6.21 C4.18,0.99,6.38,0,8.8,0L8.8,0z M15.21,21.76c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74 c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21L15.21,21.76z M21.37,51.37c-0.53-0.51-0.32-1.2,0.48-1.54 c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55 c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C22.66,56.36,24.13,54,21.37,51.37L21.37,51.37z M36.01,51.37 c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19 c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C37.3,56.36,38.77,54,36.01,51.37 L36.01,51.37z M50.65,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C51.94,56.36,53.42,54,50.65,51.37L50.65,51.37z M65.29,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3 c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24 c-3.47-3.03-1.85-5.62-0.17-8.32C66.58,56.36,68.06,54,65.29,51.37L65.29,51.37z\"\/> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Air conditioning<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" height=\"256px\" width=\"256px\" version=\"1.1\" id=\"Layer_1\" viewBox=\"-51.2 -51.2 614.40 614.40\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g transform=\"translate(1 1)\"> <g> <g> <path d=\"M383,203.8c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533c0,89.6-72.533,162.133-162.133,162.133 c-5.12,0-8.533,3.413-8.533,8.533S198.68,383,203.8,383C302.787,383,383,302.787,383,203.8z\"\/> <path d=\"M203.8,323.267c-5.12,0-8.533,3.413-8.533,8.533c0,5.12,3.413,8.533,8.533,8.533c75.093,0,136.533-61.44,136.533-136.533 c0-5.12-3.413-8.533-8.533-8.533c-5.12,0-8.533,3.413-8.533,8.533C323.267,269.507,269.507,323.267,203.8,323.267z\"\/> <path d=\"M203.8,280.6c-5.12,0-8.533,3.413-8.533,8.533s3.413,8.533,8.533,8.533c52.053,0,93.867-41.813,93.867-93.867 c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533C280.6,246.467,246.467,280.6,203.8,280.6z\"\/> <path d=\"M502.467,493.933h-11.464L424.813,303.64c-0.853-3.413-4.267-5.973-7.68-5.973c-3.413,0-6.827,2.56-7.68,5.973 l-66.189,190.293H331.8c-5.12,0-8.533,3.413-8.533,8.533S326.68,511,331.8,511h17.067H485.4h17.067 c5.12,0,8.533-3.413,8.533-8.533S507.587,493.933,502.467,493.933z M360.813,493.933l56.32-162.133l56.32,162.133H360.813z\"\/> <path d=\"M272.067,135.533C272.067,60.44,210.627-1,135.533-1h-128C2.413-1-1,2.413-1,7.533v494.933 c0,5.12,3.413,8.533,8.533,8.533h51.2c5.12,0,8.533-3.413,8.533-8.533v-230.4h68.267 C210.627,272.067,272.067,210.627,272.067,135.533z M135.533,255h-76.8c-5.12,0-8.533,3.413-8.533,8.533v230.4H16.067V16.067 h119.467C201.24,16.067,255,69.827,255,135.533S201.24,255,135.533,255z\"\/> <path d=\"M135.533,50.2h-76.8c-5.12,0-8.533,3.413-8.533,8.533v153.6c0,5.12,3.413,8.533,8.533,8.533h76.8 c46.933,0,85.333-38.4,85.333-85.333S182.467,50.2,135.533,50.2z M135.533,203.8H67.267V67.267h68.267 c37.547,0,68.267,30.72,68.267,68.267C203.8,173.08,173.08,203.8,135.533,203.8z\"\/> <\/g> <\/g> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Free Parking<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-wifi\"><\/i> <span class=\"tooltip-nl\">Wireless Internet<\/span><\/div>\r\n                    <\/div>\r\n                            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                                                <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\" \n\t\tdata-title=\"EL&amp;N London &#8211; Erbil Avenue\"\n\t\tdata-listing-type=\"service\"\n\t\tdata-classifieds-price=\"\"\n\t\tdata-friendly-address=\"Erbil Avenue, Baharka Rd, Erbil, KRI\"\n\t\tdata-address=\"Erbil Avenue, Baharka Rd, Erbil, KRI\"\n\t\tdata-image=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/eln-london-erbil-avenue-1-520x397.jpg\"\n\t\tdata-longitude=\"44.0111943\"\n\t\tdata-latitude=\"36.2330755\"\n\t\t\t\t\tdata-rating=\"0\"\n\t\t\tdata-reviews=\"0\"\n\t\t\t\tdata-icon=\"&lt;svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; xmlns:xlink=&quot;http:\/\/www.w3.org\/1999\/xlink&quot; fill=&quot;#1f3b5f&quot; height=&quot;800px&quot; width=&quot;800px&quot; version=&quot;1.1&quot; id=&quot;Layer_1&quot; viewBox=&quot;-51.2 -51.2 614.40 614.40&quot; xml:space=&quot;preserve&quot; transform=&quot;rotate(0)&quot; stroke=&quot;#1f3b5f&quot; stroke-width=&quot;0.0051199900000000005&quot;&gt;\n\n&lt;g id=&quot;SVGRepo_bgCarrier&quot; stroke-width=&quot;0&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_tracerCarrier&quot; stroke-linecap=&quot;round&quot; stroke-linejoin=&quot;round&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_iconCarrier&quot;&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.747,86.809C149.033,86.809,61.4,174.442,61.4,282.156c0,107.715,87.633,195.348,195.347,195.348 c107.715,0,195.347-87.633,195.347-195.348C452.094,174.441,364.462,86.809,256.747,86.809z M256.747,462.295 c-99.328,0-180.138-80.81-180.138-180.139s80.81-180.138,180.138-180.138c99.329,0,180.138,80.809,180.138,180.138 S356.076,462.295,256.747,462.295z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.748,155.943c-69.594,0-126.214,56.619-126.214,126.213c0,11.232,1.478,22.375,4.392,33.119l14.678-3.983 c-2.564-9.445-3.863-19.249-3.863-29.137c0-61.208,49.797-111.004,111.005-111.004c17.825,0,34.844,4.093,50.584,12.167 l6.941-13.534C296.364,160.6,277.01,155.943,256.748,155.943z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M156.761,330.436l-13.691,6.624c7.979,16.492,19.726,31.348,33.97,42.961l9.611-11.787 C174.116,358.013,163.78,344.943,156.761,330.436z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M333.721,182.124l-9.282,12.046c27.526,21.212,43.314,53.281,43.314,87.984c0,61.208-49.797,111.005-111.005,111.005 c-21.791,0-42.88-6.309-60.991-18.241l-8.368,12.699c20.602,13.575,44.585,20.751,69.359,20.751 c69.595,0,126.214-56.619,126.214-126.214C382.961,242.698,365.013,206.238,333.721,182.124z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M63.945,48.058v88.065H47.181V48.058H31.972v88.065H15.209V48.058H0v88.065v13.111v2.098h0.057 c0.96,18.283,14.386,33.312,31.916,36.738v281.83h15.209V188.07c17.529-3.427,30.955-18.455,31.916-36.739h0.057v-2.098v-13.111 V48.058H63.945z M39.577,173.601c-12.73,0-23.211-9.813-24.278-22.27h48.557C62.787,163.788,52.306,173.601,39.577,173.601z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M499.327,42.243c-22.486,13.731-36.456,38.628-36.456,64.975V273.63h33.919v196.269h15.209v-196.27v-92.423V34.496 L499.327,42.243z M496.791,181.205v77.215h-18.711V107.217c0-16.624,6.948-32.525,18.711-43.896V181.205z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;\/g&gt;\n\n&lt;\/svg&gt;\"\n\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:\/\/demo.lmi-listeo.online\/ckb\/listing\/eln-london-erbil-avenue\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    <img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/eln-london-erbil-avenue-1-520x397.jpg\" alt=\"EL&amp;N London &#8211; Erbil Avenue\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/670635291_18431632963184255_4084942051456331387_n-520x397.jpg\" alt=\"EL&amp;N London &#8211; Erbil Avenue\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/608312239_18414236302184255_6688716651140505068_n-520x397.jpg\" alt=\"EL&amp;N London &#8211; Erbil Avenue\" class=\"slider-image-nl\">                <\/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\">Restaurants<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing\/eln-london-erbil-avenue\/\" 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\">EL&amp;N London &#8211; Erbil Avenue                    <div class=\"listing-title-badges-nl\">\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Erbil Avenue, Baharka Rd, Erbil, KRI<\/p>\t\r\n                    <div class=\"listing-amenities-nl\">\r\n                        <div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" width=\"256px\" height=\"256px\" viewBox=\"-12.29 -12.29 147.46 147.46\" version=\"1.1\" id=\"Layer_1\" style=\"enable-background:new 0 0 122.88 67.41\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g> <path d=\"M79.93,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C81.22,56.36,82.7,54,79.93,51.37L79.93,51.37z M14.57,28.11h73.65c0.96,0,1.74,0.78,1.74,1.74v12.26h24.13 c1.46,0,2.79-0.6,3.75-1.56c0.96-0.96,1.56-2.29,1.56-3.75V8.8c0-1.46-0.6-2.79-1.56-3.75c-0.96-0.96-2.29-1.56-3.75-1.56H8.8 c-1.46,0-2.79,0.6-3.75,1.56C4.08,6.01,3.48,7.34,3.48,8.8V36.8c0,1.46,0.6,2.79,1.56,3.75c0.96,0.96,2.29,1.56,3.75,1.56h4.03 V29.85C12.83,28.89,13.61,28.11,14.57,28.11L14.57,28.11z M86.48,31.59H16.31v10.09h70.17V31.59L86.48,31.59z M15.21,13.64 c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21 L15.21,13.64z M98.58,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46s-2.46-1.1-2.46-2.46S97.23,31.99,98.58,31.99 L98.58,31.99z M108.85,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46c-1.36,0-2.46-1.1-2.46-2.46S107.49,31.99,108.85,31.99 L108.85,31.99z M8.8,0h105.29c2.42,0,4.62,0.99,6.21,2.58c1.59,1.59,2.58,3.79,2.58,6.21V36.8c0,2.42-0.99,4.62-2.58,6.21 c-1.59,1.59-3.79,2.58-6.21,2.58H8.8c-2.42,0-4.62-0.99-6.21-2.58C0.99,41.42,0,39.22,0,36.8V8.8c0-2.42,0.99-4.62,2.58-6.21 C4.18,0.99,6.38,0,8.8,0L8.8,0z M15.21,21.76c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74 c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21L15.21,21.76z M21.37,51.37c-0.53-0.51-0.32-1.2,0.48-1.54 c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55 c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C22.66,56.36,24.13,54,21.37,51.37L21.37,51.37z M36.01,51.37 c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19 c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C37.3,56.36,38.77,54,36.01,51.37 L36.01,51.37z M50.65,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C51.94,56.36,53.42,54,50.65,51.37L50.65,51.37z M65.29,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3 c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24 c-3.47-3.03-1.85-5.62-0.17-8.32C66.58,56.36,68.06,54,65.29,51.37L65.29,51.37z\"\/> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Air conditioning<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" height=\"256px\" width=\"256px\" version=\"1.1\" id=\"Layer_1\" viewBox=\"-51.2 -51.2 614.40 614.40\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g transform=\"translate(1 1)\"> <g> <g> <path d=\"M383,203.8c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533c0,89.6-72.533,162.133-162.133,162.133 c-5.12,0-8.533,3.413-8.533,8.533S198.68,383,203.8,383C302.787,383,383,302.787,383,203.8z\"\/> <path d=\"M203.8,323.267c-5.12,0-8.533,3.413-8.533,8.533c0,5.12,3.413,8.533,8.533,8.533c75.093,0,136.533-61.44,136.533-136.533 c0-5.12-3.413-8.533-8.533-8.533c-5.12,0-8.533,3.413-8.533,8.533C323.267,269.507,269.507,323.267,203.8,323.267z\"\/> <path d=\"M203.8,280.6c-5.12,0-8.533,3.413-8.533,8.533s3.413,8.533,8.533,8.533c52.053,0,93.867-41.813,93.867-93.867 c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533C280.6,246.467,246.467,280.6,203.8,280.6z\"\/> <path d=\"M502.467,493.933h-11.464L424.813,303.64c-0.853-3.413-4.267-5.973-7.68-5.973c-3.413,0-6.827,2.56-7.68,5.973 l-66.189,190.293H331.8c-5.12,0-8.533,3.413-8.533,8.533S326.68,511,331.8,511h17.067H485.4h17.067 c5.12,0,8.533-3.413,8.533-8.533S507.587,493.933,502.467,493.933z M360.813,493.933l56.32-162.133l56.32,162.133H360.813z\"\/> <path d=\"M272.067,135.533C272.067,60.44,210.627-1,135.533-1h-128C2.413-1-1,2.413-1,7.533v494.933 c0,5.12,3.413,8.533,8.533,8.533h51.2c5.12,0,8.533-3.413,8.533-8.533v-230.4h68.267 C210.627,272.067,272.067,210.627,272.067,135.533z M135.533,255h-76.8c-5.12,0-8.533,3.413-8.533,8.533v230.4H16.067V16.067 h119.467C201.24,16.067,255,69.827,255,135.533S201.24,255,135.533,255z\"\/> <path d=\"M135.533,50.2h-76.8c-5.12,0-8.533,3.413-8.533,8.533v153.6c0,5.12,3.413,8.533,8.533,8.533h76.8 c46.933,0,85.333-38.4,85.333-85.333S182.467,50.2,135.533,50.2z M135.533,203.8H67.267V67.267h68.267 c37.547,0,68.267,30.72,68.267,68.267C203.8,173.08,173.08,203.8,135.533,203.8z\"\/> <\/g> <\/g> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Free Parking<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-mosque\"><\/i> <span class=\"tooltip-nl\">Praying Area<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-smoking\"><\/i> <span class=\"tooltip-nl\">Smoking Allowed<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-wifi\"><\/i> <span class=\"tooltip-nl\">Wireless Internet<\/span><\/div>\r\n                    <\/div>\r\n                            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                                                <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\" \n\t\tdata-title=\"Fontana Di Trevi\"\n\t\tdata-listing-type=\"service\"\n\t\tdata-classifieds-price=\"\"\n\t\tdata-friendly-address=\"Vital Village Road, Erbil, KRI\"\n\t\tdata-address=\"Vital Village Road, Erbil, KRI\"\n\t\tdata-image=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/05\/605458239_17850805317609713_2136499238976893678_n-520x397.webp\"\n\t\tdata-longitude=\"43.9673247\"\n\t\tdata-latitude=\"36.1944442\"\n\t\t\t\t\tdata-rating=\"4.8\"\n\t\t\tdata-reviews=\"2\"\n\t\t\t\tdata-icon=\"&lt;svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; xmlns:xlink=&quot;http:\/\/www.w3.org\/1999\/xlink&quot; fill=&quot;#1f3b5f&quot; height=&quot;800px&quot; width=&quot;800px&quot; version=&quot;1.1&quot; id=&quot;Layer_1&quot; viewBox=&quot;-51.2 -51.2 614.40 614.40&quot; xml:space=&quot;preserve&quot; transform=&quot;rotate(0)&quot; stroke=&quot;#1f3b5f&quot; stroke-width=&quot;0.0051199900000000005&quot;&gt;\n\n&lt;g id=&quot;SVGRepo_bgCarrier&quot; stroke-width=&quot;0&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_tracerCarrier&quot; stroke-linecap=&quot;round&quot; stroke-linejoin=&quot;round&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_iconCarrier&quot;&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.747,86.809C149.033,86.809,61.4,174.442,61.4,282.156c0,107.715,87.633,195.348,195.347,195.348 c107.715,0,195.347-87.633,195.347-195.348C452.094,174.441,364.462,86.809,256.747,86.809z M256.747,462.295 c-99.328,0-180.138-80.81-180.138-180.139s80.81-180.138,180.138-180.138c99.329,0,180.138,80.809,180.138,180.138 S356.076,462.295,256.747,462.295z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.748,155.943c-69.594,0-126.214,56.619-126.214,126.213c0,11.232,1.478,22.375,4.392,33.119l14.678-3.983 c-2.564-9.445-3.863-19.249-3.863-29.137c0-61.208,49.797-111.004,111.005-111.004c17.825,0,34.844,4.093,50.584,12.167 l6.941-13.534C296.364,160.6,277.01,155.943,256.748,155.943z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M156.761,330.436l-13.691,6.624c7.979,16.492,19.726,31.348,33.97,42.961l9.611-11.787 C174.116,358.013,163.78,344.943,156.761,330.436z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M333.721,182.124l-9.282,12.046c27.526,21.212,43.314,53.281,43.314,87.984c0,61.208-49.797,111.005-111.005,111.005 c-21.791,0-42.88-6.309-60.991-18.241l-8.368,12.699c20.602,13.575,44.585,20.751,69.359,20.751 c69.595,0,126.214-56.619,126.214-126.214C382.961,242.698,365.013,206.238,333.721,182.124z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M63.945,48.058v88.065H47.181V48.058H31.972v88.065H15.209V48.058H0v88.065v13.111v2.098h0.057 c0.96,18.283,14.386,33.312,31.916,36.738v281.83h15.209V188.07c17.529-3.427,30.955-18.455,31.916-36.739h0.057v-2.098v-13.111 V48.058H63.945z M39.577,173.601c-12.73,0-23.211-9.813-24.278-22.27h48.557C62.787,163.788,52.306,173.601,39.577,173.601z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M499.327,42.243c-22.486,13.731-36.456,38.628-36.456,64.975V273.63h33.919v196.269h15.209v-196.27v-92.423V34.496 L499.327,42.243z M496.791,181.205v77.215h-18.711V107.217c0-16.624,6.948-32.525,18.711-43.896V181.205z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;\/g&gt;\n\n&lt;\/svg&gt;\"\n\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:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    <img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/05\/605458239_17850805317609713_2136499238976893678_n-520x397.webp\" alt=\"Fontana Di Trevi\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/05\/606949754_17851853781609713_6167468148267782229_n-520x397.webp\" alt=\"Fontana Di Trevi\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/05\/671219545_17868315081609713_83316037715575929_n-520x397.webp\" alt=\"Fontana Di Trevi\" class=\"slider-image-nl\">                <\/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\">Restaurants<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/\" 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\">Fontana Di Trevi                    <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\">Vital Village Road, Erbil, KRI<\/p>\t\r\n                    <div class=\"listing-amenities-nl\">\r\n                        <div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" width=\"256px\" height=\"256px\" viewBox=\"-12.29 -12.29 147.46 147.46\" version=\"1.1\" id=\"Layer_1\" style=\"enable-background:new 0 0 122.88 67.41\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g> <path d=\"M79.93,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C81.22,56.36,82.7,54,79.93,51.37L79.93,51.37z M14.57,28.11h73.65c0.96,0,1.74,0.78,1.74,1.74v12.26h24.13 c1.46,0,2.79-0.6,3.75-1.56c0.96-0.96,1.56-2.29,1.56-3.75V8.8c0-1.46-0.6-2.79-1.56-3.75c-0.96-0.96-2.29-1.56-3.75-1.56H8.8 c-1.46,0-2.79,0.6-3.75,1.56C4.08,6.01,3.48,7.34,3.48,8.8V36.8c0,1.46,0.6,2.79,1.56,3.75c0.96,0.96,2.29,1.56,3.75,1.56h4.03 V29.85C12.83,28.89,13.61,28.11,14.57,28.11L14.57,28.11z M86.48,31.59H16.31v10.09h70.17V31.59L86.48,31.59z M15.21,13.64 c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21 L15.21,13.64z M98.58,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46s-2.46-1.1-2.46-2.46S97.23,31.99,98.58,31.99 L98.58,31.99z M108.85,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46c-1.36,0-2.46-1.1-2.46-2.46S107.49,31.99,108.85,31.99 L108.85,31.99z M8.8,0h105.29c2.42,0,4.62,0.99,6.21,2.58c1.59,1.59,2.58,3.79,2.58,6.21V36.8c0,2.42-0.99,4.62-2.58,6.21 c-1.59,1.59-3.79,2.58-6.21,2.58H8.8c-2.42,0-4.62-0.99-6.21-2.58C0.99,41.42,0,39.22,0,36.8V8.8c0-2.42,0.99-4.62,2.58-6.21 C4.18,0.99,6.38,0,8.8,0L8.8,0z M15.21,21.76c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74 c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21L15.21,21.76z M21.37,51.37c-0.53-0.51-0.32-1.2,0.48-1.54 c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55 c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C22.66,56.36,24.13,54,21.37,51.37L21.37,51.37z M36.01,51.37 c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19 c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C37.3,56.36,38.77,54,36.01,51.37 L36.01,51.37z M50.65,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C51.94,56.36,53.42,54,50.65,51.37L50.65,51.37z M65.29,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3 c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24 c-3.47-3.03-1.85-5.62-0.17-8.32C66.58,56.36,68.06,54,65.29,51.37L65.29,51.37z\"\/> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Air conditioning<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" height=\"256px\" width=\"256px\" version=\"1.1\" id=\"Layer_1\" viewBox=\"-51.2 -51.2 614.40 614.40\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g transform=\"translate(1 1)\"> <g> <g> <path d=\"M383,203.8c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533c0,89.6-72.533,162.133-162.133,162.133 c-5.12,0-8.533,3.413-8.533,8.533S198.68,383,203.8,383C302.787,383,383,302.787,383,203.8z\"\/> <path d=\"M203.8,323.267c-5.12,0-8.533,3.413-8.533,8.533c0,5.12,3.413,8.533,8.533,8.533c75.093,0,136.533-61.44,136.533-136.533 c0-5.12-3.413-8.533-8.533-8.533c-5.12,0-8.533,3.413-8.533,8.533C323.267,269.507,269.507,323.267,203.8,323.267z\"\/> <path d=\"M203.8,280.6c-5.12,0-8.533,3.413-8.533,8.533s3.413,8.533,8.533,8.533c52.053,0,93.867-41.813,93.867-93.867 c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533C280.6,246.467,246.467,280.6,203.8,280.6z\"\/> <path d=\"M502.467,493.933h-11.464L424.813,303.64c-0.853-3.413-4.267-5.973-7.68-5.973c-3.413,0-6.827,2.56-7.68,5.973 l-66.189,190.293H331.8c-5.12,0-8.533,3.413-8.533,8.533S326.68,511,331.8,511h17.067H485.4h17.067 c5.12,0,8.533-3.413,8.533-8.533S507.587,493.933,502.467,493.933z M360.813,493.933l56.32-162.133l56.32,162.133H360.813z\"\/> <path d=\"M272.067,135.533C272.067,60.44,210.627-1,135.533-1h-128C2.413-1-1,2.413-1,7.533v494.933 c0,5.12,3.413,8.533,8.533,8.533h51.2c5.12,0,8.533-3.413,8.533-8.533v-230.4h68.267 C210.627,272.067,272.067,210.627,272.067,135.533z M135.533,255h-76.8c-5.12,0-8.533,3.413-8.533,8.533v230.4H16.067V16.067 h119.467C201.24,16.067,255,69.827,255,135.533S201.24,255,135.533,255z\"\/> <path d=\"M135.533,50.2h-76.8c-5.12,0-8.533,3.413-8.533,8.533v153.6c0,5.12,3.413,8.533,8.533,8.533h76.8 c46.933,0,85.333-38.4,85.333-85.333S182.467,50.2,135.533,50.2z M135.533,203.8H67.267V67.267h68.267 c37.547,0,68.267,30.72,68.267,68.267C203.8,173.08,173.08,203.8,135.533,203.8z\"\/> <\/g> <\/g> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Free Parking<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-smoking\"><\/i> <span class=\"tooltip-nl\">Smoking Allowed<\/span><\/div>\r\n                    <\/div>\r\n                            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                    \r\n                            <div class=\"listing-rating-nl\">\r\n                                        <div class=\"stars-nl\">\r\n                                            <i class=\"fa-solid fa-star\"><\/i>\r\n                                        <\/div>\r\n                                        <div class=\"rating-text-nl\">4.8<\/div>\r\n                                    <\/div>\r\n                                        <\/div>\r\n                                                        <div class=\"listing-booking-nl\">\r\n                            <p class=\"price-nl\">3,000IQD - 16,000IQD<\/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\" \n\t\tdata-title=\"Hiror\"\n\t\tdata-listing-type=\"service\"\n\t\tdata-classifieds-price=\"\"\n\t\tdata-friendly-address=\"Zin City Road, Pirmam St, Erbil, KRI\"\n\t\tdata-address=\"Zin City Road, Pirmam St, Erbil, KRI\"\n\t\tdata-image=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/616714113_1184692557171277_1004072111753159374_n-520x397.jpg\"\n\t\tdata-longitude=\"44.0656398\"\n\t\tdata-latitude=\"36.24419280000001\"\n\t\t\t\t\tdata-rating=\"0\"\n\t\t\tdata-reviews=\"0\"\n\t\t\t\tdata-icon=\"&lt;svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; xmlns:xlink=&quot;http:\/\/www.w3.org\/1999\/xlink&quot; fill=&quot;#1f3b5f&quot; height=&quot;800px&quot; width=&quot;800px&quot; version=&quot;1.1&quot; id=&quot;Layer_1&quot; viewBox=&quot;-51.2 -51.2 614.40 614.40&quot; xml:space=&quot;preserve&quot; transform=&quot;rotate(0)&quot; stroke=&quot;#1f3b5f&quot; stroke-width=&quot;0.0051199900000000005&quot;&gt;\n\n&lt;g id=&quot;SVGRepo_bgCarrier&quot; stroke-width=&quot;0&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_tracerCarrier&quot; stroke-linecap=&quot;round&quot; stroke-linejoin=&quot;round&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_iconCarrier&quot;&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.747,86.809C149.033,86.809,61.4,174.442,61.4,282.156c0,107.715,87.633,195.348,195.347,195.348 c107.715,0,195.347-87.633,195.347-195.348C452.094,174.441,364.462,86.809,256.747,86.809z M256.747,462.295 c-99.328,0-180.138-80.81-180.138-180.139s80.81-180.138,180.138-180.138c99.329,0,180.138,80.809,180.138,180.138 S356.076,462.295,256.747,462.295z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.748,155.943c-69.594,0-126.214,56.619-126.214,126.213c0,11.232,1.478,22.375,4.392,33.119l14.678-3.983 c-2.564-9.445-3.863-19.249-3.863-29.137c0-61.208,49.797-111.004,111.005-111.004c17.825,0,34.844,4.093,50.584,12.167 l6.941-13.534C296.364,160.6,277.01,155.943,256.748,155.943z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M156.761,330.436l-13.691,6.624c7.979,16.492,19.726,31.348,33.97,42.961l9.611-11.787 C174.116,358.013,163.78,344.943,156.761,330.436z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M333.721,182.124l-9.282,12.046c27.526,21.212,43.314,53.281,43.314,87.984c0,61.208-49.797,111.005-111.005,111.005 c-21.791,0-42.88-6.309-60.991-18.241l-8.368,12.699c20.602,13.575,44.585,20.751,69.359,20.751 c69.595,0,126.214-56.619,126.214-126.214C382.961,242.698,365.013,206.238,333.721,182.124z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M63.945,48.058v88.065H47.181V48.058H31.972v88.065H15.209V48.058H0v88.065v13.111v2.098h0.057 c0.96,18.283,14.386,33.312,31.916,36.738v281.83h15.209V188.07c17.529-3.427,30.955-18.455,31.916-36.739h0.057v-2.098v-13.111 V48.058H63.945z M39.577,173.601c-12.73,0-23.211-9.813-24.278-22.27h48.557C62.787,163.788,52.306,173.601,39.577,173.601z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M499.327,42.243c-22.486,13.731-36.456,38.628-36.456,64.975V273.63h33.919v196.269h15.209v-196.27v-92.423V34.496 L499.327,42.243z M496.791,181.205v77.215h-18.711V107.217c0-16.624,6.948-32.525,18.711-43.896V181.205z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;\/g&gt;\n\n&lt;\/svg&gt;\"\n\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:\/\/demo.lmi-listeo.online\/ckb\/listing\/hiror\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    <img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/616714113_1184692557171277_1004072111753159374_n-520x397.jpg\" alt=\"Hiror\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/658360755_18096686501475383_8531200628343592810_n-520x397.jpg\" alt=\"Hiror\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/688365699_18101782106475383_5475092835828918548_n-520x397.jpg\" alt=\"Hiror\" class=\"slider-image-nl\">                <\/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\">Restaurants<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing\/hiror\/\" 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\">Hiror                    <div class=\"listing-title-badges-nl\">\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Zin City Road, Pirmam St, Erbil, KRI<\/p>\t\r\n                    <div class=\"listing-amenities-nl\">\r\n                        <div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" width=\"256px\" height=\"256px\" viewBox=\"-12.29 -12.29 147.46 147.46\" version=\"1.1\" id=\"Layer_1\" style=\"enable-background:new 0 0 122.88 67.41\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g> <path d=\"M79.93,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C81.22,56.36,82.7,54,79.93,51.37L79.93,51.37z M14.57,28.11h73.65c0.96,0,1.74,0.78,1.74,1.74v12.26h24.13 c1.46,0,2.79-0.6,3.75-1.56c0.96-0.96,1.56-2.29,1.56-3.75V8.8c0-1.46-0.6-2.79-1.56-3.75c-0.96-0.96-2.29-1.56-3.75-1.56H8.8 c-1.46,0-2.79,0.6-3.75,1.56C4.08,6.01,3.48,7.34,3.48,8.8V36.8c0,1.46,0.6,2.79,1.56,3.75c0.96,0.96,2.29,1.56,3.75,1.56h4.03 V29.85C12.83,28.89,13.61,28.11,14.57,28.11L14.57,28.11z M86.48,31.59H16.31v10.09h70.17V31.59L86.48,31.59z M15.21,13.64 c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21 L15.21,13.64z M98.58,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46s-2.46-1.1-2.46-2.46S97.23,31.99,98.58,31.99 L98.58,31.99z M108.85,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46c-1.36,0-2.46-1.1-2.46-2.46S107.49,31.99,108.85,31.99 L108.85,31.99z M8.8,0h105.29c2.42,0,4.62,0.99,6.21,2.58c1.59,1.59,2.58,3.79,2.58,6.21V36.8c0,2.42-0.99,4.62-2.58,6.21 c-1.59,1.59-3.79,2.58-6.21,2.58H8.8c-2.42,0-4.62-0.99-6.21-2.58C0.99,41.42,0,39.22,0,36.8V8.8c0-2.42,0.99-4.62,2.58-6.21 C4.18,0.99,6.38,0,8.8,0L8.8,0z M15.21,21.76c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74 c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21L15.21,21.76z M21.37,51.37c-0.53-0.51-0.32-1.2,0.48-1.54 c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55 c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C22.66,56.36,24.13,54,21.37,51.37L21.37,51.37z M36.01,51.37 c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19 c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C37.3,56.36,38.77,54,36.01,51.37 L36.01,51.37z M50.65,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C51.94,56.36,53.42,54,50.65,51.37L50.65,51.37z M65.29,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3 c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24 c-3.47-3.03-1.85-5.62-0.17-8.32C66.58,56.36,68.06,54,65.29,51.37L65.29,51.37z\"\/> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Air conditioning<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" height=\"256px\" width=\"256px\" version=\"1.1\" id=\"Layer_1\" viewBox=\"-51.2 -51.2 614.40 614.40\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g transform=\"translate(1 1)\"> <g> <g> <path d=\"M383,203.8c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533c0,89.6-72.533,162.133-162.133,162.133 c-5.12,0-8.533,3.413-8.533,8.533S198.68,383,203.8,383C302.787,383,383,302.787,383,203.8z\"\/> <path d=\"M203.8,323.267c-5.12,0-8.533,3.413-8.533,8.533c0,5.12,3.413,8.533,8.533,8.533c75.093,0,136.533-61.44,136.533-136.533 c0-5.12-3.413-8.533-8.533-8.533c-5.12,0-8.533,3.413-8.533,8.533C323.267,269.507,269.507,323.267,203.8,323.267z\"\/> <path d=\"M203.8,280.6c-5.12,0-8.533,3.413-8.533,8.533s3.413,8.533,8.533,8.533c52.053,0,93.867-41.813,93.867-93.867 c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533C280.6,246.467,246.467,280.6,203.8,280.6z\"\/> <path d=\"M502.467,493.933h-11.464L424.813,303.64c-0.853-3.413-4.267-5.973-7.68-5.973c-3.413,0-6.827,2.56-7.68,5.973 l-66.189,190.293H331.8c-5.12,0-8.533,3.413-8.533,8.533S326.68,511,331.8,511h17.067H485.4h17.067 c5.12,0,8.533-3.413,8.533-8.533S507.587,493.933,502.467,493.933z M360.813,493.933l56.32-162.133l56.32,162.133H360.813z\"\/> <path d=\"M272.067,135.533C272.067,60.44,210.627-1,135.533-1h-128C2.413-1-1,2.413-1,7.533v494.933 c0,5.12,3.413,8.533,8.533,8.533h51.2c5.12,0,8.533-3.413,8.533-8.533v-230.4h68.267 C210.627,272.067,272.067,210.627,272.067,135.533z M135.533,255h-76.8c-5.12,0-8.533,3.413-8.533,8.533v230.4H16.067V16.067 h119.467C201.24,16.067,255,69.827,255,135.533S201.24,255,135.533,255z\"\/> <path d=\"M135.533,50.2h-76.8c-5.12,0-8.533,3.413-8.533,8.533v153.6c0,5.12,3.413,8.533,8.533,8.533h76.8 c46.933,0,85.333-38.4,85.333-85.333S182.467,50.2,135.533,50.2z M135.533,203.8H67.267V67.267h68.267 c37.547,0,68.267,30.72,68.267,68.267C203.8,173.08,173.08,203.8,135.533,203.8z\"\/> <\/g> <\/g> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Free Parking<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-mosque\"><\/i> <span class=\"tooltip-nl\">Praying Area<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-smoking\"><\/i> <span class=\"tooltip-nl\">Smoking Allowed<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-wifi\"><\/i> <span class=\"tooltip-nl\">Wireless Internet<\/span><\/div>\r\n                    <\/div>\r\n                            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                                                <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\" \n\t\tdata-title=\"HuQQabaz\"\n\t\tdata-listing-type=\"service\"\n\t\tdata-classifieds-price=\"\"\n\t\tdata-friendly-address=\"Empire World Building c4, Erbil, KRI\"\n\t\tdata-address=\"Empire World Building c4, Erbil, KRI\"\n\t\tdata-image=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/488186193_3057929877717922_3038015766472348228_n-520x397.jpg\"\n\t\tdata-longitude=\"43.971677\"\n\t\tdata-latitude=\"36.2022742\"\n\t\t\t\t\tdata-rating=\"0\"\n\t\t\tdata-reviews=\"0\"\n\t\t\t\tdata-icon=\"&lt;svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; xmlns:xlink=&quot;http:\/\/www.w3.org\/1999\/xlink&quot; fill=&quot;#1f3b5f&quot; height=&quot;800px&quot; width=&quot;800px&quot; version=&quot;1.1&quot; id=&quot;Layer_1&quot; viewBox=&quot;-51.2 -51.2 614.40 614.40&quot; xml:space=&quot;preserve&quot; transform=&quot;rotate(0)&quot; stroke=&quot;#1f3b5f&quot; stroke-width=&quot;0.0051199900000000005&quot;&gt;\n\n&lt;g id=&quot;SVGRepo_bgCarrier&quot; stroke-width=&quot;0&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_tracerCarrier&quot; stroke-linecap=&quot;round&quot; stroke-linejoin=&quot;round&quot;\/&gt;\n\n&lt;g id=&quot;SVGRepo_iconCarrier&quot;&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.747,86.809C149.033,86.809,61.4,174.442,61.4,282.156c0,107.715,87.633,195.348,195.347,195.348 c107.715,0,195.347-87.633,195.347-195.348C452.094,174.441,364.462,86.809,256.747,86.809z M256.747,462.295 c-99.328,0-180.138-80.81-180.138-180.139s80.81-180.138,180.138-180.138c99.329,0,180.138,80.809,180.138,180.138 S356.076,462.295,256.747,462.295z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M256.748,155.943c-69.594,0-126.214,56.619-126.214,126.213c0,11.232,1.478,22.375,4.392,33.119l14.678-3.983 c-2.564-9.445-3.863-19.249-3.863-29.137c0-61.208,49.797-111.004,111.005-111.004c17.825,0,34.844,4.093,50.584,12.167 l6.941-13.534C296.364,160.6,277.01,155.943,256.748,155.943z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M156.761,330.436l-13.691,6.624c7.979,16.492,19.726,31.348,33.97,42.961l9.611-11.787 C174.116,358.013,163.78,344.943,156.761,330.436z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M333.721,182.124l-9.282,12.046c27.526,21.212,43.314,53.281,43.314,87.984c0,61.208-49.797,111.005-111.005,111.005 c-21.791,0-42.88-6.309-60.991-18.241l-8.368,12.699c20.602,13.575,44.585,20.751,69.359,20.751 c69.595,0,126.214-56.619,126.214-126.214C382.961,242.698,365.013,206.238,333.721,182.124z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M63.945,48.058v88.065H47.181V48.058H31.972v88.065H15.209V48.058H0v88.065v13.111v2.098h0.057 c0.96,18.283,14.386,33.312,31.916,36.738v281.83h15.209V188.07c17.529-3.427,30.955-18.455,31.916-36.739h0.057v-2.098v-13.111 V48.058H63.945z M39.577,173.601c-12.73,0-23.211-9.813-24.278-22.27h48.557C62.787,163.788,52.306,173.601,39.577,173.601z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;g&gt; &lt;g&gt; &lt;path d=&quot;M499.327,42.243c-22.486,13.731-36.456,38.628-36.456,64.975V273.63h33.919v196.269h15.209v-196.27v-92.423V34.496 L499.327,42.243z M496.791,181.205v77.215h-18.711V107.217c0-16.624,6.948-32.525,18.711-43.896V181.205z&quot;\/&gt; &lt;\/g&gt; &lt;\/g&gt; &lt;\/g&gt;\n\n&lt;\/svg&gt;\"\n\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:\/\/demo.lmi-listeo.online\/ckb\/listing\/huqqabaz\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    <img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/488186193_3057929877717922_3038015766472348228_n-520x397.jpg\" alt=\"HuQQabaz\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/530071018_18230881324288078_682397909082478544_n-520x397.jpg\" alt=\"HuQQabaz\" class=\"slider-image-nl\"><img decoding=\"async\" src=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/06\/686018213_18262155295288078_5117679792511216027_n-520x397.jpg\" alt=\"HuQQabaz\" class=\"slider-image-nl\">                <\/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\">Restaurants<\/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:\/\/demo.lmi-listeo.online\/ckb\/listing\/huqqabaz\/\" 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\">HuQQabaz                    <div class=\"listing-title-badges-nl\">\r\n                                                                    <\/div>\r\n                <\/h2>\r\n                <p class=\"listing-location-nl\">Empire World Building c4, Erbil, KRI<\/p>\t\r\n                    <div class=\"listing-amenities-nl\">\r\n                        <div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" width=\"256px\" height=\"256px\" viewBox=\"-12.29 -12.29 147.46 147.46\" version=\"1.1\" id=\"Layer_1\" style=\"enable-background:new 0 0 122.88 67.41\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g> <path d=\"M79.93,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C81.22,56.36,82.7,54,79.93,51.37L79.93,51.37z M14.57,28.11h73.65c0.96,0,1.74,0.78,1.74,1.74v12.26h24.13 c1.46,0,2.79-0.6,3.75-1.56c0.96-0.96,1.56-2.29,1.56-3.75V8.8c0-1.46-0.6-2.79-1.56-3.75c-0.96-0.96-2.29-1.56-3.75-1.56H8.8 c-1.46,0-2.79,0.6-3.75,1.56C4.08,6.01,3.48,7.34,3.48,8.8V36.8c0,1.46,0.6,2.79,1.56,3.75c0.96,0.96,2.29,1.56,3.75,1.56h4.03 V29.85C12.83,28.89,13.61,28.11,14.57,28.11L14.57,28.11z M86.48,31.59H16.31v10.09h70.17V31.59L86.48,31.59z M15.21,13.64 c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21 L15.21,13.64z M98.58,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46s-2.46-1.1-2.46-2.46S97.23,31.99,98.58,31.99 L98.58,31.99z M108.85,31.99c1.36,0,2.46,1.1,2.46,2.46s-1.1,2.46-2.46,2.46c-1.36,0-2.46-1.1-2.46-2.46S107.49,31.99,108.85,31.99 L108.85,31.99z M8.8,0h105.29c2.42,0,4.62,0.99,6.21,2.58c1.59,1.59,2.58,3.79,2.58,6.21V36.8c0,2.42-0.99,4.62-2.58,6.21 c-1.59,1.59-3.79,2.58-6.21,2.58H8.8c-2.42,0-4.62-0.99-6.21-2.58C0.99,41.42,0,39.22,0,36.8V8.8c0-2.42,0.99-4.62,2.58-6.21 C4.18,0.99,6.38,0,8.8,0L8.8,0z M15.21,21.76c-0.96,0-1.74-0.78-1.74-1.74c0-0.96,0.78-1.74,1.74-1.74h93.74 c0.96,0,1.74,0.78,1.74,1.74c0,0.96-0.78,1.74-1.74,1.74H15.21L15.21,21.76z M21.37,51.37c-0.53-0.51-0.32-1.2,0.48-1.54 c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55 c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C22.66,56.36,24.13,54,21.37,51.37L21.37,51.37z M36.01,51.37 c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19 c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32C37.3,56.36,38.77,54,36.01,51.37 L36.01,51.37z M50.65,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3c3.78,3.6,1.96,6.52,0.21,9.32 c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24c-3.47-3.03-1.86-5.62-0.17-8.32 C51.94,56.36,53.42,54,50.65,51.37L50.65,51.37z M65.29,51.37c-0.53-0.51-0.32-1.2,0.48-1.54c0.8-0.34,1.87-0.2,2.41,0.3 c3.78,3.6,1.96,6.52,0.21,9.32c-1.32,2.12-2.59,4.15-0.25,6.19c0.57,0.5,0.4,1.19-0.37,1.55c-0.77,0.36-1.86,0.26-2.43-0.24 c-3.47-3.03-1.85-5.62-0.17-8.32C66.58,56.36,68.06,54,65.29,51.37L65.29,51.37z\"\/> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Air conditioning<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-wine-bottle\"><\/i> <span class=\"tooltip-nl\">Alcohol<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#1f3b5f\" height=\"256px\" width=\"256px\" version=\"1.1\" id=\"Layer_1\" viewBox=\"-51.2 -51.2 614.40 614.40\" xml:space=\"preserve\">\n\n<g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"\/>\n\n<g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n\n<g id=\"SVGRepo_iconCarrier\"> <g transform=\"translate(1 1)\"> <g> <g> <path d=\"M383,203.8c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533c0,89.6-72.533,162.133-162.133,162.133 c-5.12,0-8.533,3.413-8.533,8.533S198.68,383,203.8,383C302.787,383,383,302.787,383,203.8z\"\/> <path d=\"M203.8,323.267c-5.12,0-8.533,3.413-8.533,8.533c0,5.12,3.413,8.533,8.533,8.533c75.093,0,136.533-61.44,136.533-136.533 c0-5.12-3.413-8.533-8.533-8.533c-5.12,0-8.533,3.413-8.533,8.533C323.267,269.507,269.507,323.267,203.8,323.267z\"\/> <path d=\"M203.8,280.6c-5.12,0-8.533,3.413-8.533,8.533s3.413,8.533,8.533,8.533c52.053,0,93.867-41.813,93.867-93.867 c0-5.12-3.413-8.533-8.533-8.533s-8.533,3.413-8.533,8.533C280.6,246.467,246.467,280.6,203.8,280.6z\"\/> <path d=\"M502.467,493.933h-11.464L424.813,303.64c-0.853-3.413-4.267-5.973-7.68-5.973c-3.413,0-6.827,2.56-7.68,5.973 l-66.189,190.293H331.8c-5.12,0-8.533,3.413-8.533,8.533S326.68,511,331.8,511h17.067H485.4h17.067 c5.12,0,8.533-3.413,8.533-8.533S507.587,493.933,502.467,493.933z M360.813,493.933l56.32-162.133l56.32,162.133H360.813z\"\/> <path d=\"M272.067,135.533C272.067,60.44,210.627-1,135.533-1h-128C2.413-1-1,2.413-1,7.533v494.933 c0,5.12,3.413,8.533,8.533,8.533h51.2c5.12,0,8.533-3.413,8.533-8.533v-230.4h68.267 C210.627,272.067,272.067,210.627,272.067,135.533z M135.533,255h-76.8c-5.12,0-8.533,3.413-8.533,8.533v230.4H16.067V16.067 h119.467C201.24,16.067,255,69.827,255,135.533S201.24,255,135.533,255z\"\/> <path d=\"M135.533,50.2h-76.8c-5.12,0-8.533,3.413-8.533,8.533v153.6c0,5.12,3.413,8.533,8.533,8.533h76.8 c46.933,0,85.333-38.4,85.333-85.333S182.467,50.2,135.533,50.2z M135.533,203.8H67.267V67.267h68.267 c37.547,0,68.267,30.72,68.267,68.267C203.8,173.08,173.08,203.8,135.533,203.8z\"\/> <\/g> <\/g> <\/g> <\/g>\n\n<\/svg><\/span><span class=\"tooltip-nl\">Free Parking<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-smoking\"><\/i> <span class=\"tooltip-nl\">Smoking Allowed<\/span><\/div><div class=\"amenity-icon-nl\"><i class=\"fas fa-wifi\"><\/i> <span class=\"tooltip-nl\">Wireless Internet<\/span><\/div>\r\n                    <\/div>\r\n                            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                                                <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:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1.png\" class=\"attachment-1536x1536 size-1536x1536 wp-image-45\" alt=\"\" srcset=\"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1.png 1456w, https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-600x336.png 600w, https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-300x168.png 300w, https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1024x574.png 1024w, https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-768x430.png 768w, https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-590x331.png 590w, https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-1195x670.png 1195w, https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-1-577x323.png 577w, https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2025\/02\/24ee0261661d_2-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:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2024\/02\/555-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:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2024\/02\/666-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\t\n\t\t\t<div class=\"reviews-slick-carousel reviews-carousel\" >\n\t\t\t\t<!-- Item -->\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0634\u0648\u06ce\u0646\u06d5\u06a9\u06d5 \u0628\u06d5 \u06af\u0634\u062a\u06cc \u062e\u06c6\u0634\u06d5 \u0648 \u062f\u06b5\u06af\u06cc\u0631\u06d5 \u0648 \u062e\u0648\u0627\u0631\u062f\u0646\u06cc\u0627\u0646 \u062a\u0627 \u0695\u0627\u062f\u06d5\u06cc\u06d5\u06a9 \u062e\u06c6\u0634\u06d5 \u0628\u06d5\u06b5\u0627\u0645 \u0646\u0631\u062e\u06cc\u0627\u0646 \u0632\u06c6\u0631 \u06af\u0631\u0627\u0646\u06d5<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"3.6\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Mohammed Salam reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/bloo-restaurant\/#comment-426\">BLOO Restaurant<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Hamu shtekyan perfect bu\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/af89ba22026b2b3463b5c085aed308d0eb1ef890b38a5edf4a95997759e39f0d?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/af89ba22026b2b3463b5c085aed308d0eb1ef890b38a5edf4a95997759e39f0d?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Karin reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/#comment-282\">Fontana Di Trevi<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0628\u06d5\u0695\u0627\u0633\u062a\u06cc \u062e\u0648\u0627\u0631\u062f\u0646\u06cc\u0627\u0646 \u0632\u06c6\u0631 \u0628\u06d5\u062a\u0627\u0645 \u0648 \u0686\u06ce\u0698\u06ce\u06a9\u06cc \u062a\u0627\u06cc\u0628\u06d5\u062a\u06cc \u0626\u06cc\u062a\u0627\u06b5\u06cc \u0647\u06d5\u0628\u0648\u0648 \u0647\u06d5\u0631\u0648\u06d5\u0647\u0627 \u062e\u0632\u0645\u06d5\u062a\u06af\u0648\u0632\u0627\u0631\u06cc\u06d5\u06a9\u06cc \u0695\u06ce\u06a9 \u0648 \u067e\u06ce\u06a9 \u0648 \u0644\u06d5\u06a9\u06c6\u062a\u0627\u06cc\u06cc\u0634\u062f\u0627 \u062f\u0627\u0634\u06a9\u0627\u0646\u062f\u0646\u06ce\u06a9\u06cc \u062a\u0627\u06cc\u0628\u06d5\u062a\u06cc\u0627\u0646 \u067e\u06ce\u0634\u06a9\u06d5\u0634 \u06a9\u0631\u062f\u06cc\u0646<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"4.6\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Mohammed Salam reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/#comment-48\">Fontana Di Trevi<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0634\u0648\u06ce\u0646\u06d5\u06a9\u06d5 \u0628\u06d5 \u06af\u0634\u062a\u06cc \u062e\u06c6\u0634\u06d5 \u0648 \u062f\u06b5\u06af\u06cc\u0631\u06d5 \u0648 \u062e\u0648\u0627\u0631\u062f\u0646\u06cc\u0627\u0646 \u062a\u0627 \u0695\u0627\u062f\u06d5\u06cc\u06d5\u06a9 \u062e\u06c6\u0634\u06d5 \u0628\u06d5\u06b5\u0627\u0645 \u0646\u0631\u062e\u06cc\u0627\u0646 \u0632\u06c6\u0631 \u06af\u0631\u0627\u0646\u06d5\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"3.6\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Mohammed Salam reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/bloo-restaurant\/#comment-426\">BLOO Restaurant<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Hamu shtekyan perfect bu<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/af89ba22026b2b3463b5c085aed308d0eb1ef890b38a5edf4a95997759e39f0d?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/af89ba22026b2b3463b5c085aed308d0eb1ef890b38a5edf4a95997759e39f0d?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Karin reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/#comment-282\">Fontana Di Trevi<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0628\u06d5\u0695\u0627\u0633\u062a\u06cc \u062e\u0648\u0627\u0631\u062f\u0646\u06cc\u0627\u0646 \u0632\u06c6\u0631 \u0628\u06d5\u062a\u0627\u0645 \u0648 \u0686\u06ce\u0698\u06ce\u06a9\u06cc \u062a\u0627\u06cc\u0628\u06d5\u062a\u06cc \u0626\u06cc\u062a\u0627\u06b5\u06cc \u0647\u06d5\u0628\u0648\u0648 \u0647\u06d5\u0631\u0648\u06d5\u0647\u0627 \u062e\u0632\u0645\u06d5\u062a\u06af\u0648\u0632\u0627\u0631\u06cc\u06d5\u06a9\u06cc \u0695\u06ce\u06a9 \u0648 \u067e\u06ce\u06a9 \u0648 \u0644\u06d5\u06a9\u06c6\u062a\u0627\u06cc\u06cc\u0634\u062f\u0627 \u062f\u0627\u0634\u06a9\u0627\u0646\u062f\u0646\u06ce\u06a9\u06cc \u062a\u0627\u06cc\u0628\u06d5\u062a\u06cc\u0627\u0646 \u067e\u06ce\u0634\u06a9\u06d5\u0634 \u06a9\u0631\u062f\u06cc\u0646\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"4.6\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Mohammed Salam reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/#comment-48\">Fontana Di Trevi<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0634\u0648\u06ce\u0646\u06d5\u06a9\u06d5 \u0628\u06d5 \u06af\u0634\u062a\u06cc \u062e\u06c6\u0634\u06d5 \u0648 \u062f\u06b5\u06af\u06cc\u0631\u06d5 \u0648 \u062e\u0648\u0627\u0631\u062f\u0646\u06cc\u0627\u0646 \u062a\u0627 \u0695\u0627\u062f\u06d5\u06cc\u06d5\u06a9 \u062e\u06c6\u0634\u06d5 \u0628\u06d5\u06b5\u0627\u0645 \u0646\u0631\u062e\u06cc\u0627\u0646 \u0632\u06c6\u0631 \u06af\u0631\u0627\u0646\u06d5<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"3.6\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Mohammed Salam reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/bloo-restaurant\/#comment-426\">BLOO Restaurant<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Hamu shtekyan perfect bu\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/af89ba22026b2b3463b5c085aed308d0eb1ef890b38a5edf4a95997759e39f0d?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/af89ba22026b2b3463b5c085aed308d0eb1ef890b38a5edf4a95997759e39f0d?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Karin reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/#comment-282\">Fontana Di Trevi<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0628\u06d5\u0695\u0627\u0633\u062a\u06cc \u062e\u0648\u0627\u0631\u062f\u0646\u06cc\u0627\u0646 \u0632\u06c6\u0631 \u0628\u06d5\u062a\u0627\u0645 \u0648 \u0686\u06ce\u0698\u06ce\u06a9\u06cc \u062a\u0627\u06cc\u0628\u06d5\u062a\u06cc \u0626\u06cc\u062a\u0627\u06b5\u06cc \u0647\u06d5\u0628\u0648\u0648 \u0647\u06d5\u0631\u0648\u06d5\u0647\u0627 \u062e\u0632\u0645\u06d5\u062a\u06af\u0648\u0632\u0627\u0631\u06cc\u06d5\u06a9\u06cc \u0695\u06ce\u06a9 \u0648 \u067e\u06ce\u06a9 \u0648 \u0644\u06d5\u06a9\u06c6\u062a\u0627\u06cc\u06cc\u0634\u062f\u0627 \u062f\u0627\u0634\u06a9\u0627\u0646\u062f\u0646\u06ce\u06a9\u06cc \u062a\u0627\u06cc\u0628\u06d5\u062a\u06cc\u0627\u0646 \u067e\u06ce\u0634\u06a9\u06d5\u0634 \u06a9\u0631\u062f\u06cc\u0646<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"4.6\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Mohammed Salam reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/#comment-48\">Fontana Di Trevi<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0634\u0648\u06ce\u0646\u06d5\u06a9\u06d5 \u0628\u06d5 \u06af\u0634\u062a\u06cc \u062e\u06c6\u0634\u06d5 \u0648 \u062f\u06b5\u06af\u06cc\u0631\u06d5 \u0648 \u062e\u0648\u0627\u0631\u062f\u0646\u06cc\u0627\u0646 \u062a\u0627 \u0695\u0627\u062f\u06d5\u06cc\u06d5\u06a9 \u062e\u06c6\u0634\u06d5 \u0628\u06d5\u06b5\u0627\u0645 \u0646\u0631\u062e\u06cc\u0627\u0646 \u0632\u06c6\u0631 \u06af\u0631\u0627\u0646\u06d5\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"3.6\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Mohammed Salam reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/bloo-restaurant\/#comment-426\">BLOO Restaurant<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"fw-carousel-item\">\n\n\t\t\t\t\t\t<div class=\"reviews-carousel-element\">\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Hamu shtekyan perfect bu<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"5\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/af89ba22026b2b3463b5c085aed308d0eb1ef890b38a5edf4a95997759e39f0d?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/af89ba22026b2b3463b5c085aed308d0eb1ef890b38a5edf4a95997759e39f0d?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Karin reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/#comment-282\">Fontana Di Trevi<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"rating-box-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0628\u06d5\u0695\u0627\u0633\u062a\u06cc \u062e\u0648\u0627\u0631\u062f\u0646\u06cc\u0627\u0646 \u0632\u06c6\u0631 \u0628\u06d5\u062a\u0627\u0645 \u0648 \u0686\u06ce\u0698\u06ce\u06a9\u06cc \u062a\u0627\u06cc\u0628\u06d5\u062a\u06cc \u0626\u06cc\u062a\u0627\u06b5\u06cc \u0647\u06d5\u0628\u0648\u0648 \u0647\u06d5\u0631\u0648\u06d5\u0647\u0627 \u062e\u0632\u0645\u06d5\u062a\u06af\u0648\u0632\u0627\u0631\u06cc\u06d5\u06a9\u06cc \u0695\u06ce\u06a9 \u0648 \u067e\u06ce\u06a9 \u0648 \u0644\u06d5\u06a9\u06c6\u062a\u0627\u06cc\u06cc\u0634\u062f\u0627 \u062f\u0627\u0634\u06a9\u0627\u0646\u062f\u0646\u06ce\u06a9\u06cc \u062a\u0627\u06cc\u0628\u06d5\u062a\u06cc\u0627\u0646 \u067e\u06ce\u0634\u06a9\u06d5\u0634 \u06a9\u0631\u062f\u06cc\u0646\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t<div class=\"star-rating\" data-rating=\"4.6\"><\/div>\n\t\t\t\t\t\t\t\t<div class=\"rating-box-footer\">\n\t\t\t\t\t\t\t\t\t<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=70&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/e35c19bd4f11c390356c35e52da5f70e103cba6b04cb2ed64f1cb59572000de7?s=140&#038;d=mm&#038;r=g 2x' class='avatar avatar-70 photo' height='70' width='70' \/>\t\t\t\t\t\t\t\t\t<div class=\"rating-box-author\">\n\t\t\t\t\t\t\t\t\t\t<span>Mohammed Salam reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/demo.lmi-listeo.online\/ckb\/listing\/fontana-di-trevi\/#comment-48\">Fontana Di Trevi<\/a><\/h5>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Read Reviews . Write Reviews . Find places and companies you can Let&#8217;s enhance your online visibility, boost your reputation and engage with your customers on our platform. Create an Account Browse Listings iPhone 12 Pro \u2013 Mint Condition Burger House Sunny Apartment George\u2019s Barber Shop Sticky Band Joe&#8217;s Photography Tom&#8217;s Restaurant Florist&#8217;s Shop Think [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-120","page","type-page","status-publish","hentry"],"acf":[],"pure_taxonomies":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.8) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Home 2 - Review.KRD<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/demo.lmi-listeo.online\/ckb\/home-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home 2\" \/>\n<meta property=\"og:description\" content=\"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;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/demo.lmi-listeo.online\/ckb\/home-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Review.KRD\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Review.KRD\" \/>\n<meta property=\"og:image\" content=\"http:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2019\/02\/single-listing-04.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 \u062e\u0648\u0644\u06d5\u06a9\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/home-2\\\/\",\"url\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/home-2\\\/\",\"name\":\"Home 2 - Review.KRD\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/home-2\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/home-2\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/demo.lmi-listeo.online\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/single-listing-04.jpg\",\"datePublished\":\"2024-02-18T15:31:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/home-2\\\/#breadcrumb\"},\"inLanguage\":\"ckb\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/demo.lmi-listeo.online\\\/home-2\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ckb\",\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/home-2\\\/#primaryimage\",\"url\":\"http:\\\/\\\/demo.lmi-listeo.online\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/single-listing-04.jpg\",\"contentUrl\":\"http:\\\/\\\/demo.lmi-listeo.online\\\/wp-content\\\/uploads\\\/2019\\\/02\\\/single-listing-04.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/home-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/#website\",\"url\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/\",\"name\":\"Review.KRD\",\"description\":\"TRUSTED PLACES. REAL EXPERIENCES\",\"publisher\":{\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ckb\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/#organization\",\"name\":\"Review.KRD\",\"url\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ckb\",\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/REVIEW.KRD-LOGO-scaled.png\",\"contentUrl\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/REVIEW.KRD-LOGO-scaled.png\",\"width\":2560,\"height\":676,\"caption\":\"Review.KRD\"},\"image\":{\"@id\":\"https:\\\/\\\/demo.lmi-listeo.online\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/Review.KRD\",\"https:\\\/\\\/www.instagram.com\\\/reviewkrd\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Home 2 - Review.KRD","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/demo.lmi-listeo.online\/ckb\/home-2\/","og_locale":"en_US","og_type":"article","og_title":"Home 2","og_description":"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;]","og_url":"https:\/\/demo.lmi-listeo.online\/ckb\/home-2\/","og_site_name":"Review.KRD","article_publisher":"https:\/\/www.facebook.com\/Review.KRD","og_image":[{"url":"http:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2019\/02\/single-listing-04.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 \u062e\u0648\u0644\u06d5\u06a9"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/demo.lmi-listeo.online\/home-2\/","url":"https:\/\/demo.lmi-listeo.online\/home-2\/","name":"Home 2 - Review.KRD","isPartOf":{"@id":"https:\/\/demo.lmi-listeo.online\/#website"},"primaryImageOfPage":{"@id":"https:\/\/demo.lmi-listeo.online\/home-2\/#primaryimage"},"image":{"@id":"https:\/\/demo.lmi-listeo.online\/home-2\/#primaryimage"},"thumbnailUrl":"http:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2019\/02\/single-listing-04.jpg","datePublished":"2024-02-18T15:31:35+00:00","breadcrumb":{"@id":"https:\/\/demo.lmi-listeo.online\/home-2\/#breadcrumb"},"inLanguage":"ckb","potentialAction":[{"@type":"ReadAction","target":["https:\/\/demo.lmi-listeo.online\/home-2\/"]}]},{"@type":"ImageObject","inLanguage":"ckb","@id":"https:\/\/demo.lmi-listeo.online\/home-2\/#primaryimage","url":"http:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2019\/02\/single-listing-04.jpg","contentUrl":"http:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2019\/02\/single-listing-04.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/demo.lmi-listeo.online\/home-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/demo.lmi-listeo.online\/"},{"@type":"ListItem","position":2,"name":"Home 2"}]},{"@type":"WebSite","@id":"https:\/\/demo.lmi-listeo.online\/#website","url":"https:\/\/demo.lmi-listeo.online\/","name":"\u06a9\u0648\u0631\u062f\u0633\u062a\u0627\u0646 \u0695\u06cc\u06a4\u06cc\u0648","description":"TRUSTED PLACES. REAL EXPERIENCES","publisher":{"@id":"https:\/\/demo.lmi-listeo.online\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/demo.lmi-listeo.online\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ckb"},{"@type":"Organization","@id":"https:\/\/demo.lmi-listeo.online\/#organization","name":"\u06a9\u0648\u0631\u062f\u0633\u062a\u0627\u0646 \u0695\u06cc\u06a4\u06cc\u0648","url":"https:\/\/demo.lmi-listeo.online\/","logo":{"@type":"ImageObject","inLanguage":"ckb","@id":"https:\/\/demo.lmi-listeo.online\/#\/schema\/logo\/image\/","url":"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/02\/REVIEW.KRD-LOGO-scaled.png","contentUrl":"https:\/\/demo.lmi-listeo.online\/wp-content\/uploads\/2026\/02\/REVIEW.KRD-LOGO-scaled.png","width":2560,"height":676,"caption":"Review.KRD"},"image":{"@id":"https:\/\/demo.lmi-listeo.online\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Review.KRD","https:\/\/www.instagram.com\/reviewkrd\/"]}]}},"_hostinger_reach_plugin_has_subscription_block":false,"_hostinger_reach_plugin_is_elementor":false,"_links":{"self":[{"href":"https:\/\/demo.lmi-listeo.online\/ckb\/wp-json\/wp\/v2\/pages\/120","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/demo.lmi-listeo.online\/ckb\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/demo.lmi-listeo.online\/ckb\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/demo.lmi-listeo.online\/ckb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/demo.lmi-listeo.online\/ckb\/wp-json\/wp\/v2\/comments?post=120"}],"version-history":[{"count":0,"href":"https:\/\/demo.lmi-listeo.online\/ckb\/wp-json\/wp\/v2\/pages\/120\/revisions"}],"wp:attachment":[{"href":"https:\/\/demo.lmi-listeo.online\/ckb\/wp-json\/wp\/v2\/media?parent=120"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}