{"id":102,"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:\/\/monannuaire-conciergerie.fr\/en\/home-2\/","title":{"rendered":"Home 2"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"102\" class=\"elementor elementor-102\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-55611a7d e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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\t<h2 class=\"elementor-heading-title elementor-size-default\">Read Reviews<\/h2>\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\t<h2 class=\"elementor-heading-title elementor-size-default\">.<\/h2>\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\t<h2 class=\"elementor-heading-title elementor-size-default\">Write Reviews<\/h2>\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\t<h2 class=\"elementor-heading-title elementor-size-default\">.<\/h2>\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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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\t\t\t\t\t<p>Let\u2019s 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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2690a8b7 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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\t\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\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\t\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\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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/conciergerie-yeath\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/Ajouter-un-sous-titre-15.png\" alt=\"CONCIERGERIE YEATH\" class=\"listing-thumbnail\"><\/a>\n                            <h4>CONCIERGERIE YEATH<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/keylok-conciergerie\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/IMAGEKEYLOK1-1200x902.jpg\" alt=\"KEYLOK CONCIERGERIE\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>KEYLOK CONCIERGERIE<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/les-cles-daixcellence\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/photo-Lourmarin-1200x801.jpg\" alt=\"Les Cl\u00e9s d\u2019Aixcellence\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Les Cl\u00e9s d\u2019Aixcellence<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/chauvel-home\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/LOGO-1.png\" alt=\"CHAUVEL HOME\" class=\"listing-thumbnail\"><\/a>\n                            <h4>CHAUVEL HOME<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/iameliteconcierge\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/Capture-decran-2026-02-06-a-13.57.57.png\" alt=\"iAmEliteConcierge\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>iAmEliteConcierge<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/cle-de-confiance\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/01\/Ajouter-un-sous-titre.png\" alt=\"Cl\u00e9 de Confiance\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Cl\u00e9 de Confiance<\/h4>\n                                    <\/div>\n\n                                <\/div>\n\n                            <\/div>\n                        <\/div>\n                        <\/div><\/div><div class=\"fw-carousel-item\">\n                        <div class=\"taxonoomy-wide-grid-element\">                        <div class=\"slg-half\">\n                            <a data-grid-start-index=\"6\" href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/madame-hote-conciergerie\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/01\/Ajouter-un-sous-titre-11.png\" alt=\"Madame H\u00f4te Conciergerie\" class=\"listing-thumbnail\"><\/a>\n                            <h4>Madame H\u00f4te Conciergerie<\/h4>\n                        <\/div>                        <div class=\"slg-half\">\n                            <div class=\"slg-grid\">\n                                <div class=\"slg-grid-top\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"7\" href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/la-route-des-cles\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/01\/Ajouter-un-sous-titre-9.png\" alt=\"La Route des Cl\u00e9s\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>La Route des Cl\u00e9s<\/h4>\n                                    <\/div>\n                                <\/div>\n                                                            <div class=\"slg-grid-bottom\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"8\" href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/la-route-des-cles-2\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/01\/colmar-4-1200x800.png\" alt=\"La Route des Cl\u00e9s\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>La Route des Cl\u00e9s<\/h4>\n                                    <\/div>\n\n                                <\/div>\n\n                            <\/div>\n                        <\/div>\n                        <\/div><\/div><div class=\"fw-carousel-item\">\n                        <div class=\"taxonoomy-wide-grid-element\">                        <div class=\"slg-half\">\n                            <a data-grid-start-index=\"9\" href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/lange-immo-conciergerie\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/01\/LOGO-TRANSP-2-1200x696.png\" alt=\"Lange Immo Conciergerie\" class=\"listing-thumbnail\"><\/a>\n                            <h4>Lange Immo Conciergerie<\/h4>\n                        <\/div>                        <div class=\"slg-half\">\n                            <div class=\"slg-grid\">\n                                <div class=\"slg-grid-top\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"10\" href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/bnb-home\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2025\/12\/Ajouter-un-sous-titre-2.png\" alt=\"Bnb Home\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>Bnb Home<\/h4>\n                                    <\/div>\n                                <\/div>\n                                                            <div class=\"slg-grid-bottom\">\n                                    <div class=\"slg-grid-inner\">\n                                        <a data-grid-start-index=\"11\" href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/nojara-conciergerie\/\" class=\"slg-gallery-cover\"><img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2025\/12\/DE4C4018-627C-4A91-92B3E8F12D26B0B1-1200x600.jpg\" alt=\"NOJARA CONCIERGERIE\" class=\"listing-thumbnail\"><\/a>\n                                        <h4>NOJARA CONCIERGERIE<\/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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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:\/\/wordpress-722045-2402992.cloudwaysapps.com\/wp-content\/uploads\/2024\/02\/logo-carousel-01.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/wordpress-722045-2402992.cloudwaysapps.com\/wp-content\/uploads\/2024\/02\/logo-carousel-02.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/wordpress-722045-2402992.cloudwaysapps.com\/wp-content\/uploads\/2024\/02\/logo-carousel-03.png\" alt=\"\"\/><\/div><div class=\"trusted-by-logo\"><img decoding=\"async\" src=\"https:\/\/wordpress-722045-2402992.cloudwaysapps.com\/wp-content\/uploads\/2024\/02\/logo-carousel-04.png\" alt=\"\"\/><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20f25b8c e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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:\/\/monannuaire-conciergerie.fr\/en\/listing-category\/intendance-complete\/\" 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>Intendance compl\u00e8te<\/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=\"512\" height=\"512\" viewBox=\"0 0 24 24\" fill=\"#000000\"><path fill=\"#000000\" d=\"M21 15c0-4.625-3.507-8.441-8-8.941V4h-2v2.059c-4.493.5-8 4.316-8 8.941v2h18v-2zM2 18h20v2H2z\"\/><\/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\t166\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:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2024\/07\/real-estate-4955089_1920-1-1005x670.jpg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/listing-category\/prestations-a-la-carte\/\" 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>Prestations a la carte<\/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=\"512\" height=\"512\" viewBox=\"0 0 24 24\" fill=\"#000000\"><path fill=\"#000000\" fill-rule=\"evenodd\" d=\"M3.464 3.464C2 4.93 2 7.286 2 12c0 4.714 0 7.071 1.464 8.535C4.93 22 7.286 22 12 22c4.714 0 7.071 0 8.535-1.465C22 19.072 22 16.714 22 12s0-7.071-1.465-8.536C19.072 2 16.714 2 12 2S4.929 2 3.464 3.464Zm7.08 4.053a.75.75 0 1 0-1.087-1.034l-2.314 2.43l-.6-.63a.75.75 0 1 0-1.086 1.034l1.143 1.2a.75.75 0 0 0 1.086 0l2.857-3ZM13 8.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Zm-2.457 6.267a.75.75 0 1 0-1.086-1.034l-2.314 2.43l-.6-.63a.75.75 0 1 0-1.086 1.034l1.143 1.2a.75.75 0 0 0 1.086 0l2.857-3ZM13 15.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Z\" clip-rule=\"evenodd\"\/><\/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\t79\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:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2024\/05\/alona-gross-k5OHy1i1nWE-unsplash-1-469x670.jpg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/listing-category\/sous-location\/\" 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>Sous-location<\/h4>\n\t\t\t\t\t\t\t\t<div class=\"taxonomy-box-content\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"listeo-svg-icon-box-grid\">\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" version=\"1.1\" id=\"Layer_1_1_\" x=\"0px\" y=\"0px\" viewBox=\"0 0 16 16\" style=\"enable-background:new 0 0 16 16;\" xml:space=\"preserve\">\n<path d=\"M0,11.864c0,2.209,1.791,4,4,4c2.209,0,4-1.791,4-4c0-0.554-0.113-1.082-0.317-1.562l8.181-8.181L13.743,0l-2.2,2.2 L9.439,0.096L8.732,0.803l2.104,2.104L10.043,3.7L7.939,1.596L7.232,2.303l2.104,2.104L5.562,8.181C5.082,7.977,4.554,7.864,4,7.864 C1.791,7.864,0,9.655,0,11.864z M3,11.864c0.552,0,1,0.448,1,1s-0.448,1-1,1c-0.552,0-1-0.448-1-1S2.448,11.864,3,11.864z\"\/>\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\t25\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:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2024\/07\/alona-gross-jPShfuaDs9I-unsplash-1-1005x670.jpg\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t<\/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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-magnet\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M164.07 148.1H12a12 12 0 0 1-12-12v-80a36 36 0 0 1 36-36h104a36 36 0 0 1 36 36v80a11.89 11.89 0 0 1-11.93 12zm347.93-12V56a36 36 0 0 0-36-36H372a36 36 0 0 0-36 36v80a12 12 0 0 0 12 12h152a11.89 11.89 0 0 0 12-11.9zm-164 44a12 12 0 0 0-12 12v52c0 128.1-160 127.9-160 0v-52a12 12 0 0 0-12-12H12.1a12 12 0 0 0-12 12.1c.1 21.4.6 40.3 0 53.3 0 150.6 136.17 246.6 256.75 246.6s255-96 255-246.7c-.6-12.8-.2-33 0-53.2a12 12 0 0 0-12-12.1z\"><\/path><\/svg>\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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-bookmark\" viewBox=\"0 0 384 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M336 0H48C21.49 0 0 21.49 0 48v464l192-112 192 112V48c0-26.51-21.49-48-48-48zm0 428.43l-144-84-144 84V54a6 6 0 0 1 6-6h276c3.314 0 6 2.683 6 5.996V428.43z\"><\/path><\/svg>\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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-calendar-alt\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z\"><\/path><\/svg>\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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"22a056f9\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-52b828de\" data-id=\"52b828de\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-335bf6cc elementor-widget elementor-widget-listeo-headline\" data-id=\"335bf6cc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 \n\t\tstyle=\"text-align:center;\" class=\"headline  headline-aligned-to-center headline-extra-spacing headline-box  headline-with-subtitle \"> Most Visited Places  <span > Discover top-rated local businesses<\/span><\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-629d51c4 elementor-widget elementor-widget-listeo-listings-carousel\" data-id=\"629d51c4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"listeo-listings-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <!-- Carousel \/ Start -->\n        \t<div class=\"simple-slick-carousel dots-nav\" data-slick='{&quot;autoplay&quot;:true,&quot;autoplaySpeed&quot;:3000,&quot;slidesToShow&quot;:3,&quot;slidesToScroll&quot;:1,&quot;responsive&quot;:[{&quot;breakpoint&quot;:1024,&quot;settings&quot;:{&quot;slidesToShow&quot;:2,&quot;slidesToScroll&quot;:1}},{&quot;breakpoint&quot;:768,&quot;settings&quot;:{&quot;slidesToShow&quot;:1,&quot;slidesToScroll&quot;:1}}]}'>\n                            <div class=\"fw-carousel-item\">                    \n                        <div  class=\"listing-card-container-nl listing-geo-data\" \r\n\t\tdata-title=\"CONCIERGERIE YEATH\"\r\n\t\tdata-listing-type=\"service\"\r\n\t\tdata-classifieds-price=\"\u20ac\"\r\n\t\tdata-friendly-address=\"location courte dur\u00e9e dans le Gard, C\u00e9vennes, Ard\u00e8che, H\u00e9rault, Loz\u00e8re\"\r\n\t\tdata-address=\"location courte dur\u00e9e dans le Gard, C\u00e9vennes, Ard\u00e8che, H\u00e9rault, Loz\u00e8re\"\r\n\t\tdata-image=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/plugins\/listeo-core\/templates\/images\/listeo_placeholder.png\"\r\n\t\tdata-longitude=\"4.3734997\"\r\n\t\tdata-latitude=\"43.8423727\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\r\n\t\t\t\tdata-icon=\"<svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; width=&quot;512&quot; height=&quot;512&quot; viewBox=&quot;0 0 24 24&quot; fill=&quot;#000000&quot;><path fill=&quot;#000000&quot; d=&quot;M21 15c0-4.625-3.507-8.441-8-8.941V4h-2v2.059c-4.493.5-8 4.316-8 8.941v2h18v-2zM2 18h20v2H2z&quot;\/><\/svg>\"\r\n\r\n\t>\r\n    <div class=\"listing-card-nl\">\r\n        <!-- ===== LEFT: IMAGE SLIDER ===== -->\r\n        <div class=\"listing-image-container-nl\">\r\n            <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/conciergerie-yeath\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/plugins\/listeo-core\/templates\/images\/listeo_placeholder.png\" alt=\"CONCIERGERIE YEATH\" class=\"slider-image-nl\">\r\n                <\/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\">Intendance compl\u00e8te<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/conciergerie-yeath\/\" 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\">CONCIERGERIE YEATH                    <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\">location courte dur\u00e9e dans le Gard, C\u00e9vennes, Ard\u00e8che, H\u00e9rault, Loz\u00e8re<\/p>\t            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                                                <div class=\"listing-rating-nl\">\r\n                                <div class=\"rating-text-nl no-rating\">No reviews yet<\/div>\r\n                            <\/div>\r\n                                    <\/div>\r\n                            <\/div>\r\n\r\n        <\/a>\r\n\r\n    <\/div>\r\n<\/div>\n                    <\/div>\n                                      <div class=\"fw-carousel-item\">                    \n                        <div  class=\"listing-card-container-nl listing-geo-data\" \r\n\t\tdata-title=\"KEYLOK CONCIERGERIE\"\r\n\t\tdata-listing-type=\"service\"\r\n\t\tdata-classifieds-price=\"\u20ac\"\r\n\t\tdata-friendly-address=\"TOULOUSE ET PERIPHERIE\"\r\n\t\tdata-address=\"TOULOUSE ET PERIPHERIE\"\r\n\t\tdata-image=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/IMAGEKEYLOK1-520x397.jpg\"\r\n\t\tdata-longitude=\"1.4804536\"\r\n\t\tdata-latitude=\"43.639981\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\r\n\t\t\t\tdata-icon=\"<svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; width=&quot;512&quot; height=&quot;512&quot; viewBox=&quot;0 0 24 24&quot; fill=&quot;#000000&quot;><path fill=&quot;#000000&quot; d=&quot;M21 15c0-4.625-3.507-8.441-8-8.941V4h-2v2.059c-4.493.5-8 4.316-8 8.941v2h18v-2zM2 18h20v2H2z&quot;\/><\/svg>\"\r\n\r\n\t>\r\n    <div class=\"listing-card-nl\">\r\n        <!-- ===== LEFT: IMAGE SLIDER ===== -->\r\n        <div class=\"listing-image-container-nl\">\r\n            <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/keylok-conciergerie\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/IMAGEKEYLOK1-520x397.jpg\" alt=\"IMAGEKEYLOK1\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/IMAGEKEYLOK2-520x397.jpg\" alt=\"IMAGEKEYLOK2\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/IMAGEKEYLOK4-520x397.jpg\" alt=\"IMAGEKEYLOK4\" class=\"slider-image-nl\">\r\n\t\t                <\/div>\r\n            <\/a>\r\n            \r\n            <div class=\"slider-arrow-nl left-nl\" id=\"prevBtn\"><i class=\"fa-solid fa-chevron-left\"><\/i><\/div>\r\n            <div class=\"slider-arrow-nl right-nl\" id=\"nextBtn\"><i class=\"fa-solid fa-chevron-right\"><\/i><\/div>\r\n            <div class=\"image-overlay-top-nl\">\r\n                <span class=\"listing-category-tag-nl\">Intendance compl\u00e8te<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/keylok-conciergerie\/\" 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\">KEYLOK CONCIERGERIE                    <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\">TOULOUSE ET PERIPHERIE<\/p>\t            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                                                <div class=\"listing-rating-nl\">\r\n                                <div class=\"rating-text-nl no-rating\">No reviews yet<\/div>\r\n                            <\/div>\r\n                                    <\/div>\r\n                            <\/div>\r\n\r\n        <\/a>\r\n\r\n    <\/div>\r\n<\/div>\n                    <\/div>\n                                      <div class=\"fw-carousel-item\">                    \n                        <div  class=\"listing-card-container-nl listing-geo-data\" >\r\n    <div class=\"listing-card-nl\">\r\n        <!-- ===== LEFT: IMAGE SLIDER ===== -->\r\n        <div class=\"listing-image-container-nl\">\r\n            <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/les-cles-daixcellence\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/photo-Lourmarin-520x397.jpg\" alt=\"Photo Lourmarin\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/Pertuis-lavande-520x397.jpg\" alt=\"Pertuis lavande\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/896579CE-59D5-4F0B-8199-118B32117EA5-520x397.png\" alt=\"896579CE 59D5 4F0B 8199 118B32117EA5\" class=\"slider-image-nl\">\r\n\t\t                <\/div>\r\n            <\/a>\r\n            \r\n            <div class=\"slider-arrow-nl left-nl\" id=\"prevBtn\"><i class=\"fa-solid fa-chevron-left\"><\/i><\/div>\r\n            <div class=\"slider-arrow-nl right-nl\" id=\"nextBtn\"><i class=\"fa-solid fa-chevron-right\"><\/i><\/div>\r\n            <div class=\"image-overlay-top-nl\">\r\n                <span class=\"listing-category-tag-nl\">Intendance compl\u00e8te<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/les-cles-daixcellence\/\" 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\">Les Cl\u00e9s d\u2019Aixcellence                    <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\">Pertuis<\/p>\t            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                                                <div class=\"listing-rating-nl\">\r\n                                <div class=\"rating-text-nl no-rating\">No reviews yet<\/div>\r\n                            <\/div>\r\n                                    <\/div>\r\n                            <\/div>\r\n\r\n        <\/a>\r\n\r\n    <\/div>\r\n<\/div>\n                    <\/div>\n                                      <div class=\"fw-carousel-item\">                    \n                        <div  class=\"listing-card-container-nl listing-geo-data\" \r\n\t\tdata-title=\"CHAUVEL HOME\"\r\n\t\tdata-listing-type=\"service\"\r\n\t\tdata-classifieds-price=\"\u20ac\"\r\n\t\tdata-friendly-address=\"BASSIN D&#039;ARCACHON\"\r\n\t\tdata-address=\"BASSIN D'ARCACHON\"\r\n\t\tdata-image=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/plugins\/listeo-core\/templates\/images\/listeo_placeholder.png\"\r\n\t\tdata-longitude=\"-1.0606722\"\r\n\t\tdata-latitude=\"44.6231191\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\r\n\t\t\t\tdata-icon=\"<svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; width=&quot;512&quot; height=&quot;512&quot; viewBox=&quot;0 0 24 24&quot; fill=&quot;#000000&quot;><path fill=&quot;#000000&quot; fill-rule=&quot;evenodd&quot; d=&quot;M3.464 3.464C2 4.93 2 7.286 2 12c0 4.714 0 7.071 1.464 8.535C4.93 22 7.286 22 12 22c4.714 0 7.071 0 8.535-1.465C22 19.072 22 16.714 22 12s0-7.071-1.465-8.536C19.072 2 16.714 2 12 2S4.929 2 3.464 3.464Zm7.08 4.053a.75.75 0 1 0-1.087-1.034l-2.314 2.43l-.6-.63a.75.75 0 1 0-1.086 1.034l1.143 1.2a.75.75 0 0 0 1.086 0l2.857-3ZM13 8.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Zm-2.457 6.267a.75.75 0 1 0-1.086-1.034l-2.314 2.43l-.6-.63a.75.75 0 1 0-1.086 1.034l1.143 1.2a.75.75 0 0 0 1.086 0l2.857-3ZM13 15.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Z&quot; clip-rule=&quot;evenodd&quot;\/><\/svg>\"\r\n\r\n\t>\r\n    <div class=\"listing-card-nl\">\r\n        <!-- ===== LEFT: IMAGE SLIDER ===== -->\r\n        <div class=\"listing-image-container-nl\">\r\n            <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/chauvel-home\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/plugins\/listeo-core\/templates\/images\/listeo_placeholder.png\" alt=\"CHAUVEL HOME\" class=\"slider-image-nl\">\r\n                <\/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\">Intendance compl\u00e8te, Prestations a la carte<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/chauvel-home\/\" 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\">CHAUVEL HOME                    <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\">BASSIN D'ARCACHON<\/p>\t            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                                                <div class=\"listing-rating-nl\">\r\n                                <div class=\"rating-text-nl no-rating\">No reviews yet<\/div>\r\n                            <\/div>\r\n                                    <\/div>\r\n                            <\/div>\r\n\r\n        <\/a>\r\n\r\n    <\/div>\r\n<\/div>\n                    <\/div>\n                                      <div class=\"fw-carousel-item\">                    \n                        <div  class=\"listing-card-container-nl listing-geo-data\" \r\n\t\tdata-title=\"iAmEliteConcierge\"\r\n\t\tdata-listing-type=\"service\"\r\n\t\tdata-classifieds-price=\"\u20ac\"\r\n\t\tdata-friendly-address=\"Aix-en-Provence\"\r\n\t\tdata-address=\"Aix-en-Provence\"\r\n\t\tdata-image=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/Capture-decran-2026-02-06-a-13.57.57-520x397.png\"\r\n\t\tdata-longitude=\"5.4644451\"\r\n\t\tdata-latitude=\"43.5315745\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\r\n\t\t\t\tdata-icon=\"<svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; width=&quot;512&quot; height=&quot;512&quot; viewBox=&quot;0 0 24 24&quot; fill=&quot;#000000&quot;><path fill=&quot;#000000&quot; fill-rule=&quot;evenodd&quot; d=&quot;M3.464 3.464C2 4.93 2 7.286 2 12c0 4.714 0 7.071 1.464 8.535C4.93 22 7.286 22 12 22c4.714 0 7.071 0 8.535-1.465C22 19.072 22 16.714 22 12s0-7.071-1.465-8.536C19.072 2 16.714 2 12 2S4.929 2 3.464 3.464Zm7.08 4.053a.75.75 0 1 0-1.087-1.034l-2.314 2.43l-.6-.63a.75.75 0 1 0-1.086 1.034l1.143 1.2a.75.75 0 0 0 1.086 0l2.857-3ZM13 8.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Zm-2.457 6.267a.75.75 0 1 0-1.086-1.034l-2.314 2.43l-.6-.63a.75.75 0 1 0-1.086 1.034l1.143 1.2a.75.75 0 0 0 1.086 0l2.857-3ZM13 15.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Z&quot; clip-rule=&quot;evenodd&quot;\/><\/svg>\"\r\n\r\n\t>\r\n    <div class=\"listing-card-nl\">\r\n        <!-- ===== LEFT: IMAGE SLIDER ===== -->\r\n        <div class=\"listing-image-container-nl\">\r\n            <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/iameliteconcierge\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t\t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/Capture-decran-2026-02-06-a-13.57.57-520x397.png\" alt=\"Capture d\u2019\u00e9cran 2026 02 06 \u00e0 13.57.57\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/Capture-decran-2026-02-06-a-14.10.00-520x397.png\" alt=\"Capture d\u2019\u00e9cran 2026 02 06 \u00e0 14.10.00\" class=\"slider-image-nl\">\r\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2026\/02\/Capture-decran-2026-02-06-a-14.10.34-520x397.png\" alt=\"Capture d\u2019\u00e9cran 2026 02 06 \u00e0 14.10.34\" class=\"slider-image-nl\">\r\n\t\t                <\/div>\r\n            <\/a>\r\n            \r\n            <div class=\"slider-arrow-nl left-nl\" id=\"prevBtn\"><i class=\"fa-solid fa-chevron-left\"><\/i><\/div>\r\n            <div class=\"slider-arrow-nl right-nl\" id=\"nextBtn\"><i class=\"fa-solid fa-chevron-right\"><\/i><\/div>\r\n            <div class=\"image-overlay-top-nl\">\r\n                <span class=\"listing-category-tag-nl\">Intendance compl\u00e8te, Prestations a la carte<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/iameliteconcierge\/\" 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\">iAmEliteConcierge                    <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\">Aix-en-Provence<\/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\" width=\"512\" height=\"512\" viewBox=\"0 0 24 24\" fill=\"#000000\"><path fill=\"#000000\" d=\"m11 .613l11 3.666V22H2V3h9V.613ZM11 5H4v15h10.838L11 18.721V5.001Zm9 14.613V13.72l-7-2.333v5.891l7 2.334Zm0-8V5.72l-7-2.333v5.891l7 2.334Z\"\/><\/svg><\/span><span class=\"tooltip-nl\">A\u00e9ration des pi\u00e8ces et arrosage des plantes<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 24 24\" fill=\"#000000\"><path fill=\"#000000\" d=\"M6 22q-.825 0-1.413-.588T4 20V4q0-.825.588-1.413T6 2h12q.825 0 1.413.588T20 4v16q0 .825-.588 1.413T18 22H6Zm0-2h12V4H6v16Zm6-1q2.075 0 3.538-1.463T17 14q0-2.075-1.463-3.538T12 9q-2.075 0-3.538 1.463T7 14q0 2.075 1.463 3.538T12 19Zm0-1.7q-.65 0-1.263-.238T9.65 16.35l4.7-4.7q.475.475.713 1.088T15.3 14q0 1.375-.963 2.337T12 17.3ZM8 7q.425 0 .713-.288T9 6q0-.425-.288-.713T8 5q-.425 0-.713.288T7 6q0 .425.288.713T8 7Zm3 0q.425 0 .713-.288T12 6q0-.425-.288-.713T11 5q-.425 0-.713.288T10 6q0 .425.288.713T11 7ZM6 20V4v16Z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Blanchisserie<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 24 24\" fill=\"#000000\"><path fill=\"#000000\" d=\"M18 10a1 1 0 0 0-1-1H5.41l2.3-2.29a1 1 0 0 0-1.42-1.42l-4 4a1 1 0 0 0-.21 1.09A1 1 0 0 0 3 11h14a1 1 0 0 0 1-1Zm3.92 3.62A1 1 0 0 0 21 13H7a1 1 0 0 0 0 2h11.59l-2.3 2.29a1 1 0 0 0 0 1.42a1 1 0 0 0 1.42 0l4-4a1 1 0 0 0 .21-1.09Z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Check-In\/ Check-Out<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 24 24\" fill=\"#000000\"><path fill=\"#000000\" d=\"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.96 9.96 0 0 1-4.587-1.112l-3.826 1.067a1.25 1.25 0 0 1-1.54-1.54l1.068-3.823A9.96 9.96 0 0 1 2 12C2 6.477 6.477 2 12 2Zm0 1.5A8.5 8.5 0 0 0 3.5 12c0 1.47.373 2.883 1.073 4.137l.15.27l-1.112 3.984l3.987-1.112l.27.15A8.5 8.5 0 1 0 12 3.5ZM8.75 13h4.498a.75.75 0 0 1 .102 1.493l-.102.007H8.75a.75.75 0 0 1-.102-1.493L8.75 13h4.498H8.75Zm0-3.5h6.505a.75.75 0 0 1 .101 1.493l-.101.007H8.75a.75.75 0 0 1-.102-1.493L8.75 9.5h6.505H8.75Z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Communication avec les voyageurs<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 32 32\" fill=\"#000000\"><path fill=\"#000000\" d=\"M26 20h-6v-2h6zm4 8h-6v-2h6zm-2-4h-6v-2h6z\"\/><path fill=\"#000000\" d=\"M17.003 20a4.895 4.895 0 0 0-2.404-4.173L22 3l-1.73-1l-7.577 13.126a5.699 5.699 0 0 0-5.243 1.503C3.706 20.24 3.996 28.682 4.01 29.04a1 1 0 0 0 1 .96h14.991a1 1 0 0 0 .6-1.8c-3.54-2.656-3.598-8.146-3.598-8.2Zm-5.073-3.003A3.11 3.11 0 0 1 15.004 20c0 .038.002.208.017.469l-5.9-2.624a3.8 3.8 0 0 1 2.809-.848ZM15.45 28A5.2 5.2 0 0 1 14 25h-2a6.5 6.5 0 0 0 .968 3h-2.223A16.617 16.617 0 0 1 10 24H8a17.342 17.342 0 0 0 .665 4H6c.031-1.836.29-5.892 1.803-8.553l7.533 3.35A13.025 13.025 0 0 0 17.596 28Z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Entretien et services de m\u00e9nage<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 24 24\" fill=\"#000000\"><path fill=\"#000000\" d=\"M19.31 18.9c.44-.69.69-1.52.69-2.4c0-2.5-2-4.5-4.5-4.5S11 14 11 16.5s2 4.5 4.5 4.5c.87 0 1.69-.25 2.38-.68L21 23.39L22.39 22l-3.08-3.1m-3.81.1a2.5 2.5 0 0 1 0-5a2.5 2.5 0 0 1 0 5M5 20v-8H2l10-9l10 9h-1.82A6.44 6.44 0 0 0 17 10.18l-5-4.49l-5 4.5V18h2.18c.17.72.46 1.39.85 2H5Z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Inspection int\u00e9rieure et ext\u00e9rieure<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 256 256\" fill=\"#000000\"><path fill=\"#000000\" d=\"M208 136h-32v-32h16a16 16 0 0 0 16-16V40a16 16 0 0 0-16-16H64a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h16v32H48a16 16 0 0 0-16 16v16a16 16 0 0 0 16 16h8v40a8 8 0 0 0 16 0v-40h112v40a8 8 0 0 0 16 0v-40h8a16 16 0 0 0 16-16v-16a16 16 0 0 0-16-16ZM64 40h128v48H64Zm32 64h64v32H96Zm112 64H48v-16h160v16Z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Mise en place du mobilier de jardin<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 256 256\" fill=\"#000000\"><path fill=\"#000000\" d=\"M223.77 150.09a8 8 0 0 1-5.86 9.68l-24.64 6l6.46 24.11a8 8 0 0 1-5.66 9.8a8.25 8.25 0 0 1-2.07.32a8 8 0 0 1-7.72-5.93l-7.72-28.8L136 141.86v46.83l21.66 21.65a8 8 0 0 1-11.32 11.32L128 203.31l-18.34 18.35a8 8 0 0 1-11.32-11.32L120 188.69v-46.83l-40.55 23.41l-7.72 28.8A8 8 0 0 1 64 200a8.25 8.25 0 0 1-2.08-.27a8 8 0 0 1-5.66-9.8l6.46-24.11l-24.64-6a8 8 0 0 1 3.82-15.54l29.45 7.23L112 128l-40.64-23.46l-29.45 7.23A7.85 7.85 0 0 1 40 112a8 8 0 0 1-1.91-15.77l24.64-6l-6.46-24.16a8 8 0 0 1 15.46-4.14l7.72 28.8L120 114.14V67.31L98.34 45.66a8 8 0 0 1 11.32-11.32L128 52.69l18.34-18.35a8 8 0 0 1 11.32 11.32L136 67.31v46.83l40.55-23.41l7.72-28.8a8 8 0 0 1 15.46 4.14l-6.46 24.11l24.64 6A8 8 0 0 1 216 112a7.85 7.85 0 0 1-1.91-.23l-29.45-7.23L144 128l40.64 23.46l29.45-7.23a8 8 0 0 1 9.68 5.86Z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Mise en route du chauffage ou de la climatisation<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 32 32\" fill=\"#000000\"><path fill=\"#000000\" d=\"m5.25 2.75l-.563.531l-1.406 1.406l-.531.563l.406.656l2.094 3.5l.281.5H8.47l4 3.969c-3.574 3.59-8.121 8.152-8.281 8.313c-1.567 1.566-1.57 4.132.03 5.625c1.563 1.542 4.11 1.582 5.595 0l.03-.032L16 21.594l6.188 6.218l.093.063c1.57 1.48 4.067 1.5 5.532-.063v-.03h.03c1.532-1.567 1.548-4.114-.03-5.595l-.032-.03l-5.218-5.188c3.511-.328 6.261-3.293 6.312-6.875h.031c.004-.02 0-.043 0-.063V10c.098-1.156-.152-2.262-.75-3.219L27.47 5.72l-4.657 4.656l-1.406-1.469l4.75-4.75l-1.375-.562A7.03 7.03 0 0 0 22 3c-3.844 0-7 3.156-7 7c0 .418.09.781.156 1.156c-.437.438-.765.797-1.281 1.313L9.906 8.5V5.531l-.5-.281l-3.5-2.094zM22 5c.14 0 .238.082.375.094l-3.781 3.781l.687.719l2.813 2.906l.687.719L26.75 9.25c.02.23.184.398.156.656V10c0 2.754-2.246 5-5 5c-.367 0-.812-.086-1.312-.188l-.532-.093l-.375.375l-11.28 11.312h-.032v.032c-.71.777-1.953.796-2.781-.032v-.031h-.032c-.777-.71-.796-1.953.032-2.781c.379-.38 7.718-7.782 11.312-11.375l.407-.406l-.157-.563A6.113 6.113 0 0 1 17 10c0-2.754 2.246-5 5-5zm-16.438.25l2.344 1.438v1l-.218.218h-1L5.25 5.563zm14.625 12.156l6.22 6.188v.031h.03c.778.71.797 1.953-.03 2.781h-.032v.032c-.71.777-1.953.796-2.781-.032l-6.188-6.218z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Organisation et rappel des op\u00e9rations de maintenance et devis<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 26 26\" fill=\"#000000\"><path fill=\"#000000\" d=\"M15.5 0c-2.29 0-4.188 1.293-5.344 3.094C9.94 3.064 9.735 3 9.5 3C6.998 3 5 4.735 4.344 7.031C1.946 7.12 0 9.081 0 11.5C0 13.973 2.027 16 4.5 16h16c3.026 0 5.5-2.474 5.5-5.5c0-2.575-1.822-4.662-4.219-5.25C21.183 2.279 18.64 0 15.5 0zm0 2a4.47 4.47 0 0 1 4.469 4.125l.093.844l.813.062A3.479 3.479 0 0 1 24 10.5c0 1.944-1.556 3.5-3.5 3.5h-16A2.485 2.485 0 0 1 2 11.5a2.485 2.485 0 0 1 2.875-2.469l1.063.188l.093-1.063A3.48 3.48 0 0 1 9.5 5c.26 0 .53.027.813.094l.78.187l.345-.718A4.492 4.492 0 0 1 15.5 2zm5.469 14.844c-.95.492-3.124 1.286-3.688 2.187a1.92 1.92 0 0 0 .594 2.657c.899.565 2.021.227 2.656-.625c.565-.758.437-2.18.438-4.22zm-14 1c-.95.492-3.124 1.286-3.688 2.187a1.92 1.92 0 0 0 .594 2.657c.899.565 2.021.227 2.656-.625c.565-.758.437-2.18.438-4.22zm7 3c-.95.492-3.124 1.286-3.688 2.187a1.92 1.92 0 0 0 .594 2.657c.899.565 2.021.227 2.656-.625c.565-.758.437-2.18.438-4.22z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Passage syst\u00e9matique apr\u00e8s intemp\u00e9ries<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 15 15\" fill=\"#000000\"><path fill=\"#000000\" fill-rule=\"evenodd\" d=\"M2 3a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H2ZM0 4a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm2 .25A.25.25 0 0 1 2.25 4h2.5a.25.25 0 0 1 .25.25v1.505a.25.25 0 0 1-.25.25h-2.5a.25.25 0 0 1-.25-.25V4.25Zm10.101 3.334a2.601 2.601 0 1 1-5.202 0a2.601 2.601 0 0 1 5.202 0Zm1 0a3.601 3.601 0 1 1-7.202 0a3.601 3.601 0 0 1 7.202 0Z\" clip-rule=\"evenodd\"\/><\/svg><\/span><span class=\"tooltip-nl\">Photographies professionnelles<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 20 20\" fill=\"#000000\"><g fill=\"#000000\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6.4 4.882v4.436l7.6 2.073V2.809L6.4 4.882Zm-1 4.436a1 1 0 0 0 .737.965l7.6 2.072A1 1 0 0 0 15 11.391V2.809a1 1 0 0 0-1.263-.965l-7.6 2.073a1 1 0 0 0-.737.965v4.436Z\"\/><path d=\"M3.456 9.3H5.5V4.9H3.453a3.422 3.422 0 0 0 .003 4.4Zm2.044 1a1 1 0 0 0 1-1V4.9a1 1 0 0 0-1-1H3.253a.55.55 0 0 0-.4.172c-1.602 1.691-1.595 4.353-.002 6.052a.555.555 0 0 0 .405.176H5.5Z\"\/><path d=\"m7.269 10.87l-2.51-.28l-.978 3.91h2.636l.852-3.63Zm-2.4-1.273a1 1 0 0 0-1.081.75l-.977 3.91a1 1 0 0 0 .97 1.243h2.636a1 1 0 0 0 .974-.772l.852-3.63a1 1 0 0 0-.864-1.223l-2.51-.278Zm13.747-6.374a.5.5 0 0 1-.139.693l-1.5 1a.5.5 0 1 1-.554-.832l1.5-1a.5.5 0 0 1 .693.139ZM16.2 7.1a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1h-1.5a.5.5 0 0 1-.5-.5Zm.117 2.23a.5.5 0 0 1 .705-.06l1.38 1.159a.5.5 0 0 1-.643.765l-1.38-1.16a.5.5 0 0 1-.062-.704Z\"\/><\/g><\/svg><\/span><span class=\"tooltip-nl\">Publicit\u00e9 cibl\u00e9e<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 24 24\" fill=\"#000000\"><path fill=\"#000000\" d=\"M8.385 12.308h7.23v-1h-7.23zm0 2.769h7.23v-1h-7.23zm0 2.77h4.23v-1h-4.23zM6.615 21q-.69 0-1.152-.462T5 19.385V4.615q0-.69.463-1.152T6.616 3H14.5L19 7.5v11.885q0 .69-.462 1.153T17.384 21zM14 8V4H6.616q-.231 0-.424.192T6 4.615v14.77q0 .23.192.423t.423.192h10.77q.23 0 .423-.192t.192-.424V8zM6 4v4zv16z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Rapport d\u00e9taill\u00e9 mensuel<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 24 24\" fill=\"#000000\"><path fill=\"#000000\" d=\"m22.4 21.2l-.6-.8c-1.1-1.3-1.7-3-1.7-4.8V7.5c0-3-2.5-5.5-5.5-5.5H6C3.2 2 1 4.7 1 8s2.2 6 5 6h4v1.6c0 2 .7 3.9 2 5.4l.6.8c.1.1.2.2.4.2h9c.1 0 .2 0 .3-.1c.2-.2.3-.5.1-.7zM10 13H8.7c.5-.4.9-.9 1.3-1.4V13zm-4 0c-2.2 0-4-2.2-4-5c0-2.7 1.8-5 4-5h.1C8.2 3 10 5.3 10 8c0 2.8-1.8 5-4 5zm7.2 8l-.5-.6c-1.1-1.3-1.7-3-1.7-4.8V8c0-2.1-.9-3.9-2.2-4.9h5.7C17 3 19 5 19 7.5v8.1c0 2 .7 3.9 1.9 5.4h-7.7zM6 6.2c-.9.1-1.6.9-1.5 1.8c-.1.9.6 1.7 1.5 1.7S7.6 8.9 7.5 8c.1-.9-.6-1.7-1.5-1.8zm0 2.5c-.3 0-.5-.3-.5-.7s.2-.8.5-.8s.5.4.5.8s-.2.7-.5.7z\"\/><\/svg><\/span><span class=\"tooltip-nl\">R\u00e9assort de consommables<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"-2 -2 24 24\" fill=\"#000000\"><path fill=\"#000000\" d=\"m5.72 14.456l1.761-.508l10.603-10.73a.456.456 0 0 0-.003-.64l-.635-.642a.443.443 0 0 0-.632-.003L6.239 12.635l-.52 1.82zM18.703.664l.635.643c.876.887.884 2.318.016 3.196L8.428 15.561l-3.764 1.084a.901.901 0 0 1-1.11-.623a.915.915 0 0 1-.002-.506l1.095-3.84L15.544.647a2.215 2.215 0 0 1 3.159.016zM7.184 1.817c.496 0 .898.407.898.909a.903.903 0 0 1-.898.909H3.592c-.992 0-1.796.814-1.796 1.817v10.906c0 1.004.804 1.818 1.796 1.818h10.776c.992 0 1.797-.814 1.797-1.818v-3.635c0-.502.402-.909.898-.909s.898.407.898.91v3.634c0 2.008-1.609 3.636-3.593 3.636H3.592C1.608 19.994 0 18.366 0 16.358V5.452c0-2.007 1.608-3.635 3.592-3.635h3.592z\"\/><\/svg><\/span><span class=\"tooltip-nl\">R\u00e9daction et diffusion d'annonces<\/span><\/div><div class=\"amenity-icon-nl\"><span class=\"feature-svg-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 256 256\" fill=\"#000000\"><path fill=\"#000000\" d=\"M208 32h-24v-8a8 8 0 0 0-16 0v8H88v-8a8 8 0 0 0-16 0v8H48a16 16 0 0 0-16 16v160a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16ZM72 48v8a8 8 0 0 0 16 0v-8h80v8a8 8 0 0 0 16 0v-8h24v32H48V48Zm136 160H48V96h160v112Zm-96-88v64a8 8 0 0 1-16 0v-51.06l-4.42 2.22a8 8 0 0 1-7.16-14.32l16-8A8 8 0 0 1 112 120Zm59.16 30.45L152 176h16a8 8 0 0 1 0 16h-32a8 8 0 0 1-6.4-12.8l28.78-38.37a8 8 0 1 0-13.31-8.83a8 8 0 1 1-13.85-8A24 24 0 0 1 176 136a23.76 23.76 0 0 1-4.84 14.45Z\"\/><\/svg><\/span><span class=\"tooltip-nl\">Traitement des r\u00e9servations<\/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\" \r\n\t\tdata-title=\"Cl\u00e9 de Confiance\"\r\n\t\tdata-listing-type=\"service\"\r\n\t\tdata-classifieds-price=\"\u20ac\"\r\n\t\tdata-friendly-address=\"Savigny-sur-Orge\"\r\n\t\tdata-address=\"Savigny-sur-Orge\"\r\n\t\tdata-image=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/plugins\/listeo-core\/templates\/images\/listeo_placeholder.png\"\r\n\t\tdata-longitude=\"2.363782\"\r\n\t\tdata-latitude=\"48.6976259\"\r\n\t\t\t\t\tdata-rating=\"0\"\r\n\t\t\tdata-reviews=\"0\"\r\n\t\t\t\tdata-icon=\"<svg xmlns=&quot;http:\/\/www.w3.org\/2000\/svg&quot; width=&quot;512&quot; height=&quot;512&quot; viewBox=&quot;0 0 24 24&quot; fill=&quot;#000000&quot;><path fill=&quot;#000000&quot; d=&quot;M21 15c0-4.625-3.507-8.441-8-8.941V4h-2v2.059c-4.493.5-8 4.316-8 8.941v2h18v-2zM2 18h20v2H2z&quot;\/><\/svg>\"\r\n\r\n\t>\r\n    <div class=\"listing-card-nl\">\r\n        <!-- ===== LEFT: IMAGE SLIDER ===== -->\r\n        <div class=\"listing-image-container-nl\">\r\n            <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/cle-de-confiance\/\">\r\n                <div class=\"slider-wrapper-nl\">\r\n                    \t\t<img decoding=\"async\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/plugins\/listeo-core\/templates\/images\/listeo_placeholder.png\" alt=\"Cl\u00e9 de Confiance\" class=\"slider-image-nl\">\r\n                <\/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\">Intendance compl\u00e8te<\/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:\/\/monannuaire-conciergerie.fr\/en\/referencement\/cle-de-confiance\/\" 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\">Cl\u00e9 de Confiance                    <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\">Savigny-sur-Orge<\/p>\t            <\/div>\r\n\r\n            <!-- Sidebar Column (Right) -->\r\n            <div class=\"details-sidebar-col-nl\">\r\n                <div class=\"details-sidebar-upper-nl\">\r\n                                                <div class=\"listing-rating-nl\">\r\n                                <div class=\"rating-text-nl no-rating\">No reviews yet<\/div>\r\n                            <\/div>\r\n                                    <\/div>\r\n                            <\/div>\r\n\r\n        <\/a>\r\n\r\n    <\/div>\r\n<\/div>\n                    <\/div>\n                          <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t<div class=\"elementor-element elementor-element-297671fb e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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\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 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\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1fbd7e3f e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"578\" height=\"660\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2020\/11\/new-home.jpg\" class=\"attachment-1536x1536 size-1536x1536 wp-image-62\" alt=\"Friends Having A Good Time In A Cafe\" srcset=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2020\/11\/new-home.jpg 578w, https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2020\/11\/new-home-263x300.jpg 263w, https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2020\/11\/new-home-200x228.jpg 200w, https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2020\/11\/new-home-517x590.jpg 517w\" sizes=\"(max-width: 578px) 100vw, 578px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div 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\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"123\" height=\"106\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2024\/02\/555-1.svg\" class=\"attachment-large size-large wp-image-36\" alt=\"555 1.svg\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-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\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"158\" height=\"108\" src=\"https:\/\/monannuaire-conciergerie.fr\/wp-content\/uploads\/2024\/02\/666-1.svg\" class=\"attachment-large size-large wp-image-37\" alt=\"666 1.svg\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-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\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\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 wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no 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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.<\/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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.\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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.<\/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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.\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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.<\/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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.\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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.<\/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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.\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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.<\/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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.\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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.<\/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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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>Un s\u00e9jour inoubliable \u00e0 la montagne. Superbe sppartement,  tr\u00e8s bien agenc\u00e9 et propre. \r\nJe recommande les yeux ferm\u00e9s.\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='Sandra' src='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/6897996ff4975fe96468b7ec9a03b18b.jpg?ver=1776985624' srcset='https:\/\/monannuaire-conciergerie.fr\/wp-content\/litespeed\/avatar\/f9d4578c25f0ee15b2462a6d2a361e5f.jpg?ver=1776985624 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>Sandra reviewed<\/span>\n\t\t\t\t\t\t\t\t\t\t<h5> <a href=\"https:\/\/monannuaire-conciergerie.fr\/en\/referencement\/plumwhite-conciergerie\/#comment-323\">Plum\u2019White Conciergerie<\/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\u2019s 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\u2019s Photography Tom\u2019s Restaurant Florist\u2019s Shop Think Coffe Airport Private Bedroom in Manhattan Fitness Center Trusted by Cutting-Edge Companies Browse by Category Explore wide range of listings for every preference Apartments 2 Listings Eat &#038; Drink 3 Listings Events 1 Listing Fitness 1 Listing Boost Your Brand Captivating Boost \ud83d\ude80 online presence, engage with customers. Over 300k monthly individuals search and evaluate businesses on Listeo. Find Interesting Place You can search for areas of interest, local events, trendy restaurants or just things you want to do. Check Reviews We collect reviews from our users so you can get an honest opinion of their experience. Make Reservation Book your desired experience effortlessly via our user-friendly website. The joy awaits you. Most Visited Places Discover top-rated local businesses iPhone 12 Pro \u2013 Mint Condition Ronkonkoma, New York $899 Featured $5.00 \u2013 $25.00 Now Closed Eat &#038; Drink Burger House Jay St, Brooklyn, New York No reviews yet Featured $150.00 \u2013 $500.00 Apartments Sunny Apartment Dorothea Lane, New York No reviews yet Now Closed Services George\u2019s Barber Shop Auburndale, Queens, NY (1 review) Featured Starts from $20.00 October 6, 2019 Events Sticky Band West Orange, New York (1 review) $35.00 \u2013 $200.00 Services Joe\u2019s Photography Sunrise Hwy, New York (1 review) Outcomes That Keep You Growing Join over 9,000 brands that have opted for our platform over competitors, for an advanced review collection solution. More Afforable Cost The Insight Gained is Much Wider More Flexible Study Time Generate own blob on blobmaker.app Recent Reviews \ud83d\ude0a Id adipisci nisi quibusdam earum et quas odio libero ullam. Mollitia sapiente pariatur voluptate numquam eum minus. Nina Christiansen reviewed Florist\u2019s Shop Maxime quisquam corporis exercitationem dolore. Rem dolorem minus. Ad maiores laboriosam quis eos maxime nobis blanditiis cupiditate. Marietta Huel reviewed Think Coffe Sunt suscipit ipsa praesentium optio. Facere sed libero ipsam quod. Greyson Mosciski reviewed Tom\u2019s Restaurant Voluptatibus asperiores repellendus magnam. Cupiditate nihil expedita perferendis ex nemo deserunt rerum. Similique hic dolor dicta adipisci. Kassandra Heidenreich reviewed Joe\u2019s Photography Doloremque eius nobis magnam ullam cumque magnam voluptatibus. Nigel Roob reviewed Sticky Band Great business \ud83d\udc4d Aracely Ernser reviewed Fitness Center Great service all around! Highly recommended. Olga Gutmann reviewed Private Bedroom in Manhattan Great service! \ud83e\udd70 Five stars! Tom Smith reviewed George\u2019s Barber Shop Id adipisci nisi quibusdam earum et quas odio libero ullam. Mollitia sapiente pariatur voluptate numquam eum minus. Nina Christiansen reviewed Florist\u2019s Shop Maxime quisquam corporis exercitationem dolore. Rem dolorem minus. Ad maiores laboriosam quis eos maxime nobis blanditiis cupiditate. Marietta Huel reviewed Think Coffe Sunt suscipit ipsa praesentium optio. Facere sed libero ipsam quod. Greyson Mosciski reviewed Tom\u2019s Restaurant Voluptatibus asperiores repellendus magnam. Cupiditate nihil expedita perferendis ex nemo deserunt rerum. Similique hic dolor dicta adipisci. Kassandra Heidenreich reviewed Joe\u2019s Photography<\/p>","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"slim_seo":{"title":"Cl\u00e9 de Confiance - Mon annuaire conciergerie","description":"Bas\u00e9e \u00e0 Savigny-sur-Orge, Cl\u00e9 de confiance est une conciergerie locale, humaine et impliqu\u00e9e. Sa fondatrice, C\u00e9line, met tout en \u0153uvre pour offrir un accompagne"},"footnotes":""},"class_list":["post-102","page","type-page","status-publish","hentry"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/monannuaire-conciergerie.fr\/en\/wp-json\/wp\/v2\/pages\/102","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/monannuaire-conciergerie.fr\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/monannuaire-conciergerie.fr\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/monannuaire-conciergerie.fr\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/monannuaire-conciergerie.fr\/en\/wp-json\/wp\/v2\/comments?post=102"}],"version-history":[{"count":0,"href":"https:\/\/monannuaire-conciergerie.fr\/en\/wp-json\/wp\/v2\/pages\/102\/revisions"}],"wp:attachment":[{"href":"https:\/\/monannuaire-conciergerie.fr\/en\/wp-json\/wp\/v2\/media?parent=102"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}