{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/JrBqeyrDaDn63d2BTBGM/9l0MPtLF8GHrWWY3qlDm/gD5joJt0R.js", "ssg:https://framerusercontent.com/modules/DmnI5RfAJo8mxvqzowLj/ZVQ9UvuCy43Hp0jo5vu6/lSy4HlWoD.js", "ssg:https://framerusercontent.com/modules/ukEFY5lhJsTPn7yxiI3A/aAJiHwsecc4AcC9XfN71/pKiV83IZf.js", "ssg:https://framerusercontent.com/modules/MEbIOCaTAVBPDWPxro55/mffEUSvKkKEQwiz2XVQy/fJTbzOd4_.js", "ssg:https://framerusercontent.com/modules/oH8YIGaCxkMPTDj5Toee/3tS4vXv0VfGfTGAgsnPQ/PPblWDcI8.js", "ssg:https://framerusercontent.com/modules/c67QUEUh9CEIvhxttTJf/0dMZAUPDn5RnZzXsvkZ6/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(u));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=f.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return i(e)?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return l(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){d(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:g(i,s,o[r]),easing:m(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,O(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=x((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=G.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=w(p(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const s=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:i(t)?()=>t(n):scrubAnimation(t,n[s])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const ce={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const le={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of ue)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"oUcl6QgiA\",\"LYs2dWWLo\"];const serializationHash=\"framer-VNKk1\";const variantClassNames={LYs2dWWLo:\"framer-v-1gtkqc0\",oUcl6QgiA:\"framer-v-1idf93f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Closed / Light\":\"LYs2dWWLo\",\"Open / Light\":\"oUcl6QgiA\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,PmxXfIOLX:click!==null&&click!==void 0?click:props.PmxXfIOLX,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"oUcl6QgiA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,PmxXfIOLX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oUcl6QgiA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1q6z8a5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PmxXfIOLX){const res=await PmxXfIOLX(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LYs2dWWLo\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1idf93f\",className,classNames),\"data-framer-name\":\"Open / Light\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oUcl6QgiA\",onTap:onTap1q6z8a5,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({LYs2dWWLo:{\"data-framer-name\":\"Closed / Light\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4s1zz9\",layoutDependency:layoutDependency,layoutId:\"qwPB3Y6Z2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dfq0w3\",layoutDependency:layoutDependency,layoutId:\"R7MpJ6qHt\",style:{backgroundColor:\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:0},variants:{LYs2dWWLo:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12tqhwm\",layoutDependency:layoutDependency,layoutId:\"NnmH5BTyx\",style:{backgroundColor:\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:0},variants:{LYs2dWWLo:{rotate:-45}}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zpxo0n\",layoutDependency:layoutDependency,layoutId:\"DeWVrgtbO\",style:{backgroundColor:\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VNKk1.framer-wcynop, .framer-VNKk1 .framer-wcynop { display: block; }\",\".framer-VNKk1.framer-1idf93f { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; }\",\".framer-VNKk1 .framer-4s1zz9 { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-VNKk1 .framer-1dfq0w3 { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: 6px; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VNKk1 .framer-12tqhwm { bottom: 6px; flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VNKk1 .framer-zpxo0n { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VNKk1.framer-1idf93f { gap: 0px; } .framer-VNKk1.framer-1idf93f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VNKk1.framer-1idf93f > :first-child { margin-left: 0px; } .framer-VNKk1.framer-1idf93f > :last-child { margin-right: 0px; } }\",\".framer-VNKk1.framer-v-1gtkqc0 .framer-1dfq0w3 { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-VNKk1.framer-v-1gtkqc0 .framer-12tqhwm { bottom: unset; top: calc(50.00000000000002% - 2px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"LYs2dWWLo\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"PmxXfIOLX\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergD5joJt0R=withCSS(Component,css,\"framer-VNKk1\");export default FramergD5joJt0R;FramergD5joJt0R.displayName=\"Nav/Burger\";FramergD5joJt0R.defaultProps={height:40,width:40};addPropertyControls(FramergD5joJt0R,{variant:{options:[\"oUcl6QgiA\",\"LYs2dWWLo\"],optionTitles:[\"Open / Light\",\"Closed / Light\"],title:\"Variant\",type:ControlType.Enum},PmxXfIOLX:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramergD5joJt0R,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergD5joJt0R\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LYs2dWWLo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"40\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"PmxXfIOLX\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gD5joJt0R.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import NavBurger from\"https://framerusercontent.com/modules/JrBqeyrDaDn63d2BTBGM/9l0MPtLF8GHrWWY3qlDm/gD5joJt0R.js\";import Logo from\"https://framerusercontent.com/modules/PWm1RLdCjHZp3tYmCk1w/XYXCiCKVhJAXuTHWzlrk/j0MyLXxa8.js\";import Button from\"https://framerusercontent.com/modules/5pmhRuaFfVPubuLnVMaL/ViTRE9OpqrVPLpK0lAGK/u_2DkHM8O.js\";const LogoFonts=getFonts(Logo);const ButtonFonts=getFonts(Button);const NavBurgerFonts=getFonts(NavBurger);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"LtpCNatUo\",\"Z1RNd7lnK\",\"wemSNaP3k\",\"zppV8kcbn\",\"fyJjF1ITL\"];const serializationHash=\"framer-Chw1n\";const variantClassNames={fyJjF1ITL:\"framer-v-m5axvz\",LtpCNatUo:\"framer-v-7rae0g\",wemSNaP3k:\"framer-v-te80dl\",Z1RNd7lnK:\"framer-v-8xbnmb\",zppV8kcbn:\"framer-v-1dtitlo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.1,delay:0,duration:.5,type:\"spring\"};const transition3={bounce:.2,delay:0,duration:.5,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile Closed\":\"zppV8kcbn\",\"Tablet Closed\":\"Z1RNd7lnK\",\"Tablet Open\":\"wemSNaP3k\",\"Variant 5\":\"fyJjF1ITL\",Desktop:\"LtpCNatUo\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"LtpCNatUo\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LtpCNatUo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const PmxXfIOLXtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const PmxXfIOLX1pexxm1=activeVariantCallback(async(...args)=>{setVariant(\"Z1RNd7lnK\");});const PmxXfIOLXlnyrl0=activeVariantCallback(async(...args)=>{setVariant(\"fyJjF1ITL\");});const PmxXfIOLXifqvtk=activeVariantCallback(async(...args)=>{setVariant(\"zppV8kcbn\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Z1RNd7lnK\",\"wemSNaP3k\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"wemSNaP3k\",\"zppV8kcbn\",\"fyJjF1ITL\"].includes(baseVariant))return true;return false;};const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed2=()=>{if(baseVariant===\"Z1RNd7lnK\")return false;return true;};const isDisplayed3=()=>{if([\"wemSNaP3k\",\"zppV8kcbn\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({fyJjF1ITL:{value:transition3},wemSNaP3k:{value:transition3},Z1RNd7lnK:{value:transition2},zppV8kcbn:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7rae0g\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"LtpCNatUo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 61, 61)\",...style},...addPropertyOverrides({fyJjF1ITL:{\"data-framer-name\":\"Variant 5\"},wemSNaP3k:{\"data-framer-name\":\"Tablet Open\"},Z1RNd7lnK:{\"data-framer-name\":\"Tablet Closed\"},zppV8kcbn:{\"data-framer-name\":\"Mobile Closed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eg45yx\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"e20lfKjvF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ylrye\",layoutDependency:layoutDependency,layoutId:\"PyYi8U3kN\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(16+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||100)-32-40)/2)+0+7105427357601002e-30,...addPropertyOverrides({fyJjF1ITL:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+0+0+7105427357601002e-30},wemSNaP3k:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+0+3+7105427357601002e-30},Z1RNd7lnK:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+3+7105427357601002e-30},zppV8kcbn:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+0+7105427357601002e-30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-62k2b2-container\",layoutDependency:layoutDependency,layoutId:\"XhBkJbJNJ-container\",transformTemplate:transformTemplate1,...addPropertyOverrides({fyJjF1ITL:{transformTemplate:transformTemplate2},zppV8kcbn:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"XhBkJbJNJ\",layoutId:\"XhBkJbJNJ\",variant:\"nEpgs6Tj9\",width:\"100%\",...addPropertyOverrides({fyJjF1ITL:{variant:\"CgL_5gL0i\"},zppV8kcbn:{variant:\"CgL_5gL0i\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cx7q3u\",layoutDependency:layoutDependency,layoutId:\"EuboUd8Ro\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({wemSNaP3k:{height:46,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+0+0+0},Z1RNd7lnK:{height:46,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qcetls-container\",layoutDependency:layoutDependency,layoutId:\"nmTl8EGuM-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"nmTl8EGuM\",ivM1kjjp7:\"Estimer mes revenus\",layoutId:\"nmTl8EGuM\",variant:\"t8jod_lOR\",width:\"100%\",...addPropertyOverrides({wemSNaP3k:{P323yqCPx:\"https://tally.so/r/w8J9Vo\"},Z1RNd7lnK:{P323yqCPx:\"https://tally.so/r/w8J9Vo\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fyJjF1ITL:{height:40,width:\"40px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+0+0+0},wemSNaP3k:{height:40,width:\"40px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+0+0+3},zppV8kcbn:{height:40,width:\"40px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-os02c9-container\",id:`${layoutId}-os02c9`,layoutDependency:layoutDependency,layoutId:\"IWtCpODnM-container\",ref:ref2,children:[/*#__PURE__*/_jsx(NavBurger,{height:\"100%\",id:\"IWtCpODnM\",layoutId:\"IWtCpODnM\",PmxXfIOLX:PmxXfIOLXtxyyif({overlay}),style:{height:\"100%\",width:\"100%\"},variant:\"oUcl6QgiA\",width:\"100%\",...addPropertyOverrides({fyJjF1ITL:{PmxXfIOLX:PmxXfIOLXifqvtk,variant:\"LYs2dWWLo\"},wemSNaP3k:{PmxXfIOLX:PmxXfIOLX1pexxm1,variant:\"LYs2dWWLo\"},zppV8kcbn:{PmxXfIOLX:PmxXfIOLXlnyrl0}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-os02c9`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1nh84u1\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"vuX5l3EN3\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"}})})})]})})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vbaxf1\",\"data-framer-name\":\"nav items\",layoutDependency:layoutDependency,layoutId:\"cQaVwiE0E\",style:{opacity:1},variants:{zppV8kcbn:{opacity:0}}}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-v2fflx\",\"data-framer-name\":\"buttons\",layoutDependency:layoutDependency,layoutId:\"VIPXVto6P\",style:{opacity:1},variants:{zppV8kcbn:{opacity:0}},children:isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(16+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||100)-32-46)/2)+0,...addPropertyOverrides({fyJjF1ITL:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+120+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pny1gk-container\",layoutDependency:layoutDependency,layoutId:\"lFo8QRD9w-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"lFo8QRD9w\",ivM1kjjp7:\"Estimer mes revenus\",layoutId:\"lFo8QRD9w\",P323yqCPx:\"https://tally.so/r/w8J9Vo\",variant:\"gLowOQWzG\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Chw1n.framer-jac87p, .framer-Chw1n .framer-jac87p { display: block; }\",\".framer-Chw1n.framer-7rae0g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100px; justify-content: flex-start; overflow: visible; padding: 16px 104px 16px 104px; position: relative; width: 1440px; }\",\".framer-Chw1n .framer-1eg45yx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Chw1n .framer-11ylrye { flex: none; height: 40px; overflow: visible; position: relative; width: 160px; }\",\".framer-Chw1n .framer-62k2b2-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; width: auto; }\",\".framer-Chw1n .framer-cx7q3u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 40px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Chw1n .framer-qcetls-container, .framer-Chw1n .framer-pny1gk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Chw1n .framer-os02c9-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-Chw1n .framer-1nh84u1 { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Chw1n .framer-vbaxf1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; min-height: 46px; min-width: 504px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Chw1n .framer-v2fflx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Chw1n.framer-7rae0g, .framer-Chw1n .framer-cx7q3u, .framer-Chw1n .framer-vbaxf1, .framer-Chw1n .framer-v2fflx { gap: 0px; } .framer-Chw1n.framer-7rae0g > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Chw1n.framer-7rae0g > :first-child, .framer-Chw1n .framer-cx7q3u > :first-child, .framer-Chw1n .framer-vbaxf1 > :first-child, .framer-Chw1n .framer-v2fflx > :first-child { margin-left: 0px; } .framer-Chw1n.framer-7rae0g > :last-child, .framer-Chw1n .framer-cx7q3u > :last-child, .framer-Chw1n .framer-vbaxf1 > :last-child, .framer-Chw1n .framer-v2fflx > :last-child { margin-right: 0px; } .framer-Chw1n .framer-cx7q3u > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Chw1n .framer-vbaxf1 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Chw1n .framer-v2fflx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-Chw1n.framer-v-8xbnmb.framer-7rae0g { flex-direction: column; height: 80px; padding: 20px 24px 16px 24px; width: 810px; }\",\".framer-Chw1n.framer-v-8xbnmb .framer-1eg45yx, .framer-Chw1n.framer-v-1dtitlo .framer-1eg45yx { flex: none; order: 0; width: 100%; }\",\".framer-Chw1n.framer-v-8xbnmb .framer-cx7q3u, .framer-Chw1n.framer-v-te80dl .framer-cx7q3u, .framer-Chw1n.framer-v-1dtitlo .framer-cx7q3u, .framer-Chw1n.framer-v-m5axvz .framer-cx7q3u { justify-content: flex-end; min-height: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Chw1n.framer-v-8xbnmb.framer-7rae0g { gap: 0px; } .framer-Chw1n.framer-v-8xbnmb.framer-7rae0g > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Chw1n.framer-v-8xbnmb.framer-7rae0g > :first-child { margin-top: 0px; } .framer-Chw1n.framer-v-8xbnmb.framer-7rae0g > :last-child { margin-bottom: 0px; } }\",\".framer-Chw1n.framer-v-te80dl.framer-7rae0g { flex-direction: column; height: min-content; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 16px 24px 40px 24px; width: 810px; }\",\".framer-Chw1n.framer-v-te80dl .framer-1eg45yx, .framer-Chw1n.framer-v-m5axvz .framer-1eg45yx { flex: none; width: 100%; }\",\".framer-Chw1n.framer-v-te80dl .framer-vbaxf1, .framer-Chw1n.framer-v-m5axvz .framer-vbaxf1 { align-content: flex-start; align-items: flex-start; flex-direction: column; min-width: unset; width: 100%; }\",\".framer-Chw1n.framer-v-te80dl .framer-v2fflx { flex: none; justify-content: flex-start; min-height: 46px; padding: 0px 0px 0px 24px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Chw1n.framer-v-te80dl.framer-7rae0g, .framer-Chw1n.framer-v-te80dl .framer-vbaxf1 { gap: 0px; } .framer-Chw1n.framer-v-te80dl.framer-7rae0g > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Chw1n.framer-v-te80dl.framer-7rae0g > :first-child, .framer-Chw1n.framer-v-te80dl .framer-vbaxf1 > :first-child { margin-top: 0px; } .framer-Chw1n.framer-v-te80dl.framer-7rae0g > :last-child, .framer-Chw1n.framer-v-te80dl .framer-vbaxf1 > :last-child { margin-bottom: 0px; } .framer-Chw1n.framer-v-te80dl .framer-vbaxf1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-Chw1n.framer-v-1dtitlo.framer-7rae0g { flex-direction: column; gap: 32px; height: 80px; padding: 20px 16px 16px 16px; width: 390px; }\",\".framer-Chw1n.framer-v-1dtitlo .framer-11ylrye { align-self: stretch; flex: 1 0 0px; height: auto; width: 1px; }\",\".framer-Chw1n.framer-v-1dtitlo .framer-62k2b2-container, .framer-Chw1n.framer-v-m5axvz .framer-62k2b2-container { left: 0px; }\",\".framer-Chw1n.framer-v-1dtitlo .framer-vbaxf1 { align-content: flex-start; align-items: flex-start; flex-direction: column; min-width: unset; order: 1; width: 100%; }\",\".framer-Chw1n.framer-v-1dtitlo .framer-v2fflx { flex: none; flex-direction: column; justify-content: flex-start; min-height: 46px; order: 2; padding: 0px 0px 0px 24px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Chw1n.framer-v-1dtitlo.framer-7rae0g, .framer-Chw1n.framer-v-1dtitlo .framer-vbaxf1, .framer-Chw1n.framer-v-1dtitlo .framer-v2fflx { gap: 0px; } .framer-Chw1n.framer-v-1dtitlo.framer-7rae0g > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Chw1n.framer-v-1dtitlo.framer-7rae0g > :first-child, .framer-Chw1n.framer-v-1dtitlo .framer-vbaxf1 > :first-child, .framer-Chw1n.framer-v-1dtitlo .framer-v2fflx > :first-child { margin-top: 0px; } .framer-Chw1n.framer-v-1dtitlo.framer-7rae0g > :last-child, .framer-Chw1n.framer-v-1dtitlo .framer-vbaxf1 > :last-child, .framer-Chw1n.framer-v-1dtitlo .framer-v2fflx > :last-child { margin-bottom: 0px; } .framer-Chw1n.framer-v-1dtitlo .framer-vbaxf1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Chw1n.framer-v-1dtitlo .framer-v2fflx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-Chw1n.framer-v-m5axvz.framer-7rae0g { flex-direction: column; height: min-content; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 16px 16px 40px 16px; width: 390px; }\",\".framer-Chw1n.framer-v-m5axvz .framer-11ylrye { flex: 1 0 0px; width: 1px; }\",\".framer-Chw1n.framer-v-m5axvz .framer-v2fflx { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; justify-content: flex-start; padding: 0px 0px 0px 24px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Chw1n.framer-v-m5axvz.framer-7rae0g, .framer-Chw1n.framer-v-m5axvz .framer-vbaxf1, .framer-Chw1n.framer-v-m5axvz .framer-v2fflx { gap: 0px; } .framer-Chw1n.framer-v-m5axvz.framer-7rae0g > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Chw1n.framer-v-m5axvz.framer-7rae0g > :first-child, .framer-Chw1n.framer-v-m5axvz .framer-vbaxf1 > :first-child, .framer-Chw1n.framer-v-m5axvz .framer-v2fflx > :first-child { margin-top: 0px; } .framer-Chw1n.framer-v-m5axvz.framer-7rae0g > :last-child, .framer-Chw1n.framer-v-m5axvz .framer-vbaxf1 > :last-child, .framer-Chw1n.framer-v-m5axvz .framer-v2fflx > :last-child { margin-bottom: 0px; } .framer-Chw1n.framer-v-m5axvz .framer-vbaxf1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Chw1n.framer-v-m5axvz .framer-v2fflx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z1RNd7lnK\":{\"layout\":[\"fixed\",\"fixed\"]},\"wemSNaP3k\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"zppV8kcbn\":{\"layout\":[\"fixed\",\"fixed\"]},\"fyJjF1ITL\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlSy4HlWoD=withCSS(Component,css,\"framer-Chw1n\");export default FramerlSy4HlWoD;FramerlSy4HlWoD.displayName=\"Nav/Header\";FramerlSy4HlWoD.defaultProps={height:100,width:1440};addPropertyControls(FramerlSy4HlWoD,{variant:{options:[\"LtpCNatUo\",\"Z1RNd7lnK\",\"wemSNaP3k\",\"zppV8kcbn\",\"fyJjF1ITL\"],optionTitles:[\"Desktop\",\"Tablet Closed\",\"Tablet Open\",\"Mobile Closed\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerlSy4HlWoD,[{explicitInter:true,fonts:[]},...LogoFonts,...ButtonFonts,...NavBurgerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlSy4HlWoD\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z1RNd7lnK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wemSNaP3k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"zppV8kcbn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fyJjF1ITL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"100\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lSy4HlWoD.map", "// Generated by Framer (d5ca742)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jEvIa4qvnwNxGgQSzso6/YANfBBSqaUccCH80pQUt/lposRbecE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/boqsqZ8LhN5lHL4O6xkC/19jgrhPW0ZwFOquVNshv/yI7hZ_OfA.js\";const enabledGestures={T4OQY28xE:{hover:true}};const cycleOrder=[\"T4OQY28xE\",\"wC_S85EWL\"];const serializationHash=\"framer-8U4m6\";const variantClassNames={T4OQY28xE:\"framer-v-toilnc\",wC_S85EWL:\"framer-v-1a6jg9y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop open\":\"wC_S85EWL\",Desktop:\"T4OQY28xE\"};const getProps=({answer,height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,B4tgbt_h4:(_ref=answer!==null&&answer!==void 0?answer:props.B4tgbt_h4)!==null&&_ref!==void 0?_ref:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"T4OQY28xE\",ZVjcDncni:(_ref2=title!==null&&title!==void 0?title:props.ZVjcDncni)!==null&&_ref2!==void 0?_ref2:\"Question ?\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZVjcDncni,B4tgbt_h4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T4OQY28xE\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap5yjpgz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"T4OQY28xE\");});const onTaphytq6z=activeVariantCallback(async(...args)=>{setVariant(\"wC_S85EWL\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"T4OQY28xE-hover\")return false;if(baseVariant===\"wC_S85EWL\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"T4OQY28xE-hover\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"wC_S85EWL\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-toilnc\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"T4OQY28xE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"T4OQY28xE-hover\":{\"data-framer-name\":undefined},wC_S85EWL:{\"data-framer-name\":\"Desktop open\",\"data-highlight\":true,onTap:onTap5yjpgz}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10klt67\",\"data-framer-name\":\"type=open, device=desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"f1UO4Q9P5\",onTap:onTaphytq6z,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 1px 3px 0px rgba(169, 169, 175, 0.4000000059604645)\"},variants:{\"T4OQY28xE-hover\":{backgroundColor:\"var(--token-a7c5f6d7-cb5b-47db-ba61-0f27100529ed, rgb(210, 247, 247))\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g3caeq\",\"data-framer-name\":\"Frame 1000005143\",layoutDependency:layoutDependency,layoutId:\"saO19BOLF\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qit5s\",\"data-framer-name\":\"down arrow / 24 / Outline\",layoutDependency:layoutDependency,layoutId:\"ROSpvH39W\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14v4vh9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:15,layoutDependency:layoutDependency,layoutId:\"mH9DRyVUl\",svg:'<svg width=\"15\" height=\"10\" viewBox=\"0 0 15 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.6664 1.22659C13.4166 0.978256 13.0787 0.838867 12.7264 0.838867C12.3742 0.838867 12.0363 0.978256 11.7864 1.22659L6.99977 5.94659L2.27977 1.22659C2.02995 0.978256 1.69202 0.838867 1.33977 0.838867C0.987521 0.838867 0.649585 0.978256 0.399769 1.22659C0.274798 1.35054 0.175605 1.49801 0.107913 1.66049C0.0402218 1.82297 0.00537109 1.99724 0.00537109 2.17326C0.00537109 2.34927 0.0402218 2.52355 0.107913 2.68603C0.175605 2.84851 0.274798 2.99597 0.399769 3.11992L6.0531 8.77326C6.17705 8.89823 6.32452 8.99742 6.487 9.06511C6.64948 9.1328 6.82375 9.16765 6.99977 9.16765C7.17578 9.16765 7.35006 9.1328 7.51254 9.06511C7.67502 8.99742 7.82248 8.89823 7.94643 8.77326L13.6664 3.11992C13.7914 2.99597 13.8906 2.84851 13.9583 2.68603C14.026 2.52355 14.0608 2.34927 14.0608 2.17326C14.0608 1.99724 14.026 1.82297 13.9583 1.66049C13.8906 1.49801 13.7914 1.35054 13.6664 1.22659Z\" fill=\"#73737D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-364e1cb7-8a99-495d-9f0b-fd3531eb8bc0, rgb(115, 115, 125)))\"},children:\"Question ?\"})}),className:\"framer-1bazud6\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZH8EThlxB\",style:{\"--extracted-a0htzi\":\"var(--token-364e1cb7-8a99-495d-9f0b-fd3531eb8bc0, rgb(115, 115, 125))\",\"--framer-paragraph-spacing\":\"0px\"},text:ZVjcDncni,variants:{\"T4OQY28xE-hover\":{\"--extracted-a0htzi\":\"var(--token-f375a0cf-1602-4ce0-aa3a-1a515e1d4865, rgb(13, 86, 86))\"},wC_S85EWL:{\"--extracted-a0htzi\":\"var(--token-f375a0cf-1602-4ce0-aa3a-1a515e1d4865, rgb(13, 86, 86))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"T4OQY28xE-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f375a0cf-1602-4ce0-aa3a-1a515e1d4865, rgb(13, 86, 86)))\"},children:\"Question ?\"})})},wC_S85EWL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f375a0cf-1602-4ce0-aa3a-1a515e1d4865, rgb(13, 86, 86)))\"},children:\"Question ?\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wo1oda\",\"data-framer-name\":\"down arrow / 24 / Outline\",layoutDependency:layoutDependency,layoutId:\"NHmWW6cDw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qkbw0d\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:15,layoutDependency:layoutDependency,layoutId:\"xXjVQIAXY\",svg:'<svg width=\"15\" height=\"10\" viewBox=\"0 0 15 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.6664 1.22659C13.4166 0.978256 13.0787 0.838867 12.7264 0.838867C12.3742 0.838867 12.0363 0.978256 11.7864 1.22659L6.99977 5.94659L2.27977 1.22659C2.02995 0.978256 1.69202 0.838867 1.33977 0.838867C0.987521 0.838867 0.649585 0.978256 0.399769 1.22659C0.274798 1.35054 0.175605 1.49801 0.107913 1.66049C0.0402218 1.82297 0.00537109 1.99724 0.00537109 2.17326C0.00537109 2.34927 0.0402218 2.52355 0.107913 2.68603C0.175605 2.84851 0.274798 2.99597 0.399769 3.11992L6.0531 8.77326C6.17705 8.89823 6.32452 8.99742 6.487 9.06511C6.64948 9.1328 6.82375 9.16765 6.99977 9.16765C7.17578 9.16765 7.35006 9.1328 7.51254 9.06511C7.67502 8.99742 7.82248 8.89823 7.94643 8.77326L13.6664 3.11992C13.7914 2.99597 13.8906 2.84851 13.9583 2.68603C14.026 2.52355 14.0608 2.34927 14.0608 2.17326C14.0608 1.99724 14.026 1.82297 13.9583 1.66049C13.8906 1.49801 13.7914 1.35054 13.6664 1.22659Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rgjejq\",\"data-framer-name\":\"upper arrow / 24 / Outline\",layoutDependency:layoutDependency,layoutId:\"BKZskZ9OO\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8g1soy\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:15,layoutDependency:layoutDependency,layoutId:\"KjiSOsKfl\",svg:'<svg width=\"15\" height=\"10\" viewBox=\"0 0 15 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.6664 6.87976L7.94643 1.22643C7.82248 1.10146 7.67502 1.00227 7.51254 0.934574C7.35006 0.866883 7.17578 0.832031 6.99977 0.832031C6.82375 0.832031 6.64948 0.866883 6.487 0.934574C6.32452 1.00227 6.17705 1.10146 6.0531 1.22643L0.399769 6.87976C0.274798 7.00371 0.175605 7.15118 0.107913 7.31366C0.0402218 7.47614 0.00537109 7.65041 0.00537109 7.82643C0.00537109 8.00244 0.0402218 8.17672 0.107913 8.3392C0.175605 8.50168 0.274798 8.64915 0.399769 8.7731C0.649585 9.02143 0.987521 9.16082 1.33977 9.16082C1.69202 9.16082 2.02995 9.02143 2.27977 8.7731L6.99977 4.0531L11.7198 8.7731C11.9681 9.01942 12.3033 9.15829 12.6531 9.15976C12.8286 9.16078 13.0025 9.12714 13.165 9.06079C13.3274 8.99444 13.4752 8.89667 13.5998 8.7731C13.7292 8.6536 13.8337 8.50965 13.9071 8.34955C13.9806 8.18945 14.0216 8.01638 14.0278 7.84033C14.034 7.66428 14.0053 7.48875 13.9433 7.32388C13.8812 7.15901 13.7871 7.00806 13.6664 6.87976Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gkc3ui\",\"data-framer-name\":\"answer\",layoutDependency:layoutDependency,layoutId:\"Qy1dlwcFQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"})}),className:\"framer-u4uglc\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YnPYEEhb8\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:B4tgbt_h4,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8U4m6.framer-ga9vz0, .framer-8U4m6 .framer-ga9vz0 { display: block; }\",\".framer-8U4m6.framer-toilnc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1232px; }\",\".framer-8U4m6 .framer-10klt67 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-8U4m6 .framer-1g3caeq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8U4m6 .framer-1qit5s, .framer-8U4m6 .framer-wo1oda, .framer-8U4m6 .framer-1rgjejq { flex: none; height: 32px; overflow: hidden; position: relative; width: 32px; }\",\".framer-8U4m6 .framer-14v4vh9, .framer-8U4m6 .framer-1qkbw0d, .framer-8U4m6 .framer-8g1soy { bottom: 13px; flex: none; left: 9px; position: absolute; right: 9px; top: 11px; }\",\".framer-8U4m6 .framer-1bazud6, .framer-8U4m6 .framer-u4uglc { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8U4m6 .framer-1gkc3ui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 56px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8U4m6.framer-toilnc, .framer-8U4m6 .framer-10klt67, .framer-8U4m6 .framer-1g3caeq, .framer-8U4m6 .framer-1gkc3ui { gap: 0px; } .framer-8U4m6.framer-toilnc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8U4m6.framer-toilnc > :first-child, .framer-8U4m6 .framer-10klt67 > :first-child { margin-top: 0px; } .framer-8U4m6.framer-toilnc > :last-child, .framer-8U4m6 .framer-10klt67 > :last-child { margin-bottom: 0px; } .framer-8U4m6 .framer-10klt67 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-8U4m6 .framer-1g3caeq > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-8U4m6 .framer-1g3caeq > :first-child, .framer-8U4m6 .framer-1gkc3ui > :first-child { margin-left: 0px; } .framer-8U4m6 .framer-1g3caeq > :last-child, .framer-8U4m6 .framer-1gkc3ui > :last-child { margin-right: 0px; } .framer-8U4m6 .framer-1gkc3ui > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-8U4m6.framer-v-1a6jg9y .framer-1bazud6, .framer-8U4m6.framer-v-toilnc.hover .framer-1bazud6 { order: 2; }\",\".framer-8U4m6.framer-v-1a6jg9y .framer-1rgjejq, .framer-8U4m6.framer-v-toilnc.hover .framer-wo1oda { order: 0; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 81.5\n * @framerIntrinsicWidth 1232\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wC_S85EWL\":{\"layout\":[\"fixed\",\"auto\"]},\"zKAb9mqIq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ZVjcDncni\":\"title\",\"B4tgbt_h4\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpKiV83IZf=withCSS(Component,css,\"framer-8U4m6\");export default FramerpKiV83IZf;FramerpKiV83IZf.displayName=\"FAQ\";FramerpKiV83IZf.defaultProps={height:81.5,width:1232};addPropertyControls(FramerpKiV83IZf,{variant:{options:[\"T4OQY28xE\",\"wC_S85EWL\"],optionTitles:[\"Desktop\",\"Desktop open\"],title:\"Variant\",type:ControlType.Enum},ZVjcDncni:{defaultValue:\"Question ?\",displayTextArea:false,title:\"Title\",type:ControlType.String},B4tgbt_h4:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",description:\"\",displayTextArea:false,title:\"Answer\",type:ControlType.String}});addFonts(FramerpKiV83IZf,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpKiV83IZf\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ZVjcDncni\\\":\\\"title\\\",\\\"B4tgbt_h4\\\":\\\"answer\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wC_S85EWL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zKAb9mqIq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1232\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"81.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pKiV83IZf.map", "// Generated by Framer (d5ca742)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-Zr6cZ .framer-styles-preset-1otqfax:not(.rich-text-wrapper), .framer-Zr6cZ .framer-styles-preset-1otqfax.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, #ffffff) /* {\"name\":\"Basic/white\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, #ffffff); --framer-link-text-decoration: none; }'];export const className=\"framer-Zr6cZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/MEbIOCaTAVBPDWPxro55/mffEUSvKkKEQwiz2XVQy/fJTbzOd4_.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jEvIa4qvnwNxGgQSzso6/YANfBBSqaUccCH80pQUt/lposRbecE.js\";import Logo from\"https://framerusercontent.com/modules/PWm1RLdCjHZp3tYmCk1w/XYXCiCKVhJAXuTHWzlrk/j0MyLXxa8.js\";import Button from\"https://framerusercontent.com/modules/5pmhRuaFfVPubuLnVMaL/ViTRE9OpqrVPLpK0lAGK/u_2DkHM8O.js\";const LogoFonts=getFonts(Logo);const ButtonFonts=getFonts(Button);const cycleOrder=[\"EhnN6YuZQ\",\"LeFNIMvXm\",\"bGi4t7G_m\"];const serializationHash=\"framer-xh6Wj\";const variantClassNames={bGi4t7G_m:\"framer-v-1lw4itk\",EhnN6YuZQ:\"framer-v-7d6z9r\",LeFNIMvXm:\"framer-v-vyhnvl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"EhnN6YuZQ\",Mobile:\"bGi4t7G_m\",Tablet:\"LeFNIMvXm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"EhnN6YuZQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EhnN6YuZQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"bGi4t7G_m\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-7d6z9r\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"EhnN6YuZQ\",ref:ref??ref1,style:{...style},...addPropertyOverrides({bGi4t7G_m:{\"data-framer-name\":\"Mobile\"},LeFNIMvXm:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nauwhe\",\"data-framer-name\":\"color=dark, Device=Desktop\",layoutDependency:layoutDependency,layoutId:\"iSBU7j8KZ\",style:{backgroundColor:\"rgb(0, 61, 61)\"},variants:{bGi4t7G_m:{backgroundColor:\"var(--token-2a4a87d3-25e3-4bc0-a385-573d4ec4baf9, rgb(0, 61, 61))\"},LeFNIMvXm:{backgroundColor:\"var(--token-2a4a87d3-25e3-4bc0-a385-573d4ec4baf9, rgb(0, 61, 61))\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yosjii\",\"data-framer-name\":\"Brand + CTA\",layoutDependency:layoutDependency,layoutId:\"tjfhmZzXq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-76nj3a\",\"data-framer-name\":\"footer brand\",layoutDependency:layoutDependency,layoutId:\"h8TcgWei3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-388)/2+0+0)+72+0+0+8+0,...addPropertyOverrides({bGi4t7G_m:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||317)-0-474)/2+0+0)+24+0+0+8+0},LeFNIMvXm:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||317)-0-474)/2+0+0)+24+0+0+8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5m9a2g-container\",layoutDependency:layoutDependency,layoutId:\"Z9nm1SqN1-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"Z9nm1SqN1\",layoutId:\"Z9nm1SqN1\",variant:\"nEpgs6Tj9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b80u2j\",\"data-framer-name\":\"catch phrase\",layoutDependency:layoutDependency,layoutId:\"dB6GAnbUq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:iaorana@manihini.com\",nodeId:\"XRPlxMZ52\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1otqfax\",\"data-styles-preset\":\"fJTbzOd4_\",children:\"iaorana@manihini.com\"})})})}),className:\"framer-1sov5h1\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XRPlxMZ52\",style:{\"--extracted-r6o4lv\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lcfame\",\"data-framer-name\":\"catch phrase\",layoutDependency:layoutDependency,layoutId:\"aKJgSwUyR\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255)))\"},children:\"Maximisez vos revenus locatifs, minimisez vos efforts\"})}),className:\"framer-paexd6\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o9E9Q5fPW\",style:{\"--extracted-r6o4lv\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vbcqxj\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"UTxgBQOhh\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-388)/2+0+0)+72+0+352+0+0,...addPropertyOverrides({LeFNIMvXm:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||317)-0-474)/2+0+0)+24+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ho46z-container\",layoutDependency:layoutDependency,layoutId:\"imOm8_q5s-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"imOm8_q5s\",ivM1kjjp7:\"Estimer mes revenus\",layoutId:\"imOm8_q5s\",P323yqCPx:\"https://tally.so/r/w8J9Vo\",variant:\"gLowOQWzG\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mrorw0\",\"data-framer-name\":\"Socials\",layoutDependency:layoutDependency,layoutId:\"GnUDN2xjX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ppb3zq\",\"data-framer-name\":\"Social links\",layoutDependency:layoutDependency,layoutId:\"Ru7znBYHO\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ov46j\",\"data-framer-name\":\"Facebook\",layoutDependency:layoutDependency,layoutId:\"xkaZvfpPv\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x3778t\",\"data-framer-name\":\"icons/brand logos/facebook-34\",layoutDependency:layoutDependency,layoutId:\"LeiOaPTrO\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4e0qlr\",\"data-framer-name\":\"social-34\",layoutDependency:layoutDependency,layoutId:\"I737:24618;735:23143\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14robcr\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"I737:24618;735:23143;533:26360\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0.375C5.55 0.375 0.375 5.55 0.375 12C0.375 18.45 5.55 23.625 12 23.625C18.45 23.625 23.625 18.45 23.625 12C23.625 5.55 18.45 0.375 12 0.375ZM15.075 7.4625C14.6625 7.4625 14.325 7.4625 13.9125 7.4625C13.3875 7.4625 13.05 7.725 13.05 8.2125C13.0125 8.625 13.05 9.075 13.05 9.4125C13.05 9.5625 13.0875 9.5625 13.2 9.5625C13.7625 9.5625 14.3625 9.5625 14.925 9.5625C15.075 9.5625 15.15 9.6 15.15 9.7875C15.1125 10.4625 15 11.175 15 11.85C15 12 14.9625 12 14.775 12C14.2875 12 13.875 12 13.3875 12C13.0875 12 13.125 11.9625 13.125 12.2625C13.125 14.4375 13.125 16.5 13.125 18.675C13.125 18.9 13.0875 18.9375 12.8625 18.9375C12.075 18.9375 11.2875 18.9375 10.5 18.9375C10.275 18.9375 10.2375 18.9 10.2375 18.675C10.2375 17.55 10.2375 16.5 10.2375 15.45C10.2375 14.4 10.2375 13.275 10.2375 12.1875C10.2375 12.0375 10.2 11.925 10.0125 11.9625C9.7125 11.9625 9.3375 11.9625 9 11.9625C8.775 12.075 8.775 12 8.775 11.85C8.775 11.175 8.775 10.5375 8.775 9.7875C8.775 9.6375 8.8125 9.6375 8.925 9.6375C9.3 9.6375 9.6 9.6375 9.975 9.6375C10.2 9.6375 10.2375 9.6 10.2375 9.375C10.2375 8.85 10.2375 8.3625 10.2375 7.8C10.2375 7.1625 10.3875 6.6 10.7625 6.075C11.25 5.4375 11.925 5.1375 12.675 5.0625C13.4625 5.025 14.25 5.0625 15.0375 5.025C15.15 5.025 15.1875 5.0625 15.1875 5.175C15.1875 5.85 15.1875 6.5625 15.1875 7.2375C15.225 7.3875 15.1875 7.4625 15.075 7.4625Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dbnj99\",\"data-framer-name\":\"Linkedin\",layoutDependency:layoutDependency,layoutId:\"X85jsn6qy\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qnivlb\",\"data-framer-name\":\"icons/brand logos/linkedin-26\",layoutDependency:layoutDependency,layoutId:\"iK5ij0c1R\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9fewjg\",\"data-framer-name\":\"social-26\",layoutDependency:layoutDependency,layoutId:\"I737:24620;735:23135\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-v9kgtd\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I737:24620;735:23135;533:26348\",svg:'<svg width=\"20\" height=\"18\" viewBox=\"0 0 20 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.94043 2.001C4.94017 2.53143 4.7292 3.04004 4.35394 3.41492C3.97868 3.78981 3.46986 4.00027 2.93943 4C2.409 3.99973 1.90039 3.78877 1.52551 3.41351C1.15062 3.03825 0.940165 2.52943 0.94043 1.999C0.940695 1.46857 1.15166 0.959965 1.52692 0.585079C1.90218 0.210194 2.411 -0.000264966 2.94143 2.50361e-07C3.47186 0.000265467 3.98047 0.211233 4.35535 0.586494C4.73024 0.961754 4.9407 1.47057 4.94043 2.001ZM5.00043 5.481H1.00043V18.001H5.00043V5.481ZM11.3204 5.481H7.34043V18.001H11.2804V11.431C11.2804 7.771 16.0504 7.431 16.0504 11.431V18.001H20.0004V10.071C20.0004 3.901 12.9404 4.131 11.2804 7.161L11.3204 5.481Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\xa9 Manihini, 2025.\"})}),className:\"framer-lfdu2h\",\"data-framer-name\":\"text\",fonts:[\"GF;Manrope Variable-regular\"],layoutDependency:layoutDependency,layoutId:\"vBLlGWZlH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xh6Wj.framer-1jplzoc, .framer-xh6Wj .framer-1jplzoc { display: block; }\",\".framer-xh6Wj.framer-7d6z9r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1440px; }\",\".framer-xh6Wj .framer-1nauwhe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 388px; justify-content: space-between; overflow: visible; padding: 72px 104px 72px 104px; position: relative; width: 100%; }\",\".framer-xh6Wj .framer-1yosjii { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xh6Wj .framer-76nj3a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 267px; }\",\".framer-xh6Wj .framer-5m9a2g-container, .framer-xh6Wj .framer-1ho46z-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-xh6Wj .framer-b80u2j, .framer-xh6Wj .framer-1lcfame { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 257px; }\",\".framer-xh6Wj .framer-1sov5h1, .framer-xh6Wj .framer-paexd6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 257px; word-break: break-word; word-wrap: break-word; }\",\".framer-xh6Wj .framer-vbcqxj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xh6Wj .framer-1mrorw0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: 160px; }\",\".framer-xh6Wj .framer-ppb3zq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xh6Wj .framer-13ov46j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 4px; position: relative; width: min-content; }\",\".framer-xh6Wj .framer-x3778t, .framer-xh6Wj .framer-qnivlb { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-xh6Wj .framer-4e0qlr { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 24px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-xh6Wj .framer-14robcr { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-xh6Wj .framer-1dbnj99 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 4px; position: relative; width: min-content; }\",\".framer-xh6Wj .framer-9fewjg { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 24px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-xh6Wj .framer-v9kgtd { flex: none; height: 18px; left: 2px; position: absolute; top: 3px; width: 20px; }\",\".framer-xh6Wj .framer-lfdu2h { flex: none; height: 22px; position: relative; white-space: pre-wrap; width: 140px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xh6Wj.framer-7d6z9r, .framer-xh6Wj .framer-1yosjii, .framer-xh6Wj .framer-76nj3a, .framer-xh6Wj .framer-b80u2j, .framer-xh6Wj .framer-1lcfame, .framer-xh6Wj .framer-vbcqxj, .framer-xh6Wj .framer-1mrorw0, .framer-xh6Wj .framer-ppb3zq, .framer-xh6Wj .framer-13ov46j, .framer-xh6Wj .framer-1dbnj99 { gap: 0px; } .framer-xh6Wj.framer-7d6z9r > *, .framer-xh6Wj .framer-vbcqxj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xh6Wj.framer-7d6z9r > :first-child, .framer-xh6Wj .framer-1yosjii > :first-child, .framer-xh6Wj .framer-76nj3a > :first-child, .framer-xh6Wj .framer-b80u2j > :first-child, .framer-xh6Wj .framer-1lcfame > :first-child, .framer-xh6Wj .framer-vbcqxj > :first-child, .framer-xh6Wj .framer-1mrorw0 > :first-child { margin-top: 0px; } .framer-xh6Wj.framer-7d6z9r > :last-child, .framer-xh6Wj .framer-1yosjii > :last-child, .framer-xh6Wj .framer-76nj3a > :last-child, .framer-xh6Wj .framer-b80u2j > :last-child, .framer-xh6Wj .framer-1lcfame > :last-child, .framer-xh6Wj .framer-vbcqxj > :last-child, .framer-xh6Wj .framer-1mrorw0 > :last-child { margin-bottom: 0px; } .framer-xh6Wj .framer-1yosjii > *, .framer-xh6Wj .framer-76nj3a > *, .framer-xh6Wj .framer-1mrorw0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-xh6Wj .framer-b80u2j > *, .framer-xh6Wj .framer-1lcfame > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-xh6Wj .framer-ppb3zq > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-xh6Wj .framer-ppb3zq > :first-child, .framer-xh6Wj .framer-13ov46j > :first-child, .framer-xh6Wj .framer-1dbnj99 > :first-child { margin-left: 0px; } .framer-xh6Wj .framer-ppb3zq > :last-child, .framer-xh6Wj .framer-13ov46j > :last-child, .framer-xh6Wj .framer-1dbnj99 > :last-child { margin-right: 0px; } .framer-xh6Wj .framer-13ov46j > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xh6Wj .framer-1dbnj99 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-xh6Wj.framer-v-vyhnvl.framer-7d6z9r { width: 720px; }\",\".framer-xh6Wj.framer-v-vyhnvl .framer-1nauwhe, .framer-xh6Wj.framer-v-1lw4itk .framer-1nauwhe { flex-direction: column; gap: 16px; height: min-content; justify-content: center; padding: 24px; }\",\".framer-xh6Wj.framer-v-vyhnvl .framer-1yosjii, .framer-xh6Wj.framer-v-1lw4itk .framer-1yosjii { flex: none; flex-direction: row; justify-content: flex-end; width: 100%; }\",\".framer-xh6Wj.framer-v-vyhnvl .framer-76nj3a, .framer-xh6Wj.framer-v-1lw4itk .framer-76nj3a { gap: 16px; }\",\".framer-xh6Wj.framer-v-vyhnvl .framer-vbcqxj { align-content: flex-end; align-items: flex-end; flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xh6Wj.framer-v-vyhnvl .framer-1nauwhe, .framer-xh6Wj.framer-v-vyhnvl .framer-1yosjii, .framer-xh6Wj.framer-v-vyhnvl .framer-76nj3a { gap: 0px; } .framer-xh6Wj.framer-v-vyhnvl .framer-1nauwhe > *, .framer-xh6Wj.framer-v-vyhnvl .framer-76nj3a > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-xh6Wj.framer-v-vyhnvl .framer-1nauwhe > :first-child, .framer-xh6Wj.framer-v-vyhnvl .framer-76nj3a > :first-child { margin-top: 0px; } .framer-xh6Wj.framer-v-vyhnvl .framer-1nauwhe > :last-child, .framer-xh6Wj.framer-v-vyhnvl .framer-76nj3a > :last-child { margin-bottom: 0px; } .framer-xh6Wj.framer-v-vyhnvl .framer-1yosjii > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-xh6Wj.framer-v-vyhnvl .framer-1yosjii > :first-child { margin-left: 0px; } .framer-xh6Wj.framer-v-vyhnvl .framer-1yosjii > :last-child { margin-right: 0px; } }\",\".framer-xh6Wj.framer-v-1lw4itk.framer-7d6z9r { width: 360px; }\",\".framer-xh6Wj.framer-v-1lw4itk .framer-vbcqxj { align-content: flex-end; align-items: flex-end; flex: 1 0 0px; min-height: 47px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xh6Wj.framer-v-1lw4itk .framer-1nauwhe, .framer-xh6Wj.framer-v-1lw4itk .framer-1yosjii, .framer-xh6Wj.framer-v-1lw4itk .framer-76nj3a { gap: 0px; } .framer-xh6Wj.framer-v-1lw4itk .framer-1nauwhe > *, .framer-xh6Wj.framer-v-1lw4itk .framer-76nj3a > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-xh6Wj.framer-v-1lw4itk .framer-1nauwhe > :first-child, .framer-xh6Wj.framer-v-1lw4itk .framer-76nj3a > :first-child { margin-top: 0px; } .framer-xh6Wj.framer-v-1lw4itk .framer-1nauwhe > :last-child, .framer-xh6Wj.framer-v-1lw4itk .framer-76nj3a > :last-child { margin-bottom: 0px; } .framer-xh6Wj.framer-v-1lw4itk .framer-1yosjii > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-xh6Wj.framer-v-1lw4itk .framer-1yosjii > :first-child { margin-left: 0px; } .framer-xh6Wj.framer-v-1lw4itk .framer-1yosjii > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LeFNIMvXm\":{\"layout\":[\"fixed\",\"auto\"]},\"bGi4t7G_m\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPPblWDcI8=withCSS(Component,css,\"framer-xh6Wj\");export default FramerPPblWDcI8;FramerPPblWDcI8.displayName=\"Footer/ Footer\";FramerPPblWDcI8.defaultProps={height:388,width:1440};addPropertyControls(FramerPPblWDcI8,{variant:{options:[\"EhnN6YuZQ\",\"LeFNIMvXm\",\"bGi4t7G_m\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPPblWDcI8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...LogoFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPPblWDcI8\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"388\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LeFNIMvXm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bGi4t7G_m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PPblWDcI8.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import CTA from\"#framer/local/canvasComponent/e319schyE/e319schyE.js\";import NavHeader from\"#framer/local/canvasComponent/lSy4HlWoD/lSy4HlWoD.js\";import FAQ from\"#framer/local/canvasComponent/pKiV83IZf/pKiV83IZf.js\";import FooterFooter from\"#framer/local/canvasComponent/PPblWDcI8/PPblWDcI8.js\";import Button from\"#framer/local/canvasComponent/u_2DkHM8O/u_2DkHM8O.js\";import*as sharedStyle3 from\"#framer/local/css/lposRbecE/lposRbecE.js\";import*as sharedStyle2 from\"#framer/local/css/mGFJXVGLa/mGFJXVGLa.js\";import*as sharedStyle from\"#framer/local/css/OlNlatjYd/OlNlatjYd.js\";import*as sharedStyle1 from\"#framer/local/css/yDxHuUlvv/yDxHuUlvv.js\";import*as sharedStyle4 from\"#framer/local/css/yI7hZ_OfA/yI7hZ_OfA.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavHeaderFonts=getFonts(NavHeader);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const CarouselFonts=getFonts(Carousel);const CTAFonts=getFonts(CTA);const FAQFonts=getFonts(FAQ);const FooterFooterFonts=getFonts(FooterFooter);const breakpoints={Q4uotgG72:\"(min-width: 810px) and (max-width: 1439px)\",T3pdjW58B:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-W5DiZ\";const variantClassNames={Q4uotgG72:\"framer-v-1wdsp13\",T3pdjW58B:\"framer-v-i00ydl\",WQLkyLRf1:\"framer-v-72rtr7\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"T3pdjW58B\",Tablet:\"Q4uotgG72\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-W5DiZ`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-W5DiZ`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"Q4uotgG72\",\"T3pdjW58B\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"Q4uotgG72\",\"T3pdjW58B\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1liv5jc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{style:{width:\"100%\"},variant:\"Z1RNd7lnK\"},T3pdjW58B:{style:{width:\"100%\"},variant:\"zppV8kcbn\"}},children:/*#__PURE__*/_jsx(NavHeader,{height:\"100%\",id:\"MUMvDMdVk\",layoutId:\"MUMvDMdVk\",style:{height:\"100%\",width:\"100%\"},variant:\"LtpCNatUo\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e23b8i\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-lzn7wm\",\"data-styles-preset\":\"OlNlatjYd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Conciergerie Airbnb \\xe0 Tahiti\"})}),className:\"framer-bbn9tt\",\"data-framer-name\":\"Conciergerie Airbnb \\xe0 Tahiti\",fonts:[\"Inter\"],name:\"Conciergerie Airbnb \\xe0 Tahiti\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-18zb93d\",\"data-styles-preset\":\"yDxHuUlvv\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Confiez-nous \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f375a0cf-1602-4ce0-aa3a-1a515e1d4865, rgb(13, 86, 86))\"},children:\"votre propri\\xe9t\\xe9\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-68c1a1f1-246b-4256-b0be-334bff95d39c, rgb(0, 0, 0))\"},children:\",\"}),/*#__PURE__*/_jsx(\"br\",{}),\"nous la transformons en \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f375a0cf-1602-4ce0-aa3a-1a515e1d4865, rgb(13, 86, 86))\"},children:\"destination de r\\xeave\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-18zb93d\",\"data-styles-preset\":\"yDxHuUlvv\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Confiez-nous \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f375a0cf-1602-4ce0-aa3a-1a515e1d4865, rgb(13, 86, 86))\"},children:\"votre propri\\xe9t\\xe9\"}),\", nous la transformons en \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f375a0cf-1602-4ce0-aa3a-1a515e1d4865, rgb(13, 86, 86))\"},children:\"destination de r\\xeave\"})]})}),className:\"framer-1gwt1tg\",\"data-framer-name\":\"Confiez-nous votre propri\\xe9t\\xe9, nous la transformons en destination de r\\xeave\",fonts:[\"Inter\"],name:\"Confiez-nous votre propri\\xe9t\\xe9, nous la transformons en destination de r\\xeave\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{y:357},T3pdjW58B:{y:805}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:853,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fpsjrl-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"MRyzTAveW\",ivM1kjjp7:\"Estimer mes revenus\",layoutId:\"MRyzTAveW\",P323yqCPx:\"https://tally.so/r/w8J9Vo\",variant:\"qFF568UcS\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2h4pwn\",\"data-framer-name\":\"Platforms\",name:\"Platforms\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1grnrd8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T3pdjW58B:{gap:48}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:25,overflow:false},gap:72,height:\"100%\",hoverFactor:1,id:\"WbHMmh5Kv\",layoutId:\"WbHMmh5Kv\",padding:10,paddingBottom:10,paddingLeft:104,paddingPerSide:true,paddingRight:104,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13h5g3v\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1th4i0\",\"data-framer-name\":\"Airbnb\",name:\"Airbnb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vwizsk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:129,name:\"Vector\",svg:'<svg width=\"129\" height=\"40\" viewBox=\"0 0 129 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M67.5475 10.05C67.5475 11.4915 66.3863 12.6527 64.9449 12.6527C63.5034 12.6527 62.3423 11.4915 62.3423 10.05C62.3423 8.60861 63.4634 7.44745 64.9449 7.44745C66.4263 7.48749 67.5475 8.64865 67.5475 10.05ZM56.8167 15.2953C56.8167 15.5355 56.8167 15.9359 56.8167 15.9359C56.8167 15.9359 55.5755 14.3343 52.9328 14.3343C48.5685 14.3343 45.1651 17.6577 45.1651 22.2623C45.1651 26.8268 48.5284 30.1902 52.9328 30.1902C55.6155 30.1902 56.8167 28.5485 56.8167 28.5485V29.2292C56.8167 29.5495 57.057 29.7898 57.3773 29.7898H60.6205V14.7347C60.6205 14.7347 57.6576 14.7347 57.3773 14.7347C57.057 14.7347 56.8167 15.015 56.8167 15.2953ZM56.8167 24.9449C56.2161 25.8258 55.0149 26.5866 53.5735 26.5866C51.0109 26.5866 49.049 24.985 49.049 22.2623C49.049 19.5395 51.0109 17.9379 53.5735 17.9379C54.9749 17.9379 56.2562 18.7387 56.8167 19.5796V24.9449ZM63.0229 14.7347H66.8668V29.7898H63.0229V14.7347ZM120.44 14.3343C117.798 14.3343 116.556 15.9359 116.556 15.9359V7.48749H112.713V29.7898C112.713 29.7898 115.676 29.7898 115.956 29.7898C116.276 29.7898 116.516 29.5095 116.516 29.2292V28.5485C116.516 28.5485 117.758 30.1902 120.4 30.1902C124.765 30.1902 128.168 26.8268 128.168 22.2623C128.168 17.6977 124.765 14.3343 120.44 14.3343ZM119.8 26.5465C118.318 26.5465 117.157 25.7858 116.556 24.9049V19.5395C117.157 18.7387 118.438 17.8979 119.8 17.8979C122.362 17.8979 124.324 19.4995 124.324 22.2222C124.324 24.9449 122.362 26.5465 119.8 26.5465ZM110.711 20.8609V29.8298H106.867V21.3013C106.867 18.8188 106.066 17.8178 103.904 17.8178C102.743 17.8178 101.541 18.4184 100.781 19.2993V29.7898H96.9369V14.7347H99.9799C100.3 14.7347 100.54 15.015 100.54 15.2953V15.9359C101.662 14.7748 103.143 14.3343 104.625 14.3343C106.306 14.3343 107.708 14.8148 108.829 15.7758C110.19 16.8969 110.711 18.3383 110.711 20.8609ZM87.6075 14.3343C84.9649 14.3343 83.7236 15.9359 83.7236 15.9359V7.48749H79.8798V29.7898C79.8798 29.7898 82.8428 29.7898 83.123 29.7898C83.4434 29.7898 83.6836 29.5095 83.6836 29.2292V28.5485C83.6836 28.5485 84.9248 30.1902 87.5675 30.1902C91.9318 30.1902 95.3353 26.8268 95.3353 22.2623C95.3753 17.6977 91.9719 14.3343 87.6075 14.3343ZM86.9669 26.5465C85.4854 26.5465 84.3242 25.7858 83.7236 24.9049V19.5395C84.3242 18.7387 85.6055 17.8979 86.9669 17.8979C89.5294 17.8979 91.4914 19.4995 91.4914 22.2222C91.4914 24.9449 89.5294 26.5465 86.9669 26.5465ZM76.5565 14.3343C77.7176 14.3343 78.3182 14.5345 78.3182 14.5345V18.0981C78.3182 18.0981 75.115 17.017 73.113 19.2993V29.8298H69.2692V14.7347C69.2692 14.7347 72.2322 14.7347 72.5124 14.7347C72.8328 14.7347 73.073 15.015 73.073 15.2953V15.9359C73.7937 15.0951 75.3553 14.3343 76.5565 14.3343ZM36.6366 28.4284C36.4364 27.9479 36.2362 27.4274 36.036 26.987C35.7156 26.2663 35.3953 25.5856 35.115 24.9449L35.075 24.9049C32.3122 18.8989 29.3493 12.8128 26.2261 6.80681L26.106 6.56657C25.7857 5.96597 25.4654 5.32533 25.1451 4.68468C24.7447 3.96396 24.3443 3.2032 23.7036 2.48248C22.4223 0.880881 20.5805 0 18.6185 0C16.6165 0 14.8147 0.880881 13.4934 2.4024C12.8928 3.12312 12.4524 3.88388 12.052 4.6046C11.7317 5.24525 11.4113 5.88589 11.091 6.48649L10.9709 6.72673C7.88781 12.7327 4.8848 18.8188 2.12204 24.8248L2.082 24.9049C1.80172 25.5455 1.4814 26.2262 1.16108 26.9469C0.96088 27.3874 0.760679 27.8679 0.560479 28.3884C0.0399587 29.8699 -0.120201 31.2713 0.0799988 32.7127C0.520439 35.7157 2.52244 38.2382 5.2852 39.3594C6.32624 39.7998 7.40733 40 8.52845 40C8.84877 40 9.24917 39.96 9.56949 39.9199C10.8908 39.7598 12.2522 39.3193 13.5735 38.5586C15.2151 37.6376 16.7767 36.3163 18.5385 34.3944C20.3002 36.3163 21.9018 37.6376 23.5034 38.5586C24.8247 39.3193 26.1861 39.7598 27.5074 39.9199C27.8277 39.96 28.2281 40 28.5485 40C29.6696 40 30.7907 39.7998 31.7917 39.3594C34.5945 38.2382 36.5565 35.6757 36.9969 32.7127C37.3172 31.3113 37.1571 29.9099 36.6366 28.4284ZM18.5785 30.5105C16.4163 27.7878 15.0149 25.2252 14.5345 23.0631C14.3343 22.1421 14.2942 21.3413 14.4143 20.6206C14.4944 19.98 14.7347 19.4194 15.055 18.9389C15.8157 17.8579 17.097 17.1772 18.5785 17.1772C20.06 17.1772 21.3813 17.8178 22.102 18.9389C22.4223 19.4194 22.6626 19.98 22.7427 20.6206C22.8628 21.3413 22.8227 22.1822 22.6225 23.0631C22.1421 25.1852 20.7407 27.7477 18.5785 30.5105ZM34.5545 32.3924C34.2742 34.4745 32.8728 36.2763 30.9108 37.0771C29.9499 37.4775 28.9088 37.5976 27.8678 37.4775C26.8668 37.3574 25.8658 37.037 24.8247 36.4364C23.3833 35.6356 21.9419 34.3944 20.2602 32.5526C22.9028 29.3093 24.5044 26.3463 25.105 23.7037C25.3853 22.4625 25.4253 21.3413 25.3052 20.3003C25.1451 19.2993 24.7847 18.3784 24.2241 17.5776C22.9829 15.7758 20.9008 14.7347 18.5785 14.7347C16.2562 14.7347 14.1741 15.8158 12.9329 17.5776C12.3723 18.3784 12.0119 19.2993 11.8518 20.3003C11.6916 21.3413 11.7317 22.5025 12.052 23.7037C12.6526 26.3463 14.2942 29.3493 16.8968 32.5926C15.2552 34.4344 13.7737 35.6757 12.3323 36.4765C11.2912 37.0771 10.2902 37.3974 9.28921 37.5175C8.20813 37.6376 7.16709 37.4775 6.24617 37.1171C4.2842 36.3163 2.8828 34.5145 2.60252 32.4324C2.4824 31.4314 2.56248 30.4304 2.96288 29.3093C3.083 28.9089 3.2832 28.5085 3.4834 28.028C3.76368 27.3874 4.084 26.7067 4.40432 26.026L4.44436 25.9459C7.20713 19.98 10.1701 13.8939 13.2532 7.96797L13.3733 7.72773C13.6936 7.12713 14.0139 6.48649 14.3343 5.88589C14.6546 5.24524 15.0149 4.64464 15.4554 4.12412C16.2962 3.16316 17.4173 2.64264 18.6586 2.64264C19.8998 2.64264 21.0209 3.16316 21.8618 4.12412C22.3022 4.64464 22.6626 5.24524 22.9829 5.88589C23.3032 6.48649 23.6235 7.12713 23.9439 7.72773L24.064 7.96797C27.107 13.9339 30.07 20.02 32.8328 25.986V26.026C33.1531 26.6667 33.4334 27.3874 33.7537 28.028C33.9539 28.5085 34.1541 28.9089 34.2742 29.3093C34.5945 30.3503 34.7146 31.3514 34.5545 32.3924Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o6onpj\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-44ev3r\",\"data-framer-name\":\"Booking.com\",name:\"Booking.com\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u1vh3p\",\"data-framer-name\":\"layer1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:236,name:\"layer1\",svg:'<svg width=\"236\" height=\"41\" viewBox=\"0 0 236 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_1149_129\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.662109 0.711655H235.47V40.5527H0.662109V0.711655Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_1149_129)\">\\n<mask id=\"mask1_1149_129\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.662109 40.5518H235.47V0.710678H0.662109V40.5518Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_1149_129)\">\\n<path d=\"M92.7446 5.0711C92.7446 3.09345 94.3409 1.49388 96.3058 1.49388C98.2775 1.49388 99.8799 3.09345 99.8799 5.0711C99.8799 7.04619 98.2775 8.64746 96.3058 8.64746C94.3409 8.64746 92.7446 7.04619 92.7446 5.0711Z\" fill=\"#003D3D\"/>\\n<path d=\"M149.04 28.8631C149.04 26.8846 150.635 25.2833 152.6 25.2833C154.571 25.2833 156.173 26.8846 156.173 28.8631C156.173 30.8365 154.571 32.4395 152.6 32.4395C150.635 32.4395 149.04 30.8365 149.04 28.8631Z\" fill=\"#003D3D\"/>\\n<path d=\"M34.1854 27.318C31.1125 27.318 28.9771 24.8775 28.9771 21.3901C28.9771 17.9036 31.1125 15.4648 34.1854 15.4648C37.2759 15.4648 39.4348 17.9036 39.4348 21.3901C39.4348 24.9326 37.3209 27.318 34.1854 27.318ZM34.1854 10.255C27.6843 10.255 22.9663 14.9392 22.9663 21.3901C22.9663 27.841 27.6843 32.5244 34.1854 32.5244C40.7108 32.5244 45.4484 27.841 45.4484 21.3901C45.4484 14.9392 40.7108 10.255 34.1854 10.255Z\" fill=\"#003D3D\"/>\\n<path d=\"M85.8315 21.9489C85.5788 21.4734 85.289 21.0707 84.9804 20.7511L84.7839 20.5426L84.9907 20.3442C85.2891 20.0297 85.5942 19.6568 85.8884 19.2245L91.6254 10.6959H84.6609L80.3504 17.3672C80.1063 17.7249 79.6137 17.9055 78.8763 17.9055H77.8938V5.2928C77.8938 2.7701 76.3222 2.42678 74.6244 2.42678H71.7178L71.7226 32.1982H77.8938V23.2679H78.4719C79.1754 23.2679 79.6545 23.3493 79.8742 23.7316L83.2784 30.157C84.2293 31.9007 85.177 32.1982 86.9598 32.1982H91.6891L88.1669 26.3721L85.8315 21.9489Z\" fill=\"#003D3D\"/>\\n<path d=\"M115.792 10.2092C112.653 10.2092 110.65 11.6036 109.528 12.7827L109.153 13.1616L109.021 12.6463C108.691 11.3832 107.58 10.6881 105.907 10.6881H103.142L103.159 32.1904H109.288V22.2802C109.288 21.3113 109.414 20.4704 109.67 19.7032C110.353 17.3814 112.256 15.9378 114.634 15.9378C116.548 15.9378 117.295 16.9474 117.295 19.5566V28.9218C117.295 31.1486 118.325 32.1904 120.554 32.1904H123.47L123.461 18.5148C123.461 13.0811 120.809 10.2092 115.792 10.2092Z\" fill=\"#003D3D\"/>\\n<path d=\"M96.3875 10.696H93.4824L93.5023 27.3216L93.5003 32.194H96.6012C96.6402 32.194 96.6716 32.1982 96.7106 32.1982L98.155 32.194H99.5927V32.1856H99.6027L99.6151 13.9604C99.6151 11.7615 98.5617 10.696 96.3875 10.696Z\" fill=\"#003D3D\"/>\\n<path d=\"M58.2597 27.318C55.1871 27.318 53.0474 24.8775 53.0474 21.3901C53.0474 17.9036 55.1871 15.4648 58.2597 15.4648C61.3438 15.4648 63.5087 17.9036 63.5087 21.3901C63.5087 24.9326 61.3954 27.318 58.2597 27.318ZM58.2597 10.255C51.7522 10.255 47.0332 14.9392 47.0332 21.3901C47.0332 27.841 51.7522 32.5244 58.2597 32.5244C64.7784 32.5244 69.5238 27.841 69.5238 21.3901C69.5238 14.9392 64.7784 10.255 58.2597 10.255Z\" fill=\"#003D3D\"/>\\n</g>\\n</g>\\n<mask id=\"mask2_1149_129\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.662109 0.711655H235.47V40.5527H0.662109V0.711655Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_1149_129)\">\\n<mask id=\"mask3_1149_129\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"1\" width=\"236\" height=\"40\">\\n<path d=\"M0.662109 1.49194H235.42V40.498H0.662109V1.49194Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask3_1149_129)\">\\n<mask id=\"mask4_1149_129\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.662109 40.5508H235.47V0.709702H0.662109V40.5508Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask4_1149_129)\">\\n<path d=\"M189.639 27.316C186.568 27.316 184.427 24.8755 184.427 21.3882C184.427 17.9016 186.568 15.4629 189.639 15.4629C192.724 15.4629 194.89 17.9016 194.89 21.3882C194.89 24.9306 192.775 27.316 189.639 27.316ZM189.639 10.253C183.133 10.253 178.414 14.9373 178.414 21.3882C178.414 27.839 183.133 32.5225 189.639 32.5225C196.159 32.5225 200.903 27.839 200.903 21.3882C200.903 14.9373 196.159 10.253 189.639 10.253Z\" fill=\"#003D3D\"/>\\n<path d=\"M136.384 26.3733C133.033 26.3733 131.84 23.4496 131.84 20.7099C131.84 19.5028 132.145 15.5687 136.062 15.5687C138.008 15.5687 140.602 16.1265 140.602 20.9125C140.602 25.4264 138.306 26.3733 136.384 26.3733ZM143.784 10.6395C142.621 10.6395 141.726 11.1031 141.277 11.95L141.108 12.2789L140.824 12.0322C139.834 11.176 138.061 10.1605 135.18 10.1605C129.449 10.1605 125.59 14.465 125.59 20.871C125.59 27.2693 129.583 31.7408 135.295 31.7408C137.247 31.7408 138.789 31.2856 140.011 30.3599L140.484 30.0048V30.6024C140.484 33.4743 138.627 35.0586 135.26 35.0586C133.624 35.0586 132.134 34.6602 131.139 34.2991C129.838 33.9066 129.076 34.2313 128.549 35.5359L128.062 36.7396L127.374 38.4977L127.8 38.7249C129.955 39.8684 132.76 40.5508 135.295 40.5508C140.515 40.5508 146.61 37.8789 146.61 30.3599L146.632 10.6395H143.784Z\" fill=\"#003D3D\"/>\\n</g>\\n</g>\\n</g>\\n<mask id=\"mask5_1149_129\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.662109 0.711655H235.47V40.5527H0.662109V0.711655Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask5_1149_129)\">\\n<mask id=\"mask6_1149_129\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.662109 40.5518H235.47V0.710678H0.662109V40.5518Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask6_1149_129)\">\\n<path d=\"M11.3589 27.0706L6.36954 27.0656V21.1005C6.36954 19.8256 6.86378 19.1627 7.95632 19.0101H11.3589C13.7875 19.0101 15.3566 20.5419 15.3584 23.0196C15.3566 25.5627 13.8265 27.0689 11.3589 27.0706ZM6.36954 10.979V9.40911C6.36954 8.03503 6.95096 7.38147 8.22688 7.29754H10.7799C12.9694 7.29754 14.2808 8.60806 14.2808 10.8002C14.2808 12.4718 13.3831 14.4223 10.8604 14.4223H6.36954V10.979ZM17.731 16.9323L16.829 16.4254L17.6164 15.7523C18.532 14.9648 20.0671 13.1949 20.0671 10.1364C20.0671 5.45722 16.4375 2.43692 10.8197 2.43692H4.40878L3.67886 2.43523C2.01334 2.49628 0.680745 3.85086 0.662109 5.52674V32.0872H3.60424C3.6117 32.0889 3.61419 32.0872 3.61668 32.0889L10.9464 32.0872C17.1913 32.0872 21.222 28.688 21.222 23.423C21.222 20.5884 19.9206 18.1648 17.731 16.9323Z\" fill=\"#003D3D\"/>\\n<path d=\"M228.281 10.2811C225.738 10.2811 223.28 11.4721 221.701 13.4692L221.257 14.0321L220.909 13.4023C219.774 11.3322 217.82 10.2811 215.103 10.2811C212.254 10.2811 210.343 11.8705 209.456 12.8157L208.875 13.4447L208.651 12.6173C208.327 11.4263 207.267 10.7702 205.661 10.7702H203.084L203.06 32.1895H208.913V22.7344C208.913 21.9062 209.016 21.0865 209.223 20.2295C209.783 17.945 211.318 15.4876 213.899 15.7334C215.491 15.886 216.268 17.116 216.268 19.492V32.1895H222.163V22.7344C222.163 21.6994 222.26 20.9246 222.493 20.1473C222.968 17.9662 224.57 15.73 227.061 15.73C228.863 15.73 229.53 16.7506 229.53 19.492V29.0581C229.53 31.2222 230.495 32.1895 232.657 32.1895H235.412L235.417 18.5155C235.417 13.053 233.014 10.2811 228.281 10.2811Z\" fill=\"#003D3D\"/>\\n<path d=\"M175.024 24.7492C175.007 24.7703 172.488 27.4262 169.172 27.4262C166.15 27.4262 163.098 25.5723 163.098 21.4339C163.098 17.861 165.465 15.3637 168.852 15.3637C169.952 15.3637 171.204 15.7578 171.399 16.4207L171.428 16.5326C171.879 18.0356 173.245 18.1161 173.514 18.1161L176.72 18.1196V15.3163C176.72 11.6187 172.017 10.2777 168.852 10.2777C162.084 10.2777 157.173 14.9899 157.173 21.479C157.173 27.9654 162.031 32.6709 168.728 32.6709C174.539 32.6709 177.699 28.8513 177.729 28.8131L177.898 28.6063L175.358 24.3933L175.024 24.7492Z\" fill=\"#003D3D\"/>\\n</g>\\n</g>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aydqiq\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1czh4g3\",\"data-framer-name\":\"Vrbo logo\",name:\"Vrbo logo\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nvtuxs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:22,name:\"Vector\",svg:'<svg width=\"22\" height=\"28\" viewBox=\"0 0 22 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.91309 0.928711V0.98871C17.6431 1.63871 19.9131 7.12871 19.8031 10.3187C19.6231 19.5587 12.4631 26.9987 0.913086 27.9087V27.9587C13.6031 27.1987 21.0331 20.6387 21.1931 11.2387C21.1731 7.77871 18.6531 1.43871 9.91309 0.928711Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jw9ohh\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:19,name:\"Vector\",svg:'<svg width=\"19\" height=\"27\" viewBox=\"0 0 19 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.913086 26.8006C5.6259 26.4848 10.0501 24.4176 13.3162 21.0054C16.5822 17.5932 18.4538 13.0827 18.5631 8.36059C18.5631 5.44059 16.5631 0.640586 9.84309 0.100586V0.150585C15.4031 0.740585 17.3631 4.79059 17.3231 7.44059C17.1631 16.3506 10.2531 25.7906 0.973083 26.7406L0.913086 26.8006Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12aivjh\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"27\" viewBox=\"0 0 15 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M-0.00683594 26.6307C8.20316 25.7807 14.8132 15.2207 14.9932 6.47074C14.9932 4.10074 13.4832 0.790742 8.79316 0.260742V0.320742C12.4832 0.880742 13.7932 3.45074 13.7932 5.56074C13.6432 14.1307 7.20316 25.6307 0.133163 26.5607L-0.00683594 26.6307Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5lredz\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:19,name:\"Vector\",svg:'<svg width=\"19\" height=\"27\" viewBox=\"0 0 19 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.10294 26.4006V26.4706C12.1029 25.6006 18.2929 12.9906 18.4429 4.59059C18.4843 3.54926 18.1177 2.53289 17.4211 1.7578C16.7244 0.982708 15.7528 0.510108 14.7129 0.440585V0.500586C15.4457 0.623723 16.1043 1.02066 16.5555 1.61106C17.0066 2.20146 17.2166 2.94121 17.1429 3.68059C16.9129 11.8906 10.9129 25.5106 6.10294 26.4006ZM2.33293 23.1406C2.47293 15.2406 8.70293 1.36059 13.3329 0.420586V0.350586C7.53293 1.21059 1.12293 14.0406 0.972932 22.1806C0.933587 22.7049 0.999858 23.2318 1.16782 23.7301C1.33578 24.2283 1.60201 24.6878 1.95075 25.0813C2.2995 25.4748 2.72366 25.7943 3.19811 26.0209C3.67257 26.2475 4.18768 26.3766 4.71294 26.4006V26.3406C4.34543 26.2893 3.99179 26.1654 3.67257 25.9762C3.35335 25.787 3.07493 25.5362 2.85348 25.2385C2.63203 24.9408 2.47196 24.602 2.3826 24.2418C2.29324 23.8816 2.27636 23.5073 2.33293 23.1406Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1chtj16\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"27\" viewBox=\"0 0 16 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.78387 21.2582C1.93387 12.9082 8.64387 1.18824 15.4639 0.258243V0.198242C7.46387 1.04824 0.633867 11.7682 0.463867 20.2982C0.463867 22.6782 2.02386 26.1982 6.66386 26.5782V26.5182C3.04386 26.0482 1.74387 23.3682 1.78387 21.2582Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1anpwt7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:19,name:\"Vector\",svg:'<svg width=\"19\" height=\"27\" viewBox=\"0 0 19 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.23309 19.3786C2.38309 10.6286 9.51308 1.02855 18.5431 0.0785542V0.0185547C13.8691 0.411442 9.49918 2.49644 6.25323 5.88231C3.00729 9.26818 1.10848 13.7222 0.913086 18.4086C0.913086 21.3286 2.91309 26.2886 9.64309 26.7286V26.6686C3.84309 26.1486 2.19309 21.9986 2.23309 19.3786Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13f8m9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:45,name:\"Vector\",svg:'<svg width=\"45\" height=\"28\" viewBox=\"0 0 45 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.6822 18.4984C25.8422 9.3084 33.7622 1.7884 44.6222 0.918399V0.858398C32.4622 1.6084 24.5022 8.1684 24.3422 17.5284C24.2722 20.9884 26.8022 27.3884 35.5322 27.8884C27.9122 27.2884 25.6322 21.6884 25.6822 18.4984ZM19.5022 1.0584C15.3122 0.488399 10.2522 2.9484 7.40222 7.2684L7.45222 7.3384C10.1522 3.4584 14.7122 1.1484 18.4522 1.6684C20.9722 2.0084 22.7022 3.9184 22.3522 7.6684C21.4622 17.2184 13.4122 27.9484 0.532227 27.9184V27.9884C6.27768 28.2093 11.8918 26.235 16.2343 22.4665C20.5768 18.6979 23.3219 13.4177 23.9122 7.6984C24.2622 3.5584 22.3422 1.4484 19.5022 1.0584Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-efha7v\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:21,name:\"Vector\",svg:'<svg width=\"21\" height=\"26\" viewBox=\"0 0 21 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.8432 5.6288C21.1532 2.3388 19.6832 0.628797 17.3732 0.318797C14.0432 -0.131203 9.99324 1.8988 7.54324 5.4688L7.59324 5.5288C9.84324 2.4488 13.4432 0.528797 16.3332 0.928797C18.3332 1.1988 19.6532 2.6988 19.3332 5.5988C18.5632 13.8188 10.7232 25.1188 0.573242 25.7488C11.9132 25.7388 20.0032 14.5888 20.8432 5.6288Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mrzjyf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"25\" viewBox=\"0 0 18 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.713867 24.5501V24.6101C10.1639 23.4801 17.1639 12.0001 17.9139 4.56013C18.1339 2.12013 17.0139 0.820128 15.3439 0.560128C12.8239 0.210128 9.68387 1.91013 7.74387 4.63013V4.69013C9.59387 2.30013 12.1739 0.880127 14.2139 1.16013C15.6539 1.36013 16.5339 2.45013 16.3439 4.44013C15.7139 11.2201 9.28387 22.7601 0.713867 24.5501Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jscpgb\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:17,name:\"Vector\",svg:'<svg width=\"17\" height=\"40\" viewBox=\"0 0 17 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.82356 39.319V39.409C9.82356 37.529 16.3136 25.409 16.8236 19.409C16.9636 17.879 16.2836 16.979 15.1636 16.829C13.4936 16.599 11.3736 17.829 9.82356 19.829V19.889C11.1136 18.349 12.8236 17.259 14.0736 17.429C14.8836 17.539 15.4136 18.249 15.3036 19.379C14.9136 24.619 8.91356 36.719 2.82356 39.319ZM1.72356 32.509C0.979495 34.1409 0.448468 35.8617 0.143555 37.629C0.154012 37.9629 0.251859 38.2882 0.42733 38.5725C0.602801 38.8568 0.849759 39.09 1.14355 39.249C1.23993 39.2976 1.3403 39.3377 1.44355 39.369V39.279C1.30164 39.1414 1.19624 38.9706 1.13688 38.7821C1.07752 38.5935 1.06606 38.3931 1.10355 38.199C1.51691 36.4053 2.1238 34.6617 2.91356 32.999L15.9136 -0.000976562L14.0836 0.359023C14.1836 0.779023 10.6736 9.40902 10.5336 9.83902L1.72356 32.509Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yrp3fa\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"40\" viewBox=\"0 0 16 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.33252 31.4778C1.67168 33.0612 1.19522 34.7154 0.912521 36.4078C0.752521 38.2178 2.33252 39.1978 4.45252 39.5178V39.4578C3.00252 39.1978 1.88252 38.4578 2.01252 37.0578C2.34558 35.3432 2.85495 33.6676 3.53252 32.0578L12.1925 9.77777C12.4025 9.18777 15.6925 1.22777 15.1925 0.717773L13.4125 1.07777V1.17777C13.4825 3.11777 11.2325 8.42777 10.7725 9.67777L2.33252 31.4778Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mcpwyg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:14,name:\"Vector\",svg:'<svg width=\"14\" height=\"39\" viewBox=\"0 0 14 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.0724 8.57043L1.91237 29.4604C1.26016 30.9329 0.796492 32.4818 0.532369 34.0704C0.312369 36.6204 2.40237 38.3804 6.31237 38.6504C5.50665 38.5615 4.71439 38.3769 3.95237 38.1004C3.23776 37.9269 2.61176 37.497 2.19328 36.8923C1.77479 36.2877 1.59298 35.5503 1.68237 34.8204C1.96472 33.1588 2.45525 31.5394 3.14237 30.0004L11.4624 8.62043C11.8824 7.49043 14.2624 2.09043 13.6924 0.44043L11.9724 0.78043V0.88043C12.9124 2.17043 10.6224 7.17043 10.0724 8.57043Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19hpxfg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:13,name:\"Vector\",svg:'<svg width=\"13\" height=\"38\" viewBox=\"0 0 13 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.11391 7.99871L1.57391 27.4387C0.951575 28.8188 0.527383 30.2799 0.313911 31.7787C0.0439109 34.9687 2.81391 37.5787 8.31391 37.7787C3.70391 37.5187 1.19391 35.3387 1.44391 32.4587C1.67524 30.9181 2.11949 29.4171 2.76391 27.9987L10.5539 7.99871C11.2539 6.16871 13.3239 1.67871 12.2039 0.178711L10.4339 0.538711V0.638711C11.6339 2.28871 9.91391 5.99871 9.11391 7.99871Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1suwkjj\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,name:\"Vector\",svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M36.2322 37.9001C30.0222 37.6301 26.8922 34.6001 27.2322 31.0801C27.4173 29.673 27.8011 28.2993 28.3722 27.0001L35.5622 8.42012C36.4622 6.10012 38.1422 2.60012 36.8222 0.870117L35.1922 1.21012V1.31012C36.5822 2.87012 35.2922 5.43012 34.3422 8.02012L27.1822 26.4201C26.6047 27.687 26.2301 29.0368 26.0722 30.4201C25.7322 34.2501 29.1422 37.7201 36.2122 37.9301L36.2322 37.9001ZM28.0522 14.4801C27.9222 12.0101 26.4622 10.8801 24.6922 10.8801C21.4722 10.8801 18.6922 13.4201 16.9422 16.8801V15.6601C16.8022 12.9701 14.9422 10.8801 11.6322 10.8801C4.63223 10.8801 1.18223 15.4901 0.0322266 20.7101H0.092226C1.31223 15.8201 4.57223 11.4101 10.8622 11.4101C11.4645 11.3564 12.0713 11.4275 12.6449 11.6188C13.2184 11.81 13.7464 12.1175 14.1959 12.5219C14.6454 12.9263 15.0066 13.419 15.2572 13.9693C15.5078 14.5196 15.6422 15.1156 15.6522 15.7201C15.8222 18.8901 14.7722 21.3601 13.6522 24.2101L8.55223 37.5401H9.91223L15.0122 24.3201C15.3522 23.4101 15.6722 22.5601 15.9622 21.7401C16.9622 19.6401 18.2122 17.4901 18.8622 17.4901C19.3422 17.4901 19.4922 17.9001 19.5222 18.2701C19.5279 20.2602 19.0069 22.2164 18.0122 23.9401L18.0722 24.0001C19.6236 22.2501 20.5488 20.0337 20.7022 17.7001C20.7022 17.0101 20.3622 16.5201 19.7022 16.5201C18.6122 16.5201 17.2222 18.7601 16.2022 21.1301C16.3222 20.7501 16.4222 20.3701 16.5222 20.0001C17.6122 17.6301 19.1222 15.6101 20.5222 15.6101C21.3822 15.6101 21.9022 16.2001 21.9522 17.1701C22.0722 19.5301 19.9522 22.9701 18.1722 24.1001L18.2322 24.1601C20.6522 23.0801 23.3122 19.5301 23.1622 16.6301C23.0922 15.3401 22.4122 14.6301 21.3322 14.6301C19.5522 14.6301 17.8322 16.7001 16.6422 19.2601C16.6422 19.0601 16.7222 18.8601 16.7522 18.6501C18.0822 15.9001 20.0322 13.7201 22.2022 13.7201C23.3822 13.7201 24.2822 14.5201 24.3622 16.0801C24.5522 19.5201 21.3022 23.1801 18.3622 24.2501L18.4222 24.3101C22.0322 23.3901 25.8022 19.5201 25.5922 15.5401C25.4922 13.6601 24.4222 12.7501 23.0322 12.7501C20.5322 12.7601 18.3022 15.0001 16.9122 18.0001V17.5101C18.5022 14.2901 21.0122 11.8501 23.9122 11.8501C25.4722 11.8501 26.7622 12.8501 26.9122 15.0301C27.1522 19.6001 22.9122 23.4701 18.5922 24.4401L18.6522 24.4901C23.6522 23.7301 28.3222 19.5901 28.0522 14.4801Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cnirur\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"27\" viewBox=\"0 0 15 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.4024 4.82022C14.3929 4.27638 14.2727 3.74017 14.049 3.24439C13.8252 2.7486 13.5027 2.30366 13.1012 1.93675C12.6997 1.56984 12.2275 1.28868 11.7136 1.11046C11.1997 0.932242 10.6549 0.860702 10.1124 0.900219C4.53238 0.900219 1.32238 5.05022 0.192383 9.71022H0.262383C1.50238 5.37022 4.34238 1.44022 9.33238 1.44022C9.81124 1.39574 10.2941 1.45158 10.7502 1.60416C11.2062 1.75675 11.6255 2.00273 11.9812 2.32642C12.3369 2.65011 12.6212 3.04439 12.8159 3.4841C13.0107 3.92381 13.1117 4.3993 13.1124 4.88022C13.2524 7.51022 12.0124 10.4102 11.0224 13.0502L5.76238 26.5402H7.16238L12.3124 13.1602C13.4124 10.4102 14.5524 7.67022 14.4024 4.82022Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pfd4ka\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:12,name:\"Vector\",svg:'<svg width=\"12\" height=\"26\" viewBox=\"0 0 12 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.9131 3.93009C11.9149 3.51142 11.8291 3.09699 11.6611 2.71348C11.4932 2.32997 11.2468 1.98586 10.9378 1.70329C10.6289 1.42072 10.2642 1.20594 9.86729 1.07278C9.47035 0.939615 9.04994 0.89101 8.63309 0.93009C4.25309 0.93009 1.57309 4.71009 0.413086 8.72009H0.473085C1.70309 4.99009 4.22309 1.47009 7.86309 1.47009C8.21159 1.44551 8.56143 1.49252 8.89108 1.60823C9.22072 1.72395 9.5232 1.90591 9.77988 2.14291C10.0366 2.37992 10.242 2.66696 10.3836 2.98635C10.5252 3.30575 10.5999 3.65074 10.6031 4.00009C10.7131 6.09009 9.27309 9.48009 8.32309 11.8501L2.91309 25.5401H4.36309L9.67308 11.9401C10.6131 9.47009 12.0131 6.35009 11.9131 3.93009Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ka4yaq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:10,name:\"Vector\",svg:'<svg width=\"10\" height=\"24\" viewBox=\"0 0 10 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.36403 2.08902C9.36651 1.7992 9.30839 1.51206 9.19341 1.24602C9.07843 0.979974 8.90911 0.740897 8.69633 0.544116C8.48354 0.347336 8.23198 0.197196 7.95777 0.103326C7.68356 0.00945656 7.39276 -0.0260711 7.10402 -0.000979105C4.10402 -0.000979105 1.71402 3.25902 0.574024 6.70902H0.644024C1.83402 3.62902 3.87402 0.529022 6.32402 0.529022C6.54907 0.502878 6.77712 0.525751 6.99249 0.596072C7.20787 0.666394 7.40547 0.782498 7.57173 0.936408C7.73799 1.09032 7.86897 1.27839 7.95567 1.48771C8.04238 1.69702 8.08275 1.92262 8.07402 2.14902C8.16402 3.80902 6.48403 7.57902 5.68402 9.66902L0.124023 23.539H1.51402L6.97403 9.77902C7.91403 7.57902 9.46403 3.99902 9.36403 2.08902Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y60a9d\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:20,name:\"Vector\",svg:'<svg width=\"20\" height=\"35\" viewBox=\"0 0 20 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.8437 13.2492C19.8588 13.0821 19.8372 12.9137 19.7804 12.7559C19.7236 12.598 19.633 12.4545 19.5148 12.3354C19.3966 12.2163 19.2539 12.1245 19.0965 12.0664C18.9391 12.0083 18.7709 11.9854 18.6037 11.9992C16.8337 11.9992 14.9237 14.7892 13.7737 17.6892H13.8437C15.0037 15.1092 16.7937 12.5292 17.8437 12.5292C18.2737 12.5292 18.5537 12.7492 18.5837 13.2892C18.6437 14.4192 16.7637 18.6592 16.0037 20.4892L10.3437 34.4892H11.7437L17.3537 20.5692C18.1437 18.6292 19.9137 14.5992 19.8437 13.2492ZM4.55366 25.1192L5.45366 23.2292L2.40366 7.66918C1.55366 3.28918 2.57366 1.37918 6.01366 0.71918V0.65918H2.83366C1.91366 1.11918 -0.0363361 2.49918 1.05366 7.65918L4.55366 25.1192Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19txsii\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:38,name:\"Vector\",svg:'<svg width=\"38\" height=\"35\" viewBox=\"0 0 38 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.7531 28.8792L18.6431 26.9992L14.6431 7.56918C13.8931 3.79918 14.2131 1.83918 15.4631 0.71918V0.65918H13.3031C12.6431 2.06918 12.4431 3.47918 13.2031 7.20918L17.7531 28.8792ZM15.9131 32.6292L16.8031 30.7692L11.8031 7.15918C10.9231 3.48918 11.1231 1.80918 11.4831 0.65918H9.57309C9.55314 2.6449 9.80892 4.62378 10.3331 6.53918L15.9131 32.6292ZM7.82309 0.65918H5.57309V0.71918C6.57309 1.93918 6.87309 3.42918 7.67309 6.71918L13.6731 34.5492H15.0231L9.02309 6.62918C8.50472 4.66481 8.10401 2.67127 7.82309 0.65918ZM3.32309 0.65918H0.913086V0.71918C3.11309 1.58918 4.19309 3.25918 5.06309 7.16918L10.9931 34.5392H12.3431L6.37309 6.99918C5.34309 2.21918 4.26309 1.33918 3.32309 0.65918ZM33.9831 0.65918C31.1431 2.31918 29.4531 5.38918 25.9131 12.9992L26.0031 13.0492C30.0931 5.38918 32.4231 2.33918 37.7031 0.74918V0.65918H33.9831ZM25.7131 12.8492L25.8031 12.9092C29.1631 4.99918 30.0431 2.78918 31.4131 0.71918V0.65918H28.6931V0.73918C28.9731 3.90918 27.9131 6.82918 25.7131 12.8492Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6nz0dy\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:103,name:\"Vector\",svg:'<svg width=\"103\" height=\"13\" viewBox=\"0 0 103 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.53309 12.7292L2.62308 12.7892C4.75308 5.69918 5.44309 2.56918 3.56309 0.65918H0.913086V0.71918C3.91309 1.77918 4.53309 4.80918 2.53309 12.7292ZM99.9131 9.75918V11.1092H99.7131V9.75918H99.1331V9.56918H100.513V9.75918H99.9131ZM102.213 11.1092V9.79918L101.733 11.0892H101.503L101.073 9.79918V11.1092H100.883L100.943 9.56918H101.293L101.693 10.8592L102.153 9.56918H102.473L102.533 11.1092H102.213Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vwbpp6\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ox8fay\",\"data-framer-name\":\"Google\",name:\"Google\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ccwezs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:21,name:\"Vector\",svg:'<svg width=\"21\" height=\"21\" viewBox=\"0 0 21 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.9485 10.0504C20.9485 15.8026 16.4486 20.0412 10.9262 20.0412C5.40374 20.0412 0.903809 15.8026 0.903809 10.0504C0.903809 4.2577 5.40374 0.0595703 10.9262 0.0595703C16.4486 0.0595703 20.9485 4.2577 20.9485 10.0504ZM16.5612 10.0504C16.5612 6.45586 13.9531 3.99644 10.9262 3.99644C7.89919 3.99644 5.29112 6.45586 5.29112 10.0504C5.29112 13.6089 7.89919 16.1044 10.9262 16.1044C13.9531 16.1044 16.5612 13.6044 16.5612 10.0504Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uhg4xf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:21,name:\"Vector\",svg:'<svg width=\"21\" height=\"21\" viewBox=\"0 0 21 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.5691 10.0504C20.5691 15.8026 16.0692 20.0412 10.5468 20.0412C5.02434 20.0412 0.524414 15.8026 0.524414 10.0504C0.524414 4.2622 5.02434 0.0595703 10.5468 0.0595703C16.0692 0.0595703 20.5691 4.2577 20.5691 10.0504ZM16.1818 10.0504C16.1818 6.45586 13.5738 3.99644 10.5468 3.99644C7.5198 3.99644 4.91173 6.45586 4.91173 10.0504C4.91173 13.6089 7.5198 16.1044 10.5468 16.1044C13.5738 16.1044 16.1818 13.6044 16.1818 10.0504Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qby901\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:20,name:\"Vector\",svg:'<svg width=\"20\" height=\"29\" viewBox=\"0 0 20 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.2891 0.663164V18.5998C19.2891 25.9781 14.9378 28.9915 9.79373 28.9915C4.95147 28.9915 2.0371 25.7528 0.938019 23.1042L4.75778 21.5142C5.43795 23.1403 7.10459 25.0592 9.78923 25.0592C13.082 25.0592 15.1225 23.0277 15.1225 19.2034V17.7665H14.9693C13.9874 18.9782 12.0955 20.0367 9.70815 20.0367C4.71273 20.0367 0.13623 15.6854 0.13623 10.0864C0.13623 4.44689 4.71273 0.0595703 9.70815 0.0595703C12.091 0.0595703 13.9829 1.11811 14.9693 2.29377H15.1225V0.667668H19.2891V0.663164ZM15.4333 10.0864C15.4333 6.56847 13.0865 3.99644 10.1 3.99644C7.07306 3.99644 4.53706 6.56847 4.53706 10.0864C4.53706 13.5684 7.07306 16.1044 10.1 16.1044C13.0865 16.1044 15.4333 13.5684 15.4333 10.0864Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-t2mzgo\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:6,name:\"Vector\",svg:'<svg width=\"6\" height=\"30\" viewBox=\"0 0 6 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.15909 0.148438V29.4272H0.879883V0.148438H5.15909Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-e90oqc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:19,name:\"Vector\",svg:'<svg width=\"19\" height=\"21\" viewBox=\"0 0 19 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.8341 13.3383L18.2394 15.6085C17.1403 17.2346 14.4917 20.0363 9.91524 20.0363C4.23965 20.0363 0.000976562 15.649 0.000976562 10.0455C0.000976562 4.10417 4.27568 0.0546875 9.42425 0.0546875C14.6088 0.0546875 17.1448 4.18075 17.9737 6.41044L18.4286 7.54556L5.07297 13.077C6.09548 15.0815 7.68554 16.104 9.91524 16.104C12.1494 16.104 13.699 15.0049 14.8341 13.3383ZM4.35226 9.74372L13.28 6.03657C12.7891 4.78884 11.3116 3.91949 9.57289 3.91949C7.3432 3.91949 4.23965 5.88793 4.35226 9.74372Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-erqlh2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,name:\"Vector\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.7057 18.4519V14.2132H30.9892C31.1289 14.9519 31.2009 15.8258 31.2009 16.7717C31.2009 19.9519 30.3316 23.8842 27.5298 26.686C24.8046 29.5238 21.3227 31.0373 16.7102 31.0373C8.16075 31.0373 0.97168 24.0734 0.97168 15.524C0.97168 6.97459 8.16075 0.0107422 16.7102 0.0107422C21.4398 0.0107422 24.8091 1.86657 27.3406 4.28545L24.3497 7.27639C22.5344 5.57371 20.075 4.24941 16.7057 4.24941C10.4625 4.24941 5.57971 9.28086 5.57971 15.524C5.57971 21.7671 10.4625 26.7986 16.7057 26.7986C20.7551 26.7986 23.0614 25.1725 24.5389 23.695C25.737 22.4969 26.5253 20.7852 26.8361 18.4474L16.7057 18.4519Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4h1vwc\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nxazdl\",\"data-framer-name\":\"Homes & Villas\",name:\"Homes & Villas\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nn70k7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:32,name:\"Vector\",svg:'<svg width=\"32\" height=\"40\" viewBox=\"0 0 32 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.486816 40H31.6585V0H0.486816V40ZM9.43908 15.3131V38.3385H6.62445V10.8245L9.43908 15.3007V15.3131ZM11.1006 29.9318H21.0572V32.7464H11.0882V29.9318H11.1006ZM21.0572 28.2703H11.0882V25.4557H21.0448V28.2703H21.0572ZM21.0572 23.7942H17.387L21.0572 17.9541V23.7942ZM11.1006 23.7942V17.9541L14.7708 23.7942H11.1006ZM11.1006 34.3955H21.0572V38.3385H11.0882V34.3955H11.1006ZM22.7187 15.3007L25.5333 10.8245V38.3385H22.7187V15.3007ZM21.082 14.7799H21.0572V14.8171L16.0727 22.7402L11.0882 14.8171V14.7799H11.0634L2.81788 1.6615H6.30207L16.0727 17.2102L25.8433 1.6615H29.3275L21.0696 14.7923L21.082 14.7799ZM16.0727 8.50589L20.3752 1.6491H23.8842L16.0727 14.0856L8.26115 1.6615H11.7701L16.0727 8.51829V8.50589ZM13.7292 1.6491H18.4161L16.0727 5.38128L13.7292 1.6491ZM2.14832 3.70738L4.96295 8.18351V38.3385H2.14832V3.70738ZM27.1824 38.3385V8.18351L29.997 3.70738V38.3385H27.1824Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oss4y3\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:235,name:\"Group\",svg:'<svg width=\"235\" height=\"40\" viewBox=\"0 0 235 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M120.52 14.3926C119.082 15.6998 117.343 16.0528 116.167 16.0528C113.395 16.0528 111.617 14.5625 111.617 12.2748C111.617 9.98705 113.591 8.77129 115.33 7.98692C113.996 6.43126 113.225 5.15013 113.225 3.73828C113.225 1.38518 115.199 0.0517578 117.578 0.0517578C119.539 0.0517578 121.239 1.18909 121.239 3.04542C121.239 4.28733 120.533 5.71226 117.931 6.7973L122.062 11.8172C122.389 11.242 122.925 10.2616 123.2 9.50336C123.553 8.35296 123.2 7.54245 121.095 7.28099V6.92803H126.311V7.28099C124.533 7.50323 124.272 8.07843 123.827 9.22883C123.357 10.523 122.834 11.5166 122.402 12.2094L124.206 14.4056C124.69 15.007 125.121 15.3207 125.788 15.4515V15.8044H121.775L120.559 14.3664L120.52 14.3926ZM115.631 8.35296C114.964 9.01967 114.349 10.3923 114.349 11.8172C114.349 13.8435 115.421 15.1769 117.212 15.1769C118.206 15.1769 119.343 14.7978 120.193 14.0004L115.644 8.36603L115.631 8.35296ZM117.788 0.626959C116.65 0.626959 116.01 1.712 116.01 2.75782C116.01 4.19582 116.519 5.08477 117.631 6.44434C119.095 5.42466 119.631 4.1566 119.631 3.04542C119.631 1.60742 119.082 0.626959 117.788 0.626959Z\" fill=\"#003D3D\"/>\\n<path d=\"M0.67041 0.287109H4.17391V6.7712H11.2201V0.287109H14.7236V15.8306H11.2201V9.6995H4.17391V15.8306H0.67041V0.287109Z\" fill=\"#003D3D\"/>\\n<path d=\"M34.0715 1.08451C35.3395 1.77736 36.3462 2.74475 37.0782 3.96051C37.8103 5.17628 38.1763 6.53585 38.1763 8.03921C38.1763 9.54258 37.8103 10.9021 37.0782 12.131C36.3462 13.3598 35.3395 14.3272 34.0715 15.0331C32.8034 15.7391 31.3785 16.092 29.8228 16.092C28.2672 16.092 26.8553 15.7391 25.5873 15.0331C24.3192 14.3272 23.3126 13.3729 22.5805 12.1441C21.8485 10.9283 21.4824 9.55565 21.4824 8.05229C21.4824 6.54892 21.8485 5.20242 22.5805 3.97358C23.3126 2.74475 24.3192 1.79043 25.5742 1.09758C26.8423 0.404722 28.2541 0.0517578 29.8228 0.0517578C31.3916 0.0517578 32.7904 0.404722 34.0715 1.09758M27.4697 3.77749C26.7246 4.20889 26.1494 4.81024 25.718 5.56846C25.2866 6.32668 25.0774 7.15027 25.0774 8.05229C25.0774 8.95431 25.2997 9.80404 25.7311 10.5623C26.1625 11.3205 26.7507 11.9218 27.4828 12.3663C28.2149 12.8108 29.0123 13.033 29.8751 13.033C30.7379 13.033 31.5223 12.8108 32.2413 12.3794C32.9603 11.948 33.5355 11.3466 33.9538 10.5753C34.3722 9.81711 34.5813 8.96738 34.5813 8.05229C34.5813 7.13719 34.3722 6.31361 33.9538 5.56846C33.5355 4.81024 32.9603 4.22197 32.2413 3.77749C31.5223 3.34609 30.7379 3.12386 29.8751 3.12386C29.0123 3.12386 28.2149 3.34609 27.4828 3.77749\" fill=\"#003D3D\"/>\\n<path d=\"M44.9346 0.287109H48.8433L53.6802 9.8433L58.4779 0.287109H62.3736V15.8306H59.21V5.33319L54.7914 14.2619H52.5298L48.0851 5.33319V15.8306H44.9346V0.287109Z\" fill=\"#003D3D\"/>\\n<path d=\"M70.2568 0.287109H82.1008V3.18926H73.7603V6.57511H81.251V9.47726H73.7603V12.9285H82.3361V15.8306H70.2568V0.287109Z\" fill=\"#003D3D\"/>\\n<path d=\"M97.2384 3.45121C96.3364 3.16361 95.5782 3.01981 94.9376 3.01981C94.297 3.01981 93.8526 3.12439 93.4996 3.34663C93.1466 3.56886 92.9636 3.89568 92.9636 4.32708C92.9636 4.87614 93.2251 5.29447 93.7349 5.58207C94.2448 5.86967 95.0291 6.17034 96.1011 6.48409C97.1731 6.79783 98.0489 7.11158 98.7287 7.41225C99.4216 7.726 100.01 8.18355 100.494 8.81104C100.977 9.43853 101.226 10.249 101.226 11.2818C101.226 12.3145 100.964 13.1251 100.441 13.8441C99.9183 14.5631 99.1863 15.1121 98.2712 15.4781C97.3561 15.8442 96.3103 16.0272 95.1337 16.0272C93.8787 16.0272 92.6368 15.805 91.421 15.3605C90.2053 14.916 89.1595 14.3016 88.2705 13.5434L89.6693 10.6804C90.4537 11.3864 91.3557 11.9616 92.3754 12.393C93.395 12.8244 94.3363 13.0335 95.1729 13.0335C95.8919 13.0335 96.4671 12.9028 96.8724 12.6283C97.2776 12.3668 97.4868 11.9746 97.4868 11.4779C97.4868 11.0726 97.3561 10.7458 97.0815 10.4844C96.807 10.2229 96.4541 10.0137 96.0357 9.85686C95.6174 9.69999 95.0291 9.5039 94.297 9.30781C93.2251 9.00713 92.3623 8.71953 91.6825 8.41886C91.0027 8.11818 90.4275 7.67371 89.9438 7.05929C89.4601 6.45794 89.2117 5.64743 89.2117 4.64083C89.2117 3.71266 89.4601 2.88908 89.97 2.18315C90.4798 1.47722 91.1727 0.941239 92.0747 0.562129C92.9767 0.183019 94.0356 0 95.2252 0C96.2972 0 97.343 0.156873 98.3758 0.470619C99.4085 0.784366 100.337 1.20269 101.134 1.71253L99.7745 4.62776C98.9771 4.14406 98.1274 3.75188 97.2253 3.46428\" fill=\"#003D3D\"/>\\n<path d=\"M134.378 0.287109H138.156L142.405 12.0134L146.667 0.287109H150.288L144.105 15.8306H140.483L134.378 0.287109Z\" fill=\"#003D3D\"/>\\n<path d=\"M160.093 0.287109H156.589V15.8306H160.093V0.287109Z\" fill=\"#003D3D\"/>\\n<path d=\"M168.145 0.287109H171.648V12.7716H178.315V15.8306H168.145V0.287109Z\" fill=\"#003D3D\"/>\\n<path d=\"M184.997 0.287109H188.513V12.7716H195.18V15.8306H184.997V0.287109Z\" fill=\"#003D3D\"/>\\n<path d=\"M213.429 15.8306L212.213 12.8108H205.01L203.794 15.8306H200.173L206.932 0.287109H210.553L217.194 15.8306H213.442H213.429ZM206.161 9.9871H211.076L208.631 3.94748L206.161 9.9871Z\" fill=\"#003D3D\"/>\\n<path d=\"M231.013 3.45121C230.111 3.16361 229.353 3.01981 228.713 3.01981C228.072 3.01981 227.627 3.12439 227.275 3.34663C226.922 3.56886 226.739 3.89568 226.739 4.32708C226.739 4.87614 227 5.29447 227.51 5.58207C228.02 5.86967 228.804 6.17034 229.876 6.48409C230.948 6.79783 231.824 7.11158 232.504 7.41225C233.196 7.726 233.785 8.18355 234.268 8.81104C234.752 9.43853 235.001 10.249 235.001 11.2818C235.001 12.3145 234.739 13.1251 234.216 13.8441C233.693 14.5631 232.961 15.1121 232.046 15.4781C231.131 15.8442 230.085 16.0272 228.909 16.0272C227.654 16.0272 226.412 15.805 225.196 15.3605C223.98 14.916 222.934 14.3016 222.045 13.5434L223.444 10.6804C224.229 11.3864 225.131 11.9616 226.15 12.393C227.17 12.8244 228.111 13.0335 228.948 13.0335C229.667 13.0335 230.242 12.9028 230.647 12.6283C231.053 12.3668 231.262 11.9746 231.262 11.4779C231.262 11.0726 231.131 10.7458 230.856 10.4844C230.582 10.2229 230.229 10.0137 229.811 9.85686C229.392 9.69999 228.804 9.5039 228.072 9.30781C227 9.00713 226.137 8.71953 225.457 8.41886C224.778 8.11818 224.202 7.67371 223.719 7.05929C223.235 6.45794 222.987 5.64743 222.987 4.64083C222.987 3.71266 223.235 2.88908 223.745 2.18315C224.255 1.47722 224.948 0.941239 225.85 0.562129C226.752 0.183019 227.81 0 229 0C230.072 0 231.118 0.156873 232.151 0.470619C233.183 0.784366 234.112 1.20269 234.909 1.71253L233.549 4.62776C232.752 4.14406 231.902 3.75188 231 3.46428\" fill=\"#003D3D\"/>\\n<path d=\"M82.1281 35.5022C80.1672 35.5022 78.5854 33.9073 78.5854 31.9595C78.5854 30.0117 80.1802 28.4168 82.1281 28.4168C84.0759 28.4168 85.6708 30.0117 85.6708 31.9595C85.6708 33.9073 84.0759 35.5022 82.1281 35.5022ZM82.1281 26.665C79.2129 26.665 76.8467 29.0312 76.8467 31.9464C76.8467 34.8617 79.2129 37.2278 82.1281 37.2278C85.0433 37.2278 87.4095 34.8617 87.4095 31.9464C87.4095 29.0312 85.0433 26.665 82.1281 26.665Z\" fill=\"#003D3D\"/>\\n<path d=\"M174.657 26.873L171.703 31.0825L168.748 26.873H166.722L170.814 32.6512V37.0306H172.592V32.6512H172.605L176.684 26.873H174.657Z\" fill=\"#003D3D\"/>\\n<path d=\"M115.672 28.3536H118.665C119.489 28.3536 120.169 28.9549 120.169 29.7001C120.169 30.4452 119.489 31.0466 118.665 31.0466H115.672V28.3536ZM121.123 31.7525L120.979 31.6479L121.097 31.5303C121.581 31.0204 121.855 30.3668 121.855 29.7001C121.855 28.1313 120.417 26.8633 118.652 26.8633H113.881V37.0339H118.927C120.796 37.0339 122.313 35.6874 122.313 34.0402C122.313 33.1644 121.881 32.3277 121.11 31.7525M118.914 35.5436H115.646V32.5238H118.914C119.842 32.5238 120.613 33.2036 120.613 34.0402C120.613 34.8769 119.855 35.5436 118.914 35.5436Z\" fill=\"#003D3D\"/>\\n<path d=\"M151.989 33.6447L149.048 26.873H147.1L151.584 37.0306H152.408L156.892 26.873H154.931L151.989 33.6447Z\" fill=\"#003D3D\"/>\\n<path d=\"M129.411 35.5022C127.45 35.5022 125.869 33.9073 125.869 31.9595C125.869 30.0117 127.463 28.4168 129.411 28.4168C131.359 28.4168 132.954 30.0117 132.954 31.9595C132.954 33.9073 131.359 35.5022 129.411 35.5022ZM129.411 26.665C126.496 26.665 124.13 29.0312 124.13 31.9464C124.13 34.8617 126.496 37.2278 129.411 37.2278C132.326 37.2278 134.693 34.8617 134.693 31.9464C134.693 29.0312 132.326 26.665 129.411 26.665Z\" fill=\"#003D3D\"/>\\n<path d=\"M143.48 33.4225L137.702 26.873H136.826V37.0306H138.591V30.4811L144.369 37.0306H145.258V26.873H143.48V33.4225Z\" fill=\"#003D3D\"/>\\n<path d=\"M166.461 35.5547H157.532V37.045H166.461V35.5547Z\" fill=\"#003D3D\"/>\\n<path d=\"M161.989 32.2602C160.864 32.2602 159.949 31.3451 159.949 30.2208C159.949 29.0966 160.864 28.1815 161.989 28.1815C163.113 28.1815 164.028 29.0966 164.028 30.2208C164.028 31.3451 163.113 32.2602 161.989 32.2602ZM161.989 26.665C160.028 26.665 158.446 28.2599 158.446 30.2078C158.446 32.1556 160.041 33.7505 161.989 33.7505C163.936 33.7505 165.531 32.1556 165.531 30.2078C165.531 28.2599 163.936 26.665 161.989 26.665Z\" fill=\"#003D3D\"/>\\n<path d=\"M24.0854 37.0306V26.873H26.1248L29.3407 32.6512L32.5697 26.873H34.5959V37.0306H32.8311V29.8406L29.9943 35.0566H28.7001L25.8633 29.8406V37.0306H24.0854Z\" fill=\"#003D3D\"/>\\n<path d=\"M40.4649 33.5435L42.0859 30.053L43.707 33.5435H40.4649ZM42.5043 26.8633H41.6676L36.9614 37.0339H38.857L39.7721 35.0468H44.4129L45.328 37.0339H47.2235L42.5173 26.8633H42.5043Z\" fill=\"#003D3D\"/>\\n<path d=\"M51.3038 28.3536H54.572C55.5132 28.3536 56.2714 29.0334 56.2714 29.8569C56.2714 30.6805 55.5132 31.3734 54.572 31.3734H51.3038V28.3536ZM55.0557 32.8245C56.6898 32.6153 57.9578 31.3734 57.9578 29.8569C57.9578 28.2098 56.4414 26.8633 54.572 26.8633H49.5259V37.0339H51.3038V32.8637H53.0555L55.9315 37.0339H57.9578L55.0557 32.8245Z\" fill=\"#003D3D\"/>\\n<path d=\"M62.6641 28.3536H65.9323C66.8736 28.3536 67.6318 29.0334 67.6318 29.8569C67.6318 30.6805 66.8736 31.3734 65.9323 31.3734H62.6641V28.3536ZM66.416 32.8245C68.0501 32.6153 69.3182 31.3734 69.3182 29.8569C69.3182 28.2098 67.8017 26.8633 65.9323 26.8633H60.8862V37.0208H62.6641V32.8506H64.4159L67.2919 37.0208H69.3182L66.416 32.8114V32.8245Z\" fill=\"#003D3D\"/>\\n<path d=\"M74.1021 26.873H72.3242V37.0437H74.1021V26.873Z\" fill=\"#003D3D\"/>\\n<path d=\"M96.5481 26.873H88.6914V28.4941H91.7374V37.0306H93.5153V28.4941H96.5481V26.873Z\" fill=\"#003D3D\"/>\\n<path d=\"M106.168 26.873H98.311V28.4941H101.357V37.0306H103.122V28.4941H106.168V26.873Z\" fill=\"#003D3D\"/>\\n<path d=\"M178.278 28.9288C178.134 28.9288 178.003 28.9026 177.873 28.8503C177.742 28.7981 177.637 28.7196 177.546 28.6281C177.454 28.5366 177.376 28.432 177.324 28.3013C177.271 28.1706 177.245 28.0398 177.245 27.896C177.245 27.7522 177.271 27.6215 177.324 27.4908C177.376 27.36 177.454 27.2555 177.546 27.164C177.637 27.0724 177.742 26.994 177.873 26.9417C178.003 26.8894 178.134 26.8633 178.278 26.8633C178.422 26.8633 178.552 26.8894 178.683 26.9417C178.814 26.994 178.918 27.0724 179.01 27.164C179.101 27.2555 179.18 27.36 179.232 27.4908C179.284 27.6215 179.311 27.7522 179.311 27.896C179.311 28.0398 179.284 28.1706 179.232 28.3013C179.18 28.432 179.101 28.5366 179.01 28.6281C178.918 28.7196 178.801 28.7981 178.683 28.8503C178.565 28.9026 178.422 28.9288 178.278 28.9288ZM178.278 28.7327C178.396 28.7327 178.5 28.7065 178.605 28.6673C178.709 28.6281 178.788 28.5627 178.866 28.4843C178.945 28.4059 178.997 28.3144 179.036 28.2228C179.075 28.1183 179.101 28.0137 179.101 27.896C179.101 27.7784 179.088 27.6738 179.036 27.5692C178.997 27.4646 178.945 27.3731 178.866 27.3078C178.801 27.2293 178.709 27.177 178.605 27.1247C178.513 27.0855 178.396 27.0594 178.291 27.0594C178.186 27.0594 178.069 27.0855 177.964 27.1247C177.86 27.164 177.781 27.2293 177.703 27.3078C177.624 27.3862 177.572 27.4777 177.533 27.5692C177.494 27.6738 177.467 27.7784 177.467 27.896C177.467 28.0137 177.48 28.1183 177.533 28.2228C177.572 28.3274 177.624 28.4189 177.703 28.4843C177.781 28.5627 177.86 28.615 177.964 28.6673C178.069 28.7065 178.173 28.7327 178.291 28.7327M177.938 27.3731H178.343C178.343 27.3731 178.461 27.3731 178.513 27.3993C178.552 27.4123 178.592 27.4385 178.631 27.4777C178.657 27.5038 178.683 27.5431 178.696 27.5823C178.709 27.6215 178.722 27.6476 178.722 27.6869C178.722 27.7522 178.709 27.8176 178.67 27.8699C178.631 27.9222 178.579 27.9614 178.513 27.9875L178.775 28.4189H178.552L178.317 28.0137H178.147V28.4189H177.951V27.3731H177.938ZM178.33 27.8568C178.33 27.8568 178.435 27.8437 178.461 27.8176C178.487 27.7914 178.5 27.7522 178.5 27.6999C178.5 27.6476 178.487 27.6084 178.461 27.5823C178.435 27.5561 178.382 27.5431 178.317 27.5431H178.134V27.8568H178.33Z\" fill=\"#003D3D\"/>\\n<path d=\"M2.22742 36.2642V37.0224H0.658691V26.8779H2.33201V30.6167C2.72419 30.2115 3.5347 29.8324 4.48901 29.8324C6.34534 29.8324 7.92715 31.2834 7.92715 33.5058C7.92715 35.7282 6.33227 37.1793 4.42365 37.1793C3.33861 37.1793 2.65883 36.774 2.2405 36.2772L2.22742 36.2642ZM6.25383 33.4927C6.25383 32.2378 5.36489 31.4011 4.24063 31.4011C3.11637 31.4011 2.22742 32.2247 2.22742 33.4927C2.22742 34.7608 3.11637 35.5844 4.24063 35.5844C5.36489 35.5844 6.25383 34.7608 6.25383 33.4927Z\" fill=\"#003D3D\"/>\\n<path d=\"M11.9807 36.1178L9.13086 29.9736H11.0133L12.922 34.2223L14.9613 29.9736H16.7784L11.8631 40.0004H10.059L11.9677 36.1178H11.9807Z\" fill=\"#003D3D\"/>\\n</svg>\\n',withExternalLayout:true})]})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13mnrpi\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-424rst\",\"data-framer-name\":\"Services top\",name:\"Services top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mpuc9l\",\"data-styles-preset\":\"mGFJXVGLa\",children:\"Un service complet de conciergerie, \\xe0 votre service\"})}),className:\"framer-1kmhca\",\"data-framer-name\":\"Un service complet de conciergerie, \\xe0 votre service\",fonts:[\"Inter\"],name:\"Un service complet de conciergerie, \\xe0 votre service\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Nous prenons en charge chaque aspect de la gestion locative pour vous offrir une exp\\xe9rience sans stress, tant pour vous que pour vos invit\\xe9s. De l'optimisation des annonces \\xe0 la gestion des invit\\xe9s, nous nous occupons de tout.\"})}),className:\"framer-dt1dr8\",\"data-framer-name\":\"Nous prenons en charge chaque aspect de la gestion locative pour vous offrir une exp\\xe9rience sans stress, tant pour vous que pour vos invit\\xe9s. De l'optimisation des annonces \\xe0 la gestion des invit\\xe9s, nous nous occupons de tout.\",fonts:[\"Inter\"],name:\"Nous prenons en charge chaque aspect de la gestion locative pour vous offrir une exp\\xe9rience sans stress, tant pour vous que pour vos invit\\xe9s. De l'optimisation des annonces \\xe0 la gestion des invit\\xe9s, nous nous occupons de tout.\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t1x343 hidden-1wdsp13 hidden-i00ydl\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p97748\",\"data-framer-name\":\"feature-card\",name:\"feature-card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c4t339\",\"data-framer-name\":\"illus-placeholder\",name:\"illus-placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fqywki\",\"data-framer-name\":\"illus\",name:\"illus\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:268,loading:getLoadingLazyAtYPosition(1491),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/q1pI3h7nqvj0FTZC1CmQXrC5bek.svg\"},className:\"framer-9w0eit\",\"data-framer-name\":\"frame\",name:\"frame\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hedub8\",\"data-framer-name\":\"text-content\",name:\"text-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Annonces optimis\\xe9es\"})}),className:\"framer-1exvixu\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3tkioh\",\"data-framer-name\":\"Frame 82\",name:\"Frame 82\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pe4fqq\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2pewt7\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-upuybc\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ggec5w\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Photos professionnelles\"})}),className:\"framer-154pync\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c80e8j\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ucjrpu\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-191upm3\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3wg333\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Descriptions attrayantes\"})}),className:\"framer-yvq0z5\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1thkihl\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mgs204\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eum4kw\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-sa3nx0\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Maximisation de la visibilit\\xe9\"})}),className:\"framer-12urrrc\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ehqei\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lmuxle\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1thbwlv\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7jbp96\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Ajustements r\\xe9guliers des prix\"})}),className:\"framer-jhw4ns\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z210q7\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nsct24\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kdzczx\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dfizqa\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Optimisation par plateforme\"})}),className:\"framer-uczgsa\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-111suzv\",\"data-framer-name\":\"feature-card\",name:\"feature-card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dnsp3r\",\"data-framer-name\":\"illus\",name:\"illus\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zdkkud\",\"data-framer-name\":\"frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:256,intrinsicWidth:268,name:\"frame\",svg:'<svg width=\"268\" height=\"256\" viewBox=\"0 0 268 256\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M222.547 183.83C222.705 156.018 181.947 133.26 131.514 132.999C81.0799 132.739 40.0685 155.075 39.9096 182.886C39.7508 210.698 80.5092 233.456 130.943 233.716C181.376 233.977 222.388 211.641 222.547 183.83Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M59.0808 185.37L150.166 133.092C155.313 130.138 163.541 129.522 168.546 131.715L227.707 157.639C232.713 159.829 232.593 164.004 227.449 166.96L136.369 219.238C131.222 222.192 122.994 222.808 117.989 220.615L58.8277 194.691C53.8225 192.5 53.9416 188.326 59.0857 185.37H59.0833H59.0808Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M57.1108 160.54L145.801 94.6157C150.777 90.5837 158.849 89.114 163.832 91.3374L222.109 112.161C228.494 114.958 228.045 127.467 223.072 131.501L135.027 202.875C130.051 206.907 121.979 208.377 116.996 206.153L60.0737 180.772C54.0784 178.738 48.5671 167.083 57.1133 160.54H57.1108Z\" fill=\"#1AACAC\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M119.567 194.877L61.292 168.893C58.6021 167.694 58.5946 164.956 61.2821 162.778L149.926 90.9177C152.613 88.7417 156.97 87.9476 159.66 89.147L217.936 115.131C220.625 116.33 220.63 119.068 217.945 121.249L129.302 193.109C126.615 195.285 122.257 196.079 119.567 194.88V194.877Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M57.1081 160.54L145.154 89.166C150.129 85.134 158.201 83.6643 163.184 85.8877L222.107 112.159C227.092 114.382 227.097 119.45 222.122 123.482L134.076 194.856C129.101 198.888 121.029 200.358 116.046 198.134L57.1255 171.861C52.1402 169.638 52.1353 164.57 57.1106 160.538L57.1081 160.54Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M195.212 106.01L180.316 99.3681C179.832 99.15 179.832 98.6593 180.316 98.2658C180.8 97.8724 181.584 97.7301 182.07 97.9458L196.967 104.588C197.451 104.806 197.451 105.296 196.967 105.69C196.483 106.083 195.699 106.226 195.212 106.01Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M92.5837 182.663C94.9337 182.31 96.6459 180.857 96.4101 179.418C96.1719 177.979 94.0751 177.1 91.7251 177.453C89.3751 177.806 87.6629 179.259 87.8986 180.698C88.1369 182.137 90.2337 183.016 92.5837 182.663Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M131.356 191.446L63.3389 161.114L151.213 89.8799L219.23 120.206L131.356 191.443V191.446Z\" fill=\"#EFFFFF\"/>\\n<path d=\"M147.511 155.624L163.933 142.312C165.169 141.31 165.544 140.041 164.916 138.984L158.055 127.436C157.427 126.379 155.891 125.696 154.027 125.639L133.657 125.044C131.793 124.99 129.885 125.573 128.649 126.575L112.227 139.887C110.316 141.435 110.572 143.497 112.795 144.488L140.027 156.632C142.25 157.622 145.603 157.172 147.514 155.624H147.511Z\" fill=\"#031515\"/>\\n<path d=\"M142.461 137.574L142.648 139.079H142.653L142.831 140.554V140.577L143.074 142.483H143.079C143.146 143.028 143.903 143.367 144.784 143.251L151.303 142.374C151.363 142.365 151.415 142.362 151.474 142.355L153.184 142.123C154.507 141.945 155.66 141.457 156.462 140.805C156.559 140.727 156.66 140.639 156.745 140.554C156.881 140.423 156.998 140.288 157.105 140.151C157.211 140.013 157.296 139.871 157.373 139.731C157.415 139.658 157.45 139.584 157.479 139.508C157.536 139.364 157.571 139.217 157.598 139.065C157.613 138.994 157.618 138.916 157.626 138.84L157.613 138.534C157.601 138.432 157.579 138.333 157.551 138.235C157.524 138.141 157.489 138.043 157.442 137.956C157.363 137.783 157.246 137.619 157.12 137.467C156.986 137.318 156.832 137.176 156.658 137.045C156.539 136.958 156.415 136.882 156.283 136.806C156.07 136.69 155.837 136.583 155.584 136.493L155.569 136.488C155.196 136.36 154.784 136.268 154.35 136.213C154.055 136.178 153.75 136.159 153.43 136.166C153.325 136.166 153.214 136.171 153.1 136.178C152.886 136.187 152.668 136.206 152.454 136.235L142.461 137.579H142.459L142.461 137.574Z\" fill=\"url(#paint0_linear_1149_1321)\"/>\\n<path d=\"M129.444 133.551L122.255 139.38C120.523 140.786 120.756 142.651 122.769 143.547C124.781 144.445 127.819 144.038 129.551 142.632L132.995 139.84L132.255 133.878C132.253 133.843 132.241 133.81 132.238 133.774C132.002 132.987 130.337 132.826 129.444 133.551Z\" fill=\"url(#paint1_linear_1149_1321)\"/>\\n<path d=\"M141.598 143.675L138.154 146.468C136.421 147.873 136.655 149.739 138.667 150.635C140.68 151.533 143.717 151.125 145.449 149.72L156.469 140.798C156.566 140.719 156.66 140.634 156.745 140.549C156.655 140.634 156.559 140.719 156.462 140.8C155.658 141.452 154.504 141.94 153.184 142.118L151.474 142.35C151.415 142.36 151.362 142.362 151.303 142.369L144.784 143.249L141.603 143.675H141.598Z\" fill=\"url(#paint2_linear_1149_1321)\"/>\\n<path d=\"M129.443 133.551C130.337 132.828 131.999 132.99 132.238 133.774C132.24 133.81 132.252 133.843 132.255 133.879L132.994 139.84L133.238 141.812C133.3 142.319 133.573 142.77 133.994 143.137C134.076 143.213 134.171 143.284 134.267 143.348C134.337 143.403 134.419 143.45 134.503 143.498C134.545 143.524 134.588 143.545 134.63 143.571C134.803 143.666 134.995 143.749 135.196 143.822C135.245 143.839 135.3 143.855 135.349 143.872C135.446 143.903 135.545 143.936 135.647 143.96L135.662 143.964C135.759 143.991 135.851 144.017 135.952 144.033C135.987 144.045 136.017 144.052 136.064 144.057C136.342 144.114 136.645 144.152 136.95 144.164C137.287 144.183 137.64 144.183 137.997 144.149C138.131 144.14 138.26 144.126 138.397 144.107C138.434 144.102 138.464 144.097 138.496 144.09L141.595 143.673L144.777 143.246C143.896 143.362 143.139 143.023 143.067 142.483H143.062L142.826 140.57V140.549L142.645 139.077H142.64L142.454 137.569L141.692 131.43C141.677 131.297 141.645 131.167 141.595 131.044C141.573 130.975 141.548 130.911 141.518 130.852C141.436 130.669 141.32 130.498 141.173 130.337C140.96 130.103 140.694 129.892 140.384 129.716L140.369 129.711C140.154 129.593 139.918 129.489 139.67 129.399C139.593 129.37 139.511 129.344 139.421 129.316C139.34 129.29 139.258 129.271 139.176 129.252C139.064 129.223 138.95 129.204 138.836 129.178C138.684 129.15 138.528 129.124 138.372 129.107C138.362 129.107 138.357 129.107 138.352 129.105C138.265 129.095 138.178 129.088 138.089 129.083C138.029 129.081 137.975 129.079 137.915 129.071C137.88 129.067 137.841 129.067 137.801 129.067H137.796C137.692 129.064 137.605 129.064 137.503 129.067C137.349 129.067 137.186 129.071 137.027 129.086C136.863 129.098 136.699 129.114 136.533 129.135L136.044 129.216C135.982 129.228 135.923 129.242 135.866 129.256C135.803 129.268 135.744 129.282 135.694 129.299C135.493 129.344 135.292 129.401 135.111 129.47C135.096 129.47 135.091 129.47 135.086 129.474C135.062 129.479 135.044 129.489 135.019 129.493C134.908 129.534 134.798 129.576 134.694 129.621C134.493 129.707 134.292 129.797 134.106 129.896C133.91 130.001 133.734 130.107 133.565 130.223C133.451 130.297 133.347 130.373 133.25 130.456L129.438 133.559L129.451 133.554L129.443 133.551Z\" fill=\"#ECEBDF\"/>\\n<path d=\"M120.486 97.7754L115.111 62.6749L110.327 94.9025L81.8962 57.1235L95.7875 102.263L50.0017 71.2225L82.2436 107.66L54.5428 105.339L82.1766 115.65L46.5996 129.225L88.9287 129.121C88.9287 129.121 87.152 104.78 120.483 97.7801L120.486 97.7754Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M122.136 95.3458L119.48 56.8178L111.589 91.4038L84.6652 48.0972L95.4968 98.2092L49.5423 60.8071L80.6353 102.966L51.3984 98.1997L79.8685 111.63L40.877 123.475L85.8712 126.796C85.8712 126.796 86.102 100.236 122.136 95.3434V95.3458Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1149_1321\" x1=\"149.69\" y1=\"138.975\" x2=\"143.466\" y2=\"147.059\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_1149_1321\" x1=\"127.724\" y1=\"138.785\" x2=\"130.744\" y2=\"130.748\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_1149_1321\" x1=\"146.739\" y1=\"146.216\" x2=\"147.091\" y2=\"141.163\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sgx2x2\",\"data-framer-name\":\"text-content\",name:\"text-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Gestion des voyageurs\"})}),className:\"framer-m03rqf\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jmcfj1\",\"data-framer-name\":\"Frame 82\",name:\"Frame 82\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t8hvx1\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pfdwi\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eexj9g\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ytd1bp\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Gestion pr\\xe9-arriv\\xe9e\"})}),className:\"framer-cfb6fj\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rx3rf4\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jxsrp8\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fd0s55\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cf9jvg\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Accueil des invit\\xe9s en personne\"})}),className:\"framer-td0dzx\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18jjuli\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o6s6k5\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pnifv9\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-132fbyz\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Communication multilingue\"})}),className:\"framer-1fdyqb8\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5vrg3i\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ien3gq\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16hhrnm\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-chnqy2\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Recommandations locales\"})}),className:\"framer-y2yhqk\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rba5xh\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19fp339\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ca83ja\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-w8h056\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Checkout et collecte des avis\"})}),className:\"framer-emc49t\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3z44k1\",\"data-framer-name\":\"feature-card\",name:\"feature-card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dc1xw8\",\"data-framer-name\":\"illus-placeholder\",name:\"illus-placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2mn2kp\",\"data-framer-name\":\"illus\",name:\"illus\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-svpcg5\",\"data-framer-name\":\"frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:256,intrinsicWidth:268,name:\"frame\",svg:'<svg width=\"268\" height=\"256\" viewBox=\"0 0 268 256\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M216.658 190.6C216.802 165.317 179.753 144.631 133.908 144.394C88.0623 144.157 50.783 164.459 50.6391 189.742C50.4952 215.024 87.5437 235.71 133.389 235.947C179.234 236.187 216.514 215.882 216.658 190.6Z\" fill=\"#031515\"/>\\n<path d=\"M210.533 190.913V168.204H131.029C130.399 168.202 129.771 168.202 129.14 168.204H50.6289V190.913C50.7555 202.15 58.6242 213.393 74.2204 221.993C105.544 239.268 156.166 239.353 187.292 222.187C202.917 213.571 210.657 202.241 210.528 190.91H210.531L210.533 190.913Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M200.707 166.391C200.829 145.034 169.53 127.56 130.804 127.358C92.0754 127.159 60.5829 144.309 60.4613 165.666C60.3397 187.023 91.6386 204.497 130.365 204.699C169.093 204.898 200.586 187.748 200.707 166.391Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M210.534 168.617C210.673 144.266 174.986 124.341 130.828 124.111C86.6704 123.883 50.7634 143.439 50.6244 167.79C50.4855 192.14 86.1717 212.066 130.33 212.293C174.488 212.521 210.397 192.965 210.534 168.615V168.617Z\" fill=\"#1AACAC\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M200.436 166.389C200.558 145.112 169.381 127.704 130.801 127.505C92.2213 127.306 60.848 144.392 60.7289 165.668C60.6073 186.945 91.7846 204.353 130.364 204.552C168.944 204.751 200.317 187.665 200.436 166.389Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M97.2418 182.166C96.8572 181.441 96.743 180.59 96.9118 179.793C96.9515 179.611 97.1599 179.506 97.3311 179.592C98.2121 180.033 98.7977 181 98.7183 181.955C98.6885 181.434 98.7481 180.907 98.887 180.4C98.9615 180.125 99.2146 179.791 99.4751 179.928C99.5645 179.976 99.6191 180.068 99.6612 180.158C99.9044 180.651 100.048 181.189 100.088 181.73L100.959 181.066C101.051 180.995 101.192 181.066 101.175 181.182C101.12 181.526 101.043 181.867 100.939 182.199\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M186.924 152.522C187.183 151.778 187.222 150.922 187.031 150.137C186.989 149.955 186.813 149.862 186.679 149.96C185.996 150.446 185.589 151.436 185.718 152.387C185.709 151.863 185.624 151.342 185.478 150.846C185.398 150.576 185.173 150.258 184.972 150.405C184.9 150.457 184.865 150.552 184.835 150.645C184.674 151.147 184.592 151.692 184.594 152.238L183.847 151.614C183.768 151.545 183.656 151.628 183.679 151.74C183.743 152.079 183.833 152.415 183.937 152.742\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M78.1982 167.631C78.6598 168.295 78.6598 169.134 78.6598 169.532\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M74.9424 169.373C75.0962 169.47 75.2153 169.617 75.265 169.788\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M133.518 190.583C133.436 190.123 133.478 189.645 133.647 189.206\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M134.161 190.766C134.203 190.541 134.33 190.327 134.509 190.171\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M194.548 161.24C194.679 160.624 194.965 160.131 195.3 159.932\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M192.384 175.429C192.207 174.834 192.433 174.149 192.932 173.758\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M190.808 175.387L190.729 175.095\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M79.2207 162.053L130.617 133.637L181.845 162.224L130.448 190.557L79.2207 162.053Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.1143 142.003L131.3 116.426L176.889 141.863L130.704 167.366L85.1143 142.005V142.003Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M130.704 167.363V188.047L85.1143 162.686V142.002L130.704 167.363Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M176.887 141.86V162.546L130.702 188.045V167.361L176.887 141.858V141.86Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M123.178 178.71V177.779L117.076 174.413L116.232 174.877L123.178 178.71Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M123.178 169.055L117.076 165.689V174.412L123.178 177.778V169.055Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M119.783 175.901V176.837\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M119.783 167.183V175.903\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M117.076 174.413L116.232 174.877V165.223L117.076 165.687V174.41V174.413Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M160.71 171.421L154.077 175.095V174.166L159.866 170.954L160.71 171.419V171.421Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M159.869 158.884V170.957L154.08 174.168V162.096L159.869 158.884Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M159.869 170.959L160.713 171.421V158.419L159.869 158.882V170.959Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M95.4125 163.393V162.464L89.3056 159.098L88.4619 159.562L95.4101 163.39L95.4125 163.393Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M95.4126 153.738L89.3057 150.375V159.097L95.4126 162.463V153.736V153.738Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M92.0127 160.588V161.52\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M92.0127 151.868V160.588\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M89.3056 159.1L88.4619 159.565V149.91L89.3056 150.375V159.098V159.1Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M111.776 177.517V176.586L100.56 170.345L99.7158 170.807L111.773 177.515L111.776 177.517Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M111.776 162.305L100.56 156.063V170.345L111.776 176.586V162.305Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M105.785 173.268V174.199\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M105.785 158.988V173.267\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.561 170.347L99.7178 170.809V155.599L100.561 156.063V170.345V170.347Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M98.877 156.338L112.691 163.981V162.648L98.877 155.006V156.338Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M176.889 139.549V142.36L130.704 167.863V165.047L176.889 139.549Z\" fill=\"#0D5656\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.1143 139.687V142.503L130.704 167.863V165.047L85.1143 139.687Z\" fill=\"#0D5656\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M82.415 134.237L130.238 107.748L178.853 134.832L131.03 161.243L82.415 134.237Z\" fill=\"#1AACAC\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M131.03 166.253L82.415 139.402V134.237L131.03 161.318V166.253Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M178.852 134.834V139.848L131.029 166.254V161.319L178.852 134.834Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M173.457 134.844L131.049 158.268L87.8115 134.228L130.22 110.726L173.457 134.844Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M130.22 112.641L171.735 135.799L173.455 134.844L130.218 110.726V112.641H130.22Z\" fill=\"#003D3D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M130.221 112.641L89.5317 135.183L87.8096 134.228L130.218 110.726V112.641H130.221Z\" fill=\"#003D3D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M131.026 138.893V158.268L173.44 134.834V115.464L154.342 111.894L131.026 138.893Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M87.7725 115.009V134.384L131.027 158.266V138.89L87.7725 115.009Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M138.076 149.519V148.649L143.791 145.494L144.583 145.933L138.076 149.519Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M138.076 140.478L143.791 137.328V145.496L138.076 148.651V140.478Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M141.256 146.893V147.765\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M141.256 138.724V146.892\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M143.792 145.494L144.584 145.932V136.892L143.792 137.325V145.494Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M151.087 142.344V141.474L156.807 138.319L157.596 138.753L151.089 142.341L151.087 142.344Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M151.087 133.303L156.807 130.148V138.321L151.087 141.476V133.305V133.303Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M154.271 139.717V140.59\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M154.271 131.549V139.717\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M156.807 138.319L157.596 138.752V129.709L156.807 130.143V138.316V138.319Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.085 135.176V134.306L169.8 131.156L170.591 131.592L164.085 135.178V135.176Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.085 126.135L169.8 122.985V131.158L164.085 134.308V126.137V126.135Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M167.267 132.549V133.422\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M167.267 124.381V132.549\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M169.8 131.156L170.591 131.589V122.546L169.8 122.98V131.153V131.156Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M123.982 149.519V148.649L118.262 145.494L117.473 145.933L123.979 149.519H123.982Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M123.982 140.478L118.262 137.328V145.496L123.982 148.651V140.478Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M120.801 146.893V147.765\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M120.801 138.724V146.892\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M118.262 145.494L117.473 145.932V136.892L118.262 137.325V145.494Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M110.969 142.344V141.474L105.249 138.319L104.46 138.753L110.966 142.341L110.969 142.344Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M110.969 133.303L105.249 130.148V138.321L110.969 141.476V133.305V133.303Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M107.785 139.717V140.59\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M107.785 131.549V139.717\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M105.252 138.319L104.463 138.752V129.709L105.252 130.143V138.316V138.319Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M97.9732 135.176V134.306L92.2584 131.156L91.4668 131.592L97.9732 135.178V135.176Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M97.9736 126.135L92.2588 122.985V131.158L97.9736 134.308V126.137V126.135Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M94.792 132.549V133.422\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M94.792 124.381V132.549\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M92.2564 131.156L91.4648 131.589V122.546L92.2564 122.98V131.153V131.156Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M129.952 91.1152L109.524 87.3511L157.841 113.897L178.207 117.725L129.949 91.1129L129.952 91.1152Z\" fill=\"#003D3D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M83.8633 117.151L132.299 143.479L157.841 113.897L109.524 87.3511L83.8633 117.151Z\" fill=\"#1AACAC\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M200.417 105.015V167.15C199.982 176.679 193.223 186.11 180.13 193.356C152.936 208.413 108.708 208.337 81.3402 193.186C67.6003 185.579 60.7266 175.619 60.7266 165.685V105.015C60.7266 68.1487 91.8989 38.2607 130.342 38.2607H130.796C169.244 38.2607 200.412 68.1511 200.412 105.015H200.414H200.417Z\" fill=\"white\" fill-opacity=\"0.1\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M172.336 53.4812C160.822 44.68 146.238 39.4106 130.372 39.4106H129.93C92.7278 39.4106 62.5654 68.3339 62.5654 104.008V108.313C65.7914 75.1535 101.18 22.837 172.339 53.4764H172.336V53.4812Z\" fill=\"white\"/>\\n<path d=\"M142.472 200.235C140.586 200.418 138.69 200.553 136.784 200.645\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M144.931 199.972C144.817 199.986 144.705 200.001 144.591 200.012\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M197.21 130.224V105.444\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M197.21 135.335V133.123\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M197.21 138.165V137.84\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M131.848 200.78C114.44 200.904 96.9258 197.27 83.6027 189.893C73.6272 184.373 67.4458 177.551 65.0586 170.425\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M98.1397 66.2951C103.172 62.3484 105.142 56.6975 102.544 53.6729C99.9437 50.6483 93.7574 51.395 88.7249 55.3416C83.6925 59.2883 81.7222 64.9393 84.3203 67.9638C86.9209 70.9884 93.1072 70.2418 98.1397 66.2951Z\" fill=\"white\"/>\\n<path d=\"M62.771 141.613C62.6891 141.613 62.6221 141.549 62.6221 141.474C62.6395 138.47 61.431 135.642 59.22 133.507C57.009 131.371 54.061 130.186 50.9145 130.172C50.8326 130.172 50.7656 130.108 50.7656 130.029C50.7656 129.951 50.8326 129.887 50.9145 129.887H50.979C57.4334 129.887 62.714 124.872 62.7462 118.706C62.7462 118.628 62.8132 118.564 62.8951 118.564C62.977 118.564 63.044 118.628 63.044 118.706C63.0093 124.905 68.2601 129.977 74.7491 130.008C74.831 130.008 74.898 130.072 74.898 130.15C74.898 130.229 74.831 130.29 74.7491 130.29H74.6846C68.2303 130.29 62.9497 135.306 62.9174 141.471C62.9174 141.549 62.8504 141.611 62.7685 141.611H62.771V141.613Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M57.4757 113.672C57.3938 113.672 57.3268 113.61 57.3268 113.53C57.3268 111.074 55.2349 109.073 52.6616 109.073C52.5797 109.073 52.5127 109.012 52.5127 108.931C52.5127 108.851 52.5772 108.789 52.6616 108.789C55.2349 108.789 57.3268 106.791 57.3268 104.333C57.3268 104.254 57.3913 104.19 57.4757 104.19C57.56 104.19 57.6245 104.252 57.6245 104.333C57.6245 106.788 59.7164 108.789 62.2897 108.789C62.3716 108.789 62.4386 108.851 62.4386 108.931C62.4386 109.012 62.3741 109.073 62.2897 109.073C59.7164 109.073 57.6245 111.072 57.6245 113.53C57.6245 113.608 57.56 113.672 57.4757 113.672Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M48.6292 127.259C48.5473 127.259 48.4803 127.197 48.4803 127.116C48.4803 123.554 45.443 120.652 41.7133 120.652C41.6315 120.652 41.5645 120.591 41.5645 120.51C41.5645 120.43 41.629 120.37 41.7133 120.37C45.4455 120.37 48.4803 117.469 48.4803 113.906C48.4803 113.828 48.5449 113.764 48.6292 113.764C48.7136 113.764 48.7781 113.826 48.7781 113.906C48.7781 117.471 51.8155 120.37 55.5451 120.37C55.627 120.37 55.694 120.432 55.694 120.51C55.694 120.588 55.6295 120.652 55.5451 120.652C51.813 120.652 48.7781 123.554 48.7781 127.116C48.7781 127.195 48.7136 127.259 48.6292 127.259Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M203.968 116.424C203.886 116.424 203.819 116.362 203.819 116.282C203.784 110.116 198.506 105.101 192.052 105.101H191.987C191.908 105.101 191.841 105.039 191.841 104.958C191.841 104.878 191.905 104.816 191.987 104.816C198.476 104.783 203.727 99.7127 203.692 93.5119C203.692 93.4336 203.757 93.3696 203.839 93.3696C203.921 93.3696 203.988 93.4313 203.988 93.5119C204.022 99.6772 209.301 104.693 215.755 104.693H215.819C215.901 104.693 215.968 104.755 215.968 104.835C215.968 104.916 215.904 104.977 215.819 104.977C209.33 105.011 204.079 110.081 204.114 116.282C204.114 116.36 204.05 116.424 203.965 116.424H203.968Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M126.274 47.332C126.193 47.332 126.126 47.2704 126.126 47.1898C126.091 41.0245 120.813 36.0088 114.358 36.0088H114.294C114.214 36.0088 114.147 35.9472 114.147 35.8666C114.147 35.786 114.212 35.7244 114.294 35.7244C120.783 35.6912 126.034 30.6209 125.999 24.4201C125.999 24.3418 126.064 24.2778 126.145 24.2778C126.227 24.2778 126.294 24.3395 126.294 24.4201C126.329 30.5854 131.607 35.6011 138.061 35.6011H138.126C138.208 35.6011 138.275 35.6627 138.275 35.7433C138.275 35.8239 138.21 35.8855 138.126 35.8855C131.637 35.9187 126.386 40.9889 126.421 47.1898C126.421 47.2681 126.356 47.332 126.272 47.332H126.274Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M209.263 88.4839C209.181 88.4839 209.114 88.4223 209.114 88.3417C209.114 85.886 207.022 83.8854 204.449 83.8854C204.367 83.8854 204.3 83.8238 204.3 83.7432C204.3 83.6626 204.364 83.601 204.449 83.601C207.02 83.601 209.114 81.6027 209.114 79.1447C209.114 79.0664 209.178 79.0024 209.263 79.0024C209.347 79.0024 209.412 79.0641 209.412 79.1447C209.412 81.6004 211.504 83.601 214.077 83.601C214.159 83.601 214.226 83.6626 214.226 83.7432C214.226 83.8238 214.161 83.8854 214.077 83.8854C211.506 83.8854 209.412 85.8836 209.412 88.3417C209.412 88.4199 209.347 88.4839 209.263 88.4839Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M131.57 19.3926C131.488 19.3926 131.422 19.331 131.422 19.2504C131.422 16.7947 129.33 14.7941 126.756 14.7941C126.674 14.7941 126.607 14.7325 126.607 14.6519C126.607 14.5713 126.672 14.5097 126.756 14.5097C129.327 14.5097 131.422 12.5114 131.422 10.0533C131.422 9.97513 131.486 9.91113 131.57 9.91113C131.655 9.91113 131.719 9.97276 131.719 10.0533C131.719 12.5091 133.811 14.5097 136.384 14.5097C136.466 14.5097 136.533 14.5713 136.533 14.6519C136.533 14.7325 136.469 14.7941 136.384 14.7941C133.814 14.7941 131.719 16.7923 131.719 19.2504C131.719 19.3286 131.655 19.3926 131.57 19.3926Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M218.109 102.069C218.027 102.069 217.96 102.007 217.96 101.926C217.96 98.3614 214.925 95.4624 211.193 95.4624C211.111 95.4624 211.047 95.4008 211.047 95.3202C211.047 95.2396 211.111 95.178 211.193 95.178C214.925 95.178 217.96 92.2767 217.96 88.714C217.96 88.6358 218.025 88.5718 218.109 88.5718C218.194 88.5718 218.258 88.6334 218.258 88.714C218.258 92.279 221.293 95.178 225.025 95.178C225.107 95.178 225.174 95.2396 225.174 95.3202C225.174 95.4008 225.109 95.4624 225.025 95.4624C221.293 95.4624 218.258 98.3638 218.258 101.926C218.258 102.005 218.194 102.069 218.109 102.069Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M140.417 32.9774C140.335 32.9774 140.268 32.9157 140.268 32.8351C140.268 29.2701 137.233 26.3711 133.501 26.3711C133.419 26.3711 133.354 26.3095 133.354 26.2289C133.354 26.1483 133.419 26.0867 133.501 26.0867C137.233 26.0867 140.268 23.1854 140.268 19.6227C140.268 19.5445 140.332 19.4805 140.417 19.4805C140.501 19.4805 140.566 19.5421 140.566 19.6227C140.566 23.1877 143.601 26.0867 147.333 26.0867C147.415 26.0867 147.482 26.1483 147.482 26.2289C147.482 26.3095 147.417 26.3711 147.333 26.3711C143.601 26.3711 140.566 29.2725 140.566 32.8351C140.566 32.9134 140.501 32.9774 140.417 32.9774Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gg7oby\",\"data-framer-name\":\"text-content\",name:\"text-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Maintenance & M\\xe9nage\"})}),className:\"framer-1hscxdg\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6gtp2e\",\"data-framer-name\":\"Frame 82\",name:\"Frame 82\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lyh2td\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ma53tt\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p83x02\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ihon20\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"M\\xe9nage de qualit\\xe9 h\\xf4teli\\xe8re\"})}),className:\"framer-krkg50\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bsju9m\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7x4yfv\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7dmxi9\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2rww4s\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Inspections r\\xe9guli\\xe8res\"})}),className:\"framer-dnsyng\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10i50mm\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u3k5zi\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eep3my\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cqajk2\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Entretien rigoureux\"})}),className:\"framer-vlwuz6\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dtxd5z\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s1hota\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1af91hs\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a3aa5q\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Gestion des consommables\"})}),className:\"framer-85gqse\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nmpiy0\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-144pszz\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ubdrsj\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-x9zvx4\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Assurance des plateformes\"})}),className:\"framer-1ua3bau\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-efm2q8\",\"data-framer-name\":\"feature-card\",name:\"feature-card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yco8ut\",\"data-framer-name\":\"illus-placeholder\",name:\"illus-placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tuavln\",\"data-framer-name\":\"illus\",name:\"illus\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h1id7c\",\"data-framer-name\":\"frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:256,intrinsicWidth:268,name:\"frame\",svg:'<svg width=\"268\" height=\"256\" viewBox=\"0 0 268 256\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M227.51 188.57C227.668 160.759 186.91 138.001 136.476 137.74C86.0428 137.479 45.0313 159.815 44.8725 187.627C44.7137 215.438 85.4721 238.196 135.906 238.457C186.339 238.718 227.351 216.382 227.51 188.57Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M157.336 144.683C128.26 157.962 100.485 173.495 74.3103 191.344C55.9126 148.203 43.5102 103.078 38.165 56.8062C71.3722 45.5943 105.396 36.8714 140.005 30.5259C139.993 69.234 145.993 107.532 157.338 144.683H157.336Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M162.658 140.385C132.972 152.673 104.617 167.322 77.8835 184.415C59.1632 139.456 46.5623 92.729 41.165 45.1486C75.0596 35.1622 109.79 27.7572 145.112 22.8149C145.05 62.4167 151.124 101.867 162.656 140.385H162.658Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M77.3498 55.0118C67.8582 57.6785 58.4434 60.53 49.0957 63.5736C48.9245 62.4429 48.8376 61.8764 48.6738 60.7433C58.0588 57.7425 67.5083 54.9312 77.0322 52.3096C77.1563 53.3905 77.2183 53.9309 77.3474 55.0118H77.3498Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M70.516 61.8882C63.5926 63.986 56.714 66.1857 49.8725 68.485C49.6889 67.3519 49.5971 66.7878 49.4209 65.6548C56.2921 63.3887 63.1956 61.2222 70.1438 59.1528C70.2902 60.2456 70.3646 60.7955 70.5185 61.8882H70.516Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M80.8066 51.3496C95.2389 47.5239 109.805 44.1461 124.508 41.1997L80.8066 51.3496Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M80.8066 51.3496C95.2389 47.5239 109.805 44.1461 124.508 41.1997\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M81.085 53.779C95.4726 49.894 109.997 46.4569 124.657 43.4561L81.085 53.779Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M81.085 53.779C95.4726 49.894 109.997 46.4569 124.657 43.4561\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M81.3701 56.2087C95.7131 52.2668 110.193 48.7705 124.811 45.708L81.3701 56.2087Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M81.3701 56.2087C95.7131 52.2668 110.193 48.7705 124.811 45.708\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M81.6699 58.6337C95.9657 54.6325 110.403 51.0769 124.982 47.9575L81.6699 58.6337Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M81.6699 58.6337C95.9657 54.6325 110.403 51.0769 124.982 47.9575\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M136.618 45.5964C134.049 46.0942 131.484 46.6109 128.92 47.1372C128.754 44.8829 128.608 42.6287 128.479 40.3721C131.062 39.8743 133.65 39.3932 136.238 38.9238C136.352 41.1472 136.479 43.3706 136.618 45.5941V45.5964Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M132.687 45.5019C131.526 44.7623 130.943 44.3925 129.781 43.6459C130.114 43.2666 130.283 43.077 130.618 42.6977C131.404 43.2026 131.796 43.4539 132.583 43.9564C134.102 42.245 135.638 40.5478 137.196 38.8672C137.568 39.1066 137.752 39.2299 138.124 39.4716C136.293 41.4651 134.476 43.4728 132.685 45.4995H132.687V45.5019Z\" fill=\"#DC9913\"/>\\n<path d=\"M79.3873 69.8122C70.0867 72.7136 60.868 75.7974 51.7237 79.0733C51.5128 77.9426 51.411 77.3808 51.2051 76.2501C60.3866 73.0146 69.64 69.9734 78.9778 67.1147C79.1366 68.1956 79.221 68.7313 79.3848 69.8122H79.3873Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M72.8639 76.864C66.087 79.1348 59.3547 81.5029 52.6646 83.9704C52.4413 82.8421 52.3321 82.278 52.1162 81.1497C58.8336 78.7106 65.5956 76.3734 72.3974 74.1357C72.5785 75.2285 72.6728 75.7737 72.8639 76.864Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M82.6807 66.0673C96.8375 61.8884 111.136 58.155 125.583 54.8555L82.6807 66.0673Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M82.6807 66.0673C96.8375 61.8884 111.136 58.155 125.583 54.8555\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M83.0352 68.4894C97.1424 64.2512 111.398 60.4609 125.803 57.1045L83.0352 68.4894Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M83.0352 68.4894C97.1424 64.2512 111.398 60.4609 125.803 57.1045\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M83.4072 70.9123C97.4673 66.6172 111.676 62.7678 126.039 59.3521L83.4072 70.9123Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M83.4072 70.9123C97.4673 66.6172 111.676 62.7678 126.039 59.3521\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M83.792 73.3348C97.8024 68.9805 111.969 65.0765 126.287 61.5991L83.792 73.3348Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M83.792 73.3348C97.8024 68.9805 111.969 65.0765 126.287 61.5991\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M137.722 58.9536C135.196 59.5154 132.675 60.089 130.159 60.6793C129.916 58.4274 129.69 56.1779 129.486 53.9237C132.025 53.3643 134.571 52.8215 137.117 52.2905C137.308 54.5116 137.511 56.7326 137.725 58.9536H137.722Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M133.826 58.9558C132.652 58.2447 132.064 57.8868 130.888 57.1733C131.205 56.7846 131.364 56.5926 131.682 56.2062C132.478 56.6921 132.875 56.9363 133.672 57.4175C135.116 55.6705 136.578 53.9354 138.059 52.2192C138.434 52.4515 138.625 52.5677 139 52.8C137.255 54.8361 135.531 56.8889 133.823 58.9582L133.826 58.9558Z\" fill=\"#DC9913\"/>\\n<path d=\"M81.9214 84.5775C72.8193 87.7088 63.8041 91.0202 54.8707 94.526C54.6226 93.4 54.501 92.8382 54.2578 91.71C63.2309 88.2468 72.2833 84.9734 81.4226 81.8848C81.6211 82.9609 81.7179 83.499 81.9214 84.5751V84.5775Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M75.712 91.7925C69.0864 94.2317 62.5055 96.768 55.9718 99.4062C55.7112 98.2826 55.5847 97.7208 55.3291 96.5949C61.8926 93.9875 68.5008 91.482 75.1537 89.0737C75.3745 90.1617 75.4837 90.7045 75.712 91.7949V91.7925Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.0479 80.7467C98.9144 76.2169 112.935 72.1351 127.121 68.48L85.0479 80.7467Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M85.0479 80.7467C98.9144 76.2169 112.935 72.1351 127.121 68.48\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M85.4893 83.1644C99.3037 78.5777 113.279 74.4367 127.421 70.7271L85.4893 83.1644Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M85.4893 83.1644C99.3037 78.5777 113.279 74.4367 127.421 70.7271\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M85.9385 85.5801C99.7057 80.9365 113.634 76.7386 127.732 72.9697L85.9385 85.5801Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M85.9385 85.5801C99.7057 80.9365 113.634 76.7386 127.732 72.9697\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M86.4053 87.993C100.12 83.2925 114.002 79.0377 128.052 75.2119L86.4053 87.993Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M86.4053 87.993C100.12 83.2925 114.002 79.0377 128.052 75.2119\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M139.281 72.2892C136.799 72.9126 134.325 73.5502 131.853 74.2021C131.533 71.9573 131.233 69.7102 130.95 67.4631C133.444 66.8421 135.943 66.2352 138.447 65.645C138.712 67.8637 138.993 70.0776 139.281 72.2939V72.2892Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M135.424 72.3818C134.236 71.7015 133.643 71.3578 132.454 70.668C132.754 70.2721 132.906 70.0754 133.208 69.6795C134.015 70.1465 134.417 70.3788 135.218 70.8434C136.586 69.0585 137.973 67.2926 139.382 65.5361C139.765 65.7589 139.953 65.8727 140.333 66.0955C138.67 68.1696 137.035 70.265 135.424 72.3794V72.3818Z\" fill=\"#DC9913\"/>\\n<path d=\"M84.9483 99.2972C76.0497 102.656 67.2429 106.197 58.528 109.928C58.2426 108.807 58.1012 108.248 57.8232 107.124C66.5829 103.433 75.4244 99.9348 84.3602 96.6187C84.5935 97.6901 84.7101 98.2258 84.9483 99.3019V99.2972Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M79.0599 106.679C72.5857 109.286 66.1661 111.988 59.7912 114.792C59.4959 113.674 59.347 113.114 59.0566 111.991C65.4613 109.217 71.9107 106.543 78.4122 103.969C78.6678 105.052 78.7968 105.595 79.0599 106.679Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M87.9092 95.3864C101.473 90.513 115.205 86.0827 129.122 82.0815L87.9092 95.3864Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M87.9092 95.3864C101.473 90.513 115.205 86.0827 129.122 82.0815\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M88.4297 97.7943C101.941 92.8616 115.629 88.3769 129.493 84.3164L88.4297 97.7943Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M88.4297 97.7943C101.941 92.8616 115.629 88.3769 129.493 84.3164\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M88.9609 100.203C102.423 95.2156 116.061 90.6716 129.878 86.5566L88.9609 100.203Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M88.9609 100.203C102.423 95.2156 116.061 90.6716 129.878 86.5566\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M89.5068 102.609C102.914 97.5647 116.505 92.9662 130.278 88.792L89.5068 102.609Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M89.5068 102.609C102.914 97.5647 116.505 92.9662 130.278 88.792\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M141.288 85.5894C138.853 86.2744 136.424 86.9713 134.002 87.6848C133.608 85.4448 133.23 83.2072 132.873 80.9624C135.322 80.2821 137.774 79.6113 140.231 78.9595C140.571 81.171 140.923 83.3802 141.288 85.5918H141.29L141.288 85.5894Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M137.474 85.7769C136.273 85.1226 135.675 84.7955 134.474 84.1366C134.757 83.7336 134.898 83.5298 135.183 83.1292C135.997 83.5748 136.402 83.8 137.213 84.248C138.511 82.4346 139.821 80.6308 141.146 78.8364C141.531 79.0521 141.722 79.1588 142.107 79.3698C140.528 81.4865 138.985 83.6222 137.469 85.7769H137.471H137.474Z\" fill=\"#DC9913\"/>\\n<path d=\"M88.4642 113.965C79.7741 117.547 71.1881 121.313 62.694 125.265C62.3714 124.148 62.2101 123.589 61.8975 122.473C70.4313 118.559 79.0619 114.838 87.7892 111.292C88.0572 112.358 88.1912 112.896 88.4667 113.963L88.4642 113.965Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M82.8962 121.501C76.5833 124.272 70.325 127.14 64.1164 130.103C63.7814 128.989 63.6176 128.432 63.29 127.315C69.5285 124.381 75.8166 121.541 82.1592 118.801C82.452 119.879 82.5984 120.42 82.8962 121.501Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M91.2559 109.971C104.504 104.754 117.942 99.9826 131.572 95.6377L91.2559 109.971Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M91.2559 109.971C104.504 104.754 117.942 99.9826 131.572 95.6377\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M91.8545 112.372C105.053 107.101 118.439 102.272 132.022 97.8682L91.8545 112.372Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M91.8545 112.372C105.053 107.101 118.439 102.272 132.022 97.8682\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M92.4678 114.771C105.612 109.443 118.95 104.557 132.484 100.099L92.4678 114.771Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M92.4678 114.771C105.612 109.443 118.95 104.557 132.484 100.099\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M93.0898 117.168C106.18 111.784 119.468 106.842 132.955 102.327L93.0898 117.168Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M93.0898 117.168C106.18 111.784 119.468 106.842 132.955 102.327\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M143.742 98.8516C141.357 99.5959 138.978 100.354 136.605 101.125C136.136 98.8943 135.685 96.6614 135.253 94.4238C137.65 93.6818 140.055 92.9541 142.464 92.2383C142.879 94.4451 143.303 96.6448 143.745 98.8492L143.742 98.8516Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M139.97 99.1337C138.759 98.5079 138.154 98.195 136.945 97.5645C137.211 97.1544 137.347 96.9506 137.613 96.5381C138.432 96.9672 138.844 97.1781 139.663 97.6048C140.886 95.7583 142.119 93.9236 143.367 92.0913C143.754 92.2952 143.948 92.3995 144.338 92.6033C142.851 94.7603 141.395 96.9363 139.973 99.1289L139.97 99.1337Z\" fill=\"#DC9913\"/>\\n<path d=\"M92.4627 128.571C83.9909 132.376 75.6259 136.36 67.3625 140.537C67.0027 139.428 66.8265 138.868 66.4717 137.759C74.7797 133.625 83.1845 129.678 91.6959 125.914C91.9987 126.976 92.1525 127.509 92.4602 128.574H92.4627V128.571Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M87.2191 136.261C81.07 139.198 74.9805 142.225 68.943 145.349C68.5733 144.237 68.3872 143.685 68.0273 142.575C74.0946 139.477 80.2164 136.479 86.3978 133.575C86.7253 134.651 86.8891 135.189 87.2241 136.263H87.2216L87.2191 136.261Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M95.085 124.501C108.011 118.95 121.143 113.837 134.481 109.148L95.085 124.501Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M95.085 124.501C108.011 118.95 121.143 113.837 134.481 109.148\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M95.7598 126.891C108.631 121.285 121.711 116.118 134.999 111.375L95.7598 126.891Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M95.7598 126.891C108.631 121.285 121.711 116.118 134.999 111.375\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M96.4502 129.28C109.267 123.617 122.295 118.395 135.534 113.595L96.4502 129.28Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M96.4502 129.28C109.267 123.617 122.295 118.395 135.534 113.595\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M97.1553 131.667C109.92 125.95 122.893 120.673 136.082 115.816L97.1553 131.667Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M97.1553 131.667C109.92 125.95 122.893 120.673 136.082 115.816\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M146.631 112.071C144.298 112.875 141.968 113.693 139.648 114.527C139.105 112.304 138.581 110.08 138.072 107.85C140.42 107.046 142.772 106.259 145.135 105.486C145.623 107.684 146.122 109.879 146.631 112.076V112.071Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M96.9388 143.111C88.6904 147.136 80.5561 151.339 72.5285 155.726C72.1339 154.619 71.9379 154.067 71.5508 152.962C79.6206 148.613 87.797 144.453 96.0877 140.463C96.4252 141.523 96.5964 142.052 96.9388 143.111Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M92.0253 150.95C86.0449 154.046 80.129 157.234 74.2678 160.517C73.8608 159.412 73.6598 158.86 73.2578 157.755C79.1489 154.499 85.0994 151.341 91.1121 148.274C91.4719 149.345 91.658 149.879 92.0228 150.948L92.0253 150.95Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M99.3877 138.968C111.981 133.085 124.793 127.637 137.828 122.612L99.3877 138.968Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M99.3877 138.968C111.981 133.085 124.793 127.637 137.828 122.612\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M100.143 141.345C112.679 135.405 125.441 129.906 138.424 124.826L100.143 141.345Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M100.143 141.345C112.679 135.405 125.441 129.906 138.424 124.826\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M100.912 143.723C113.394 137.73 126.099 132.174 139.03 127.038L100.912 143.723Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M100.912 143.723C113.394 137.73 126.099 132.174 139.03 127.038\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M101.691 146.1C114.116 140.056 126.767 134.445 139.648 129.254L101.691 146.1Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M101.691 146.1C114.116 140.056 126.767 134.445 139.648 129.254\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M149.958 125.238C147.676 126.101 145.402 126.978 143.134 127.87C142.519 125.656 141.921 123.439 141.343 121.221C143.636 120.358 145.938 119.512 148.246 118.677C148.805 120.867 149.378 123.053 149.961 125.238H149.958Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M204.588 31.9575L203.392 33.311C203.253 33.4698 203.109 33.631 202.968 33.7898L202.513 34.3042C202.193 34.6669 201.873 35.0295 201.553 35.3898L201.131 35.8686C200.724 36.3285 200.325 36.7812 199.935 37.2221L198.729 38.5827C198.583 38.7486 198.575 39.0284 198.727 39.4242C198.756 39.5024 198.794 39.583 198.836 39.666C198.908 39.8035 198.948 39.8793 198.995 39.9575C199.059 40.0642 199.106 40.1377 199.156 40.2112C199.225 40.3131 199.273 40.3771 199.32 40.4411C199.345 40.4766 199.369 40.5098 199.399 40.5478C199.449 40.6118 199.479 40.6473 199.503 40.6829C199.543 40.7326 199.575 40.7777 199.618 40.8298C199.699 40.927 199.724 40.9555 199.749 40.9863C199.774 41.0147 199.799 41.0479 199.826 41.0763C199.868 41.1261 199.915 41.1759 199.962 41.2281C200.101 41.3821 200.171 41.4556 200.243 41.5338C200.387 41.6832 200.419 41.7164 200.454 41.7519C200.518 41.8159 200.585 41.8846 200.652 41.9486C200.737 42.034 200.811 42.1051 200.886 42.1715C200.918 42.1999 200.95 42.2331 200.985 42.2639C201.193 42.4535 201.273 42.527 201.352 42.5981C201.501 42.7261 201.551 42.7735 201.603 42.8162C201.652 42.8589 201.699 42.8992 201.752 42.9371C201.975 43.122 202.074 43.2002 202.176 43.2808C202.228 43.3235 202.26 43.3424 202.29 43.3685C202.367 43.4278 202.441 43.487 202.518 43.5439C202.647 43.6387 202.719 43.6909 202.789 43.7406C202.841 43.7786 202.893 43.8189 202.943 43.8544C203.183 44.0251 203.387 44.1602 203.59 44.2882C203.739 44.3854 203.839 44.447 203.938 44.5039C204.042 44.5679 204.144 44.6248 204.241 44.6817C204.273 44.7006 204.305 44.7149 204.332 44.7338C204.397 44.7694 204.459 44.8073 204.521 44.8405C204.633 44.9021 204.734 44.9543 204.836 45.0064C204.985 45.0799 205.057 45.1131 205.129 45.1486C205.295 45.2221 205.382 45.2601 205.466 45.2909C205.613 45.3478 205.667 45.3667 205.719 45.3857C205.853 45.4307 205.891 45.4426 205.933 45.4568C206.953 45.554 206.988 45.5421 207.02 45.5303C207.196 45.407 214.261 37.4189 214.261 37.4189C214.33 37.3383 214.362 37.2956 214.392 37.2577C214.561 37.0372 214.621 36.9401 214.685 36.8192C214.717 36.7575 214.747 36.6983 214.774 36.6366C214.807 36.5655 214.827 36.5252 214.854 36.4565C215.005 35.9374 215.025 35.8165 215.037 35.698C215.047 35.6103 215.05 35.5297 215.055 35.4538C215.055 35.2097 215.05 35.1457 215.042 35.0793C215.028 34.9347 215.02 34.8921 215.015 34.847C214.975 34.6455 214.968 34.6076 214.961 34.5744C214.886 34.3113 214.871 34.2758 214.861 34.2426C214.844 34.1904 214.829 34.1501 214.817 34.1146C214.757 33.9771 214.735 33.9249 214.717 33.8823C214.578 33.6002 214.511 33.4841 214.429 33.3537C214.216 33.0337 214.174 32.9768 214.134 32.9246C214.065 32.8346 214.037 32.7943 214.005 32.7564C213.578 32.1946 213.062 31.6755 212.506 31.2441C210.63 29.6796 208.089 28.6817 206.255 30.175C206.216 30.2035 206.193 30.2248 206.174 30.239C205.93 30.4666 205.883 30.5164 205.844 30.5638C205.427 31.0331 205.025 31.4906 204.605 31.967H204.593L204.588 31.9575Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M201.807 39.6066C204.144 41.0241 206.474 43.2973 207.015 44.6839C207.551 46.0706 206.095 46.0445 203.757 44.627C201.42 43.2096 199.089 40.9364 198.549 39.5497C198.013 38.163 199.469 38.1891 201.807 39.6066Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M198.55 39.5497C199.086 40.9364 201.416 43.2096 203.759 44.627C206.096 46.0445 207.556 46.0706 207.017 44.6839C206.481 43.2973 204.148 41.0241 201.808 39.6066C199.471 38.1891 198.012 38.163 198.55 39.5497Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M141.71 107.532C141.363 108.914 141.065 110.206 140.77 111.495C140.98 112.055 140.983 112.057 140.988 112.059C142.842 111.633 144.122 111.137 145.402 110.639C145.474 110.177 145.462 110.142 145.445 110.111C145.249 109.786 145.229 109.76 145.206 109.732C144.849 109.305 144.824 109.279 144.797 109.253C144.695 109.151 144.67 109.122 144.643 109.096C144.531 108.99 144.504 108.964 144.474 108.937C144.355 108.828 144.321 108.8 144.288 108.772C144.254 108.743 144.219 108.712 144.189 108.686C144.04 108.565 144 108.532 143.961 108.499C143.569 108.207 143.521 108.177 143.477 108.143C143.32 108.039 143.241 107.987 143.159 107.94C143.065 107.883 142.976 107.833 142.889 107.785C142.713 107.693 142.66 107.669 142.608 107.648C142.519 107.608 142.472 107.589 142.427 107.57C142.288 107.522 142.258 107.513 142.229 107.503C141.71 107.529 141.71 107.532 141.708 107.532H141.71Z\" fill=\"#F4EEE9\"/>\\n<path d=\"M207.015 44.6841C206.985 44.6059 206.948 44.5253 206.905 44.4424C206.834 44.3049 206.794 44.229 206.747 44.1508C206.682 44.0441 206.635 43.9707 206.585 43.8948C206.516 43.7929 206.469 43.7289 206.419 43.6649C206.394 43.6293 206.372 43.5961 206.345 43.5582C206.295 43.4942 206.265 43.4587 206.238 43.4231C206.201 43.3757 206.166 43.3283 206.126 43.2809C206.047 43.1837 206.02 43.1553 205.995 43.1221C205.97 43.0936 205.945 43.0604 205.918 43.032C205.876 42.9822 205.829 42.9301 205.781 42.8803C205.642 42.7262 205.575 42.6527 205.503 42.5793C205.357 42.4299 205.325 42.3967 205.293 42.3612C205.228 42.2972 205.161 42.2284 205.094 42.1644C205.01 42.0791 204.935 42.008 204.861 41.9416C204.828 41.9132 204.796 41.88 204.761 41.8492C204.553 41.6572 204.474 41.5861 204.394 41.515C204.245 41.387 204.193 41.3396 204.144 41.2969C204.094 41.2566 204.047 41.2163 203.997 41.176C203.774 40.9935 203.675 40.9129 203.57 40.8323C203.518 40.7896 203.488 40.7659 203.456 40.7422C203.382 40.683 203.305 40.6237 203.228 40.5668C203.099 40.472 203.027 40.4198 202.957 40.3701C202.905 40.3321 202.853 40.2918 202.804 40.2563C202.563 40.0856 202.362 39.9505 202.156 39.8225C202.007 39.7253 201.908 39.6637 201.811 39.6044C201.707 39.5404 201.61 39.4836 201.508 39.4267C201.397 39.3627 201.364 39.3437 201.332 39.3271C201.297 39.3081 201.26 39.2868 201.228 39.2702C201.158 39.2347 201.099 39.2039 201.037 39.1683C200.764 39.0332 200.692 38.9976 200.62 38.9621C200.456 38.891 200.374 38.853 200.292 38.8222C200.138 38.763 200.086 38.7416 200.029 38.7227C199.034 38.3908 198.764 38.5662 198.734 38.5804C198.558 38.7037 189.091 49.4083 189.091 49.4083C188.835 49.6975 188.577 49.989 188.322 50.2806L186.324 52.5396C185.25 53.7556 184.165 54.9834 183.073 56.2207L180.84 58.7476C180.227 59.4397 179.614 60.1342 178.999 60.8311L174.567 65.8421C174.52 65.8942 170.914 69.9736 170.914 69.9736C169.708 71.339 168.502 72.7019 167.296 74.0625C165.787 75.7716 164.301 77.4498 162.827 79.1209L160.993 81.1926C160.241 82.0436 159.494 82.8874 158.75 83.7289L157.968 84.6154C156.462 86.3197 154.971 88.005 153.502 89.669L152.745 90.5247C149.449 94.251 146.268 97.8492 143.27 101.241L143.166 101.353C143.151 101.369 143.141 101.388 143.129 101.405C143.151 101.383 143.223 101.343 143.635 101.172C143.67 101.172 143.71 101.17 143.747 101.172C143.789 101.172 143.829 101.175 143.873 101.182C143.918 101.187 143.965 101.194 144.015 101.201C144.064 101.208 144.117 101.22 144.171 101.232C144.226 101.246 144.285 101.258 144.347 101.274C144.414 101.293 144.481 101.315 144.553 101.336C144.633 101.362 144.71 101.391 144.794 101.421C144.893 101.459 144.992 101.5 145.097 101.547C145.243 101.611 145.397 101.682 145.556 101.763C145.831 101.9 146.124 102.064 146.429 102.251C146.63 102.372 146.834 102.5 147.032 102.635C147.206 102.751 147.377 102.872 147.548 102.993C147.672 103.083 147.797 103.173 147.916 103.263C148.02 103.341 148.122 103.422 148.221 103.5C148.313 103.571 148.405 103.645 148.494 103.721C148.576 103.789 148.658 103.853 148.737 103.922C148.814 103.988 148.888 104.052 148.963 104.116C149.035 104.178 149.104 104.244 149.176 104.306C149.246 104.368 149.31 104.427 149.375 104.489C149.439 104.548 149.504 104.609 149.566 104.669C149.628 104.728 149.687 104.787 149.747 104.844C149.807 104.903 149.866 104.963 149.923 105.02C149.98 105.079 150.037 105.136 150.094 105.193C150.152 105.249 150.206 105.309 150.258 105.366C150.313 105.425 150.365 105.482 150.417 105.541C150.472 105.6 150.521 105.657 150.573 105.716C150.623 105.776 150.675 105.833 150.722 105.892C150.772 105.953 150.822 106.015 150.869 106.074C150.918 106.138 150.963 106.2 151.013 106.262C151.06 106.326 151.107 106.39 151.149 106.454C151.196 106.52 151.241 106.586 151.283 106.653C151.33 106.729 151.375 106.8 151.417 106.871C151.464 106.954 151.509 107.032 151.546 107.113C151.581 107.188 151.613 107.26 151.554 108.239C151.606 108.208 151.623 108.191 151.635 108.175C151.735 108.056 151.836 107.94 151.836 107.94L207.022 45.5209C207.094 45.4142 207.109 45.3692 207.119 45.3218C207.134 45.2554 207.136 45.2009 207.136 45.1464C207.131 45.0587 207.121 44.997 207.106 44.9307C207.082 44.8311 207.057 44.7553 207.03 44.677V44.6818L207.015 44.6841Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M151.271 108.371L151.437 108.307\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M145.516 110.315C145.509 110.282 145.501 110.246 145.486 110.208C145.474 110.177 145.459 110.144 145.444 110.113C145.427 110.08 145.409 110.042 145.387 110.007C145.367 109.976 145.347 109.943 145.33 109.91C145.31 109.881 145.29 109.853 145.27 109.82C145.251 109.791 145.231 109.76 145.208 109.732C145.189 109.706 145.166 109.677 144.943 109.412C144.921 109.386 144.896 109.36 144.873 109.334C144.851 109.308 144.826 109.281 144.799 109.258C144.774 109.232 144.747 109.206 144.722 109.18C144.697 109.153 144.67 109.127 144.643 109.099C144.618 109.073 144.588 109.047 144.561 109.021C144.533 108.995 144.504 108.969 144.476 108.94C144.449 108.912 144.417 108.888 144.387 108.857C144.355 108.829 144.325 108.8 144.293 108.772C144.258 108.743 144.228 108.713 144.193 108.686C144.156 108.658 144.121 108.627 144.084 108.596C144.045 108.563 144.005 108.53 143.965 108.499C143.92 108.464 143.873 108.428 143.829 108.393C143.774 108.352 143.719 108.312 143.665 108.272C143.588 108.217 143.514 108.165 143.434 108.111C143.345 108.051 143.255 107.994 143.166 107.94C143.027 107.855 142.898 107.783 142.777 107.722C142.707 107.686 142.638 107.653 142.573 107.627C142.526 107.606 142.479 107.587 142.437 107.57C142.399 107.553 142.365 107.542 141.667 107.625C141.667 107.625 143.067 101.568 143.119 101.419C143.104 101.445 143.094 101.471 143.082 101.5C143.067 101.549 142.834 102.561 142.834 102.561L141.665 107.625C141.365 108.916 141.069 110.208 140.771 111.495C140.977 112.048 140.982 112.055 140.99 112.06C141.064 112.105 141.082 112.114 141.099 112.124C142.841 111.635 144.122 111.14 145.404 110.644L145.598 110.569C145.536 110.592 145.471 110.606 145.524 110.317H145.519L145.516 110.315Z\" fill=\"#330815\"/>\\n<path d=\"M141.663 107.622C142.358 107.539 142.395 107.551 142.432 107.568C142.477 107.584 142.522 107.603 142.569 107.625C142.633 107.653 142.703 107.684 142.772 107.719C142.894 107.781 143.025 107.854 143.162 107.937C143.251 107.992 143.34 108.049 143.43 108.108C143.507 108.163 143.581 108.215 143.661 108.269C143.715 108.312 143.77 108.35 143.824 108.39C143.869 108.426 143.916 108.461 143.961 108.497C144 108.53 144.04 108.561 144.08 108.594C144.117 108.622 144.152 108.653 144.189 108.684C144.224 108.71 144.256 108.741 144.288 108.769C144.321 108.798 144.35 108.826 144.383 108.855C144.41 108.883 144.442 108.912 144.472 108.938C144.502 108.964 144.529 108.99 144.556 109.018C144.584 109.047 144.613 109.07 144.638 109.097C144.668 109.123 144.693 109.149 144.718 109.177C144.742 109.203 144.77 109.229 144.795 109.255C144.819 109.279 144.847 109.305 144.869 109.331C144.891 109.357 144.916 109.383 144.938 109.409C145.162 109.675 145.184 109.703 145.204 109.729C145.226 109.758 145.246 109.789 145.266 109.817C145.286 109.848 145.306 109.879 145.326 109.907C145.345 109.943 145.363 109.974 145.383 110.004C145.405 110.04 145.425 110.078 145.44 110.111C145.457 110.142 145.47 110.175 145.482 110.206C145.499 110.244 145.504 110.277 145.512 110.313H145.517C145.467 110.602 145.529 110.587 145.591 110.564L145.398 110.64C144.117 111.137 142.834 111.633 141.092 112.119C141.075 112.109 141.057 112.1 140.983 112.055C140.976 112.05 140.968 112.043 140.765 111.491C141.062 110.201 141.358 108.909 141.658 107.62L141.663 107.622ZM141.663 107.622C141.663 107.622 143.062 101.566 143.115 101.417C143.1 101.443 143.09 101.469 143.077 101.497C143.062 101.547 142.829 102.559 142.829 102.559L141.66 107.622H141.663Z\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M151.534 107.12C151.496 107.042 151.454 106.961 151.405 106.878C151.362 106.807 151.32 106.733 151.271 106.66C151.228 106.594 151.184 106.527 151.137 106.461C151.092 106.397 151.047 106.333 151 106.269C150.955 106.207 150.908 106.143 150.856 106.082C150.809 106.02 150.762 105.958 150.71 105.899C150.663 105.84 150.611 105.783 150.561 105.724C150.509 105.664 150.459 105.607 150.405 105.548C150.352 105.489 150.3 105.432 150.246 105.373C150.191 105.314 150.139 105.257 150.082 105.2C150.025 105.143 149.968 105.081 149.911 105.027C149.854 104.967 149.794 104.908 149.735 104.851C149.675 104.792 149.613 104.733 149.553 104.676C149.491 104.617 149.429 104.555 149.362 104.496C149.298 104.434 149.228 104.375 149.164 104.313C149.092 104.252 149.02 104.185 148.95 104.124C148.876 104.06 148.799 103.993 148.725 103.929C148.645 103.861 148.563 103.797 148.481 103.728C148.392 103.654 148.3 103.583 148.208 103.507C148.109 103.427 148.005 103.346 147.901 103.27C147.782 103.178 147.658 103.088 147.534 103C147.362 102.877 147.189 102.758 147.015 102.64C146.814 102.505 146.615 102.379 146.412 102.256C146.104 102.069 145.811 101.907 145.538 101.767C145.38 101.687 145.228 101.616 145.079 101.552C144.975 101.504 144.873 101.464 144.777 101.426C144.692 101.395 144.613 101.367 144.533 101.341C144.464 101.317 144.397 101.296 144.327 101.279C144.265 101.263 144.211 101.246 144.151 101.237C144.099 101.222 144.047 101.213 143.995 101.206C143.945 101.199 143.901 101.191 143.853 101.187C143.809 101.182 143.767 101.177 143.727 101.175C143.69 101.175 143.65 101.173 143.615 101.175C143.203 101.346 143.129 101.386 143.109 101.407C143.107 101.41 143.102 101.417 143.099 101.419C143.042 101.566 141.647 107.625 141.647 107.625C142.342 107.544 142.382 107.556 142.417 107.57C142.461 107.587 142.506 107.606 142.553 107.627C142.618 107.655 142.687 107.689 142.757 107.722C142.878 107.783 143.01 107.857 143.146 107.94C143.236 107.994 143.325 108.051 143.414 108.111C143.491 108.16 143.571 108.215 143.645 108.272C143.7 108.31 143.754 108.352 143.809 108.395C143.854 108.431 143.901 108.466 143.945 108.502C143.985 108.535 144.025 108.568 144.064 108.599C144.102 108.627 144.136 108.658 144.174 108.689C144.208 108.717 144.243 108.746 144.273 108.774C144.305 108.8 144.335 108.831 144.367 108.86C144.399 108.886 144.427 108.912 144.456 108.943C144.484 108.969 144.514 108.995 144.541 109.023C144.568 109.049 144.595 109.075 144.623 109.104C144.648 109.13 144.677 109.156 144.702 109.182C144.727 109.208 144.754 109.234 144.779 109.26C144.804 109.286 144.826 109.312 144.854 109.336C144.878 109.362 144.901 109.388 144.923 109.414C145.146 109.682 145.169 109.708 145.189 109.737C145.211 109.765 145.231 109.794 145.251 109.824C145.273 109.853 145.293 109.886 145.308 109.914C145.33 109.948 145.35 109.981 145.365 110.014C145.387 110.052 145.407 110.085 145.422 110.121C145.439 110.151 145.452 110.187 145.466 110.215C145.484 110.256 145.486 110.287 145.496 110.322C145.449 110.611 145.511 110.599 145.571 110.573C145.571 110.573 145.576 110.573 145.581 110.571L146.203 110.329C146.692 110.14 147.211 109.938 147.737 109.734L149.047 109.227C149.129 109.196 149.206 109.165 149.288 109.135L151.248 108.376L151.415 108.312C151.454 108.295 151.487 108.279 151.516 108.26C151.516 108.258 151.516 108.255 151.516 108.25C151.576 107.271 151.546 107.2 151.511 107.125H151.521L151.534 107.12Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M196.246 44.8121C196.268 44.8666 196.256 44.9306 196.216 44.9804L148.981 98.61C148.919 98.6811 148.802 98.6906 148.728 98.6313C148.651 98.5721 148.644 98.4607 148.706 98.3896L195.941 44.7599C196.003 44.6888 196.119 44.6794 196.194 44.7386C196.219 44.7599 196.236 44.786 196.246 44.8121Z\" fill=\"#F4EEE9\"/>\\n<path d=\"M116.024 199.192L109.688 203.444L151.251 226.832L193.419 203.117L157.814 188.833L116.026 199.192H116.024Z\" fill=\"#031515\"/>\\n<path d=\"M188.086 202.823L151.248 223.137L148.747 192.984L174.78 170.323L191.558 169.37L188.084 202.821L188.086 202.823Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M148.75 192.984L112.89 173.208L115.391 203.363L151.248 223.137L148.747 192.984H148.75Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M132.193 145.354L174.783 168.842L151.248 196.563L108.656 173.073L132.193 145.356V145.354Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M151.25 196.561V198.042L108.658 174.552V173.068L151.25 196.558V196.561Z\" fill=\"#916000\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M155.762 147.115L198.355 170.605L174.783 168.839L132.193 145.351L155.762 147.112V147.115Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M174.782 168.841L198.354 170.607V172.091L174.782 170.325L151.248 198.047V196.565L174.782 168.844V168.841Z\" fill=\"#916000\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ym2cx5\",\"data-framer-name\":\"text-content\",name:\"text-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Gestion administrative\"})}),className:\"framer-1xtutc4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d1grhg\",\"data-framer-name\":\"Frame 82\",name:\"Frame 82\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o27jbn\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n782ch\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mob9d\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rs2ra6\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"D\\xe9claration d\u2019activit\\xe9\"})}),className:\"framer-1591y60\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o5rhof\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d70swr\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m7e41l\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-picx30\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Taxes et obligations fiscales\"})}),className:\"framer-1lrujdk\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g8nc2n\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p9xuk\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bvbyvg\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d6rr5r\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Assurance et s\\xe9curit\\xe9\"})}),className:\"framer-931s3e\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j1ne3r\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wzwd08\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rfdit2\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5w0csn\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Compatibilit\\xe9 et suivi financier\"})}),className:\"framer-n11vul\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y6minl\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17pq6vk\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wx7wux\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14n8fdb\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Mises \\xe0 jour et conformit\\xe9 l\\xe9gale\"})}),className:\"framer-1v9zn5m\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19uml1y-container hidden-72rtr7\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"AXn5WGU_n\",layoutId:\"AXn5WGU_n\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17d2hs8\",\"data-framer-name\":\"feature-card\",name:\"feature-card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k2apfh\",\"data-framer-name\":\"illus-placeholder\",name:\"illus-placeholder\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g1j20l\",\"data-framer-name\":\"illus\",name:\"illus\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:268,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/q1pI3h7nqvj0FTZC1CmQXrC5bek.svg\"},className:\"framer-8ljq4k\",\"data-framer-name\":\"frame\",name:\"frame\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14tbovn\",\"data-framer-name\":\"text-content\",name:\"text-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Annonces optimis\\xe9es\"})}),className:\"framer-1qru6dh\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8nfi3g\",\"data-framer-name\":\"Frame 82\",name:\"Frame 82\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gzxiu0\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-125ld8l\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tiwl20\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bykao2\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Photos professionnelles\"})}),className:\"framer-o6yzci\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wl6mgb\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fuwe6z\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mmagdq\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vs5a0m\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Descriptions attrayantes\"})}),className:\"framer-96u3ih\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x52dc0\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vkbnoc\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hpd80s\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r64nkk\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Maximisation de la visibilit\\xe9\"})}),className:\"framer-1pj182i\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-62xax2\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sqtcvt\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ge5or0\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cslvig\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Ajustements r\\xe9guliers des prix\"})}),className:\"framer-13377io\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yj95y8\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p53w23\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kfwpzg\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k0e4vh\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Optimisation par plateforme\"})}),className:\"framer-1blfkct\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j0jmoa\",\"data-framer-name\":\"feature-card\",name:\"feature-card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a6lahi\",\"data-framer-name\":\"illus\",name:\"illus\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-156l70z\",\"data-framer-name\":\"frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:256,intrinsicWidth:268,name:\"frame\",svg:'<svg width=\"268\" height=\"256\" viewBox=\"0 0 268 256\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M222.547 183.83C222.705 156.018 181.947 133.26 131.514 132.999C81.0799 132.739 40.0685 155.075 39.9096 182.886C39.7508 210.698 80.5092 233.456 130.943 233.716C181.376 233.977 222.388 211.641 222.547 183.83Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M59.0808 185.37L150.166 133.092C155.313 130.138 163.541 129.522 168.546 131.715L227.707 157.639C232.713 159.829 232.593 164.004 227.449 166.96L136.369 219.238C131.222 222.192 122.994 222.808 117.989 220.615L58.8277 194.691C53.8225 192.5 53.9416 188.326 59.0857 185.37H59.0833H59.0808Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M57.1108 160.54L145.801 94.6157C150.777 90.5837 158.849 89.114 163.832 91.3374L222.109 112.161C228.494 114.958 228.045 127.467 223.072 131.501L135.027 202.875C130.051 206.907 121.979 208.377 116.996 206.153L60.0737 180.772C54.0784 178.738 48.5671 167.083 57.1133 160.54H57.1108Z\" fill=\"#1AACAC\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M119.567 194.877L61.292 168.893C58.6021 167.694 58.5946 164.956 61.2821 162.778L149.926 90.9177C152.613 88.7417 156.97 87.9476 159.66 89.147L217.936 115.131C220.625 116.33 220.63 119.068 217.945 121.249L129.302 193.109C126.615 195.285 122.257 196.079 119.567 194.88V194.877Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M57.1081 160.54L145.154 89.166C150.129 85.134 158.201 83.6643 163.184 85.8877L222.107 112.159C227.092 114.382 227.097 119.45 222.122 123.482L134.076 194.856C129.101 198.888 121.029 200.358 116.046 198.134L57.1255 171.861C52.1402 169.638 52.1353 164.57 57.1106 160.538L57.1081 160.54Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M195.212 106.01L180.316 99.3681C179.832 99.15 179.832 98.6593 180.316 98.2658C180.8 97.8724 181.584 97.7301 182.07 97.9458L196.967 104.588C197.451 104.806 197.451 105.296 196.967 105.69C196.483 106.083 195.699 106.226 195.212 106.01Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M92.5837 182.663C94.9337 182.31 96.6459 180.857 96.4101 179.418C96.1719 177.979 94.0751 177.1 91.7251 177.453C89.3751 177.806 87.6629 179.259 87.8986 180.698C88.1369 182.137 90.2337 183.016 92.5837 182.663Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M131.356 191.446L63.3389 161.114L151.213 89.8799L219.23 120.206L131.356 191.443V191.446Z\" fill=\"#EFFFFF\"/>\\n<path d=\"M147.511 155.624L163.933 142.312C165.169 141.31 165.544 140.041 164.916 138.984L158.055 127.436C157.427 126.379 155.891 125.696 154.027 125.639L133.657 125.044C131.793 124.99 129.885 125.573 128.649 126.575L112.227 139.887C110.316 141.435 110.572 143.497 112.795 144.488L140.027 156.632C142.25 157.622 145.603 157.172 147.514 155.624H147.511Z\" fill=\"#031515\"/>\\n<path d=\"M142.461 137.574L142.648 139.079H142.653L142.831 140.554V140.577L143.074 142.483H143.079C143.146 143.028 143.903 143.367 144.784 143.251L151.303 142.374C151.363 142.365 151.415 142.362 151.474 142.355L153.184 142.123C154.507 141.945 155.66 141.457 156.462 140.805C156.559 140.727 156.66 140.639 156.745 140.554C156.881 140.423 156.998 140.288 157.105 140.151C157.211 140.013 157.296 139.871 157.373 139.731C157.415 139.658 157.45 139.584 157.479 139.508C157.536 139.364 157.571 139.217 157.598 139.065C157.613 138.994 157.618 138.916 157.626 138.84L157.613 138.534C157.601 138.432 157.579 138.333 157.551 138.235C157.524 138.141 157.489 138.043 157.442 137.956C157.363 137.783 157.246 137.619 157.12 137.467C156.986 137.318 156.832 137.176 156.658 137.045C156.539 136.958 156.415 136.882 156.283 136.806C156.07 136.69 155.837 136.583 155.584 136.493L155.569 136.488C155.196 136.36 154.784 136.268 154.35 136.213C154.055 136.178 153.75 136.159 153.43 136.166C153.325 136.166 153.214 136.171 153.1 136.178C152.886 136.187 152.668 136.206 152.454 136.235L142.461 137.579H142.459L142.461 137.574Z\" fill=\"url(#paint0_linear_1149_1321)\"/>\\n<path d=\"M129.444 133.551L122.255 139.38C120.523 140.786 120.756 142.651 122.769 143.547C124.781 144.445 127.819 144.038 129.551 142.632L132.995 139.84L132.255 133.878C132.253 133.843 132.241 133.81 132.238 133.774C132.002 132.987 130.337 132.826 129.444 133.551Z\" fill=\"url(#paint1_linear_1149_1321)\"/>\\n<path d=\"M141.598 143.675L138.154 146.468C136.421 147.873 136.655 149.739 138.667 150.635C140.68 151.533 143.717 151.125 145.449 149.72L156.469 140.798C156.566 140.719 156.66 140.634 156.745 140.549C156.655 140.634 156.559 140.719 156.462 140.8C155.658 141.452 154.504 141.94 153.184 142.118L151.474 142.35C151.415 142.36 151.362 142.362 151.303 142.369L144.784 143.249L141.603 143.675H141.598Z\" fill=\"url(#paint2_linear_1149_1321)\"/>\\n<path d=\"M129.443 133.551C130.337 132.828 131.999 132.99 132.238 133.774C132.24 133.81 132.252 133.843 132.255 133.879L132.994 139.84L133.238 141.812C133.3 142.319 133.573 142.77 133.994 143.137C134.076 143.213 134.171 143.284 134.267 143.348C134.337 143.403 134.419 143.45 134.503 143.498C134.545 143.524 134.588 143.545 134.63 143.571C134.803 143.666 134.995 143.749 135.196 143.822C135.245 143.839 135.3 143.855 135.349 143.872C135.446 143.903 135.545 143.936 135.647 143.96L135.662 143.964C135.759 143.991 135.851 144.017 135.952 144.033C135.987 144.045 136.017 144.052 136.064 144.057C136.342 144.114 136.645 144.152 136.95 144.164C137.287 144.183 137.64 144.183 137.997 144.149C138.131 144.14 138.26 144.126 138.397 144.107C138.434 144.102 138.464 144.097 138.496 144.09L141.595 143.673L144.777 143.246C143.896 143.362 143.139 143.023 143.067 142.483H143.062L142.826 140.57V140.549L142.645 139.077H142.64L142.454 137.569L141.692 131.43C141.677 131.297 141.645 131.167 141.595 131.044C141.573 130.975 141.548 130.911 141.518 130.852C141.436 130.669 141.32 130.498 141.173 130.337C140.96 130.103 140.694 129.892 140.384 129.716L140.369 129.711C140.154 129.593 139.918 129.489 139.67 129.399C139.593 129.37 139.511 129.344 139.421 129.316C139.34 129.29 139.258 129.271 139.176 129.252C139.064 129.223 138.95 129.204 138.836 129.178C138.684 129.15 138.528 129.124 138.372 129.107C138.362 129.107 138.357 129.107 138.352 129.105C138.265 129.095 138.178 129.088 138.089 129.083C138.029 129.081 137.975 129.079 137.915 129.071C137.88 129.067 137.841 129.067 137.801 129.067H137.796C137.692 129.064 137.605 129.064 137.503 129.067C137.349 129.067 137.186 129.071 137.027 129.086C136.863 129.098 136.699 129.114 136.533 129.135L136.044 129.216C135.982 129.228 135.923 129.242 135.866 129.256C135.803 129.268 135.744 129.282 135.694 129.299C135.493 129.344 135.292 129.401 135.111 129.47C135.096 129.47 135.091 129.47 135.086 129.474C135.062 129.479 135.044 129.489 135.019 129.493C134.908 129.534 134.798 129.576 134.694 129.621C134.493 129.707 134.292 129.797 134.106 129.896C133.91 130.001 133.734 130.107 133.565 130.223C133.451 130.297 133.347 130.373 133.25 130.456L129.438 133.559L129.451 133.554L129.443 133.551Z\" fill=\"#ECEBDF\"/>\\n<path d=\"M120.486 97.7754L115.111 62.6749L110.327 94.9025L81.8962 57.1235L95.7875 102.263L50.0017 71.2225L82.2436 107.66L54.5428 105.339L82.1766 115.65L46.5996 129.225L88.9287 129.121C88.9287 129.121 87.152 104.78 120.483 97.7801L120.486 97.7754Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M122.136 95.3458L119.48 56.8178L111.589 91.4038L84.6652 48.0972L95.4968 98.2092L49.5423 60.8071L80.6353 102.966L51.3984 98.1997L79.8685 111.63L40.877 123.475L85.8712 126.796C85.8712 126.796 86.102 100.236 122.136 95.3434V95.3458Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1149_1321\" x1=\"149.69\" y1=\"138.975\" x2=\"143.466\" y2=\"147.059\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_1149_1321\" x1=\"127.724\" y1=\"138.785\" x2=\"130.744\" y2=\"130.748\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_1149_1321\" x1=\"146.739\" y1=\"146.216\" x2=\"147.091\" y2=\"141.163\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hz34wf\",\"data-framer-name\":\"text-content\",name:\"text-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Gestion des voyageurs\"})}),className:\"framer-1skvizz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pmamta\",\"data-framer-name\":\"Frame 82\",name:\"Frame 82\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l17xc0\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vge69d\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d020jz\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lfbzx3\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Gestion pr\\xe9-arriv\\xe9e\"})}),className:\"framer-1qjtph2\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yow1zd\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tyzw82\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12zs7x3\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dbnnm2\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Accueil des invit\\xe9s en personne\"})}),className:\"framer-14860hh\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r20pqc\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vssj39\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tfklhu\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3f4qoz\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Communication multilingue\"})}),className:\"framer-7286gl\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ynzju2\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-epuebt\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-my4k20\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vr1b2c\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Recommandations locales\"})}),className:\"framer-kul9pr\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xp2kp8\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-31tgbe\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b7tex3\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kwxufu\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Checkout et collecte des avis\"})}),className:\"framer-1dflmoe\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13cl1w0\",\"data-framer-name\":\"feature-card\",name:\"feature-card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9zzwlr\",\"data-framer-name\":\"illus-placeholder\",name:\"illus-placeholder\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r6m2g6\",\"data-framer-name\":\"illus\",name:\"illus\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oy11zk\",\"data-framer-name\":\"frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:256,intrinsicWidth:268,name:\"frame\",svg:'<svg width=\"268\" height=\"256\" viewBox=\"0 0 268 256\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M216.658 190.6C216.802 165.317 179.753 144.631 133.908 144.394C88.0623 144.157 50.783 164.459 50.6391 189.742C50.4952 215.024 87.5437 235.71 133.389 235.947C179.234 236.187 216.514 215.882 216.658 190.6Z\" fill=\"#031515\"/>\\n<path d=\"M210.533 190.913V168.204H131.029C130.399 168.202 129.771 168.202 129.14 168.204H50.6289V190.913C50.7555 202.15 58.6242 213.393 74.2204 221.993C105.544 239.268 156.166 239.353 187.292 222.187C202.917 213.571 210.657 202.241 210.528 190.91H210.531L210.533 190.913Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M200.707 166.391C200.829 145.034 169.53 127.56 130.804 127.358C92.0754 127.159 60.5829 144.309 60.4613 165.666C60.3397 187.023 91.6386 204.497 130.365 204.699C169.093 204.898 200.586 187.748 200.707 166.391Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M210.534 168.617C210.673 144.266 174.986 124.341 130.828 124.111C86.6704 123.883 50.7634 143.439 50.6244 167.79C50.4855 192.14 86.1717 212.066 130.33 212.293C174.488 212.521 210.397 192.965 210.534 168.615V168.617Z\" fill=\"#1AACAC\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M200.436 166.389C200.558 145.112 169.381 127.704 130.801 127.505C92.2213 127.306 60.848 144.392 60.7289 165.668C60.6073 186.945 91.7846 204.353 130.364 204.552C168.944 204.751 200.317 187.665 200.436 166.389Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M97.2418 182.166C96.8572 181.441 96.743 180.59 96.9118 179.793C96.9515 179.611 97.1599 179.506 97.3311 179.592C98.2121 180.033 98.7977 181 98.7183 181.955C98.6885 181.434 98.7481 180.907 98.887 180.4C98.9615 180.125 99.2146 179.791 99.4751 179.928C99.5645 179.976 99.6191 180.068 99.6612 180.158C99.9044 180.651 100.048 181.189 100.088 181.73L100.959 181.066C101.051 180.995 101.192 181.066 101.175 181.182C101.12 181.526 101.043 181.867 100.939 182.199\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M186.924 152.522C187.183 151.778 187.222 150.922 187.031 150.137C186.989 149.955 186.813 149.862 186.679 149.96C185.996 150.446 185.589 151.436 185.718 152.387C185.709 151.863 185.624 151.342 185.478 150.846C185.398 150.576 185.173 150.258 184.972 150.405C184.9 150.457 184.865 150.552 184.835 150.645C184.674 151.147 184.592 151.692 184.594 152.238L183.847 151.614C183.768 151.545 183.656 151.628 183.679 151.74C183.743 152.079 183.833 152.415 183.937 152.742\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M78.1982 167.631C78.6598 168.295 78.6598 169.134 78.6598 169.532\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M74.9424 169.373C75.0962 169.47 75.2153 169.617 75.265 169.788\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M133.518 190.583C133.436 190.123 133.478 189.645 133.647 189.206\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M134.161 190.766C134.203 190.541 134.33 190.327 134.509 190.171\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M194.548 161.24C194.679 160.624 194.965 160.131 195.3 159.932\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M192.384 175.429C192.207 174.834 192.433 174.149 192.932 173.758\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M190.808 175.387L190.729 175.095\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M79.2207 162.053L130.617 133.637L181.845 162.224L130.448 190.557L79.2207 162.053Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.1143 142.003L131.3 116.426L176.889 141.863L130.704 167.366L85.1143 142.005V142.003Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M130.704 167.363V188.047L85.1143 162.686V142.002L130.704 167.363Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M176.887 141.86V162.546L130.702 188.045V167.361L176.887 141.858V141.86Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M123.178 178.71V177.779L117.076 174.413L116.232 174.877L123.178 178.71Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M123.178 169.055L117.076 165.689V174.412L123.178 177.778V169.055Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M119.783 175.901V176.837\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M119.783 167.183V175.903\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M117.076 174.413L116.232 174.877V165.223L117.076 165.687V174.41V174.413Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M160.71 171.421L154.077 175.095V174.166L159.866 170.954L160.71 171.419V171.421Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M159.869 158.884V170.957L154.08 174.168V162.096L159.869 158.884Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M159.869 170.959L160.713 171.421V158.419L159.869 158.882V170.959Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M95.4125 163.393V162.464L89.3056 159.098L88.4619 159.562L95.4101 163.39L95.4125 163.393Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M95.4126 153.738L89.3057 150.375V159.097L95.4126 162.463V153.736V153.738Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M92.0127 160.588V161.52\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M92.0127 151.868V160.588\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M89.3056 159.1L88.4619 159.565V149.91L89.3056 150.375V159.098V159.1Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M111.776 177.517V176.586L100.56 170.345L99.7158 170.807L111.773 177.515L111.776 177.517Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M111.776 162.305L100.56 156.063V170.345L111.776 176.586V162.305Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M105.785 173.268V174.199\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M105.785 158.988V173.267\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.561 170.347L99.7178 170.809V155.599L100.561 156.063V170.345V170.347Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M98.877 156.338L112.691 163.981V162.648L98.877 155.006V156.338Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M176.889 139.549V142.36L130.704 167.863V165.047L176.889 139.549Z\" fill=\"#0D5656\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.1143 139.687V142.503L130.704 167.863V165.047L85.1143 139.687Z\" fill=\"#0D5656\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M82.415 134.237L130.238 107.748L178.853 134.832L131.03 161.243L82.415 134.237Z\" fill=\"#1AACAC\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M131.03 166.253L82.415 139.402V134.237L131.03 161.318V166.253Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M178.852 134.834V139.848L131.029 166.254V161.319L178.852 134.834Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M173.457 134.844L131.049 158.268L87.8115 134.228L130.22 110.726L173.457 134.844Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M130.22 112.641L171.735 135.799L173.455 134.844L130.218 110.726V112.641H130.22Z\" fill=\"#003D3D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M130.221 112.641L89.5317 135.183L87.8096 134.228L130.218 110.726V112.641H130.221Z\" fill=\"#003D3D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M131.026 138.893V158.268L173.44 134.834V115.464L154.342 111.894L131.026 138.893Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M87.7725 115.009V134.384L131.027 158.266V138.89L87.7725 115.009Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M138.076 149.519V148.649L143.791 145.494L144.583 145.933L138.076 149.519Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M138.076 140.478L143.791 137.328V145.496L138.076 148.651V140.478Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M141.256 146.893V147.765\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M141.256 138.724V146.892\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M143.792 145.494L144.584 145.932V136.892L143.792 137.325V145.494Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M151.087 142.344V141.474L156.807 138.319L157.596 138.753L151.089 142.341L151.087 142.344Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M151.087 133.303L156.807 130.148V138.321L151.087 141.476V133.305V133.303Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M154.271 139.717V140.59\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M154.271 131.549V139.717\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M156.807 138.319L157.596 138.752V129.709L156.807 130.143V138.316V138.319Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.085 135.176V134.306L169.8 131.156L170.591 131.592L164.085 135.178V135.176Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M164.085 126.135L169.8 122.985V131.158L164.085 134.308V126.137V126.135Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M167.267 132.549V133.422\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M167.267 124.381V132.549\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M169.8 131.156L170.591 131.589V122.546L169.8 122.98V131.153V131.156Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M123.982 149.519V148.649L118.262 145.494L117.473 145.933L123.979 149.519H123.982Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M123.982 140.478L118.262 137.328V145.496L123.982 148.651V140.478Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M120.801 146.893V147.765\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M120.801 138.724V146.892\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M118.262 145.494L117.473 145.932V136.892L118.262 137.325V145.494Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M110.969 142.344V141.474L105.249 138.319L104.46 138.753L110.966 142.341L110.969 142.344Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M110.969 133.303L105.249 130.148V138.321L110.969 141.476V133.305V133.303Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M107.785 139.717V140.59\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M107.785 131.549V139.717\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M105.252 138.319L104.463 138.752V129.709L105.252 130.143V138.316V138.319Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M97.9732 135.176V134.306L92.2584 131.156L91.4668 131.592L97.9732 135.178V135.176Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M97.9736 126.135L92.2588 122.985V131.158L97.9736 134.308V126.137V126.135Z\" fill=\"#031515\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M94.792 132.549V133.422\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M94.792 124.381V132.549\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M92.2564 131.156L91.4648 131.589V122.546L92.2564 122.98V131.153V131.156Z\" fill=\"#7E9A9A\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M129.952 91.1152L109.524 87.3511L157.841 113.897L178.207 117.725L129.949 91.1129L129.952 91.1152Z\" fill=\"#003D3D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M83.8633 117.151L132.299 143.479L157.841 113.897L109.524 87.3511L83.8633 117.151Z\" fill=\"#1AACAC\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M200.417 105.015V167.15C199.982 176.679 193.223 186.11 180.13 193.356C152.936 208.413 108.708 208.337 81.3402 193.186C67.6003 185.579 60.7266 175.619 60.7266 165.685V105.015C60.7266 68.1487 91.8989 38.2607 130.342 38.2607H130.796C169.244 38.2607 200.412 68.1511 200.412 105.015H200.414H200.417Z\" fill=\"white\" fill-opacity=\"0.1\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M172.336 53.4812C160.822 44.68 146.238 39.4106 130.372 39.4106H129.93C92.7278 39.4106 62.5654 68.3339 62.5654 104.008V108.313C65.7914 75.1535 101.18 22.837 172.339 53.4764H172.336V53.4812Z\" fill=\"white\"/>\\n<path d=\"M142.472 200.235C140.586 200.418 138.69 200.553 136.784 200.645\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M144.931 199.972C144.817 199.986 144.705 200.001 144.591 200.012\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M197.21 130.224V105.444\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M197.21 135.335V133.123\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M197.21 138.165V137.84\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M131.848 200.78C114.44 200.904 96.9258 197.27 83.6027 189.893C73.6272 184.373 67.4458 177.551 65.0586 170.425\" stroke=\"white\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M98.1397 66.2951C103.172 62.3484 105.142 56.6975 102.544 53.6729C99.9437 50.6483 93.7574 51.395 88.7249 55.3416C83.6925 59.2883 81.7222 64.9393 84.3203 67.9638C86.9209 70.9884 93.1072 70.2418 98.1397 66.2951Z\" fill=\"white\"/>\\n<path d=\"M62.771 141.613C62.6891 141.613 62.6221 141.549 62.6221 141.474C62.6395 138.47 61.431 135.642 59.22 133.507C57.009 131.371 54.061 130.186 50.9145 130.172C50.8326 130.172 50.7656 130.108 50.7656 130.029C50.7656 129.951 50.8326 129.887 50.9145 129.887H50.979C57.4334 129.887 62.714 124.872 62.7462 118.706C62.7462 118.628 62.8132 118.564 62.8951 118.564C62.977 118.564 63.044 118.628 63.044 118.706C63.0093 124.905 68.2601 129.977 74.7491 130.008C74.831 130.008 74.898 130.072 74.898 130.15C74.898 130.229 74.831 130.29 74.7491 130.29H74.6846C68.2303 130.29 62.9497 135.306 62.9174 141.471C62.9174 141.549 62.8504 141.611 62.7685 141.611H62.771V141.613Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M57.4757 113.672C57.3938 113.672 57.3268 113.61 57.3268 113.53C57.3268 111.074 55.2349 109.073 52.6616 109.073C52.5797 109.073 52.5127 109.012 52.5127 108.931C52.5127 108.851 52.5772 108.789 52.6616 108.789C55.2349 108.789 57.3268 106.791 57.3268 104.333C57.3268 104.254 57.3913 104.19 57.4757 104.19C57.56 104.19 57.6245 104.252 57.6245 104.333C57.6245 106.788 59.7164 108.789 62.2897 108.789C62.3716 108.789 62.4386 108.851 62.4386 108.931C62.4386 109.012 62.3741 109.073 62.2897 109.073C59.7164 109.073 57.6245 111.072 57.6245 113.53C57.6245 113.608 57.56 113.672 57.4757 113.672Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M48.6292 127.259C48.5473 127.259 48.4803 127.197 48.4803 127.116C48.4803 123.554 45.443 120.652 41.7133 120.652C41.6315 120.652 41.5645 120.591 41.5645 120.51C41.5645 120.43 41.629 120.37 41.7133 120.37C45.4455 120.37 48.4803 117.469 48.4803 113.906C48.4803 113.828 48.5449 113.764 48.6292 113.764C48.7136 113.764 48.7781 113.826 48.7781 113.906C48.7781 117.471 51.8155 120.37 55.5451 120.37C55.627 120.37 55.694 120.432 55.694 120.51C55.694 120.588 55.6295 120.652 55.5451 120.652C51.813 120.652 48.7781 123.554 48.7781 127.116C48.7781 127.195 48.7136 127.259 48.6292 127.259Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M203.968 116.424C203.886 116.424 203.819 116.362 203.819 116.282C203.784 110.116 198.506 105.101 192.052 105.101H191.987C191.908 105.101 191.841 105.039 191.841 104.958C191.841 104.878 191.905 104.816 191.987 104.816C198.476 104.783 203.727 99.7127 203.692 93.5119C203.692 93.4336 203.757 93.3696 203.839 93.3696C203.921 93.3696 203.988 93.4313 203.988 93.5119C204.022 99.6772 209.301 104.693 215.755 104.693H215.819C215.901 104.693 215.968 104.755 215.968 104.835C215.968 104.916 215.904 104.977 215.819 104.977C209.33 105.011 204.079 110.081 204.114 116.282C204.114 116.36 204.05 116.424 203.965 116.424H203.968Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M126.274 47.332C126.193 47.332 126.126 47.2704 126.126 47.1898C126.091 41.0245 120.813 36.0088 114.358 36.0088H114.294C114.214 36.0088 114.147 35.9472 114.147 35.8666C114.147 35.786 114.212 35.7244 114.294 35.7244C120.783 35.6912 126.034 30.6209 125.999 24.4201C125.999 24.3418 126.064 24.2778 126.145 24.2778C126.227 24.2778 126.294 24.3395 126.294 24.4201C126.329 30.5854 131.607 35.6011 138.061 35.6011H138.126C138.208 35.6011 138.275 35.6627 138.275 35.7433C138.275 35.8239 138.21 35.8855 138.126 35.8855C131.637 35.9187 126.386 40.9889 126.421 47.1898C126.421 47.2681 126.356 47.332 126.272 47.332H126.274Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M209.263 88.4839C209.181 88.4839 209.114 88.4223 209.114 88.3417C209.114 85.886 207.022 83.8854 204.449 83.8854C204.367 83.8854 204.3 83.8238 204.3 83.7432C204.3 83.6626 204.364 83.601 204.449 83.601C207.02 83.601 209.114 81.6027 209.114 79.1447C209.114 79.0664 209.178 79.0024 209.263 79.0024C209.347 79.0024 209.412 79.0641 209.412 79.1447C209.412 81.6004 211.504 83.601 214.077 83.601C214.159 83.601 214.226 83.6626 214.226 83.7432C214.226 83.8238 214.161 83.8854 214.077 83.8854C211.506 83.8854 209.412 85.8836 209.412 88.3417C209.412 88.4199 209.347 88.4839 209.263 88.4839Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M131.57 19.3926C131.488 19.3926 131.422 19.331 131.422 19.2504C131.422 16.7947 129.33 14.7941 126.756 14.7941C126.674 14.7941 126.607 14.7325 126.607 14.6519C126.607 14.5713 126.672 14.5097 126.756 14.5097C129.327 14.5097 131.422 12.5114 131.422 10.0533C131.422 9.97513 131.486 9.91113 131.57 9.91113C131.655 9.91113 131.719 9.97276 131.719 10.0533C131.719 12.5091 133.811 14.5097 136.384 14.5097C136.466 14.5097 136.533 14.5713 136.533 14.6519C136.533 14.7325 136.469 14.7941 136.384 14.7941C133.814 14.7941 131.719 16.7923 131.719 19.2504C131.719 19.3286 131.655 19.3926 131.57 19.3926Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M218.109 102.069C218.027 102.069 217.96 102.007 217.96 101.926C217.96 98.3614 214.925 95.4624 211.193 95.4624C211.111 95.4624 211.047 95.4008 211.047 95.3202C211.047 95.2396 211.111 95.178 211.193 95.178C214.925 95.178 217.96 92.2767 217.96 88.714C217.96 88.6358 218.025 88.5718 218.109 88.5718C218.194 88.5718 218.258 88.6334 218.258 88.714C218.258 92.279 221.293 95.178 225.025 95.178C225.107 95.178 225.174 95.2396 225.174 95.3202C225.174 95.4008 225.109 95.4624 225.025 95.4624C221.293 95.4624 218.258 98.3638 218.258 101.926C218.258 102.005 218.194 102.069 218.109 102.069Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M140.417 32.9774C140.335 32.9774 140.268 32.9157 140.268 32.8351C140.268 29.2701 137.233 26.3711 133.501 26.3711C133.419 26.3711 133.354 26.3095 133.354 26.2289C133.354 26.1483 133.419 26.0867 133.501 26.0867C137.233 26.0867 140.268 23.1854 140.268 19.6227C140.268 19.5445 140.332 19.4805 140.417 19.4805C140.501 19.4805 140.566 19.5421 140.566 19.6227C140.566 23.1877 143.601 26.0867 147.333 26.0867C147.415 26.0867 147.482 26.1483 147.482 26.2289C147.482 26.3095 147.417 26.3711 147.333 26.3711C143.601 26.3711 140.566 29.2725 140.566 32.8351C140.566 32.9134 140.501 32.9774 140.417 32.9774Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h2zvmi\",\"data-framer-name\":\"text-content\",name:\"text-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Maintenance & M\\xe9nage\"})}),className:\"framer-6hsf26\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-logup6\",\"data-framer-name\":\"Frame 82\",name:\"Frame 82\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10fod2g\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pyhbj8\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cejwky\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y384f7\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"M\\xe9nage de qualit\\xe9 h\\xf4teli\\xe8re\"})}),className:\"framer-1bam5zv\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oe2zsm\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zhkylp\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mr46yr\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gyuad5\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Inspections r\\xe9guli\\xe8res\"})}),className:\"framer-1dk1fvq\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rsvfhw\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13sgmr8\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dhc52d\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1z102z0\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Entretien rigoureux\"})}),className:\"framer-10toavc\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zkngqb\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13301xj\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hiy3ym\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5tospt\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Gestion des consommables\"})}),className:\"framer-1dbisv4\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-115c0to\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bh0gpf\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hksytz\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bqx6y7\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Assurance des plateformes\"})}),className:\"framer-1r3f8uw\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u1ktwo\",\"data-framer-name\":\"feature-card\",name:\"feature-card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-izxyq7\",\"data-framer-name\":\"illus-placeholder\",name:\"illus-placeholder\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cmrrad\",\"data-framer-name\":\"illus\",name:\"illus\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kmldga\",\"data-framer-name\":\"frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:256,intrinsicWidth:268,name:\"frame\",svg:'<svg width=\"268\" height=\"256\" viewBox=\"0 0 268 256\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M227.51 188.57C227.668 160.759 186.91 138.001 136.476 137.74C86.0428 137.479 45.0313 159.815 44.8725 187.627C44.7137 215.438 85.4721 238.196 135.906 238.457C186.339 238.718 227.351 216.382 227.51 188.57Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M157.336 144.683C128.26 157.962 100.485 173.495 74.3103 191.344C55.9126 148.203 43.5102 103.078 38.165 56.8062C71.3722 45.5943 105.396 36.8714 140.005 30.5259C139.993 69.234 145.993 107.532 157.338 144.683H157.336Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M162.658 140.385C132.972 152.673 104.617 167.322 77.8835 184.415C59.1632 139.456 46.5623 92.729 41.165 45.1486C75.0596 35.1622 109.79 27.7572 145.112 22.8149C145.05 62.4167 151.124 101.867 162.656 140.385H162.658Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M77.3498 55.0118C67.8582 57.6785 58.4434 60.53 49.0957 63.5736C48.9245 62.4429 48.8376 61.8764 48.6738 60.7433C58.0588 57.7425 67.5083 54.9312 77.0322 52.3096C77.1563 53.3905 77.2183 53.9309 77.3474 55.0118H77.3498Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M70.516 61.8882C63.5926 63.986 56.714 66.1857 49.8725 68.485C49.6889 67.3519 49.5971 66.7878 49.4209 65.6548C56.2921 63.3887 63.1956 61.2222 70.1438 59.1528C70.2902 60.2456 70.3646 60.7955 70.5185 61.8882H70.516Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M80.8066 51.3496C95.2389 47.5239 109.805 44.1461 124.508 41.1997L80.8066 51.3496Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M80.8066 51.3496C95.2389 47.5239 109.805 44.1461 124.508 41.1997\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M81.085 53.779C95.4726 49.894 109.997 46.4569 124.657 43.4561L81.085 53.779Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M81.085 53.779C95.4726 49.894 109.997 46.4569 124.657 43.4561\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M81.3701 56.2087C95.7131 52.2668 110.193 48.7705 124.811 45.708L81.3701 56.2087Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M81.3701 56.2087C95.7131 52.2668 110.193 48.7705 124.811 45.708\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M81.6699 58.6337C95.9657 54.6325 110.403 51.0769 124.982 47.9575L81.6699 58.6337Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M81.6699 58.6337C95.9657 54.6325 110.403 51.0769 124.982 47.9575\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M136.618 45.5964C134.049 46.0942 131.484 46.6109 128.92 47.1372C128.754 44.8829 128.608 42.6287 128.479 40.3721C131.062 39.8743 133.65 39.3932 136.238 38.9238C136.352 41.1472 136.479 43.3706 136.618 45.5941V45.5964Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M132.687 45.5019C131.526 44.7623 130.943 44.3925 129.781 43.6459C130.114 43.2666 130.283 43.077 130.618 42.6977C131.404 43.2026 131.796 43.4539 132.583 43.9564C134.102 42.245 135.638 40.5478 137.196 38.8672C137.568 39.1066 137.752 39.2299 138.124 39.4716C136.293 41.4651 134.476 43.4728 132.685 45.4995H132.687V45.5019Z\" fill=\"#DC9913\"/>\\n<path d=\"M79.3873 69.8122C70.0867 72.7136 60.868 75.7974 51.7237 79.0733C51.5128 77.9426 51.411 77.3808 51.2051 76.2501C60.3866 73.0146 69.64 69.9734 78.9778 67.1147C79.1366 68.1956 79.221 68.7313 79.3848 69.8122H79.3873Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M72.8639 76.864C66.087 79.1348 59.3547 81.5029 52.6646 83.9704C52.4413 82.8421 52.3321 82.278 52.1162 81.1497C58.8336 78.7106 65.5956 76.3734 72.3974 74.1357C72.5785 75.2285 72.6728 75.7737 72.8639 76.864Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M82.6807 66.0673C96.8375 61.8884 111.136 58.155 125.583 54.8555L82.6807 66.0673Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M82.6807 66.0673C96.8375 61.8884 111.136 58.155 125.583 54.8555\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M83.0352 68.4894C97.1424 64.2512 111.398 60.4609 125.803 57.1045L83.0352 68.4894Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M83.0352 68.4894C97.1424 64.2512 111.398 60.4609 125.803 57.1045\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M83.4072 70.9123C97.4673 66.6172 111.676 62.7678 126.039 59.3521L83.4072 70.9123Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M83.4072 70.9123C97.4673 66.6172 111.676 62.7678 126.039 59.3521\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M83.792 73.3348C97.8024 68.9805 111.969 65.0765 126.287 61.5991L83.792 73.3348Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M83.792 73.3348C97.8024 68.9805 111.969 65.0765 126.287 61.5991\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M137.722 58.9536C135.196 59.5154 132.675 60.089 130.159 60.6793C129.916 58.4274 129.69 56.1779 129.486 53.9237C132.025 53.3643 134.571 52.8215 137.117 52.2905C137.308 54.5116 137.511 56.7326 137.725 58.9536H137.722Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M133.826 58.9558C132.652 58.2447 132.064 57.8868 130.888 57.1733C131.205 56.7846 131.364 56.5926 131.682 56.2062C132.478 56.6921 132.875 56.9363 133.672 57.4175C135.116 55.6705 136.578 53.9354 138.059 52.2192C138.434 52.4515 138.625 52.5677 139 52.8C137.255 54.8361 135.531 56.8889 133.823 58.9582L133.826 58.9558Z\" fill=\"#DC9913\"/>\\n<path d=\"M81.9214 84.5775C72.8193 87.7088 63.8041 91.0202 54.8707 94.526C54.6226 93.4 54.501 92.8382 54.2578 91.71C63.2309 88.2468 72.2833 84.9734 81.4226 81.8848C81.6211 82.9609 81.7179 83.499 81.9214 84.5751V84.5775Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M75.712 91.7925C69.0864 94.2317 62.5055 96.768 55.9718 99.4062C55.7112 98.2826 55.5847 97.7208 55.3291 96.5949C61.8926 93.9875 68.5008 91.482 75.1537 89.0737C75.3745 90.1617 75.4837 90.7045 75.712 91.7949V91.7925Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.0479 80.7467C98.9144 76.2169 112.935 72.1351 127.121 68.48L85.0479 80.7467Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M85.0479 80.7467C98.9144 76.2169 112.935 72.1351 127.121 68.48\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M85.4893 83.1644C99.3037 78.5777 113.279 74.4367 127.421 70.7271L85.4893 83.1644Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M85.4893 83.1644C99.3037 78.5777 113.279 74.4367 127.421 70.7271\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M85.9385 85.5801C99.7057 80.9365 113.634 76.7386 127.732 72.9697L85.9385 85.5801Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M85.9385 85.5801C99.7057 80.9365 113.634 76.7386 127.732 72.9697\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M86.4053 87.993C100.12 83.2925 114.002 79.0377 128.052 75.2119L86.4053 87.993Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M86.4053 87.993C100.12 83.2925 114.002 79.0377 128.052 75.2119\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M139.281 72.2892C136.799 72.9126 134.325 73.5502 131.853 74.2021C131.533 71.9573 131.233 69.7102 130.95 67.4631C133.444 66.8421 135.943 66.2352 138.447 65.645C138.712 67.8637 138.993 70.0776 139.281 72.2939V72.2892Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M135.424 72.3818C134.236 71.7015 133.643 71.3578 132.454 70.668C132.754 70.2721 132.906 70.0754 133.208 69.6795C134.015 70.1465 134.417 70.3788 135.218 70.8434C136.586 69.0585 137.973 67.2926 139.382 65.5361C139.765 65.7589 139.953 65.8727 140.333 66.0955C138.67 68.1696 137.035 70.265 135.424 72.3794V72.3818Z\" fill=\"#DC9913\"/>\\n<path d=\"M84.9483 99.2972C76.0497 102.656 67.2429 106.197 58.528 109.928C58.2426 108.807 58.1012 108.248 57.8232 107.124C66.5829 103.433 75.4244 99.9348 84.3602 96.6187C84.5935 97.6901 84.7101 98.2258 84.9483 99.3019V99.2972Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M79.0599 106.679C72.5857 109.286 66.1661 111.988 59.7912 114.792C59.4959 113.674 59.347 113.114 59.0566 111.991C65.4613 109.217 71.9107 106.543 78.4122 103.969C78.6678 105.052 78.7968 105.595 79.0599 106.679Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M87.9092 95.3864C101.473 90.513 115.205 86.0827 129.122 82.0815L87.9092 95.3864Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M87.9092 95.3864C101.473 90.513 115.205 86.0827 129.122 82.0815\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M88.4297 97.7943C101.941 92.8616 115.629 88.3769 129.493 84.3164L88.4297 97.7943Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M88.4297 97.7943C101.941 92.8616 115.629 88.3769 129.493 84.3164\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M88.9609 100.203C102.423 95.2156 116.061 90.6716 129.878 86.5566L88.9609 100.203Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M88.9609 100.203C102.423 95.2156 116.061 90.6716 129.878 86.5566\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M89.5068 102.609C102.914 97.5647 116.505 92.9662 130.278 88.792L89.5068 102.609Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M89.5068 102.609C102.914 97.5647 116.505 92.9662 130.278 88.792\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M141.288 85.5894C138.853 86.2744 136.424 86.9713 134.002 87.6848C133.608 85.4448 133.23 83.2072 132.873 80.9624C135.322 80.2821 137.774 79.6113 140.231 78.9595C140.571 81.171 140.923 83.3802 141.288 85.5918H141.29L141.288 85.5894Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M137.474 85.7769C136.273 85.1226 135.675 84.7955 134.474 84.1366C134.757 83.7336 134.898 83.5298 135.183 83.1292C135.997 83.5748 136.402 83.8 137.213 84.248C138.511 82.4346 139.821 80.6308 141.146 78.8364C141.531 79.0521 141.722 79.1588 142.107 79.3698C140.528 81.4865 138.985 83.6222 137.469 85.7769H137.471H137.474Z\" fill=\"#DC9913\"/>\\n<path d=\"M88.4642 113.965C79.7741 117.547 71.1881 121.313 62.694 125.265C62.3714 124.148 62.2101 123.589 61.8975 122.473C70.4313 118.559 79.0619 114.838 87.7892 111.292C88.0572 112.358 88.1912 112.896 88.4667 113.963L88.4642 113.965Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M82.8962 121.501C76.5833 124.272 70.325 127.14 64.1164 130.103C63.7814 128.989 63.6176 128.432 63.29 127.315C69.5285 124.381 75.8166 121.541 82.1592 118.801C82.452 119.879 82.5984 120.42 82.8962 121.501Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M91.2559 109.971C104.504 104.754 117.942 99.9826 131.572 95.6377L91.2559 109.971Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M91.2559 109.971C104.504 104.754 117.942 99.9826 131.572 95.6377\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M91.8545 112.372C105.053 107.101 118.439 102.272 132.022 97.8682L91.8545 112.372Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M91.8545 112.372C105.053 107.101 118.439 102.272 132.022 97.8682\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M92.4678 114.771C105.612 109.443 118.95 104.557 132.484 100.099L92.4678 114.771Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M92.4678 114.771C105.612 109.443 118.95 104.557 132.484 100.099\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M93.0898 117.168C106.18 111.784 119.468 106.842 132.955 102.327L93.0898 117.168Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M93.0898 117.168C106.18 111.784 119.468 106.842 132.955 102.327\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M143.742 98.8516C141.357 99.5959 138.978 100.354 136.605 101.125C136.136 98.8943 135.685 96.6614 135.253 94.4238C137.65 93.6818 140.055 92.9541 142.464 92.2383C142.879 94.4451 143.303 96.6448 143.745 98.8492L143.742 98.8516Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M139.97 99.1337C138.759 98.5079 138.154 98.195 136.945 97.5645C137.211 97.1544 137.347 96.9506 137.613 96.5381C138.432 96.9672 138.844 97.1781 139.663 97.6048C140.886 95.7583 142.119 93.9236 143.367 92.0913C143.754 92.2952 143.948 92.3995 144.338 92.6033C142.851 94.7603 141.395 96.9363 139.973 99.1289L139.97 99.1337Z\" fill=\"#DC9913\"/>\\n<path d=\"M92.4627 128.571C83.9909 132.376 75.6259 136.36 67.3625 140.537C67.0027 139.428 66.8265 138.868 66.4717 137.759C74.7797 133.625 83.1845 129.678 91.6959 125.914C91.9987 126.976 92.1525 127.509 92.4602 128.574H92.4627V128.571Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M87.2191 136.261C81.07 139.198 74.9805 142.225 68.943 145.349C68.5733 144.237 68.3872 143.685 68.0273 142.575C74.0946 139.477 80.2164 136.479 86.3978 133.575C86.7253 134.651 86.8891 135.189 87.2241 136.263H87.2216L87.2191 136.261Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M95.085 124.501C108.011 118.95 121.143 113.837 134.481 109.148L95.085 124.501Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M95.085 124.501C108.011 118.95 121.143 113.837 134.481 109.148\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M95.7598 126.891C108.631 121.285 121.711 116.118 134.999 111.375L95.7598 126.891Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M95.7598 126.891C108.631 121.285 121.711 116.118 134.999 111.375\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M96.4502 129.28C109.267 123.617 122.295 118.395 135.534 113.595L96.4502 129.28Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M96.4502 129.28C109.267 123.617 122.295 118.395 135.534 113.595\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M97.1553 131.667C109.92 125.95 122.893 120.673 136.082 115.816L97.1553 131.667Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M97.1553 131.667C109.92 125.95 122.893 120.673 136.082 115.816\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M146.631 112.071C144.298 112.875 141.968 113.693 139.648 114.527C139.105 112.304 138.581 110.08 138.072 107.85C140.42 107.046 142.772 106.259 145.135 105.486C145.623 107.684 146.122 109.879 146.631 112.076V112.071Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M96.9388 143.111C88.6904 147.136 80.5561 151.339 72.5285 155.726C72.1339 154.619 71.9379 154.067 71.5508 152.962C79.6206 148.613 87.797 144.453 96.0877 140.463C96.4252 141.523 96.5964 142.052 96.9388 143.111Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M92.0253 150.95C86.0449 154.046 80.129 157.234 74.2678 160.517C73.8608 159.412 73.6598 158.86 73.2578 157.755C79.1489 154.499 85.0994 151.341 91.1121 148.274C91.4719 149.345 91.658 149.879 92.0228 150.948L92.0253 150.95Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M99.3877 138.968C111.981 133.085 124.793 127.637 137.828 122.612L99.3877 138.968Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M99.3877 138.968C111.981 133.085 124.793 127.637 137.828 122.612\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M100.143 141.345C112.679 135.405 125.441 129.906 138.424 124.826L100.143 141.345Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M100.143 141.345C112.679 135.405 125.441 129.906 138.424 124.826\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M100.912 143.723C113.394 137.73 126.099 132.174 139.03 127.038L100.912 143.723Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M100.912 143.723C113.394 137.73 126.099 132.174 139.03 127.038\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M101.691 146.1C114.116 140.056 126.767 134.445 139.648 129.254L101.691 146.1Z\" fill=\"#CBE6E6\"/>\\n<path d=\"M101.691 146.1C114.116 140.056 126.767 134.445 139.648 129.254\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M149.958 125.238C147.676 126.101 145.402 126.978 143.134 127.87C142.519 125.656 141.921 123.439 141.343 121.221C143.636 120.358 145.938 119.512 148.246 118.677C148.805 120.867 149.378 123.053 149.961 125.238H149.958Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>\\n<path d=\"M204.588 31.9575L203.392 33.311C203.253 33.4698 203.109 33.631 202.968 33.7898L202.513 34.3042C202.193 34.6669 201.873 35.0295 201.553 35.3898L201.131 35.8686C200.724 36.3285 200.325 36.7812 199.935 37.2221L198.729 38.5827C198.583 38.7486 198.575 39.0284 198.727 39.4242C198.756 39.5024 198.794 39.583 198.836 39.666C198.908 39.8035 198.948 39.8793 198.995 39.9575C199.059 40.0642 199.106 40.1377 199.156 40.2112C199.225 40.3131 199.273 40.3771 199.32 40.4411C199.345 40.4766 199.369 40.5098 199.399 40.5478C199.449 40.6118 199.479 40.6473 199.503 40.6829C199.543 40.7326 199.575 40.7777 199.618 40.8298C199.699 40.927 199.724 40.9555 199.749 40.9863C199.774 41.0147 199.799 41.0479 199.826 41.0763C199.868 41.1261 199.915 41.1759 199.962 41.2281C200.101 41.3821 200.171 41.4556 200.243 41.5338C200.387 41.6832 200.419 41.7164 200.454 41.7519C200.518 41.8159 200.585 41.8846 200.652 41.9486C200.737 42.034 200.811 42.1051 200.886 42.1715C200.918 42.1999 200.95 42.2331 200.985 42.2639C201.193 42.4535 201.273 42.527 201.352 42.5981C201.501 42.7261 201.551 42.7735 201.603 42.8162C201.652 42.8589 201.699 42.8992 201.752 42.9371C201.975 43.122 202.074 43.2002 202.176 43.2808C202.228 43.3235 202.26 43.3424 202.29 43.3685C202.367 43.4278 202.441 43.487 202.518 43.5439C202.647 43.6387 202.719 43.6909 202.789 43.7406C202.841 43.7786 202.893 43.8189 202.943 43.8544C203.183 44.0251 203.387 44.1602 203.59 44.2882C203.739 44.3854 203.839 44.447 203.938 44.5039C204.042 44.5679 204.144 44.6248 204.241 44.6817C204.273 44.7006 204.305 44.7149 204.332 44.7338C204.397 44.7694 204.459 44.8073 204.521 44.8405C204.633 44.9021 204.734 44.9543 204.836 45.0064C204.985 45.0799 205.057 45.1131 205.129 45.1486C205.295 45.2221 205.382 45.2601 205.466 45.2909C205.613 45.3478 205.667 45.3667 205.719 45.3857C205.853 45.4307 205.891 45.4426 205.933 45.4568C206.953 45.554 206.988 45.5421 207.02 45.5303C207.196 45.407 214.261 37.4189 214.261 37.4189C214.33 37.3383 214.362 37.2956 214.392 37.2577C214.561 37.0372 214.621 36.9401 214.685 36.8192C214.717 36.7575 214.747 36.6983 214.774 36.6366C214.807 36.5655 214.827 36.5252 214.854 36.4565C215.005 35.9374 215.025 35.8165 215.037 35.698C215.047 35.6103 215.05 35.5297 215.055 35.4538C215.055 35.2097 215.05 35.1457 215.042 35.0793C215.028 34.9347 215.02 34.8921 215.015 34.847C214.975 34.6455 214.968 34.6076 214.961 34.5744C214.886 34.3113 214.871 34.2758 214.861 34.2426C214.844 34.1904 214.829 34.1501 214.817 34.1146C214.757 33.9771 214.735 33.9249 214.717 33.8823C214.578 33.6002 214.511 33.4841 214.429 33.3537C214.216 33.0337 214.174 32.9768 214.134 32.9246C214.065 32.8346 214.037 32.7943 214.005 32.7564C213.578 32.1946 213.062 31.6755 212.506 31.2441C210.63 29.6796 208.089 28.6817 206.255 30.175C206.216 30.2035 206.193 30.2248 206.174 30.239C205.93 30.4666 205.883 30.5164 205.844 30.5638C205.427 31.0331 205.025 31.4906 204.605 31.967H204.593L204.588 31.9575Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M201.807 39.6066C204.144 41.0241 206.474 43.2973 207.015 44.6839C207.551 46.0706 206.095 46.0445 203.757 44.627C201.42 43.2096 199.089 40.9364 198.549 39.5497C198.013 38.163 199.469 38.1891 201.807 39.6066Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M198.55 39.5497C199.086 40.9364 201.416 43.2096 203.759 44.627C206.096 46.0445 207.556 46.0706 207.017 44.6839C206.481 43.2973 204.148 41.0241 201.808 39.6066C199.471 38.1891 198.012 38.163 198.55 39.5497Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M141.71 107.532C141.363 108.914 141.065 110.206 140.77 111.495C140.98 112.055 140.983 112.057 140.988 112.059C142.842 111.633 144.122 111.137 145.402 110.639C145.474 110.177 145.462 110.142 145.445 110.111C145.249 109.786 145.229 109.76 145.206 109.732C144.849 109.305 144.824 109.279 144.797 109.253C144.695 109.151 144.67 109.122 144.643 109.096C144.531 108.99 144.504 108.964 144.474 108.937C144.355 108.828 144.321 108.8 144.288 108.772C144.254 108.743 144.219 108.712 144.189 108.686C144.04 108.565 144 108.532 143.961 108.499C143.569 108.207 143.521 108.177 143.477 108.143C143.32 108.039 143.241 107.987 143.159 107.94C143.065 107.883 142.976 107.833 142.889 107.785C142.713 107.693 142.66 107.669 142.608 107.648C142.519 107.608 142.472 107.589 142.427 107.57C142.288 107.522 142.258 107.513 142.229 107.503C141.71 107.529 141.71 107.532 141.708 107.532H141.71Z\" fill=\"#F4EEE9\"/>\\n<path d=\"M207.015 44.6841C206.985 44.6059 206.948 44.5253 206.905 44.4424C206.834 44.3049 206.794 44.229 206.747 44.1508C206.682 44.0441 206.635 43.9707 206.585 43.8948C206.516 43.7929 206.469 43.7289 206.419 43.6649C206.394 43.6293 206.372 43.5961 206.345 43.5582C206.295 43.4942 206.265 43.4587 206.238 43.4231C206.201 43.3757 206.166 43.3283 206.126 43.2809C206.047 43.1837 206.02 43.1553 205.995 43.1221C205.97 43.0936 205.945 43.0604 205.918 43.032C205.876 42.9822 205.829 42.9301 205.781 42.8803C205.642 42.7262 205.575 42.6527 205.503 42.5793C205.357 42.4299 205.325 42.3967 205.293 42.3612C205.228 42.2972 205.161 42.2284 205.094 42.1644C205.01 42.0791 204.935 42.008 204.861 41.9416C204.828 41.9132 204.796 41.88 204.761 41.8492C204.553 41.6572 204.474 41.5861 204.394 41.515C204.245 41.387 204.193 41.3396 204.144 41.2969C204.094 41.2566 204.047 41.2163 203.997 41.176C203.774 40.9935 203.675 40.9129 203.57 40.8323C203.518 40.7896 203.488 40.7659 203.456 40.7422C203.382 40.683 203.305 40.6237 203.228 40.5668C203.099 40.472 203.027 40.4198 202.957 40.3701C202.905 40.3321 202.853 40.2918 202.804 40.2563C202.563 40.0856 202.362 39.9505 202.156 39.8225C202.007 39.7253 201.908 39.6637 201.811 39.6044C201.707 39.5404 201.61 39.4836 201.508 39.4267C201.397 39.3627 201.364 39.3437 201.332 39.3271C201.297 39.3081 201.26 39.2868 201.228 39.2702C201.158 39.2347 201.099 39.2039 201.037 39.1683C200.764 39.0332 200.692 38.9976 200.62 38.9621C200.456 38.891 200.374 38.853 200.292 38.8222C200.138 38.763 200.086 38.7416 200.029 38.7227C199.034 38.3908 198.764 38.5662 198.734 38.5804C198.558 38.7037 189.091 49.4083 189.091 49.4083C188.835 49.6975 188.577 49.989 188.322 50.2806L186.324 52.5396C185.25 53.7556 184.165 54.9834 183.073 56.2207L180.84 58.7476C180.227 59.4397 179.614 60.1342 178.999 60.8311L174.567 65.8421C174.52 65.8942 170.914 69.9736 170.914 69.9736C169.708 71.339 168.502 72.7019 167.296 74.0625C165.787 75.7716 164.301 77.4498 162.827 79.1209L160.993 81.1926C160.241 82.0436 159.494 82.8874 158.75 83.7289L157.968 84.6154C156.462 86.3197 154.971 88.005 153.502 89.669L152.745 90.5247C149.449 94.251 146.268 97.8492 143.27 101.241L143.166 101.353C143.151 101.369 143.141 101.388 143.129 101.405C143.151 101.383 143.223 101.343 143.635 101.172C143.67 101.172 143.71 101.17 143.747 101.172C143.789 101.172 143.829 101.175 143.873 101.182C143.918 101.187 143.965 101.194 144.015 101.201C144.064 101.208 144.117 101.22 144.171 101.232C144.226 101.246 144.285 101.258 144.347 101.274C144.414 101.293 144.481 101.315 144.553 101.336C144.633 101.362 144.71 101.391 144.794 101.421C144.893 101.459 144.992 101.5 145.097 101.547C145.243 101.611 145.397 101.682 145.556 101.763C145.831 101.9 146.124 102.064 146.429 102.251C146.63 102.372 146.834 102.5 147.032 102.635C147.206 102.751 147.377 102.872 147.548 102.993C147.672 103.083 147.797 103.173 147.916 103.263C148.02 103.341 148.122 103.422 148.221 103.5C148.313 103.571 148.405 103.645 148.494 103.721C148.576 103.789 148.658 103.853 148.737 103.922C148.814 103.988 148.888 104.052 148.963 104.116C149.035 104.178 149.104 104.244 149.176 104.306C149.246 104.368 149.31 104.427 149.375 104.489C149.439 104.548 149.504 104.609 149.566 104.669C149.628 104.728 149.687 104.787 149.747 104.844C149.807 104.903 149.866 104.963 149.923 105.02C149.98 105.079 150.037 105.136 150.094 105.193C150.152 105.249 150.206 105.309 150.258 105.366C150.313 105.425 150.365 105.482 150.417 105.541C150.472 105.6 150.521 105.657 150.573 105.716C150.623 105.776 150.675 105.833 150.722 105.892C150.772 105.953 150.822 106.015 150.869 106.074C150.918 106.138 150.963 106.2 151.013 106.262C151.06 106.326 151.107 106.39 151.149 106.454C151.196 106.52 151.241 106.586 151.283 106.653C151.33 106.729 151.375 106.8 151.417 106.871C151.464 106.954 151.509 107.032 151.546 107.113C151.581 107.188 151.613 107.26 151.554 108.239C151.606 108.208 151.623 108.191 151.635 108.175C151.735 108.056 151.836 107.94 151.836 107.94L207.022 45.5209C207.094 45.4142 207.109 45.3692 207.119 45.3218C207.134 45.2554 207.136 45.2009 207.136 45.1464C207.131 45.0587 207.121 44.997 207.106 44.9307C207.082 44.8311 207.057 44.7553 207.03 44.677V44.6818L207.015 44.6841Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M151.271 108.371L151.437 108.307\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M145.516 110.315C145.509 110.282 145.501 110.246 145.486 110.208C145.474 110.177 145.459 110.144 145.444 110.113C145.427 110.08 145.409 110.042 145.387 110.007C145.367 109.976 145.347 109.943 145.33 109.91C145.31 109.881 145.29 109.853 145.27 109.82C145.251 109.791 145.231 109.76 145.208 109.732C145.189 109.706 145.166 109.677 144.943 109.412C144.921 109.386 144.896 109.36 144.873 109.334C144.851 109.308 144.826 109.281 144.799 109.258C144.774 109.232 144.747 109.206 144.722 109.18C144.697 109.153 144.67 109.127 144.643 109.099C144.618 109.073 144.588 109.047 144.561 109.021C144.533 108.995 144.504 108.969 144.476 108.94C144.449 108.912 144.417 108.888 144.387 108.857C144.355 108.829 144.325 108.8 144.293 108.772C144.258 108.743 144.228 108.713 144.193 108.686C144.156 108.658 144.121 108.627 144.084 108.596C144.045 108.563 144.005 108.53 143.965 108.499C143.92 108.464 143.873 108.428 143.829 108.393C143.774 108.352 143.719 108.312 143.665 108.272C143.588 108.217 143.514 108.165 143.434 108.111C143.345 108.051 143.255 107.994 143.166 107.94C143.027 107.855 142.898 107.783 142.777 107.722C142.707 107.686 142.638 107.653 142.573 107.627C142.526 107.606 142.479 107.587 142.437 107.57C142.399 107.553 142.365 107.542 141.667 107.625C141.667 107.625 143.067 101.568 143.119 101.419C143.104 101.445 143.094 101.471 143.082 101.5C143.067 101.549 142.834 102.561 142.834 102.561L141.665 107.625C141.365 108.916 141.069 110.208 140.771 111.495C140.977 112.048 140.982 112.055 140.99 112.06C141.064 112.105 141.082 112.114 141.099 112.124C142.841 111.635 144.122 111.14 145.404 110.644L145.598 110.569C145.536 110.592 145.471 110.606 145.524 110.317H145.519L145.516 110.315Z\" fill=\"#330815\"/>\\n<path d=\"M141.663 107.622C142.358 107.539 142.395 107.551 142.432 107.568C142.477 107.584 142.522 107.603 142.569 107.625C142.633 107.653 142.703 107.684 142.772 107.719C142.894 107.781 143.025 107.854 143.162 107.937C143.251 107.992 143.34 108.049 143.43 108.108C143.507 108.163 143.581 108.215 143.661 108.269C143.715 108.312 143.77 108.35 143.824 108.39C143.869 108.426 143.916 108.461 143.961 108.497C144 108.53 144.04 108.561 144.08 108.594C144.117 108.622 144.152 108.653 144.189 108.684C144.224 108.71 144.256 108.741 144.288 108.769C144.321 108.798 144.35 108.826 144.383 108.855C144.41 108.883 144.442 108.912 144.472 108.938C144.502 108.964 144.529 108.99 144.556 109.018C144.584 109.047 144.613 109.07 144.638 109.097C144.668 109.123 144.693 109.149 144.718 109.177C144.742 109.203 144.77 109.229 144.795 109.255C144.819 109.279 144.847 109.305 144.869 109.331C144.891 109.357 144.916 109.383 144.938 109.409C145.162 109.675 145.184 109.703 145.204 109.729C145.226 109.758 145.246 109.789 145.266 109.817C145.286 109.848 145.306 109.879 145.326 109.907C145.345 109.943 145.363 109.974 145.383 110.004C145.405 110.04 145.425 110.078 145.44 110.111C145.457 110.142 145.47 110.175 145.482 110.206C145.499 110.244 145.504 110.277 145.512 110.313H145.517C145.467 110.602 145.529 110.587 145.591 110.564L145.398 110.64C144.117 111.137 142.834 111.633 141.092 112.119C141.075 112.109 141.057 112.1 140.983 112.055C140.976 112.05 140.968 112.043 140.765 111.491C141.062 110.201 141.358 108.909 141.658 107.62L141.663 107.622ZM141.663 107.622C141.663 107.622 143.062 101.566 143.115 101.417C143.1 101.443 143.09 101.469 143.077 101.497C143.062 101.547 142.829 102.559 142.829 102.559L141.66 107.622H141.663Z\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M151.534 107.12C151.496 107.042 151.454 106.961 151.405 106.878C151.362 106.807 151.32 106.733 151.271 106.66C151.228 106.594 151.184 106.527 151.137 106.461C151.092 106.397 151.047 106.333 151 106.269C150.955 106.207 150.908 106.143 150.856 106.082C150.809 106.02 150.762 105.958 150.71 105.899C150.663 105.84 150.611 105.783 150.561 105.724C150.509 105.664 150.459 105.607 150.405 105.548C150.352 105.489 150.3 105.432 150.246 105.373C150.191 105.314 150.139 105.257 150.082 105.2C150.025 105.143 149.968 105.081 149.911 105.027C149.854 104.967 149.794 104.908 149.735 104.851C149.675 104.792 149.613 104.733 149.553 104.676C149.491 104.617 149.429 104.555 149.362 104.496C149.298 104.434 149.228 104.375 149.164 104.313C149.092 104.252 149.02 104.185 148.95 104.124C148.876 104.06 148.799 103.993 148.725 103.929C148.645 103.861 148.563 103.797 148.481 103.728C148.392 103.654 148.3 103.583 148.208 103.507C148.109 103.427 148.005 103.346 147.901 103.27C147.782 103.178 147.658 103.088 147.534 103C147.362 102.877 147.189 102.758 147.015 102.64C146.814 102.505 146.615 102.379 146.412 102.256C146.104 102.069 145.811 101.907 145.538 101.767C145.38 101.687 145.228 101.616 145.079 101.552C144.975 101.504 144.873 101.464 144.777 101.426C144.692 101.395 144.613 101.367 144.533 101.341C144.464 101.317 144.397 101.296 144.327 101.279C144.265 101.263 144.211 101.246 144.151 101.237C144.099 101.222 144.047 101.213 143.995 101.206C143.945 101.199 143.901 101.191 143.853 101.187C143.809 101.182 143.767 101.177 143.727 101.175C143.69 101.175 143.65 101.173 143.615 101.175C143.203 101.346 143.129 101.386 143.109 101.407C143.107 101.41 143.102 101.417 143.099 101.419C143.042 101.566 141.647 107.625 141.647 107.625C142.342 107.544 142.382 107.556 142.417 107.57C142.461 107.587 142.506 107.606 142.553 107.627C142.618 107.655 142.687 107.689 142.757 107.722C142.878 107.783 143.01 107.857 143.146 107.94C143.236 107.994 143.325 108.051 143.414 108.111C143.491 108.16 143.571 108.215 143.645 108.272C143.7 108.31 143.754 108.352 143.809 108.395C143.854 108.431 143.901 108.466 143.945 108.502C143.985 108.535 144.025 108.568 144.064 108.599C144.102 108.627 144.136 108.658 144.174 108.689C144.208 108.717 144.243 108.746 144.273 108.774C144.305 108.8 144.335 108.831 144.367 108.86C144.399 108.886 144.427 108.912 144.456 108.943C144.484 108.969 144.514 108.995 144.541 109.023C144.568 109.049 144.595 109.075 144.623 109.104C144.648 109.13 144.677 109.156 144.702 109.182C144.727 109.208 144.754 109.234 144.779 109.26C144.804 109.286 144.826 109.312 144.854 109.336C144.878 109.362 144.901 109.388 144.923 109.414C145.146 109.682 145.169 109.708 145.189 109.737C145.211 109.765 145.231 109.794 145.251 109.824C145.273 109.853 145.293 109.886 145.308 109.914C145.33 109.948 145.35 109.981 145.365 110.014C145.387 110.052 145.407 110.085 145.422 110.121C145.439 110.151 145.452 110.187 145.466 110.215C145.484 110.256 145.486 110.287 145.496 110.322C145.449 110.611 145.511 110.599 145.571 110.573C145.571 110.573 145.576 110.573 145.581 110.571L146.203 110.329C146.692 110.14 147.211 109.938 147.737 109.734L149.047 109.227C149.129 109.196 149.206 109.165 149.288 109.135L151.248 108.376L151.415 108.312C151.454 108.295 151.487 108.279 151.516 108.26C151.516 108.258 151.516 108.255 151.516 108.25C151.576 107.271 151.546 107.2 151.511 107.125H151.521L151.534 107.12Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-miterlimit=\"10\"/>\\n<path d=\"M196.246 44.8121C196.268 44.8666 196.256 44.9306 196.216 44.9804L148.981 98.61C148.919 98.6811 148.802 98.6906 148.728 98.6313C148.651 98.5721 148.644 98.4607 148.706 98.3896L195.941 44.7599C196.003 44.6888 196.119 44.6794 196.194 44.7386C196.219 44.7599 196.236 44.786 196.246 44.8121Z\" fill=\"#F4EEE9\"/>\\n<path d=\"M116.024 199.192L109.688 203.444L151.251 226.832L193.419 203.117L157.814 188.833L116.026 199.192H116.024Z\" fill=\"#031515\"/>\\n<path d=\"M188.086 202.823L151.248 223.137L148.747 192.984L174.78 170.323L191.558 169.37L188.084 202.821L188.086 202.823Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M148.75 192.984L112.89 173.208L115.391 203.363L151.248 223.137L148.747 192.984H148.75Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M132.193 145.354L174.783 168.842L151.248 196.563L108.656 173.073L132.193 145.356V145.354Z\" fill=\"#F7B93D\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M151.25 196.561V198.042L108.658 174.552V173.068L151.25 196.558V196.561Z\" fill=\"#916000\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M155.762 147.115L198.355 170.605L174.783 168.839L132.193 145.351L155.762 147.112V147.115Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M174.782 168.841L198.354 170.607V172.091L174.782 170.325L151.248 198.047V196.565L174.782 168.844V168.841Z\" fill=\"#916000\" stroke=\"#031515\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uvig1k\",\"data-framer-name\":\"text-content\",name:\"text-content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Gestion administrative\"})}),className:\"framer-1dqzybn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15bsl15\",\"data-framer-name\":\"Frame 82\",name:\"Frame 82\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yg8a9t\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n328rc\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hzhxpu\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fksyff\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"D\\xe9claration d\u2019activit\\xe9\"})}),className:\"framer-11lwn2r\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pialyd\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-48qjyj\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bqr4er\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12ytnnv\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Taxes et obligations fiscales\"})}),className:\"framer-igdglt\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lxq67t\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c7kqxi\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wgbtr\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-evw08o\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Assurance et s\\xe9curit\\xe9\"})}),className:\"framer-f86g0w\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4xa82z\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9p1gkw\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ir7e4\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tf27fv\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Compatibilit\\xe9 et suivi financier\"})}),className:\"framer-gy5i2u\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dmz6s2\",\"data-framer-name\":\"list-items\",name:\"list-items\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fx4p4s\",\"data-framer-name\":\"list-item\",name:\"list-item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19c3j6\",\"data-framer-name\":\"dot\",name:\"dot\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ebcu\",\"data-framer-name\":\"dot-list\",name:\"dot-list\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Mises \\xe0 jour et conformit\\xe9 l\\xe9gale\"})}),className:\"framer-1ipbifa\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eode7n hidden-1wdsp13 hidden-i00ydl\",\"data-framer-name\":\"Comment \\xe7a marche\",name:\"Comment \\xe7a marche\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8s8zh\",\"data-framer-name\":\"How it works top\",name:\"How it works top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mpuc9l\",\"data-styles-preset\":\"mGFJXVGLa\",style:{\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Commencez \\xe0 g\\xe9n\\xe9rer des revenus en 3 \\xe9tapes\"})}),className:\"framer-qdclo5\",\"data-framer-name\":\"Commencez \\xe0 g\\xe9n\\xe9rer des revenus en 3 \\xe9tapes\",fonts:[\"Inter\"],name:\"Commencez \\xe0 g\\xe9n\\xe9rer des revenus en 3 \\xe9tapes\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Remplissez notre formulaire en ligne pour fournir les informations n\\xe9cessaires sur votre bien. Nous nous occupons du reste : d\\xe9marches administratives, contractualisation, r\\xe9daction des annonces. D\\xe8s les premi\\xe8res r\\xe9servations, nous collectons vos revenus et vous les transf\\xe9rons \\xe0 chaque fin de mois.\"})}),className:\"framer-1j9zkqq\",\"data-framer-name\":\"Remplissez notre formulaire en ligne pour fournir les informations n\\xe9cessaires sur votre bien. Nous nous occupons du reste : d\\xe9marches administratives, contractualisation, r\\xe9daction des annonces. D\\xe8s les premi\\xe8res r\\xe9servations, nous collectons vos revenus et vous les transf\\xe9rons \\xe0 chaque fin de mois.\",fonts:[\"Inter\"],name:\"Remplissez notre formulaire en ligne pour fournir les informations n\\xe9cessaires sur votre bien. Nous nous occupons du reste : d\\xe9marches administratives, contractualisation, r\\xe9daction des annonces. D\\xe8s les premi\\xe8res r\\xe9servations, nous collectons vos revenus et vous les transf\\xe9rons \\xe0 chaque fin de mois.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fztgqf\",\"data-framer-name\":\"How it works\",name:\"How it works\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3gd68l\",\"data-framer-name\":\"Illustration steps\",name:\"Illustration steps\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition(2292.2999999999997),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IrQqfglxUpZviXvMXJ0gsntKmqY.svg\"},className:\"framer-1ezs7q6\",\"data-framer-name\":\"frame\",name:\"frame\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1a7w05p\",\"data-framer-name\":\"Line 630\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:85,intrinsicWidth:208,name:\"Line 630\",svg:'<svg width=\"208\" height=\"85\" viewBox=\"-1 -1 208 85\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M205.319 69.866C205.854 69.7268 206.174 69.1807 206.035 68.6462L203.767 59.9367C203.628 59.4022 203.082 59.0818 202.547 59.221C202.013 59.3601 201.693 59.9062 201.832 60.4407L203.848 68.1825L196.106 70.1985C195.571 70.3376 195.251 70.8837 195.39 71.4182C195.529 71.9527 196.075 72.2731 196.61 72.1339L205.319 69.866ZM202.299 68.4334L204.561 69.7607L205.574 68.0358L203.312 66.7084L202.299 68.4334ZM6.13411 82.9258C62.1556 37.795 140.254 32.0252 202.299 68.4334L203.312 66.7084C140.549 29.8795 61.5483 35.716 4.87941 81.3683L6.13411 82.9258Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ojqxvp\",\"data-framer-name\":\"illus\",name:\"illus\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4lnni1\",\"data-framer-name\":\"frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:200,intrinsicWidth:200,name:\"frame\",svg:'<svg width=\"200\" height=\"200\" viewBox=\"0 0 200 200\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1149_58711)\">\\n<path d=\"M156.805 147.172C156.922 125.445 126.508 107.664 88.8675 107.461C51.2347 107.25 20.6253 124.703 20.5082 146.43C20.391 168.156 50.805 185.937 88.4457 186.141C126.086 186.344 156.688 168.898 156.805 147.164V147.172Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M135.696 142.781C106.384 151.82 76.8135 159.656 46.8604 166.273C34.6963 123.953 27.3369 81.0308 24.3369 37.1011C54.6338 35.6323 84.7197 32.7261 114.743 28.4058C117.47 67.4214 124.22 105.375 135.688 142.781H135.696Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M139.118 138.007C109.571 146.421 79.7744 153.539 49.5947 159.328C38.9463 116.96 33.04 74.1636 31.5166 30.5073C61.8291 29.7261 91.9385 27.437 122.024 23.6558C123.478 62.5151 128.978 100.453 139.118 138.007Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M114.836 50.8823C90.3359 54.4839 65.8359 57.1401 41.1328 58.8589C41.0312 57.3823 40.9766 56.6401 40.8828 55.1558C65.5859 53.5464 90.0859 50.9917 114.594 47.4995C114.688 48.8511 114.734 49.5308 114.836 50.8823Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M114.266 42.1245C89.7422 45.4604 65.2422 47.8433 40.5391 49.2808C40.3125 44.9214 40.2188 42.7417 40.0781 38.3745C64.7813 37.2495 89.2891 35.1636 113.828 32.1323C113.961 36.1323 114.047 38.1323 114.266 42.1245Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M66.0078 62.5308C57.8828 63.3589 49.7266 64.0464 41.5781 64.6089C41.4531 63.1323 41.3984 62.3901 41.2891 60.9136C49.4375 60.3901 57.5938 59.7339 65.7266 58.9448C65.8359 60.3823 65.8906 61.1011 66.0156 62.5308H66.0078Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M41.8516 67.8433C66.5547 65.8589 91.0391 62.937 115.523 59.0854\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.1406 71.0698C66.8438 68.9839 91.3281 65.9683 115.797 62.0229\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.4609 74.2964C67.1641 72.1167 91.6406 69.0073 116.102 64.9683\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.7891 77.523C59.2656 76.0073 75.6641 74.1089 92.0469 71.812\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M118.157 81.4688C93.7432 86.0391 69.2979 89.6953 44.6104 92.4453C44.4072 90.9766 44.3135 90.2422 44.126 88.7734C68.8135 86.1406 93.2744 82.6016 117.696 78.1406C117.876 79.4766 117.97 80.1406 118.165 81.4766L118.157 81.4688Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.032 90.2188C81.8838 93.3438 63.7041 95.9922 45.415 98.1406C45.1963 96.6797 45.0947 95.9453 44.8916 94.4766C63.1807 92.4062 81.3682 89.8516 99.5244 86.8047C99.7197 88.1719 99.8291 88.8516 100.032 90.2188Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M45.8984 101.344C70.5703 98.3125 95.0078 94.3828 119.391 89.5469\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M46.3994 104.539C71.0713 101.406 95.4932 97.375 119.868 92.4375\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M46.9229 107.734C71.5869 104.492 96.0088 100.367 120.368 95.3359\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M47.4609 110.922C63.9062 108.695 80.2578 106.102 96.5859 103.133\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M83.3291 118.367C72.2197 120.437 61.0791 122.297 49.8994 123.945C49.6416 122.672 49.5166 122.039 49.2744 120.766C60.4541 119.172 71.6103 117.359 82.7197 115.328C82.9619 116.547 83.0869 117.148 83.3369 118.367H83.3291Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M122.688 110.109C111.595 112.695 100.446 115.078 89.2666 117.242C89.0166 116.039 88.8994 115.438 88.6572 114.234C99.8447 112.117 110.993 109.781 122.095 107.242C122.329 108.391 122.446 108.969 122.696 110.117L122.688 110.109Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M88.6572 160.242C85.8682 159.984 84.4541 159.757 81.6338 159.078C80.7588 161.539 80.3838 162.804 79.7744 165.382C74.9229 156.609 72.2588 149.734 69.876 139.984C73.9307 139.828 75.9463 139.64 79.915 139.054C80.4229 146.21 83.9463 154.812 88.6572 160.242Z\" fill=\"#0D5656\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M62.0088 169.968C64.4463 168.773 65.6572 168.125 68.0479 166.718C69.7119 168.757 70.54 169.781 72.165 171.859C73.5869 163.648 74.6182 155.25 75.2197 146.945C71.1885 147.07 69.1885 147.039 65.2432 146.804C65.3994 154.351 64.2354 162.757 62.0088 169.968Z\" fill=\"#0D5656\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.1103 135.57C84.2119 128.929 76.3681 123.437 69.4306 124.367C61.8681 125.39 56.1181 132.093 57.2666 139.421C58.4306 146.875 65.6728 151.851 73.3291 150.71C80.9541 149.578 86.0713 142.617 85.1103 135.562V135.57Z\" fill=\"#1AACAC\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M82.228 136.007C81.3764 130.328 75.8608 126.359 69.7592 127.117C63.6576 127.874 59.2826 133.203 60.142 139.07C60.9936 144.937 66.7592 148.96 72.853 148.023C78.9545 147.085 83.0873 141.695 82.2358 136.015L82.228 136.007Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M78.4466 140.695C78.0325 138.078 77.8294 136.765 77.4544 134.132C77.3841 133.64 77.0403 133.218 76.5481 133.038C74.3997 132.234 73.3294 131.82 71.1888 130.992C70.6966 130.804 70.1341 130.874 69.7122 131.179C67.8606 132.531 66.9388 133.21 65.095 134.562C64.6731 134.874 64.4544 135.374 64.5247 135.874C64.8997 138.554 65.1028 139.89 65.5169 142.562C65.6419 143.335 66.3997 143.874 67.2122 143.757C71.2044 143.195 73.1966 142.906 77.1888 142.296C78.0013 142.171 78.5638 141.453 78.4466 140.695Z\" fill=\"#172621\"/>\\n<path d=\"M71.2197 136.578C71.4385 136.734 71.5479 136.812 71.7666 136.968C71.9775 137.125 72.0869 137.195 72.3057 137.351C72.3057 137.351 72.3057 137.351 72.3135 137.351C72.5947 137.546 72.7353 137.648 73.0088 137.843C73.2041 137.984 73.4854 137.945 73.6338 137.757C74.0791 137.203 74.2979 136.921 74.7432 136.367C74.751 136.351 74.7666 136.343 74.7744 136.328C74.8916 136.179 74.9463 136.109 75.0635 135.96C75.29 135.679 75.3682 135.335 75.3291 135.015C75.3291 134.976 75.3135 134.937 75.3057 134.898C75.29 134.835 75.2744 134.781 75.251 134.726C75.2275 134.671 75.1963 134.617 75.165 134.562C75.1494 134.539 75.1338 134.507 75.1104 134.484C75.0713 134.437 75.0322 134.39 74.9854 134.335C74.9619 134.312 74.9385 134.289 74.915 134.265C74.876 134.234 74.8525 134.218 74.8057 134.179C74.7666 134.156 74.7275 134.132 74.6885 134.109C74.6494 134.085 74.6103 134.07 74.5713 134.046C74.4932 134.015 74.415 133.984 74.3369 133.968C74.2588 133.953 74.1728 133.937 74.0947 133.929C74.04 133.929 73.9853 133.929 73.9307 133.929C73.8447 133.929 73.7588 133.945 73.6729 133.968C73.5479 134 73.4307 134.046 73.3135 134.109C73.2353 134.148 73.165 134.203 73.0947 134.257C73.0713 134.273 73.0479 134.296 73.0244 134.32C72.9775 134.359 72.9385 134.406 72.9072 134.453C72.2275 135.304 71.8838 135.734 71.2041 136.585L71.2197 136.578Z\" fill=\"url(#paint0_linear_1149_58711)\"/>\\n<path d=\"M67.0557 137.726C67.2276 138.89 67.3135 139.476 67.4932 140.64C67.6026 141.343 68.2901 141.828 69.0244 141.726C69.7588 141.625 70.2744 140.968 70.1651 140.273C70.0791 139.718 70.0401 139.437 69.9541 138.882C69.0791 138.265 68.6416 137.953 67.7744 137.328C67.7588 137.32 67.751 137.312 67.7354 137.304C67.4151 137.125 67.001 137.367 67.0557 137.734V137.726Z\" fill=\"url(#paint1_linear_1149_58711)\"/>\\n<path d=\"M73.1025 138.445C73.1885 139 73.2275 139.273 73.3135 139.828C73.4229 140.523 74.1104 141 74.8447 140.89C75.5791 140.781 76.0947 140.132 75.9854 139.437C75.7119 137.671 75.5869 136.789 75.3291 135.023C75.3291 134.984 75.3135 134.945 75.3057 134.906C75.3135 134.945 75.3213 134.984 75.3291 135.023C75.376 135.343 75.29 135.687 75.0635 135.968C74.9463 136.117 74.8916 136.187 74.7744 136.335C74.7666 136.351 74.751 136.359 74.7432 136.375C74.2979 136.929 74.0791 137.21 73.6338 137.765C73.415 138.039 73.3135 138.171 73.0947 138.445H73.1025Z\" fill=\"url(#paint2_linear_1149_58711)\"/>\\n<path d=\"M67.0562 137.726C67.0015 137.367 67.4156 137.117 67.7359 137.296C67.7515 137.304 67.7593 137.312 67.775 137.32C68.6421 137.945 69.0796 138.257 69.9546 138.875C70.2437 139.078 70.3843 139.179 70.6734 139.382C70.8609 139.515 71.0718 139.593 71.2828 139.617C71.3296 139.617 71.3687 139.625 71.4156 139.625C71.4468 139.625 71.4859 139.625 71.5171 139.625C71.5328 139.625 71.5484 139.625 71.5718 139.625C71.6421 139.625 71.7125 139.609 71.775 139.593C71.7906 139.593 71.8062 139.585 71.8296 139.578C71.8609 139.57 71.8921 139.562 71.9234 139.546C71.9546 139.539 71.9781 139.531 72.0093 139.515C72.0171 139.515 72.0328 139.515 72.0406 139.5C72.1187 139.468 72.1968 139.421 72.2671 139.375C72.3453 139.32 72.4234 139.257 72.4859 139.187C72.5093 139.164 72.5328 139.132 72.5562 139.101C72.5562 139.093 72.564 139.085 72.5718 139.078C72.7828 138.812 72.8843 138.679 73.0953 138.414C73.314 138.14 73.4156 138.007 73.6343 137.734C73.4859 137.921 73.2046 137.96 73.0093 137.82C72.7281 137.625 72.5875 137.523 72.314 137.328C72.314 137.328 72.314 137.328 72.3062 137.328C72.0875 137.171 71.9859 137.101 71.7671 136.945C71.5484 136.789 71.439 136.71 71.2203 136.554C70.3218 135.914 69.8765 135.593 68.9859 134.953C68.939 134.921 68.8843 134.882 68.8375 134.859C68.8062 134.843 68.7828 134.828 68.7593 134.82C68.6812 134.781 68.5953 134.757 68.5093 134.734C68.3843 134.703 68.2593 134.695 68.1265 134.695C68.0406 134.695 67.9546 134.71 67.8687 134.726C67.8453 134.726 67.814 134.742 67.7906 134.75C67.7671 134.75 67.7437 134.765 67.7125 134.773C67.6812 134.789 67.65 134.796 67.6109 134.812C67.5718 134.828 67.525 134.851 67.4859 134.875C67.4625 134.89 67.439 134.898 67.4234 134.914C67.4078 134.921 67.4 134.929 67.3843 134.945C67.3765 134.945 67.3687 134.953 67.3609 134.96C67.3375 134.976 67.3218 134.992 67.2984 135.015C67.2671 135.039 67.2359 135.07 67.2046 135.101C67.1734 135.132 67.1421 135.164 67.1187 135.203C67.0875 135.25 67.0718 135.265 67.0406 135.312C67.0328 135.328 67.025 135.343 67.0171 135.351C67.0093 135.367 67.0015 135.382 66.9937 135.39C66.9625 135.437 66.939 135.492 66.9234 135.539C66.9234 135.539 66.9234 135.546 66.9234 135.554C66.9156 135.585 66.9 135.617 66.8921 135.648C66.8765 135.71 66.8609 135.765 66.8609 135.828C66.8609 135.89 66.8531 135.953 66.8609 136.015C66.8609 136.054 66.8609 136.093 66.8687 136.14C66.9625 136.765 67.0015 137.07 67.0953 137.695L67.0562 137.726Z\" fill=\"#EEEDE2\"/>\\n<path d=\"M124.634 125.554C123.642 125.671 122.657 125.835 121.681 126.054C121.314 126.14 121.446 126.71 121.814 126.625C122.782 126.406 123.774 126.242 124.767 126.125C124.923 126.109 125.024 125.921 124.985 125.781C124.946 125.617 124.79 125.539 124.626 125.554H124.634Z\" fill=\"#031515\"/>\\n<path d=\"M120.611 126.312C118.251 126.96 116.009 127.898 113.939 129.109C114.4 128.414 114.782 127.664 115.064 126.867C115.47 125.71 115.665 124.46 115.611 123.218C115.587 122.773 115.673 121.859 115.095 121.695C114.197 121.445 113.322 123.546 113.009 124.07C112.822 124.39 111.993 125.601 111.993 125.601C111.993 125.601 112.048 125.445 111.962 125.179C111.9 124.968 111.853 124.757 111.814 124.546C111.72 124.109 111.665 123.671 111.556 123.234C111.462 122.843 111.314 122.179 110.798 122.164C109.993 122.14 109.665 123.679 109.439 124.187C109.259 124.585 109.079 124.992 108.9 125.39C108.798 125.617 108.548 126.21 108.439 126.421C108.29 126.71 107.978 127.398 107.642 126.46C107.611 126.374 107.618 126.226 107.595 126.14C107.525 125.882 107.54 125.585 107.517 125.32C107.478 124.921 107.564 123.882 107.126 123.64C106.47 123.273 106.47 124.585 106.431 124.851C106.298 125.71 106.095 126.554 105.821 127.374C105.704 127.726 105.548 128.398 105.118 128.312C104.751 128.234 104.759 127.835 104.697 127.499C104.642 127.171 104.431 123.562 103.493 124.507C103.134 124.867 103.087 125.929 102.931 126.445C102.673 127.312 102.376 128.171 102.04 129.007C101.697 129.874 101.306 130.726 100.876 131.546C100.736 131.82 99.9621 133.054 99.8449 133.031C99.5559 133.093 99.5012 131.828 99.4934 131.64C99.3527 127.632 99.5246 123.632 99.9934 119.671C100.04 119.289 99.4465 119.226 99.3996 119.609C98.9934 122.999 98.8059 126.429 98.8527 129.867C98.8606 130.695 98.8762 131.523 98.9231 132.351C98.9465 132.718 98.9465 133.187 99.2199 133.492C99.9621 134.304 100.673 133.187 100.978 132.64C101.673 131.39 102.275 130.093 102.782 128.749C103.04 128.062 103.282 127.367 103.493 126.664C103.587 126.335 103.681 126.007 103.767 125.679C103.767 125.656 103.775 125.632 103.782 125.609C103.861 126.367 103.993 127.171 104.157 127.882C104.298 128.507 104.657 129.249 105.415 129.007C106.337 128.71 106.564 127.101 106.751 126.312C106.782 126.171 106.861 125.921 106.939 125.648C106.97 126.265 107.009 127.085 107.493 127.421C108.204 127.921 108.751 127.164 109.009 126.632C109.361 125.898 109.673 125.14 110.009 124.398C110.165 124.054 110.314 123.71 110.47 123.367C110.642 123.007 110.665 122.562 110.9 123.039C111.251 123.757 111.181 124.695 111.439 125.46C111.884 126.742 112.548 125.992 113.017 125.234C113.454 124.539 113.829 123.812 114.282 123.124C114.4 122.945 114.673 122.382 114.9 122.335C114.9 122.335 114.923 122.32 114.946 122.312C114.946 122.421 114.993 122.749 114.993 122.789C115.032 123.195 115.04 123.609 115.017 124.015C114.907 126.359 113.907 128.562 112.282 130.179C111.611 130.64 110.954 131.132 110.329 131.656C110.079 131.867 110.392 132.304 110.681 132.14C111.423 131.718 112.095 131.21 112.689 130.624C115.126 128.945 117.837 127.687 120.751 126.882C121.111 126.781 120.978 126.21 120.618 126.312H120.611Z\" fill=\"#031515\"/>\\n<path d=\"M172.124 63.3514L171.233 64.4061C171.132 64.5311 171.022 64.6561 170.921 64.7811L170.585 65.1795C170.343 65.4608 170.108 65.7498 169.866 66.0311L169.554 66.4061C169.249 66.7655 168.952 67.117 168.663 67.4608L167.765 68.5233C167.655 68.6561 167.647 68.8748 167.765 69.1795C167.788 69.242 167.812 69.3045 167.843 69.367C167.897 69.4764 167.929 69.5311 167.96 69.5936C168.007 69.6795 168.046 69.7342 168.077 69.7889C168.132 69.867 168.163 69.9217 168.202 69.9686C168.218 69.9998 168.241 70.0233 168.265 70.0545C168.304 70.1014 168.327 70.1326 168.343 70.1639C168.374 70.203 168.397 70.2342 168.429 70.2811C168.491 70.3592 168.507 70.3826 168.53 70.4061C168.546 70.4295 168.569 70.453 168.585 70.4764C168.616 70.5155 168.655 70.5545 168.687 70.5936C168.788 70.7108 168.843 70.7733 168.897 70.8358C169.007 70.953 169.03 70.9764 169.054 71.0076C169.101 71.0545 169.155 71.1092 169.202 71.1639C169.265 71.2342 169.319 71.2889 169.374 71.3358C169.397 71.3592 169.421 71.3826 169.444 71.4061C169.601 71.5545 169.663 71.6092 169.718 71.6639C169.827 71.7655 169.866 71.8045 169.905 71.8358C169.944 71.867 169.976 71.8983 170.015 71.9295C170.179 72.0701 170.257 72.1326 170.327 72.1951C170.366 72.2264 170.39 72.242 170.413 72.2655C170.468 72.3123 170.522 72.3592 170.585 72.4061C170.679 72.4764 170.733 72.5233 170.788 72.5623C170.827 72.5936 170.866 72.6248 170.905 72.6483C171.085 72.7811 171.233 72.8905 171.39 72.9842C171.499 73.0623 171.577 73.1092 171.647 73.1561C171.726 73.203 171.804 73.2498 171.874 73.2967C171.897 73.3123 171.921 73.3201 171.944 73.3358C171.991 73.367 172.038 73.3905 172.085 73.4217C172.171 73.4686 172.241 73.5076 172.319 73.5545C172.429 73.6092 172.483 73.6405 172.538 73.6639C172.663 73.7186 172.726 73.7498 172.788 73.7733C172.897 73.8201 172.937 73.8358 172.976 73.8436C173.077 73.8748 173.101 73.8905 173.132 73.8983C173.89 73.9764 173.921 73.9686 173.944 73.953C174.077 73.8592 179.351 67.617 179.351 67.617C179.405 67.5545 179.429 67.5233 179.452 67.492C179.577 67.3201 179.624 67.242 179.671 67.1483C179.694 67.1014 179.718 67.0545 179.741 67.0076C179.765 66.953 179.78 66.9217 179.804 66.867C179.913 66.4608 179.929 66.367 179.944 66.2733C179.952 66.203 179.952 66.1405 179.96 66.0858C179.96 65.8983 179.96 65.8436 179.952 65.7967C179.944 65.6873 179.937 65.6483 179.929 65.617C179.897 65.4608 179.897 65.4295 179.89 65.4061C179.835 65.203 179.819 65.1717 179.812 65.1483C179.796 65.1092 179.788 65.078 179.78 65.0467C179.733 64.9373 179.718 64.8983 179.702 64.867C179.601 64.6483 179.546 64.5545 179.491 64.453C179.335 64.203 179.304 64.1561 179.272 64.117C179.218 64.0467 179.202 64.0155 179.179 63.9842C178.858 63.5467 178.476 63.1405 178.062 62.8045C176.663 61.5858 174.765 60.8045 173.397 61.9686C173.366 61.992 173.351 62.0076 173.335 62.0155C173.155 62.1951 173.116 62.2342 173.085 62.2655C172.772 62.6326 172.476 62.992 172.163 63.3592H172.147L172.124 63.3514Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M125.202 122.391C124.944 123.469 124.718 124.477 124.499 125.484C124.655 125.922 124.655 125.922 124.663 125.922C126.046 125.586 126.999 125.203 127.96 124.812C128.015 124.453 128.007 124.422 127.991 124.398C127.843 124.148 127.827 124.125 127.812 124.102C127.546 123.766 127.522 123.75 127.507 123.727C127.429 123.648 127.413 123.625 127.39 123.602C127.304 123.516 127.288 123.5 127.265 123.477C127.179 123.391 127.147 123.367 127.124 123.352C127.101 123.328 127.069 123.305 127.054 123.281C126.944 123.188 126.913 123.164 126.882 123.133C126.585 122.906 126.554 122.883 126.522 122.852C126.405 122.773 126.343 122.727 126.288 122.695C126.218 122.648 126.155 122.609 126.085 122.578C125.952 122.508 125.913 122.484 125.874 122.469C125.804 122.438 125.772 122.422 125.741 122.406C125.64 122.367 125.616 122.359 125.593 122.352C125.21 122.375 125.21 122.375 125.202 122.375V122.391Z\" fill=\"#F4EEE9\"/>\\n<path d=\"M173.937 73.2888C173.913 73.2263 173.89 73.1638 173.858 73.1013C173.804 72.9919 173.772 72.9372 173.741 72.8747C173.694 72.7888 173.655 72.7341 173.624 72.6716C173.569 72.5934 173.538 72.5388 173.499 72.4919C173.483 72.4606 173.468 72.4372 173.444 72.4059C173.405 72.3591 173.382 72.3278 173.366 72.2966C173.335 72.2575 173.312 72.2263 173.28 72.1872C173.218 72.1091 173.202 72.0856 173.179 72.0622C173.163 72.0388 173.14 72.0153 173.124 71.9919C173.093 71.9528 173.062 71.9138 173.022 71.8747C172.921 71.7575 172.866 71.695 172.812 71.6403C172.702 71.5231 172.679 71.4997 172.655 71.4684C172.608 71.4216 172.554 71.3669 172.507 71.3122C172.444 71.2419 172.39 71.1872 172.335 71.1403C172.312 71.1169 172.288 71.0934 172.265 71.07C172.108 70.9216 172.054 70.8669 171.991 70.8122C171.882 70.7106 171.843 70.6716 171.804 70.6403C171.765 70.6091 171.733 70.5778 171.694 70.5466C171.53 70.4059 171.452 70.3434 171.374 70.2809C171.335 70.2497 171.312 70.2263 171.288 70.2106C171.233 70.1638 171.171 70.1169 171.116 70.07C171.022 69.9997 170.968 69.9528 170.913 69.9138C170.874 69.8825 170.835 69.8513 170.796 69.8278C170.616 69.695 170.468 69.5856 170.312 69.4919C170.202 69.4138 170.124 69.3669 170.054 69.32C169.976 69.2731 169.905 69.2263 169.827 69.1794C169.741 69.1325 169.718 69.1169 169.694 69.1013C169.671 69.0856 169.64 69.07 169.616 69.0544C169.562 69.0231 169.522 68.9997 169.476 68.9763C169.272 68.8669 169.218 68.8434 169.163 68.8122C169.038 68.7575 168.983 68.7263 168.921 68.7028C168.804 68.6559 168.765 68.6403 168.726 68.6247C167.983 68.3669 167.78 68.4997 167.757 68.5153C167.624 68.6091 160.562 76.9763 160.562 76.9763C160.374 77.2028 160.179 77.4294 159.983 77.6559L158.491 79.4216C157.687 80.3747 156.882 81.3278 156.069 82.2966L154.405 84.2731C153.952 84.8122 153.491 85.3591 153.03 85.8981L149.726 89.8122C149.687 89.8513 146.999 93.0388 146.999 93.0388C146.101 94.1091 145.202 95.1716 144.296 96.2341C143.171 97.57 142.062 98.8825 140.96 100.187L139.593 101.804C139.03 102.468 138.476 103.125 137.921 103.789L137.335 104.484C136.21 105.812 135.101 107.133 133.999 108.429L133.437 109.101C130.976 112.015 128.601 114.82 126.366 117.476L126.288 117.562C126.288 117.562 126.272 117.593 126.257 117.601C126.272 117.586 126.327 117.554 126.632 117.422C126.655 117.422 126.687 117.422 126.718 117.422C126.749 117.422 126.78 117.422 126.812 117.429C126.843 117.429 126.882 117.437 126.913 117.445C126.952 117.445 126.991 117.461 127.03 117.468C127.069 117.476 127.116 117.492 127.163 117.5C127.21 117.515 127.265 117.531 127.319 117.547C127.382 117.57 127.437 117.593 127.499 117.609C127.577 117.64 127.647 117.672 127.726 117.711C127.835 117.758 127.952 117.82 128.069 117.883C128.272 117.992 128.491 118.117 128.718 118.265C128.866 118.359 129.022 118.461 129.171 118.562C129.304 118.656 129.429 118.75 129.554 118.843C129.647 118.914 129.741 118.984 129.827 119.054C129.905 119.117 129.983 119.179 130.054 119.242C130.124 119.297 130.187 119.351 130.257 119.414C130.319 119.468 130.382 119.515 130.437 119.57C130.491 119.625 130.546 119.672 130.601 119.718C130.655 119.765 130.71 119.82 130.757 119.867C130.812 119.914 130.858 119.961 130.905 120.008C130.952 120.054 130.999 120.101 131.046 120.148C131.093 120.195 131.14 120.242 131.179 120.289C131.226 120.336 131.265 120.383 131.312 120.429C131.351 120.476 131.397 120.523 131.437 120.562C131.483 120.609 131.522 120.656 131.562 120.695C131.601 120.742 131.64 120.789 131.679 120.836C131.718 120.883 131.757 120.929 131.796 120.976C131.835 121.023 131.874 121.07 131.905 121.117C131.944 121.164 131.983 121.211 132.015 121.258C132.054 121.304 132.085 121.359 132.124 121.406C132.155 121.453 132.194 121.508 132.226 121.554C132.257 121.609 132.296 121.656 132.327 121.711C132.358 121.773 132.397 121.828 132.429 121.883C132.46 121.945 132.499 122.008 132.522 122.07C132.546 122.133 132.569 122.187 132.522 122.953C132.562 122.929 132.577 122.914 132.585 122.906C132.663 122.812 132.733 122.718 132.733 122.718L173.921 73.9528C173.976 73.8669 173.983 73.8356 173.991 73.7966C173.999 73.7419 174.007 73.7028 174.007 73.6559C174.007 73.5856 173.999 73.5388 173.983 73.4841C173.968 73.4059 173.913 73.2888 173.913 73.2888H173.937Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M132.335 123.047L132.46 123\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M128.038 124.563C128.038 124.563 128.03 124.508 128.015 124.477C128.007 124.453 127.991 124.43 127.983 124.398C127.968 124.375 127.96 124.344 127.944 124.312C127.929 124.289 127.913 124.266 127.897 124.234C127.882 124.211 127.866 124.187 127.851 124.164C127.835 124.141 127.819 124.117 127.804 124.094C127.788 124.07 127.772 124.047 127.608 123.844C127.593 123.82 127.577 123.805 127.554 123.781C127.538 123.758 127.522 123.742 127.499 123.719C127.483 123.695 127.46 123.68 127.444 123.656C127.429 123.633 127.405 123.617 127.39 123.594C127.374 123.57 127.351 123.555 127.327 123.531C127.304 123.508 127.288 123.492 127.265 123.469C127.241 123.445 127.218 123.43 127.194 123.406C127.171 123.383 127.147 123.359 127.124 123.344C127.101 123.32 127.077 123.297 127.054 123.273C127.022 123.25 126.999 123.227 126.968 123.203C126.937 123.18 126.905 123.148 126.882 123.125C126.851 123.094 126.812 123.07 126.78 123.039C126.741 123.008 126.702 122.977 126.655 122.945C126.601 122.898 126.538 122.859 126.483 122.82C126.421 122.773 126.351 122.727 126.28 122.687C126.179 122.625 126.077 122.562 125.991 122.516C125.937 122.484 125.89 122.461 125.843 122.437C125.812 122.422 125.772 122.406 125.741 122.391C125.71 122.375 125.687 122.367 125.163 122.437C125.163 122.437 126.21 117.703 126.249 117.586C126.241 117.609 126.233 117.625 126.218 117.648C126.21 117.687 126.03 118.477 126.03 118.477L125.155 122.43C124.929 123.437 124.71 124.445 124.491 125.453C124.647 125.883 124.647 125.891 124.655 125.891C124.71 125.93 124.726 125.93 124.733 125.937C126.03 125.555 126.991 125.172 127.944 124.781L128.085 124.727C128.038 124.742 127.991 124.758 128.03 124.531L128.038 124.563Z\" fill=\"#330815\"/>\\n<path d=\"M125.163 122.46C125.679 122.398 125.71 122.406 125.733 122.421C125.765 122.437 125.804 122.445 125.835 122.468C125.882 122.492 125.937 122.515 125.983 122.539C126.077 122.585 126.171 122.64 126.272 122.71C126.343 122.757 126.405 122.796 126.476 122.843C126.53 122.89 126.585 122.929 126.647 122.968C126.687 123 126.726 123.031 126.772 123.062C126.804 123.093 126.843 123.117 126.874 123.148C126.905 123.171 126.937 123.195 126.96 123.226C126.991 123.25 127.015 123.273 127.038 123.296C127.062 123.32 127.085 123.343 127.116 123.359C127.14 123.382 127.163 123.406 127.187 123.429C127.21 123.453 127.233 123.476 127.257 123.492C127.28 123.515 127.296 123.531 127.319 123.554C127.343 123.578 127.358 123.593 127.382 123.617C127.405 123.64 127.421 123.656 127.444 123.679C127.46 123.703 127.483 123.718 127.499 123.742C127.515 123.757 127.538 123.781 127.554 123.804C127.569 123.828 127.585 123.843 127.608 123.867C127.772 124.078 127.788 124.093 127.804 124.117C127.819 124.14 127.835 124.164 127.851 124.187C127.866 124.21 127.882 124.234 127.897 124.257C127.913 124.289 127.929 124.312 127.944 124.335C127.96 124.367 127.976 124.39 127.983 124.421C127.999 124.445 128.007 124.468 128.015 124.5C128.03 124.531 128.03 124.554 128.038 124.585C127.999 124.812 128.046 124.796 128.093 124.781L127.944 124.843C126.991 125.234 126.03 125.617 124.733 126C124.718 125.992 124.71 125.984 124.655 125.953C124.655 125.953 124.647 125.945 124.491 125.515C124.71 124.507 124.937 123.5 125.155 122.492L125.163 122.46ZM125.163 122.46C125.163 122.46 126.21 117.726 126.249 117.609C126.241 117.632 126.233 117.648 126.226 117.671C126.218 117.71 126.038 118.5 126.038 118.5L125.163 122.453V122.46Z\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M132.53 122.07C132.499 122.008 132.468 121.945 132.437 121.883C132.405 121.828 132.374 121.773 132.335 121.711C132.304 121.656 132.272 121.609 132.233 121.555C132.202 121.508 132.163 121.453 132.132 121.406C132.101 121.359 132.062 121.305 132.022 121.258C131.991 121.211 131.952 121.164 131.913 121.117C131.882 121.07 131.835 121.023 131.804 120.977C131.765 120.93 131.726 120.883 131.687 120.836C131.647 120.789 131.608 120.742 131.569 120.703C131.53 120.664 131.491 120.609 131.444 120.57C131.405 120.523 131.358 120.477 131.319 120.438C131.272 120.391 131.233 120.344 131.187 120.297C131.14 120.25 131.093 120.203 131.054 120.164C131.007 120.117 130.96 120.07 130.913 120.023C130.866 119.977 130.812 119.93 130.765 119.883C130.71 119.836 130.655 119.781 130.608 119.734C130.554 119.688 130.499 119.633 130.437 119.586C130.374 119.531 130.319 119.484 130.257 119.43C130.194 119.375 130.124 119.32 130.054 119.258C129.976 119.195 129.905 119.133 129.827 119.07C129.741 119 129.647 118.93 129.554 118.859C129.429 118.766 129.296 118.672 129.171 118.578C129.022 118.469 128.874 118.375 128.718 118.281C128.491 118.133 128.272 118.008 128.069 117.898C127.952 117.836 127.835 117.781 127.726 117.734C127.647 117.695 127.569 117.664 127.499 117.633C127.437 117.609 127.374 117.586 127.319 117.57C127.265 117.555 127.218 117.531 127.163 117.523C127.116 117.508 127.077 117.5 127.03 117.492C126.991 117.484 126.952 117.477 126.913 117.469C126.874 117.469 126.843 117.461 126.804 117.453C126.772 117.453 126.741 117.453 126.71 117.445C126.679 117.445 126.655 117.445 126.624 117.445C126.319 117.578 126.265 117.609 126.249 117.625V117.633C126.21 117.75 125.163 122.484 125.163 122.484C125.679 122.422 125.71 122.43 125.741 122.437C125.772 122.453 125.812 122.469 125.843 122.484C125.89 122.508 125.944 122.531 125.991 122.562C126.085 122.609 126.179 122.672 126.28 122.734C126.351 122.773 126.413 122.82 126.483 122.867C126.538 122.906 126.601 122.945 126.655 122.992C126.694 123.023 126.733 123.055 126.78 123.086C126.812 123.117 126.851 123.141 126.882 123.172C126.913 123.195 126.944 123.227 126.968 123.25C126.999 123.273 127.022 123.297 127.046 123.32C127.069 123.344 127.101 123.367 127.124 123.383C127.147 123.406 127.171 123.43 127.194 123.453C127.218 123.477 127.241 123.492 127.265 123.516C127.288 123.539 127.304 123.555 127.327 123.578C127.351 123.602 127.366 123.617 127.39 123.641C127.405 123.664 127.429 123.68 127.452 123.703C127.468 123.727 127.491 123.742 127.507 123.766C127.522 123.789 127.538 123.805 127.562 123.828C127.577 123.852 127.593 123.867 127.616 123.891C127.78 124.102 127.804 124.117 127.812 124.141C127.827 124.164 127.843 124.188 127.858 124.211C127.874 124.234 127.89 124.258 127.905 124.281C127.921 124.305 127.937 124.336 127.944 124.359C127.96 124.391 127.976 124.414 127.983 124.445C127.999 124.469 128.007 124.5 128.015 124.516C128.03 124.547 128.03 124.57 128.038 124.602C128.007 124.828 128.046 124.82 128.093 124.797L128.562 124.609C128.929 124.461 129.312 124.305 129.702 124.141L130.679 123.742C130.741 123.719 130.796 123.695 130.858 123.672L132.319 123.078L132.444 123.031C132.444 123.031 132.499 123.008 132.522 122.992C132.569 122.219 132.546 122.164 132.522 122.102H132.538L132.53 122.07Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M165.898 73.3902C165.914 73.4292 165.906 73.4839 165.875 73.523L130.625 115.421C130.578 115.476 130.492 115.484 130.437 115.437C130.382 115.39 130.375 115.304 130.421 115.25L165.671 73.3511C165.718 73.2964 165.804 73.2886 165.859 73.3355C165.875 73.3511 165.89 73.3745 165.898 73.3902Z\" fill=\"#F4EEE9\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_1149_58711\" x1=\"74.9706\" y1=\"134.366\" x2=\"70.8758\" y2=\"138.591\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_1149_58711\" x1=\"67.4732\" y1=\"140.942\" x2=\"69.7994\" y2=\"137.365\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_1149_58711\" x1=\"73.5093\" y1=\"140.066\" x2=\"76.7547\" y2=\"136.159\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_1149_58711\">\\n<rect width=\"159.82\" height=\"162.906\" fill=\"white\" transform=\"translate(20.3125 23.4375)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10liz4a\",\"data-framer-name\":\"Line 631\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:85,intrinsicWidth:208,name:\"Line 631\",svg:'<svg width=\"208\" height=\"85\" viewBox=\"-1 -1 208 85\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M205.319 69.866C205.854 69.7268 206.174 69.1807 206.035 68.6462L203.767 59.9367C203.628 59.4022 203.082 59.0818 202.547 59.221C202.013 59.3601 201.693 59.9062 201.832 60.4407L203.848 68.1825L196.106 70.1985C195.571 70.3376 195.251 70.8837 195.39 71.4182C195.529 71.9527 196.075 72.2731 196.61 72.1339L205.319 69.866ZM202.299 68.4334L204.561 69.7607L205.574 68.0358L203.312 66.7084L202.299 68.4334ZM6.13411 82.9258C62.1556 37.795 140.254 32.0252 202.299 68.4334L203.312 66.7084C140.549 29.8795 61.5483 35.716 4.87941 81.3683L6.13411 82.9258Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4iq9ts\",\"data-framer-name\":\"illus\",name:\"illus\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition(2292.2999999999997),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6zJ1NwRaXwUUImkmUNqbfB5jt4.svg\"},className:\"framer-1xoqkl9\",\"data-framer-name\":\"frame\",name:\"frame\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4tvyn\",\"data-framer-name\":\"Content steps\",name:\"Content steps\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uk5h9v\",\"data-framer-name\":\"Services top\",name:\"Services top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Remplissez le formulaire\"})}),className:\"framer-1fyuoc8\",\"data-framer-name\":\"Remplissez le formulaire\",fonts:[\"Inter\"],name:\"Remplissez le formulaire\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Compl\\xe9tez notre formulaire en ligne et partagez les d\\xe9tails de votre bien afin d\u2019obtenir une estimation personnalis\\xe9e de revenus que pourrait g\\xe9n\\xe9rer ce dernier.\"})}),className:\"framer-ucitnn\",\"data-framer-name\":\"Compl\\xe9tez notre formulaire en ligne et partagez les d\\xe9tails de votre bien afin d\u2019obtenir une estimation personnalis\\xe9e de revenus que pourrait g\\xe9n\\xe9rer ce dernier.\",fonts:[\"Inter\"],name:\"Compl\\xe9tez notre formulaire en ligne et partagez les d\\xe9tails de votre bien afin d\u2019obtenir une estimation personnalis\\xe9e de revenus que pourrait g\\xe9n\\xe9rer ce dernier.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5pnyom\",\"data-framer-name\":\"Services top\",name:\"Services top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Nous g\\xe9rons les d\\xe9marches\"})}),className:\"framer-uuxo8s\",\"data-framer-name\":\"Nous g\\xe9rons les d\\xe9marches\",fonts:[\"Inter\"],name:\"Nous g\\xe9rons les d\\xe9marches\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"De la contractualisation \\xe0 la mise en ligne des annonces, en passant par la prise de photos professionnelles, nous g\\xe9rons toutes les op\\xe9rations \"})}),className:\"framer-19c0g5b\",\"data-framer-name\":\"De la contractualisation \\xe0 la mise en ligne des annonces, en passant par la prise de photos professionnelles, nous g\\xe9rons toutes les op\\xe9rations\",fonts:[\"Inter\"],name:\"De la contractualisation \\xe0 la mise en ligne des annonces, en passant par la prise de photos professionnelles, nous g\\xe9rons toutes les op\\xe9rations\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oeojl0\",\"data-framer-name\":\"Services top\",name:\"Services top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Profitez de vos revenus\"})}),className:\"framer-1a0wjmg\",\"data-framer-name\":\"Remplissez le formulaire\",fonts:[\"Inter\"],name:\"Remplissez le formulaire\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"D\\xe8s les premi\\xe8res r\\xe9servations de votre bien, les revenus g\\xe9n\\xe9r\\xe9s sont collect\\xe9s. Vous les percevez chaque mois, accompagn\\xe9s d\u2019un rapport d\\xe9taill\\xe9\"})}),className:\"framer-1t98h91\",\"data-framer-name\":\"D\\xe8s les premi\\xe8res r\\xe9servations de votre bien, les revenus g\\xe9n\\xe9r\\xe9s sont collect\\xe9s. Vous les percevez chaque mois, accompagn\\xe9s d\u2019un rapport d\\xe9taill\\xe9\",fonts:[\"Inter\"],name:\"D\\xe8s les premi\\xe8res r\\xe9servations de votre bien, les revenus g\\xe9n\\xe9r\\xe9s sont collect\\xe9s. Vous les percevez chaque mois, accompagn\\xe9s d\u2019un rapport d\\xe9taill\\xe9\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:2725.8999999999996,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tyrrgi-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Mtfc8TXYS\",ivM1kjjp7:\"Remplir le formulaire\",layoutId:\"Mtfc8TXYS\",P323yqCPx:\"https://tally.so/r/w8J9Vo\",variant:\"gLowOQWzG\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ymiho5 hidden-72rtr7\",\"data-framer-name\":\"Comment \\xe7a marche\",name:\"Comment \\xe7a marche\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1152ep9\",\"data-framer-name\":\"Comment \\xe7a marche top\",name:\"Comment \\xe7a marche top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mpuc9l\",\"data-styles-preset\":\"mGFJXVGLa\",style:{\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Commencez \\xe0 g\\xe9n\\xe9rer des revenus en 3 \\xe9tapes\"})}),className:\"framer-ruv84w\",\"data-framer-name\":\"Commencez \\xe0 g\\xe9n\\xe9rer des revenus en 3 \\xe9tapes\",fonts:[\"Inter\"],name:\"Commencez \\xe0 g\\xe9n\\xe9rer des revenus en 3 \\xe9tapes\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Remplissez notre formulaire en ligne pour fournir les informations n\\xe9cessaires sur votre bien. Nous nous occupons du reste : d\\xe9marches administratives, contractualisation, r\\xe9daction des annonces. D\\xe8s les premi\\xe8res r\\xe9servations, nous collectons vos revenus et vous les transf\\xe9rons \\xe0 chaque fin de mois.\"})}),className:\"framer-18ch0vs\",\"data-framer-name\":\"Remplissez notre formulaire en ligne pour fournir les informations n\\xe9cessaires sur votre bien. Nous nous occupons du reste : d\\xe9marches administratives, contractualisation, r\\xe9daction des annonces. D\\xe8s les premi\\xe8res r\\xe9servations, nous collectons vos revenus et vous les transf\\xe9rons \\xe0 chaque fin de mois.\",fonts:[\"Inter\"],name:\"Remplissez notre formulaire en ligne pour fournir les informations n\\xe9cessaires sur votre bien. Nous nous occupons du reste : d\\xe9marches administratives, contractualisation, r\\xe9daction des annonces. D\\xe8s les premi\\xe8res r\\xe9servations, nous collectons vos revenus et vous les transf\\xe9rons \\xe0 chaque fin de mois.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n959q0\",\"data-framer-name\":\"How it works illus\",name:\"How it works illus\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ngmkc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition(1427),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IrQqfglxUpZviXvMXJ0gsntKmqY.svg\"}},T3pdjW58B:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition(1835),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IrQqfglxUpZviXvMXJ0gsntKmqY.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:256,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IrQqfglxUpZviXvMXJ0gsntKmqY.svg\"},className:\"framer-1oojb10\",\"data-framer-name\":\"frame\",name:\"frame\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11l21ex\",\"data-framer-name\":\"Form text\",name:\"Form text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Remplissez le formulaire\"})}),className:\"framer-1dtcmf0\",\"data-framer-name\":\"Remplissez le formulaire\",fonts:[\"Inter\"],name:\"Remplissez le formulaire\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Compl\\xe9tez notre formulaire en ligne et partagez les d\\xe9tails de votre bien afin d\u2019obtenir une estimation personnalis\\xe9e de revenus que pourrait g\\xe9n\\xe9rer ce dernier.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Compl\\xe9tez notre formulaire en ligne et partagez les d\\xe9tails de votre bien afin d\u2019obtenir une estimation personnalis\\xe9e de revenus que pourrait g\\xe9n\\xe9rer ce dernier.\"})}),className:\"framer-wxm59i\",\"data-framer-name\":\"Compl\\xe9tez notre formulaire en ligne et partagez les d\\xe9tails de votre bien afin d\u2019obtenir une estimation personnalis\\xe9e de revenus que pourrait g\\xe9n\\xe9rer ce dernier.\",fonts:[\"Inter\"],name:\"Compl\\xe9tez notre formulaire en ligne et partagez les d\\xe9tails de votre bien afin d\u2019obtenir une estimation personnalis\\xe9e de revenus que pourrait g\\xe9n\\xe9rer ce dernier.\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wmzjrn\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ro5d7r\",\"data-framer-name\":\"frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:200,intrinsicWidth:200,name:\"frame\",svg:'<svg width=\"200\" height=\"200\" viewBox=\"0 0 200 200\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1149_58711)\">\\n<path d=\"M156.805 147.172C156.922 125.445 126.508 107.664 88.8675 107.461C51.2347 107.25 20.6253 124.703 20.5082 146.43C20.391 168.156 50.805 185.937 88.4457 186.141C126.086 186.344 156.688 168.898 156.805 147.164V147.172Z\" fill=\"#106C6C\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M135.696 142.781C106.384 151.82 76.8135 159.656 46.8604 166.273C34.6963 123.953 27.3369 81.0308 24.3369 37.1011C54.6338 35.6323 84.7197 32.7261 114.743 28.4058C117.47 67.4214 124.22 105.375 135.688 142.781H135.696Z\" fill=\"#CBE6E6\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M139.118 138.007C109.571 146.421 79.7744 153.539 49.5947 159.328C38.9463 116.96 33.04 74.1636 31.5166 30.5073C61.8291 29.7261 91.9385 27.437 122.024 23.6558C123.478 62.5151 128.978 100.453 139.118 138.007Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M114.836 50.8823C90.3359 54.4839 65.8359 57.1401 41.1328 58.8589C41.0312 57.3823 40.9766 56.6401 40.8828 55.1558C65.5859 53.5464 90.0859 50.9917 114.594 47.4995C114.688 48.8511 114.734 49.5308 114.836 50.8823Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M114.266 42.1245C89.7422 45.4604 65.2422 47.8433 40.5391 49.2808C40.3125 44.9214 40.2188 42.7417 40.0781 38.3745C64.7813 37.2495 89.2891 35.1636 113.828 32.1323C113.961 36.1323 114.047 38.1323 114.266 42.1245Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M66.0078 62.5308C57.8828 63.3589 49.7266 64.0464 41.5781 64.6089C41.4531 63.1323 41.3984 62.3901 41.2891 60.9136C49.4375 60.3901 57.5938 59.7339 65.7266 58.9448C65.8359 60.3823 65.8906 61.1011 66.0156 62.5308H66.0078Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M41.8516 67.8433C66.5547 65.8589 91.0391 62.937 115.523 59.0854\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.1406 71.0698C66.8438 68.9839 91.3281 65.9683 115.797 62.0229\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.4609 74.2964C67.1641 72.1167 91.6406 69.0073 116.102 64.9683\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M42.7891 77.523C59.2656 76.0073 75.6641 74.1089 92.0469 71.812\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M118.157 81.4688C93.7432 86.0391 69.2979 89.6953 44.6104 92.4453C44.4072 90.9766 44.3135 90.2422 44.126 88.7734C68.8135 86.1406 93.2744 82.6016 117.696 78.1406C117.876 79.4766 117.97 80.1406 118.165 81.4766L118.157 81.4688Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M100.032 90.2188C81.8838 93.3438 63.7041 95.9922 45.415 98.1406C45.1963 96.6797 45.0947 95.9453 44.8916 94.4766C63.1807 92.4062 81.3682 89.8516 99.5244 86.8047C99.7197 88.1719 99.8291 88.8516 100.032 90.2188Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M45.8984 101.344C70.5703 98.3125 95.0078 94.3828 119.391 89.5469\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M46.3994 104.539C71.0713 101.406 95.4932 97.375 119.868 92.4375\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M46.9229 107.734C71.5869 104.492 96.0088 100.367 120.368 95.3359\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M47.4609 110.922C63.9062 108.695 80.2578 106.102 96.5859 103.133\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M83.3291 118.367C72.2197 120.437 61.0791 122.297 49.8994 123.945C49.6416 122.672 49.5166 122.039 49.2744 120.766C60.4541 119.172 71.6103 117.359 82.7197 115.328C82.9619 116.547 83.0869 117.148 83.3369 118.367H83.3291Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M122.688 110.109C111.595 112.695 100.446 115.078 89.2666 117.242C89.0166 116.039 88.8994 115.438 88.6572 114.234C99.8447 112.117 110.993 109.781 122.095 107.242C122.329 108.391 122.446 108.969 122.696 110.117L122.688 110.109Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M88.6572 160.242C85.8682 159.984 84.4541 159.757 81.6338 159.078C80.7588 161.539 80.3838 162.804 79.7744 165.382C74.9229 156.609 72.2588 149.734 69.876 139.984C73.9307 139.828 75.9463 139.64 79.915 139.054C80.4229 146.21 83.9463 154.812 88.6572 160.242Z\" fill=\"#0D5656\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M62.0088 169.968C64.4463 168.773 65.6572 168.125 68.0479 166.718C69.7119 168.757 70.54 169.781 72.165 171.859C73.5869 163.648 74.6182 155.25 75.2197 146.945C71.1885 147.07 69.1885 147.039 65.2432 146.804C65.3994 154.351 64.2354 162.757 62.0088 169.968Z\" fill=\"#0D5656\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M85.1103 135.57C84.2119 128.929 76.3681 123.437 69.4306 124.367C61.8681 125.39 56.1181 132.093 57.2666 139.421C58.4306 146.875 65.6728 151.851 73.3291 150.71C80.9541 149.578 86.0713 142.617 85.1103 135.562V135.57Z\" fill=\"#1AACAC\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-linejoin=\"round\"/>\\n<path d=\"M82.228 136.007C81.3764 130.328 75.8608 126.359 69.7592 127.117C63.6576 127.874 59.2826 133.203 60.142 139.07C60.9936 144.937 66.7592 148.96 72.853 148.023C78.9545 147.085 83.0873 141.695 82.2358 136.015L82.228 136.007Z\" fill=\"#EFFFFF\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M78.4466 140.695C78.0325 138.078 77.8294 136.765 77.4544 134.132C77.3841 133.64 77.0403 133.218 76.5481 133.038C74.3997 132.234 73.3294 131.82 71.1888 130.992C70.6966 130.804 70.1341 130.874 69.7122 131.179C67.8606 132.531 66.9388 133.21 65.095 134.562C64.6731 134.874 64.4544 135.374 64.5247 135.874C64.8997 138.554 65.1028 139.89 65.5169 142.562C65.6419 143.335 66.3997 143.874 67.2122 143.757C71.2044 143.195 73.1966 142.906 77.1888 142.296C78.0013 142.171 78.5638 141.453 78.4466 140.695Z\" fill=\"#172621\"/>\\n<path d=\"M71.2197 136.578C71.4385 136.734 71.5479 136.812 71.7666 136.968C71.9775 137.125 72.0869 137.195 72.3057 137.351C72.3057 137.351 72.3057 137.351 72.3135 137.351C72.5947 137.546 72.7353 137.648 73.0088 137.843C73.2041 137.984 73.4854 137.945 73.6338 137.757C74.0791 137.203 74.2979 136.921 74.7432 136.367C74.751 136.351 74.7666 136.343 74.7744 136.328C74.8916 136.179 74.9463 136.109 75.0635 135.96C75.29 135.679 75.3682 135.335 75.3291 135.015C75.3291 134.976 75.3135 134.937 75.3057 134.898C75.29 134.835 75.2744 134.781 75.251 134.726C75.2275 134.671 75.1963 134.617 75.165 134.562C75.1494 134.539 75.1338 134.507 75.1104 134.484C75.0713 134.437 75.0322 134.39 74.9854 134.335C74.9619 134.312 74.9385 134.289 74.915 134.265C74.876 134.234 74.8525 134.218 74.8057 134.179C74.7666 134.156 74.7275 134.132 74.6885 134.109C74.6494 134.085 74.6103 134.07 74.5713 134.046C74.4932 134.015 74.415 133.984 74.3369 133.968C74.2588 133.953 74.1728 133.937 74.0947 133.929C74.04 133.929 73.9853 133.929 73.9307 133.929C73.8447 133.929 73.7588 133.945 73.6729 133.968C73.5479 134 73.4307 134.046 73.3135 134.109C73.2353 134.148 73.165 134.203 73.0947 134.257C73.0713 134.273 73.0479 134.296 73.0244 134.32C72.9775 134.359 72.9385 134.406 72.9072 134.453C72.2275 135.304 71.8838 135.734 71.2041 136.585L71.2197 136.578Z\" fill=\"url(#paint0_linear_1149_58711)\"/>\\n<path d=\"M67.0557 137.726C67.2276 138.89 67.3135 139.476 67.4932 140.64C67.6026 141.343 68.2901 141.828 69.0244 141.726C69.7588 141.625 70.2744 140.968 70.1651 140.273C70.0791 139.718 70.0401 139.437 69.9541 138.882C69.0791 138.265 68.6416 137.953 67.7744 137.328C67.7588 137.32 67.751 137.312 67.7354 137.304C67.4151 137.125 67.001 137.367 67.0557 137.734V137.726Z\" fill=\"url(#paint1_linear_1149_58711)\"/>\\n<path d=\"M73.1025 138.445C73.1885 139 73.2275 139.273 73.3135 139.828C73.4229 140.523 74.1104 141 74.8447 140.89C75.5791 140.781 76.0947 140.132 75.9854 139.437C75.7119 137.671 75.5869 136.789 75.3291 135.023C75.3291 134.984 75.3135 134.945 75.3057 134.906C75.3135 134.945 75.3213 134.984 75.3291 135.023C75.376 135.343 75.29 135.687 75.0635 135.968C74.9463 136.117 74.8916 136.187 74.7744 136.335C74.7666 136.351 74.751 136.359 74.7432 136.375C74.2979 136.929 74.0791 137.21 73.6338 137.765C73.415 138.039 73.3135 138.171 73.0947 138.445H73.1025Z\" fill=\"url(#paint2_linear_1149_58711)\"/>\\n<path d=\"M67.0562 137.726C67.0015 137.367 67.4156 137.117 67.7359 137.296C67.7515 137.304 67.7593 137.312 67.775 137.32C68.6421 137.945 69.0796 138.257 69.9546 138.875C70.2437 139.078 70.3843 139.179 70.6734 139.382C70.8609 139.515 71.0718 139.593 71.2828 139.617C71.3296 139.617 71.3687 139.625 71.4156 139.625C71.4468 139.625 71.4859 139.625 71.5171 139.625C71.5328 139.625 71.5484 139.625 71.5718 139.625C71.6421 139.625 71.7125 139.609 71.775 139.593C71.7906 139.593 71.8062 139.585 71.8296 139.578C71.8609 139.57 71.8921 139.562 71.9234 139.546C71.9546 139.539 71.9781 139.531 72.0093 139.515C72.0171 139.515 72.0328 139.515 72.0406 139.5C72.1187 139.468 72.1968 139.421 72.2671 139.375C72.3453 139.32 72.4234 139.257 72.4859 139.187C72.5093 139.164 72.5328 139.132 72.5562 139.101C72.5562 139.093 72.564 139.085 72.5718 139.078C72.7828 138.812 72.8843 138.679 73.0953 138.414C73.314 138.14 73.4156 138.007 73.6343 137.734C73.4859 137.921 73.2046 137.96 73.0093 137.82C72.7281 137.625 72.5875 137.523 72.314 137.328C72.314 137.328 72.314 137.328 72.3062 137.328C72.0875 137.171 71.9859 137.101 71.7671 136.945C71.5484 136.789 71.439 136.71 71.2203 136.554C70.3218 135.914 69.8765 135.593 68.9859 134.953C68.939 134.921 68.8843 134.882 68.8375 134.859C68.8062 134.843 68.7828 134.828 68.7593 134.82C68.6812 134.781 68.5953 134.757 68.5093 134.734C68.3843 134.703 68.2593 134.695 68.1265 134.695C68.0406 134.695 67.9546 134.71 67.8687 134.726C67.8453 134.726 67.814 134.742 67.7906 134.75C67.7671 134.75 67.7437 134.765 67.7125 134.773C67.6812 134.789 67.65 134.796 67.6109 134.812C67.5718 134.828 67.525 134.851 67.4859 134.875C67.4625 134.89 67.439 134.898 67.4234 134.914C67.4078 134.921 67.4 134.929 67.3843 134.945C67.3765 134.945 67.3687 134.953 67.3609 134.96C67.3375 134.976 67.3218 134.992 67.2984 135.015C67.2671 135.039 67.2359 135.07 67.2046 135.101C67.1734 135.132 67.1421 135.164 67.1187 135.203C67.0875 135.25 67.0718 135.265 67.0406 135.312C67.0328 135.328 67.025 135.343 67.0171 135.351C67.0093 135.367 67.0015 135.382 66.9937 135.39C66.9625 135.437 66.939 135.492 66.9234 135.539C66.9234 135.539 66.9234 135.546 66.9234 135.554C66.9156 135.585 66.9 135.617 66.8921 135.648C66.8765 135.71 66.8609 135.765 66.8609 135.828C66.8609 135.89 66.8531 135.953 66.8609 136.015C66.8609 136.054 66.8609 136.093 66.8687 136.14C66.9625 136.765 67.0015 137.07 67.0953 137.695L67.0562 137.726Z\" fill=\"#EEEDE2\"/>\\n<path d=\"M124.634 125.554C123.642 125.671 122.657 125.835 121.681 126.054C121.314 126.14 121.446 126.71 121.814 126.625C122.782 126.406 123.774 126.242 124.767 126.125C124.923 126.109 125.024 125.921 124.985 125.781C124.946 125.617 124.79 125.539 124.626 125.554H124.634Z\" fill=\"#031515\"/>\\n<path d=\"M120.611 126.312C118.251 126.96 116.009 127.898 113.939 129.109C114.4 128.414 114.782 127.664 115.064 126.867C115.47 125.71 115.665 124.46 115.611 123.218C115.587 122.773 115.673 121.859 115.095 121.695C114.197 121.445 113.322 123.546 113.009 124.07C112.822 124.39 111.993 125.601 111.993 125.601C111.993 125.601 112.048 125.445 111.962 125.179C111.9 124.968 111.853 124.757 111.814 124.546C111.72 124.109 111.665 123.671 111.556 123.234C111.462 122.843 111.314 122.179 110.798 122.164C109.993 122.14 109.665 123.679 109.439 124.187C109.259 124.585 109.079 124.992 108.9 125.39C108.798 125.617 108.548 126.21 108.439 126.421C108.29 126.71 107.978 127.398 107.642 126.46C107.611 126.374 107.618 126.226 107.595 126.14C107.525 125.882 107.54 125.585 107.517 125.32C107.478 124.921 107.564 123.882 107.126 123.64C106.47 123.273 106.47 124.585 106.431 124.851C106.298 125.71 106.095 126.554 105.821 127.374C105.704 127.726 105.548 128.398 105.118 128.312C104.751 128.234 104.759 127.835 104.697 127.499C104.642 127.171 104.431 123.562 103.493 124.507C103.134 124.867 103.087 125.929 102.931 126.445C102.673 127.312 102.376 128.171 102.04 129.007C101.697 129.874 101.306 130.726 100.876 131.546C100.736 131.82 99.9621 133.054 99.8449 133.031C99.5559 133.093 99.5012 131.828 99.4934 131.64C99.3527 127.632 99.5246 123.632 99.9934 119.671C100.04 119.289 99.4465 119.226 99.3996 119.609C98.9934 122.999 98.8059 126.429 98.8527 129.867C98.8606 130.695 98.8762 131.523 98.9231 132.351C98.9465 132.718 98.9465 133.187 99.2199 133.492C99.9621 134.304 100.673 133.187 100.978 132.64C101.673 131.39 102.275 130.093 102.782 128.749C103.04 128.062 103.282 127.367 103.493 126.664C103.587 126.335 103.681 126.007 103.767 125.679C103.767 125.656 103.775 125.632 103.782 125.609C103.861 126.367 103.993 127.171 104.157 127.882C104.298 128.507 104.657 129.249 105.415 129.007C106.337 128.71 106.564 127.101 106.751 126.312C106.782 126.171 106.861 125.921 106.939 125.648C106.97 126.265 107.009 127.085 107.493 127.421C108.204 127.921 108.751 127.164 109.009 126.632C109.361 125.898 109.673 125.14 110.009 124.398C110.165 124.054 110.314 123.71 110.47 123.367C110.642 123.007 110.665 122.562 110.9 123.039C111.251 123.757 111.181 124.695 111.439 125.46C111.884 126.742 112.548 125.992 113.017 125.234C113.454 124.539 113.829 123.812 114.282 123.124C114.4 122.945 114.673 122.382 114.9 122.335C114.9 122.335 114.923 122.32 114.946 122.312C114.946 122.421 114.993 122.749 114.993 122.789C115.032 123.195 115.04 123.609 115.017 124.015C114.907 126.359 113.907 128.562 112.282 130.179C111.611 130.64 110.954 131.132 110.329 131.656C110.079 131.867 110.392 132.304 110.681 132.14C111.423 131.718 112.095 131.21 112.689 130.624C115.126 128.945 117.837 127.687 120.751 126.882C121.111 126.781 120.978 126.21 120.618 126.312H120.611Z\" fill=\"#031515\"/>\\n<path d=\"M172.124 63.3514L171.233 64.4061C171.132 64.5311 171.022 64.6561 170.921 64.7811L170.585 65.1795C170.343 65.4608 170.108 65.7498 169.866 66.0311L169.554 66.4061C169.249 66.7655 168.952 67.117 168.663 67.4608L167.765 68.5233C167.655 68.6561 167.647 68.8748 167.765 69.1795C167.788 69.242 167.812 69.3045 167.843 69.367C167.897 69.4764 167.929 69.5311 167.96 69.5936C168.007 69.6795 168.046 69.7342 168.077 69.7889C168.132 69.867 168.163 69.9217 168.202 69.9686C168.218 69.9998 168.241 70.0233 168.265 70.0545C168.304 70.1014 168.327 70.1326 168.343 70.1639C168.374 70.203 168.397 70.2342 168.429 70.2811C168.491 70.3592 168.507 70.3826 168.53 70.4061C168.546 70.4295 168.569 70.453 168.585 70.4764C168.616 70.5155 168.655 70.5545 168.687 70.5936C168.788 70.7108 168.843 70.7733 168.897 70.8358C169.007 70.953 169.03 70.9764 169.054 71.0076C169.101 71.0545 169.155 71.1092 169.202 71.1639C169.265 71.2342 169.319 71.2889 169.374 71.3358C169.397 71.3592 169.421 71.3826 169.444 71.4061C169.601 71.5545 169.663 71.6092 169.718 71.6639C169.827 71.7655 169.866 71.8045 169.905 71.8358C169.944 71.867 169.976 71.8983 170.015 71.9295C170.179 72.0701 170.257 72.1326 170.327 72.1951C170.366 72.2264 170.39 72.242 170.413 72.2655C170.468 72.3123 170.522 72.3592 170.585 72.4061C170.679 72.4764 170.733 72.5233 170.788 72.5623C170.827 72.5936 170.866 72.6248 170.905 72.6483C171.085 72.7811 171.233 72.8905 171.39 72.9842C171.499 73.0623 171.577 73.1092 171.647 73.1561C171.726 73.203 171.804 73.2498 171.874 73.2967C171.897 73.3123 171.921 73.3201 171.944 73.3358C171.991 73.367 172.038 73.3905 172.085 73.4217C172.171 73.4686 172.241 73.5076 172.319 73.5545C172.429 73.6092 172.483 73.6405 172.538 73.6639C172.663 73.7186 172.726 73.7498 172.788 73.7733C172.897 73.8201 172.937 73.8358 172.976 73.8436C173.077 73.8748 173.101 73.8905 173.132 73.8983C173.89 73.9764 173.921 73.9686 173.944 73.953C174.077 73.8592 179.351 67.617 179.351 67.617C179.405 67.5545 179.429 67.5233 179.452 67.492C179.577 67.3201 179.624 67.242 179.671 67.1483C179.694 67.1014 179.718 67.0545 179.741 67.0076C179.765 66.953 179.78 66.9217 179.804 66.867C179.913 66.4608 179.929 66.367 179.944 66.2733C179.952 66.203 179.952 66.1405 179.96 66.0858C179.96 65.8983 179.96 65.8436 179.952 65.7967C179.944 65.6873 179.937 65.6483 179.929 65.617C179.897 65.4608 179.897 65.4295 179.89 65.4061C179.835 65.203 179.819 65.1717 179.812 65.1483C179.796 65.1092 179.788 65.078 179.78 65.0467C179.733 64.9373 179.718 64.8983 179.702 64.867C179.601 64.6483 179.546 64.5545 179.491 64.453C179.335 64.203 179.304 64.1561 179.272 64.117C179.218 64.0467 179.202 64.0155 179.179 63.9842C178.858 63.5467 178.476 63.1405 178.062 62.8045C176.663 61.5858 174.765 60.8045 173.397 61.9686C173.366 61.992 173.351 62.0076 173.335 62.0155C173.155 62.1951 173.116 62.2342 173.085 62.2655C172.772 62.6326 172.476 62.992 172.163 63.3592H172.147L172.124 63.3514Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M125.202 122.391C124.944 123.469 124.718 124.477 124.499 125.484C124.655 125.922 124.655 125.922 124.663 125.922C126.046 125.586 126.999 125.203 127.96 124.812C128.015 124.453 128.007 124.422 127.991 124.398C127.843 124.148 127.827 124.125 127.812 124.102C127.546 123.766 127.522 123.75 127.507 123.727C127.429 123.648 127.413 123.625 127.39 123.602C127.304 123.516 127.288 123.5 127.265 123.477C127.179 123.391 127.147 123.367 127.124 123.352C127.101 123.328 127.069 123.305 127.054 123.281C126.944 123.188 126.913 123.164 126.882 123.133C126.585 122.906 126.554 122.883 126.522 122.852C126.405 122.773 126.343 122.727 126.288 122.695C126.218 122.648 126.155 122.609 126.085 122.578C125.952 122.508 125.913 122.484 125.874 122.469C125.804 122.438 125.772 122.422 125.741 122.406C125.64 122.367 125.616 122.359 125.593 122.352C125.21 122.375 125.21 122.375 125.202 122.375V122.391Z\" fill=\"#F4EEE9\"/>\\n<path d=\"M173.937 73.2888C173.913 73.2263 173.89 73.1638 173.858 73.1013C173.804 72.9919 173.772 72.9372 173.741 72.8747C173.694 72.7888 173.655 72.7341 173.624 72.6716C173.569 72.5934 173.538 72.5388 173.499 72.4919C173.483 72.4606 173.468 72.4372 173.444 72.4059C173.405 72.3591 173.382 72.3278 173.366 72.2966C173.335 72.2575 173.312 72.2263 173.28 72.1872C173.218 72.1091 173.202 72.0856 173.179 72.0622C173.163 72.0388 173.14 72.0153 173.124 71.9919C173.093 71.9528 173.062 71.9138 173.022 71.8747C172.921 71.7575 172.866 71.695 172.812 71.6403C172.702 71.5231 172.679 71.4997 172.655 71.4684C172.608 71.4216 172.554 71.3669 172.507 71.3122C172.444 71.2419 172.39 71.1872 172.335 71.1403C172.312 71.1169 172.288 71.0934 172.265 71.07C172.108 70.9216 172.054 70.8669 171.991 70.8122C171.882 70.7106 171.843 70.6716 171.804 70.6403C171.765 70.6091 171.733 70.5778 171.694 70.5466C171.53 70.4059 171.452 70.3434 171.374 70.2809C171.335 70.2497 171.312 70.2263 171.288 70.2106C171.233 70.1638 171.171 70.1169 171.116 70.07C171.022 69.9997 170.968 69.9528 170.913 69.9138C170.874 69.8825 170.835 69.8513 170.796 69.8278C170.616 69.695 170.468 69.5856 170.312 69.4919C170.202 69.4138 170.124 69.3669 170.054 69.32C169.976 69.2731 169.905 69.2263 169.827 69.1794C169.741 69.1325 169.718 69.1169 169.694 69.1013C169.671 69.0856 169.64 69.07 169.616 69.0544C169.562 69.0231 169.522 68.9997 169.476 68.9763C169.272 68.8669 169.218 68.8434 169.163 68.8122C169.038 68.7575 168.983 68.7263 168.921 68.7028C168.804 68.6559 168.765 68.6403 168.726 68.6247C167.983 68.3669 167.78 68.4997 167.757 68.5153C167.624 68.6091 160.562 76.9763 160.562 76.9763C160.374 77.2028 160.179 77.4294 159.983 77.6559L158.491 79.4216C157.687 80.3747 156.882 81.3278 156.069 82.2966L154.405 84.2731C153.952 84.8122 153.491 85.3591 153.03 85.8981L149.726 89.8122C149.687 89.8513 146.999 93.0388 146.999 93.0388C146.101 94.1091 145.202 95.1716 144.296 96.2341C143.171 97.57 142.062 98.8825 140.96 100.187L139.593 101.804C139.03 102.468 138.476 103.125 137.921 103.789L137.335 104.484C136.21 105.812 135.101 107.133 133.999 108.429L133.437 109.101C130.976 112.015 128.601 114.82 126.366 117.476L126.288 117.562C126.288 117.562 126.272 117.593 126.257 117.601C126.272 117.586 126.327 117.554 126.632 117.422C126.655 117.422 126.687 117.422 126.718 117.422C126.749 117.422 126.78 117.422 126.812 117.429C126.843 117.429 126.882 117.437 126.913 117.445C126.952 117.445 126.991 117.461 127.03 117.468C127.069 117.476 127.116 117.492 127.163 117.5C127.21 117.515 127.265 117.531 127.319 117.547C127.382 117.57 127.437 117.593 127.499 117.609C127.577 117.64 127.647 117.672 127.726 117.711C127.835 117.758 127.952 117.82 128.069 117.883C128.272 117.992 128.491 118.117 128.718 118.265C128.866 118.359 129.022 118.461 129.171 118.562C129.304 118.656 129.429 118.75 129.554 118.843C129.647 118.914 129.741 118.984 129.827 119.054C129.905 119.117 129.983 119.179 130.054 119.242C130.124 119.297 130.187 119.351 130.257 119.414C130.319 119.468 130.382 119.515 130.437 119.57C130.491 119.625 130.546 119.672 130.601 119.718C130.655 119.765 130.71 119.82 130.757 119.867C130.812 119.914 130.858 119.961 130.905 120.008C130.952 120.054 130.999 120.101 131.046 120.148C131.093 120.195 131.14 120.242 131.179 120.289C131.226 120.336 131.265 120.383 131.312 120.429C131.351 120.476 131.397 120.523 131.437 120.562C131.483 120.609 131.522 120.656 131.562 120.695C131.601 120.742 131.64 120.789 131.679 120.836C131.718 120.883 131.757 120.929 131.796 120.976C131.835 121.023 131.874 121.07 131.905 121.117C131.944 121.164 131.983 121.211 132.015 121.258C132.054 121.304 132.085 121.359 132.124 121.406C132.155 121.453 132.194 121.508 132.226 121.554C132.257 121.609 132.296 121.656 132.327 121.711C132.358 121.773 132.397 121.828 132.429 121.883C132.46 121.945 132.499 122.008 132.522 122.07C132.546 122.133 132.569 122.187 132.522 122.953C132.562 122.929 132.577 122.914 132.585 122.906C132.663 122.812 132.733 122.718 132.733 122.718L173.921 73.9528C173.976 73.8669 173.983 73.8356 173.991 73.7966C173.999 73.7419 174.007 73.7028 174.007 73.6559C174.007 73.5856 173.999 73.5388 173.983 73.4841C173.968 73.4059 173.913 73.2888 173.913 73.2888H173.937Z\" fill=\"#DC9913\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M132.335 123.047L132.46 123\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M128.038 124.563C128.038 124.563 128.03 124.508 128.015 124.477C128.007 124.453 127.991 124.43 127.983 124.398C127.968 124.375 127.96 124.344 127.944 124.312C127.929 124.289 127.913 124.266 127.897 124.234C127.882 124.211 127.866 124.187 127.851 124.164C127.835 124.141 127.819 124.117 127.804 124.094C127.788 124.07 127.772 124.047 127.608 123.844C127.593 123.82 127.577 123.805 127.554 123.781C127.538 123.758 127.522 123.742 127.499 123.719C127.483 123.695 127.46 123.68 127.444 123.656C127.429 123.633 127.405 123.617 127.39 123.594C127.374 123.57 127.351 123.555 127.327 123.531C127.304 123.508 127.288 123.492 127.265 123.469C127.241 123.445 127.218 123.43 127.194 123.406C127.171 123.383 127.147 123.359 127.124 123.344C127.101 123.32 127.077 123.297 127.054 123.273C127.022 123.25 126.999 123.227 126.968 123.203C126.937 123.18 126.905 123.148 126.882 123.125C126.851 123.094 126.812 123.07 126.78 123.039C126.741 123.008 126.702 122.977 126.655 122.945C126.601 122.898 126.538 122.859 126.483 122.82C126.421 122.773 126.351 122.727 126.28 122.687C126.179 122.625 126.077 122.562 125.991 122.516C125.937 122.484 125.89 122.461 125.843 122.437C125.812 122.422 125.772 122.406 125.741 122.391C125.71 122.375 125.687 122.367 125.163 122.437C125.163 122.437 126.21 117.703 126.249 117.586C126.241 117.609 126.233 117.625 126.218 117.648C126.21 117.687 126.03 118.477 126.03 118.477L125.155 122.43C124.929 123.437 124.71 124.445 124.491 125.453C124.647 125.883 124.647 125.891 124.655 125.891C124.71 125.93 124.726 125.93 124.733 125.937C126.03 125.555 126.991 125.172 127.944 124.781L128.085 124.727C128.038 124.742 127.991 124.758 128.03 124.531L128.038 124.563Z\" fill=\"#330815\"/>\\n<path d=\"M125.163 122.46C125.679 122.398 125.71 122.406 125.733 122.421C125.765 122.437 125.804 122.445 125.835 122.468C125.882 122.492 125.937 122.515 125.983 122.539C126.077 122.585 126.171 122.64 126.272 122.71C126.343 122.757 126.405 122.796 126.476 122.843C126.53 122.89 126.585 122.929 126.647 122.968C126.687 123 126.726 123.031 126.772 123.062C126.804 123.093 126.843 123.117 126.874 123.148C126.905 123.171 126.937 123.195 126.96 123.226C126.991 123.25 127.015 123.273 127.038 123.296C127.062 123.32 127.085 123.343 127.116 123.359C127.14 123.382 127.163 123.406 127.187 123.429C127.21 123.453 127.233 123.476 127.257 123.492C127.28 123.515 127.296 123.531 127.319 123.554C127.343 123.578 127.358 123.593 127.382 123.617C127.405 123.64 127.421 123.656 127.444 123.679C127.46 123.703 127.483 123.718 127.499 123.742C127.515 123.757 127.538 123.781 127.554 123.804C127.569 123.828 127.585 123.843 127.608 123.867C127.772 124.078 127.788 124.093 127.804 124.117C127.819 124.14 127.835 124.164 127.851 124.187C127.866 124.21 127.882 124.234 127.897 124.257C127.913 124.289 127.929 124.312 127.944 124.335C127.96 124.367 127.976 124.39 127.983 124.421C127.999 124.445 128.007 124.468 128.015 124.5C128.03 124.531 128.03 124.554 128.038 124.585C127.999 124.812 128.046 124.796 128.093 124.781L127.944 124.843C126.991 125.234 126.03 125.617 124.733 126C124.718 125.992 124.71 125.984 124.655 125.953C124.655 125.953 124.647 125.945 124.491 125.515C124.71 124.507 124.937 123.5 125.155 122.492L125.163 122.46ZM125.163 122.46C125.163 122.46 126.21 117.726 126.249 117.609C126.241 117.632 126.233 117.648 126.226 117.671C126.218 117.71 126.038 118.5 126.038 118.5L125.163 122.453V122.46Z\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M132.53 122.07C132.499 122.008 132.468 121.945 132.437 121.883C132.405 121.828 132.374 121.773 132.335 121.711C132.304 121.656 132.272 121.609 132.233 121.555C132.202 121.508 132.163 121.453 132.132 121.406C132.101 121.359 132.062 121.305 132.022 121.258C131.991 121.211 131.952 121.164 131.913 121.117C131.882 121.07 131.835 121.023 131.804 120.977C131.765 120.93 131.726 120.883 131.687 120.836C131.647 120.789 131.608 120.742 131.569 120.703C131.53 120.664 131.491 120.609 131.444 120.57C131.405 120.523 131.358 120.477 131.319 120.438C131.272 120.391 131.233 120.344 131.187 120.297C131.14 120.25 131.093 120.203 131.054 120.164C131.007 120.117 130.96 120.07 130.913 120.023C130.866 119.977 130.812 119.93 130.765 119.883C130.71 119.836 130.655 119.781 130.608 119.734C130.554 119.688 130.499 119.633 130.437 119.586C130.374 119.531 130.319 119.484 130.257 119.43C130.194 119.375 130.124 119.32 130.054 119.258C129.976 119.195 129.905 119.133 129.827 119.07C129.741 119 129.647 118.93 129.554 118.859C129.429 118.766 129.296 118.672 129.171 118.578C129.022 118.469 128.874 118.375 128.718 118.281C128.491 118.133 128.272 118.008 128.069 117.898C127.952 117.836 127.835 117.781 127.726 117.734C127.647 117.695 127.569 117.664 127.499 117.633C127.437 117.609 127.374 117.586 127.319 117.57C127.265 117.555 127.218 117.531 127.163 117.523C127.116 117.508 127.077 117.5 127.03 117.492C126.991 117.484 126.952 117.477 126.913 117.469C126.874 117.469 126.843 117.461 126.804 117.453C126.772 117.453 126.741 117.453 126.71 117.445C126.679 117.445 126.655 117.445 126.624 117.445C126.319 117.578 126.265 117.609 126.249 117.625V117.633C126.21 117.75 125.163 122.484 125.163 122.484C125.679 122.422 125.71 122.43 125.741 122.437C125.772 122.453 125.812 122.469 125.843 122.484C125.89 122.508 125.944 122.531 125.991 122.562C126.085 122.609 126.179 122.672 126.28 122.734C126.351 122.773 126.413 122.82 126.483 122.867C126.538 122.906 126.601 122.945 126.655 122.992C126.694 123.023 126.733 123.055 126.78 123.086C126.812 123.117 126.851 123.141 126.882 123.172C126.913 123.195 126.944 123.227 126.968 123.25C126.999 123.273 127.022 123.297 127.046 123.32C127.069 123.344 127.101 123.367 127.124 123.383C127.147 123.406 127.171 123.43 127.194 123.453C127.218 123.477 127.241 123.492 127.265 123.516C127.288 123.539 127.304 123.555 127.327 123.578C127.351 123.602 127.366 123.617 127.39 123.641C127.405 123.664 127.429 123.68 127.452 123.703C127.468 123.727 127.491 123.742 127.507 123.766C127.522 123.789 127.538 123.805 127.562 123.828C127.577 123.852 127.593 123.867 127.616 123.891C127.78 124.102 127.804 124.117 127.812 124.141C127.827 124.164 127.843 124.188 127.858 124.211C127.874 124.234 127.89 124.258 127.905 124.281C127.921 124.305 127.937 124.336 127.944 124.359C127.96 124.391 127.976 124.414 127.983 124.445C127.999 124.469 128.007 124.5 128.015 124.516C128.03 124.547 128.03 124.57 128.038 124.602C128.007 124.828 128.046 124.82 128.093 124.797L128.562 124.609C128.929 124.461 129.312 124.305 129.702 124.141L130.679 123.742C130.741 123.719 130.796 123.695 130.858 123.672L132.319 123.078L132.444 123.031C132.444 123.031 132.499 123.008 132.522 122.992C132.569 122.219 132.546 122.164 132.522 122.102H132.538L132.53 122.07Z\" fill=\"#F4EEE9\" stroke=\"#031515\" stroke-width=\"0.390625\" stroke-miterlimit=\"10\"/>\\n<path d=\"M165.898 73.3902C165.914 73.4292 165.906 73.4839 165.875 73.523L130.625 115.421C130.578 115.476 130.492 115.484 130.437 115.437C130.382 115.39 130.375 115.304 130.421 115.25L165.671 73.3511C165.718 73.2964 165.804 73.2886 165.859 73.3355C165.875 73.3511 165.89 73.3745 165.898 73.3902Z\" fill=\"#F4EEE9\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_1149_58711\" x1=\"74.9706\" y1=\"134.366\" x2=\"70.8758\" y2=\"138.591\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_1149_58711\" x1=\"67.4732\" y1=\"140.942\" x2=\"69.7994\" y2=\"137.365\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_1149_58711\" x1=\"73.5093\" y1=\"140.066\" x2=\"76.7547\" y2=\"136.159\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EEEDE2\"/>\\n<stop offset=\"1\" stop-color=\"#7D817C\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_1149_58711\">\\n<rect width=\"159.82\" height=\"162.906\" fill=\"white\" transform=\"translate(20.3125 23.4375)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ptuo7m\",\"data-framer-name\":\"Admin text\",name:\"Admin text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Nous g\\xe9rons les d\\xe9marches\"})}),className:\"framer-6ospka\",\"data-framer-name\":\"Nous g\\xe9rons les d\\xe9marches\",fonts:[\"Inter\"],name:\"Nous g\\xe9rons les d\\xe9marches\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"De la contractualisation \\xe0 la mise en ligne des annonces, en passant par la prise de photos professionnelles, nous g\\xe9rons toutes les op\\xe9rations \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"De la contractualisation \\xe0 la mise en ligne des annonces, en passant par la prise de photos professionnelles, nous g\\xe9rons toutes les op\\xe9rations \"})}),className:\"framer-1rbcd2d\",\"data-framer-name\":\"De la contractualisation \\xe0 la mise en ligne des annonces, en passant par la prise de photos professionnelles, nous g\\xe9rons toutes les op\\xe9rations\",fonts:[\"Inter\"],name:\"De la contractualisation \\xe0 la mise en ligne des annonces, en passant par la prise de photos professionnelles, nous g\\xe9rons toutes les op\\xe9rations\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v75egc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition(1859),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6zJ1NwRaXwUUImkmUNqbfB5jt4.svg\"}},T3pdjW58B:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition(2582.2),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6zJ1NwRaXwUUImkmUNqbfB5jt4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6zJ1NwRaXwUUImkmUNqbfB5jt4.svg\"},className:\"framer-xjjdxy\",\"data-framer-name\":\"frame\",name:\"frame\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tsg38u\",\"data-framer-name\":\"Services top\",name:\"Services top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lxyc5e\",\"data-styles-preset\":\"yI7hZ_OfA\",style:{\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"Profitez de vos revenus\"})}),className:\"framer-12dgh40\",\"data-framer-name\":\"Remplissez le formulaire\",fonts:[\"Inter\"],name:\"Remplissez le formulaire\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"D\\xe8s les premi\\xe8res r\\xe9servations de votre bien, les revenus g\\xe9n\\xe9r\\xe9s sont collect\\xe9s. Vous les percevez chaque mois, accompagn\\xe9s d\u2019un rapport d\\xe9taill\\xe9\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fd359661-b80b-4ad4-9a3f-5958b27f50f3, rgb(255, 255, 255))\"},children:\"D\\xe8s les premi\\xe8res r\\xe9servations de votre bien, les revenus g\\xe9n\\xe9r\\xe9s sont collect\\xe9s. Vous les percevez chaque mois, accompagn\\xe9s d\u2019un rapport d\\xe9taill\\xe9\"})}),className:\"framer-1cwcahm\",\"data-framer-name\":\"D\\xe8s les premi\\xe8res r\\xe9servations de votre bien, les revenus g\\xe9n\\xe9r\\xe9s sont collect\\xe9s. Vous les percevez chaque mois, accompagn\\xe9s d\u2019un rapport d\\xe9taill\\xe9\",fonts:[\"Inter\"],name:\"D\\xe8s les premi\\xe8res r\\xe9servations de votre bien, les revenus g\\xe9n\\xe9r\\xe9s sont collect\\xe9s. Vous les percevez chaque mois, accompagn\\xe9s d\u2019un rapport d\\xe9taill\\xe9\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{y:2099},T3pdjW58B:{y:2951.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ohgxou-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{P323yqCPx:\"https://tally.so/r/w8J9Vo\"},T3pdjW58B:{ivM1kjjp7:\"Remplir le formulaire\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"A18xyZS0S\",ivM1kjjp7:\"Obtenir une estimation\",layoutId:\"A18xyZS0S\",variant:\"gLowOQWzG\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gtmf59\",\"data-framer-name\":\"Ratings\",name:\"Ratings\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17rpuwu\",\"data-framer-name\":\"Ratings top\",name:\"Ratings top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mpuc9l\",\"data-styles-preset\":\"mGFJXVGLa\",children:\"Des voyageurs satisfaits du service\"})}),className:\"framer-130bfm8\",\"data-framer-name\":\"Des voyageurs satisfaits du service\",fonts:[\"Inter\"],name:\"Des voyageurs satisfaits du service\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"D\\xe9couvrez les t\\xe9moignages des voyageurs sur la qualit\\xe9 des prestations Manihini. Propret\\xe9 du logement, gestion de l\u2019accueil, r\\xe9ponse aux questions et recommandations personnalis\\xe9es, ils en parlent d\u2019eux m\\xeames.\"})}),className:\"framer-sky2wl\",\"data-framer-name\":\"D\\xe9couvrez les t\\xe9moignages des voyageurs sur la qualit\\xe9 des prestations Manihini. Propret\\xe9 du logement, gestion de l\u2019accueil, r\\xe9ponse aux questions et recommandations personnalis\\xe9es, ils en parlent d\u2019eux m\\xeames.\",fonts:[\"Inter\"],name:\"D\\xe9couvrez les t\\xe9moignages des voyageurs sur la qualit\\xe9 des prestations Manihini. Propret\\xe9 du logement, gestion de l\u2019accueil, r\\xe9ponse aux questions et recommandations personnalis\\xe9es, ils en parlent d\u2019eux m\\xeames.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fgbt91\",\"data-framer-name\":\"Ratings platform\",name:\"Ratings platform\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ts3nul\",\"data-framer-name\":\"Ratings platform 1\",name:\"Ratings platform 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5e93mg\",\"data-framer-name\":\"Airbnb\",name:\"Airbnb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b915r\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:129,name:\"Vector\",svg:'<svg width=\"129\" height=\"41\" viewBox=\"0 0 129 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M68.089 10.219C68.089 11.6604 66.9278 12.8216 65.4864 12.8216C64.0449 12.8216 62.8838 11.6604 62.8838 10.219C62.8838 8.77755 64.0049 7.61639 65.4864 7.61639C66.9678 7.65643 68.089 8.81759 68.089 10.219ZM57.3582 15.4642C57.3582 15.7045 57.3582 16.1049 57.3582 16.1049C57.3582 16.1049 56.117 14.5033 53.4744 14.5033C49.11 14.5033 45.7066 17.8266 45.7066 22.4312C45.7066 26.9958 49.07 30.3591 53.4744 30.3591C56.157 30.3591 57.3582 28.7175 57.3582 28.7175V29.3982C57.3582 29.7185 57.5985 29.9587 57.9188 29.9587H61.162V14.9037C61.162 14.9037 58.1991 14.9037 57.9188 14.9037C57.5985 14.9037 57.3582 15.184 57.3582 15.4642ZM57.3582 25.1139C56.7576 25.9948 55.5564 26.7555 54.115 26.7555C51.5524 26.7555 49.5905 25.1539 49.5905 22.4312C49.5905 19.7085 51.5524 18.1069 54.115 18.1069C55.5164 18.1069 56.7977 18.9077 57.3582 19.7485V25.1139ZM63.5644 14.9037H67.4083V29.9587H63.5644V14.9037ZM120.982 14.5033C118.339 14.5033 117.098 16.1049 117.098 16.1049V7.65643H113.254V29.9587C113.254 29.9587 116.217 29.9587 116.497 29.9587C116.818 29.9587 117.058 29.6785 117.058 29.3982V28.7175C117.058 28.7175 118.299 30.3591 120.942 30.3591C125.306 30.3591 128.71 26.9958 128.71 22.4312C128.71 17.8666 125.306 14.5033 120.982 14.5033ZM120.341 26.7155C118.86 26.7155 117.699 25.9547 117.098 25.0739V19.7085C117.699 18.9077 118.98 18.0668 120.341 18.0668C122.904 18.0668 124.866 19.6684 124.866 22.3912C124.866 25.1139 122.904 26.7155 120.341 26.7155ZM111.252 21.0298V29.9988H107.408V21.4702C107.408 18.9878 106.607 17.9868 104.445 17.9868C103.284 17.9868 102.083 18.5874 101.322 19.4682V29.9587H97.4784V14.9037H100.521C100.842 14.9037 101.082 15.184 101.082 15.4642V16.1049C102.203 14.9437 103.685 14.5033 105.166 14.5033C106.848 14.5033 108.249 14.9838 109.37 15.9447C110.732 17.0658 111.252 18.5073 111.252 21.0298ZM88.149 14.5033C85.5064 14.5033 84.2651 16.1049 84.2651 16.1049V7.65643H80.4213V29.9587C80.4213 29.9587 83.3843 29.9587 83.6646 29.9587C83.9849 29.9587 84.2251 29.6785 84.2251 29.3982V28.7175C84.2251 28.7175 85.4663 30.3591 88.109 30.3591C92.4734 30.3591 95.8768 26.9958 95.8768 22.4312C95.9168 17.8666 92.5134 14.5033 88.149 14.5033ZM87.5084 26.7155C86.0269 26.7155 84.8657 25.9547 84.2651 25.0739V19.7085C84.8657 18.9077 86.147 18.0668 87.5084 18.0668C90.071 18.0668 92.0329 19.6684 92.0329 22.3912C92.0329 25.1139 90.071 26.7155 87.5084 26.7155ZM77.098 14.5033C78.2591 14.5033 78.8597 14.7035 78.8597 14.7035V18.267C78.8597 18.267 75.6565 17.186 73.6545 19.4682V29.9988H69.8107V14.9037C69.8107 14.9037 72.7737 14.9037 73.0539 14.9037C73.3743 14.9037 73.6145 15.184 73.6145 15.4642V16.1049C74.3352 15.264 75.8968 14.5033 77.098 14.5033ZM37.1781 28.5974C36.9779 28.1169 36.7777 27.5964 36.5775 27.1559C36.2571 26.4352 35.9368 25.7545 35.6565 25.1139L35.6165 25.0739C32.8537 19.0678 29.8908 12.9818 26.7676 6.97575L26.6475 6.73551C26.3272 6.13491 26.0069 5.49427 25.6866 4.85363C25.2862 4.13291 24.8858 3.37215 24.2451 2.65143C22.9638 1.04983 21.122 0.168945 19.16 0.168945C17.158 0.168945 15.3562 1.04983 14.0349 2.57135C13.4343 3.29207 12.9939 4.05283 12.5935 4.77355C12.2732 5.41419 11.9528 6.05483 11.6325 6.65543L11.5124 6.89567C8.42931 12.9017 5.42631 18.9878 2.66354 24.9938L2.6235 25.0739C2.34322 25.7145 2.0229 26.3952 1.70258 27.1159C1.50238 27.5563 1.30218 28.0368 1.10198 28.5573C0.581463 30.0388 0.421302 31.4402 0.621503 32.8817C1.06194 35.8847 3.06395 38.4072 5.82671 39.5283C6.86775 39.9687 7.94883 40.1689 9.06995 40.1689C9.39027 40.1689 9.79067 40.1289 10.111 40.0889C11.4323 39.9287 12.7937 39.4883 14.115 38.7275C15.7566 37.8066 17.3182 36.4853 19.08 34.5633C20.8417 36.4853 22.4433 37.8066 24.0449 38.7275C25.3662 39.4883 26.7276 39.9287 28.0489 40.0889C28.3692 40.1289 28.7697 40.1689 29.09 40.1689C30.2111 40.1689 31.3322 39.9687 32.3332 39.5283C35.136 38.4072 37.098 35.8446 37.5384 32.8817C37.8587 31.4803 37.6986 30.0789 37.1781 28.5974ZM19.12 30.6795C16.9578 27.9567 15.5564 25.3942 15.076 23.232C14.8758 22.3111 14.8357 21.5103 14.9558 20.7896C15.0359 20.1489 15.2762 19.5884 15.5965 19.1079C16.3572 18.0268 17.6385 17.3461 19.12 17.3461C20.6015 17.3461 21.9228 17.9868 22.6435 19.1079C22.9638 19.5884 23.2041 20.1489 23.2842 20.7896C23.4043 21.5103 23.3642 22.3511 23.164 23.232C22.6836 25.3541 21.2822 27.9167 19.12 30.6795ZM35.096 32.5613C34.8157 34.6434 33.4143 36.4452 31.4523 37.246C30.4914 37.6464 29.4503 37.7665 28.4093 37.6464C27.4083 37.5263 26.4073 37.206 25.3662 36.6054C23.9248 35.8046 22.4834 34.5633 20.8017 32.7215C23.4443 29.4783 25.0459 26.5153 25.6465 23.8727C25.9268 22.6314 25.9668 21.5103 25.8467 20.4692C25.6866 19.4682 25.3262 18.5473 24.7656 17.7465C23.5244 15.9447 21.4423 14.9037 19.12 14.9037C16.7977 14.9037 14.7156 15.9848 13.4744 17.7465C12.9138 18.5473 12.5534 19.4682 12.3933 20.4692C12.2331 21.5103 12.2732 22.6714 12.5935 23.8727C13.1941 26.5153 14.8357 29.5183 17.4383 32.7615C15.7967 34.6034 14.3152 35.8446 12.8738 36.6454C11.8327 37.246 10.8317 37.5663 9.83071 37.6865C8.74963 37.8066 7.70859 37.6464 6.78767 37.2861C4.82571 36.4853 3.42431 34.6835 3.14403 32.6014C3.02391 31.6004 3.10399 30.5994 3.50439 29.4783C3.62451 29.0779 3.82471 28.6775 4.02491 28.197C4.30519 27.5563 4.62551 26.8757 4.94583 26.195L4.98587 26.1149C7.74863 20.1489 10.7116 14.0628 13.7947 8.13691L13.9148 7.89667C14.2351 7.29607 14.5554 6.65543 14.8758 6.05483C15.1961 5.41419 15.5564 4.81359 15.9969 4.29307C16.8377 3.33211 17.9588 2.81159 19.2001 2.81159C20.4413 2.81159 21.5624 3.33211 22.4033 4.29307C22.8437 4.81359 23.2041 5.41419 23.5244 6.05483C23.8447 6.65543 24.165 7.29607 24.4854 7.89667L24.6055 8.13691C27.6485 14.1029 30.6115 20.189 33.3743 26.1549V26.195C33.6946 26.8356 33.9749 27.5563 34.2952 28.197C34.4954 28.6775 34.6956 29.0779 34.8157 29.4783C35.136 30.5193 35.2561 31.5203 35.096 32.5613Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kvwt3t\",\"data-framer-name\":\"star_rating\",name:\"star_rating\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lhgzei\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-64qe30\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-25lcs3\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.55 6.14395L10.025 5.44395L7.97496 1.14395C7.82496 0.843945 7.42496 0.843945 7.27496 1.14395L5.22496 5.46895L0.72496 6.14395C0.39996 6.19395 0.27496 6.61895 0.52496 6.84395L3.79996 10.2189L3.02496 14.9439C2.97496 15.2689 3.29996 15.5439 3.59996 15.3439L7.67496 13.1189L11.725 15.3439C12 15.4939 12.35 15.2439 12.275 14.9439L11.5 10.2189L14.775 6.84395C14.975 6.61895 14.875 6.19395 14.55 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bp15t2\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vjsf9c\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hbaf4z\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.55 6.14395L10.025 5.44395L7.97496 1.14395C7.82496 0.843945 7.42496 0.843945 7.27496 1.14395L5.22496 5.46895L0.72496 6.14395C0.39996 6.19395 0.27496 6.61895 0.52496 6.84395L3.79996 10.2189L3.02496 14.9439C2.97496 15.2689 3.29996 15.5439 3.59996 15.3439L7.67496 13.1189L11.725 15.3439C12 15.4939 12.35 15.2439 12.275 14.9439L11.5 10.2189L14.775 6.84395C14.975 6.61895 14.875 6.19395 14.55 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hip7ze\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-brdhg8\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ueczi0\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.55 6.14395L10.025 5.44395L7.97496 1.14395C7.82496 0.843945 7.42496 0.843945 7.27496 1.14395L5.22496 5.46895L0.72496 6.14395C0.39996 6.19395 0.27496 6.61895 0.52496 6.84395L3.79996 10.2189L3.02496 14.9439C2.97496 15.2689 3.29996 15.5439 3.59996 15.3439L7.67496 13.1189L11.725 15.3439C12 15.4939 12.35 15.2439 12.275 14.9439L11.5 10.2189L14.775 6.84395C14.975 6.61895 14.875 6.19395 14.55 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ota7dh\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12b0ye3\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hqomog\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.55 6.14395L10.025 5.44395L7.97496 1.14395C7.82496 0.843945 7.42496 0.843945 7.27496 1.14395L5.22496 5.46895L0.72496 6.14395C0.39996 6.19395 0.27496 6.61895 0.52496 6.84395L3.79996 10.2189L3.02496 14.9439C2.97496 15.2689 3.29996 15.5439 3.59996 15.3439L7.67496 13.1189L11.725 15.3439C12 15.4939 12.35 15.2439 12.275 14.9439L11.5 10.2189L14.775 6.84395C14.975 6.61895 14.875 6.19395 14.55 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19jp9dt\",\"data-framer-name\":\"star\",name:\"star\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qoze4v\",\"data-framer-name\":\"Rectangle 4455\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:8,name:\"Rectangle 4455\",svg:'<svg width=\"8\" height=\"15\" viewBox=\"0 0 8 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.125 4.16895L7.625 0.168945V12.1689L3.625 14.1689V9.16895L0.625 5.66895L5.125 4.16895Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qjwu6c\",\"data-framer-name\":\"web&tech-160\",name:\"web&tech-160\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uk2k95\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.6499 15.7187C3.4249 15.7187 3.1999 15.6437 3.0249 15.5187C2.6749 15.2687 2.4749 14.8187 2.5499 14.3937L3.1999 10.3687L0.399898 7.49365C0.0998976 7.19365 -0.000102386 6.74365 0.124898 6.31865C0.249898 5.91865 0.599898 5.61865 0.999897 5.56865L4.8749 4.94365L6.6249 1.26865C6.8249 0.868652 7.1999 0.618652 7.6249 0.618652C8.0499 0.618652 8.4499 0.868652 8.6249 1.26865L10.3749 4.91865L14.2249 5.51865C14.6249 5.59365 14.9749 5.86865 15.0999 6.26865C15.2499 6.69365 15.1249 7.14365 14.8249 7.44365L12.0499 10.3437L12.6999 14.3937C12.7749 14.8437 12.5999 15.2687 12.2249 15.5187C11.8749 15.7687 11.4499 15.7937 11.0749 15.5937L7.6249 13.7187L4.1749 15.5937C4.0249 15.6937 3.8249 15.7187 3.6499 15.7187ZM1.1999 6.66865C1.1999 6.66865 1.1999 6.69365 1.1999 6.71865L4.1249 9.71865C4.2999 9.89365 4.3749 10.1687 4.3499 10.4187L3.6749 14.5937C3.6749 14.5937 3.6749 14.5937 3.6749 14.6187L7.2749 12.6687C7.4999 12.5437 7.7749 12.5437 8.0249 12.6687L11.6249 14.6187C11.6249 14.6187 11.6249 14.6187 11.6249 14.5937L10.9499 10.3937C10.8999 10.1437 10.9999 9.89365 11.1749 9.69365L14.0999 6.69365C14.1249 6.66865 14.0999 6.64365 14.0999 6.64365L10.0749 6.01865C9.8249 5.96865 9.5999 5.81865 9.4999 5.56865L7.6249 1.76865L5.8249 5.59365C5.7249 5.81865 5.4999 5.99365 5.2499 6.04365L1.1999 6.66865Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"4,95/5\"})}),className:\"framer-11ql81c\",\"data-framer-name\":\"4,95/5\",fonts:[\"Inter\"],name:\"4,95/5\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yrie5k\",\"data-framer-name\":\"Ratings platform 2\",name:\"Ratings platform 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tqvp1l\",\"data-framer-name\":\"Booking.com\",name:\"Booking.com\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cuacy8\",\"data-framer-name\":\"layer1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:236,name:\"layer1\",svg:'<svg width=\"236\" height=\"41\" viewBox=\"0 0 236 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_1149_2622\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.206055 0.8806H235.014V40.7217H0.206055V0.8806Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_1149_2622)\">\\n<mask id=\"mask1_1149_2622\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.206055 40.7207H235.014V0.879623H0.206055V40.7207Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_1149_2622)\">\\n<path d=\"M92.2881 5.23956C92.2881 3.26191 93.8843 1.66233 95.8493 1.66233C97.8209 1.66233 99.4234 3.26191 99.4234 5.23956C99.4234 7.21465 97.8209 8.81592 95.8493 8.81592C93.8843 8.81592 92.2881 7.21465 92.2881 5.23956Z\" fill=\"#0D5656\"/>\\n<path d=\"M148.583 29.031C148.583 27.0526 150.178 25.4513 152.143 25.4513C154.114 25.4513 155.716 27.0526 155.716 29.031C155.716 31.0044 154.114 32.6074 152.143 32.6074C150.178 32.6074 148.583 31.0044 148.583 29.031Z\" fill=\"#0D5656\"/>\\n<path d=\"M33.7288 27.4864C30.656 27.4864 28.5205 25.0459 28.5205 21.5586C28.5205 18.0721 30.656 15.6333 33.7288 15.6333C36.8194 15.6333 38.9783 18.0721 38.9783 21.5586C38.9783 25.101 36.8643 27.4864 33.7288 27.4864ZM33.7288 10.4234C27.2278 10.4234 22.5098 15.1077 22.5098 21.5586C22.5098 28.0094 27.2278 32.6929 33.7288 32.6929C40.2543 32.6929 44.9919 28.0094 44.9919 21.5586C44.9919 15.1077 40.2543 10.4234 33.7288 10.4234Z\" fill=\"#0D5656\"/>\\n<path d=\"M85.3745 22.1174C85.1218 21.6418 84.832 21.2392 84.5234 20.9196L84.3268 20.711L84.5337 20.5127C84.8321 20.1982 85.1372 19.8252 85.4314 19.3929L91.1684 10.8644H84.2038L79.8933 17.5356C79.6493 17.8934 79.1567 18.0739 78.4192 18.0739H77.4368V5.46126C77.4368 2.93855 75.8652 2.59524 74.1674 2.59524H71.2607L71.2656 32.3667H77.4368V23.4364H78.0149C78.7183 23.4364 79.1975 23.5177 79.4171 23.9L82.8213 30.3255C83.7723 32.0692 84.72 32.3667 86.5028 32.3667H91.2321L87.7098 26.5406L85.3745 22.1174Z\" fill=\"#0D5656\"/>\\n<path d=\"M115.336 10.3776C112.197 10.3776 110.194 11.7721 109.072 12.9512L108.697 13.3301L108.565 12.8147C108.235 11.5517 107.124 10.8566 105.451 10.8566H102.686L102.703 32.3589H108.832V22.4486C108.832 21.4797 108.958 20.6388 109.214 19.8717C109.897 17.5499 111.8 16.1063 114.178 16.1063C116.091 16.1063 116.839 17.1159 116.839 19.725V29.0902C116.839 31.3171 117.869 32.3589 120.098 32.3589H123.014L123.004 18.6832C123.004 13.2496 120.353 10.3776 115.336 10.3776Z\" fill=\"#0D5656\"/>\\n<path d=\"M95.9305 10.8644H93.0254L93.0453 27.49L93.0433 32.3625H96.1442C96.1832 32.3625 96.2145 32.3667 96.2535 32.3667L97.6979 32.3625H99.1356V32.354H99.1456L99.1581 14.1289C99.1581 11.93 98.1047 10.8644 95.9305 10.8644Z\" fill=\"#0D5656\"/>\\n<path d=\"M57.8037 27.4864C54.731 27.4864 52.5914 25.0459 52.5914 21.5586C52.5914 18.0721 54.731 15.6333 57.8037 15.6333C60.8877 15.6333 63.0526 18.0721 63.0526 21.5586C63.0526 25.101 60.9394 27.4864 57.8037 27.4864ZM57.8037 10.4234C51.2961 10.4234 46.5771 15.1077 46.5771 21.5586C46.5771 28.0094 51.2961 32.6929 57.8037 32.6929C64.3224 32.6929 69.0678 28.0094 69.0678 21.5586C69.0678 15.1077 64.3224 10.4234 57.8037 10.4234Z\" fill=\"#0D5656\"/>\\n</g>\\n</g>\\n<mask id=\"mask2_1149_2622\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.206055 0.8806H235.014V40.7217H0.206055V0.8806Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_1149_2622)\">\\n<mask id=\"mask3_1149_2622\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"1\" width=\"235\" height=\"40\">\\n<path d=\"M0.206055 1.66137H234.964V40.6675H0.206055V1.66137Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask3_1149_2622)\">\\n<mask id=\"mask4_1149_2622\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.206055 40.7202H235.014V0.879135H0.206055V40.7202Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask4_1149_2622)\">\\n<path d=\"M189.183 27.485C186.112 27.485 183.971 25.0445 183.971 21.5571C183.971 18.0706 186.112 15.6318 189.183 15.6318C192.268 15.6318 194.434 18.0706 194.434 21.5571C194.434 25.0996 192.319 27.485 189.183 27.485ZM189.183 10.422C182.677 10.422 177.958 15.1062 177.958 21.5571C177.958 28.008 182.677 32.6914 189.183 32.6914C195.703 32.6914 200.447 28.008 200.447 21.5571C200.447 15.1062 195.703 10.422 189.183 10.422Z\" fill=\"#0D5656\"/>\\n<path d=\"M135.927 26.5427C132.576 26.5427 131.384 23.6191 131.384 20.8793C131.384 19.6723 131.689 15.7382 135.605 15.7382C137.551 15.7382 140.145 16.2959 140.145 21.082C140.145 25.5959 137.85 26.5427 135.927 26.5427ZM143.328 10.8089C142.164 10.8089 141.269 11.2726 140.821 12.1194L140.651 12.4483L140.367 12.2016C139.378 11.3455 137.604 10.33 134.724 10.33C128.992 10.33 125.134 14.6345 125.134 21.0404C125.134 27.4387 129.126 31.9102 134.839 31.9102C136.79 31.9102 138.332 31.455 139.554 30.5294L140.027 30.1742V30.7718C140.027 33.6438 138.17 35.2281 134.803 35.2281C133.167 35.2281 131.678 34.8297 130.682 34.4685C129.381 34.0761 128.619 34.4007 128.092 35.7053L127.606 36.909L126.917 38.6671L127.344 38.8943C129.498 40.0378 132.303 40.7202 134.839 40.7202C140.059 40.7202 146.154 38.0483 146.154 30.5294L146.176 10.8089H143.328Z\" fill=\"#0D5656\"/>\\n</g>\\n</g>\\n</g>\\n<mask id=\"mask5_1149_2622\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.206055 0.8806H235.014V40.7217H0.206055V0.8806Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask5_1149_2622)\">\\n<mask id=\"mask6_1149_2622\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"236\" height=\"41\">\\n<path d=\"M0.206055 40.7207H235.014V0.879623H0.206055V40.7207Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask6_1149_2622)\">\\n<path d=\"M10.9028 27.2395L5.91349 27.2346V21.2694C5.91349 19.9945 6.40773 19.3316 7.50027 19.1791H10.9028C13.3314 19.1791 14.9006 20.7108 14.9023 23.1886C14.9006 25.7316 13.3704 27.2379 10.9028 27.2395ZM5.91349 11.148V9.57806C5.91349 8.20398 6.49491 7.55042 7.77082 7.46648H10.3238C12.5134 7.46648 13.8248 8.777 13.8248 10.9691C13.8248 12.6407 12.9271 14.5913 10.4043 14.5913H5.91349V11.148ZM17.275 17.1012L16.3729 16.5943L17.1603 15.9213C18.0759 15.1338 19.6111 13.3638 19.6111 10.3054C19.6111 5.62616 15.9814 2.60587 10.3637 2.60587H3.95272L3.2228 2.60417C1.55728 2.66522 0.22469 4.0198 0.206055 5.69568V32.2561H3.14819C3.15564 32.2578 3.15814 32.2561 3.16062 32.2578L10.4903 32.2561C16.7352 32.2561 20.7659 28.8569 20.7659 23.5919C20.7659 20.7573 19.4645 18.3338 17.275 17.1012Z\" fill=\"#0D5656\"/>\\n<path d=\"M227.825 10.4505C225.282 10.4505 222.824 11.6415 221.245 13.6387L220.801 14.2015L220.453 13.5717C219.318 11.5017 217.364 10.4505 214.647 10.4505C211.798 10.4505 209.887 12.0399 208.999 12.9851L208.419 13.6141L208.195 12.7867C207.871 11.5958 206.811 10.9396 205.205 10.9396H202.628L202.604 32.3589H208.457V22.9038C208.457 22.0757 208.56 21.2559 208.767 20.3989C209.327 18.1144 210.862 15.657 213.443 15.9028C215.035 16.0554 215.812 17.2854 215.812 19.6615V32.3589H221.707V22.9038C221.707 21.8688 221.804 21.094 222.037 20.3167C222.511 18.1356 224.114 15.8994 226.605 15.8994C228.407 15.8994 229.073 16.9201 229.073 19.6615V29.2275C229.073 31.3917 230.039 32.3589 232.201 32.3589H234.956L234.961 18.6849C234.961 13.2225 232.558 10.4505 227.825 10.4505Z\" fill=\"#0D5656\"/>\\n<path d=\"M174.567 24.9186C174.55 24.9398 172.031 27.5956 168.715 27.5956C165.694 27.5956 162.641 25.7417 162.641 21.6034C162.641 18.0304 165.008 15.5331 168.396 15.5331C169.496 15.5331 170.747 15.9273 170.943 16.5902L170.972 16.7021C171.423 18.205 172.788 18.2855 173.057 18.2855L176.264 18.289V15.4857C176.264 11.7882 171.561 10.4471 168.396 10.4471C161.628 10.4471 156.717 15.1594 156.717 21.6484C156.717 28.1349 161.574 32.8403 168.272 32.8403C174.083 32.8403 177.243 29.0207 177.272 28.9825L177.441 28.7757L174.901 24.5627L174.567 24.9186Z\" fill=\"#0D5656\"/>\\n</g>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ygmvk\",\"data-framer-name\":\"star_rating\",name:\"star_rating\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l53ona\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qzq1lm\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-am04bf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.5089 6.14395L9.98394 5.44395L7.93394 1.14395C7.78394 0.843945 7.38394 0.843945 7.23394 1.14395L5.18394 5.46895L0.683945 6.14395C0.358945 6.19395 0.233945 6.61895 0.483945 6.84395L3.75894 10.2189L2.98394 14.9439C2.93394 15.2689 3.25894 15.5439 3.55894 15.3439L7.63394 13.1189L11.6839 15.3439C11.9589 15.4939 12.3089 15.2439 12.2339 14.9439L11.4589 10.2189L14.7339 6.84395C14.9339 6.61895 14.8339 6.19395 14.5089 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m6d0gc\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ryi2s0\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9g9iqd\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.5089 6.14395L9.98394 5.44395L7.93394 1.14395C7.78394 0.843945 7.38394 0.843945 7.23394 1.14395L5.18394 5.46895L0.683945 6.14395C0.358945 6.19395 0.233945 6.61895 0.483945 6.84395L3.75894 10.2189L2.98394 14.9439C2.93394 15.2689 3.25894 15.5439 3.55894 15.3439L7.63394 13.1189L11.6839 15.3439C11.9589 15.4939 12.3089 15.2439 12.2339 14.9439L11.4589 10.2189L14.7339 6.84395C14.9339 6.61895 14.8339 6.19395 14.5089 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zhrlqj\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kiwlo7\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ycnrub\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.5089 6.14395L9.98394 5.44395L7.93394 1.14395C7.78394 0.843945 7.38394 0.843945 7.23394 1.14395L5.18394 5.46895L0.683945 6.14395C0.358945 6.19395 0.233945 6.61895 0.483945 6.84395L3.75894 10.2189L2.98394 14.9439C2.93394 15.2689 3.25894 15.5439 3.55894 15.3439L7.63394 13.1189L11.6839 15.3439C11.9589 15.4939 12.3089 15.2439 12.2339 14.9439L11.4589 10.2189L14.7339 6.84395C14.9339 6.61895 14.8339 6.19395 14.5089 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1es7jaq\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i7t65z\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1umliuw\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"16\" viewBox=\"0 0 15 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.5089 6.14395L9.98394 5.44395L7.93394 1.14395C7.78394 0.843945 7.38394 0.843945 7.23394 1.14395L5.18394 5.46895L0.683945 6.14395C0.358945 6.19395 0.233945 6.61895 0.483945 6.84395L3.75894 10.2189L2.98394 14.9439C2.93394 15.2689 3.25894 15.5439 3.55894 15.3439L7.63394 13.1189L11.6839 15.3439C11.9589 15.4939 12.3089 15.2439 12.2339 14.9439L11.4589 10.2189L14.7339 6.84395C14.9339 6.61895 14.8339 6.19395 14.5089 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jkh60f\",\"data-framer-name\":\"star\",name:\"star\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ixtkzu\",\"data-framer-name\":\"Rectangle 4455\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:8,name:\"Rectangle 4455\",svg:'<svg width=\"8\" height=\"15\" viewBox=\"0 0 8 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.08398 4.16895L7.58398 0.168945V12.1689L3.58398 14.1689V9.16895L0.583984 5.66895L5.08398 4.16895Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yn06hf\",\"data-framer-name\":\"web&tech-160\",name:\"web&tech-160\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ud9djq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.60888 15.7187C3.38388 15.7187 3.15888 15.6437 2.98388 15.5187C2.63388 15.2687 2.43388 14.8187 2.50888 14.3937L3.15888 10.3687L0.358882 7.49365C0.0588819 7.19365 -0.041118 6.74365 0.083882 6.31865C0.208882 5.91865 0.558882 5.61865 0.958882 5.56865L4.83388 4.94365L6.58388 1.26865C6.78388 0.868652 7.15888 0.618652 7.58388 0.618652C8.00888 0.618652 8.40888 0.868652 8.58388 1.26865L10.3339 4.91865L14.1839 5.51865C14.5839 5.59365 14.9339 5.86865 15.0589 6.26865C15.2089 6.69365 15.0839 7.14365 14.7839 7.44365L12.0089 10.3437L12.6589 14.3937C12.7339 14.8437 12.5589 15.2687 12.1839 15.5187C11.8339 15.7687 11.4089 15.7937 11.0339 15.5937L7.58388 13.7187L4.13388 15.5937C3.98388 15.6937 3.78388 15.7187 3.60888 15.7187ZM1.15888 6.66865C1.15888 6.66865 1.15888 6.69365 1.15888 6.71865L4.08388 9.71865C4.25888 9.89365 4.33388 10.1687 4.30888 10.4187L3.63388 14.5937C3.63388 14.5937 3.63388 14.5937 3.63388 14.6187L7.23388 12.6687C7.45888 12.5437 7.73388 12.5437 7.98388 12.6687L11.5839 14.6187C11.5839 14.6187 11.5839 14.6187 11.5839 14.5937L10.9089 10.3937C10.8589 10.1437 10.9589 9.89365 11.1339 9.69365L14.0589 6.69365C14.0839 6.66865 14.0589 6.64365 14.0589 6.64365L10.0339 6.01865C9.78388 5.96865 9.55888 5.81865 9.45888 5.56865L7.58388 1.76865L5.78388 5.59365C5.68388 5.81865 5.45888 5.99365 5.20888 6.04365L1.15888 6.66865Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"9,8/10\"})}),className:\"framer-1dhx1xy\",\"data-framer-name\":\"9,8/10\",fonts:[\"Inter\"],name:\"9,8/10\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1orpgtz\",\"data-framer-name\":\"Ratings platform 3\",name:\"Ratings platform 3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1scpehk\",\"data-framer-name\":\"Vrbo logo\",name:\"Vrbo logo\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pjosdu\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:21,name:\"Vector\",svg:'<svg width=\"21\" height=\"28\" viewBox=\"0 0 21 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.45898 0.0981445V0.158144C17.189 0.808144 19.459 6.29814 19.349 9.48814C19.169 18.7281 12.009 26.1681 0.458984 27.0781V27.1281C13.149 26.3681 20.579 19.8081 20.739 10.4081C20.719 6.94814 18.199 0.608145 9.45898 0.0981445Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tnp37s\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:19,name:\"Vector\",svg:'<svg width=\"19\" height=\"27\" viewBox=\"0 0 19 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.458984 26.97C5.17179 26.6542 9.59604 24.5871 12.8621 21.1748C16.1281 17.7626 17.9997 13.2521 18.109 8.53002C18.109 5.61002 16.109 0.81002 9.38898 0.27002V0.320019C14.949 0.910019 16.909 4.96002 16.869 7.61002C16.709 16.52 9.79898 25.96 0.518982 26.91L0.458984 26.97Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1twsvj0\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"27\" viewBox=\"0 0 16 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.539062 26.8002C8.74906 25.9502 15.3591 15.3902 15.5391 6.64017C15.5391 4.27017 14.0291 0.960176 9.33906 0.430176V0.490175C13.0291 1.05018 14.3391 3.62018 14.3391 5.73018C14.1891 14.3002 7.74906 25.8002 0.679062 26.7302L0.539062 26.8002Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w267kz\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"27\" viewBox=\"0 0 18 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.64884 26.57V26.64C11.6488 25.77 17.8388 13.16 17.9888 4.76002C18.0302 3.71869 17.6636 2.70232 16.967 1.92723C16.2703 1.15214 15.2987 0.679541 14.2588 0.610019V0.670019C14.9916 0.793156 15.6502 1.19009 16.1014 1.78049C16.5525 2.37089 16.7625 3.11064 16.6888 3.85002C16.4588 12.06 10.4588 25.68 5.64884 26.57ZM1.87883 23.31C2.01883 15.41 8.24883 1.53002 12.8788 0.590019V0.52002C7.07883 1.38002 0.668831 14.21 0.518831 22.35C0.479486 22.8743 0.545756 23.4012 0.713716 23.8995C0.881676 24.3977 1.14791 24.8572 1.49665 25.2507C1.84539 25.6442 2.26955 25.9637 2.74401 26.1904C3.21847 26.417 3.73358 26.5461 4.25884 26.57V26.51C3.89133 26.4587 3.53769 26.3348 3.21847 26.1456C2.89925 25.9564 2.62083 25.7057 2.39938 25.4079C2.17793 25.1102 2.01786 24.7714 1.9285 24.4112C1.83914 24.0511 1.82225 23.6768 1.87883 23.31Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10j9vdo\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"27\" viewBox=\"0 0 15 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.32977 21.4277C1.47977 13.0777 8.18977 1.35768 15.0098 0.427676V0.367676C7.00977 1.21768 0.179766 11.9377 0.00976562 20.4677C0.00976562 22.8477 1.56976 26.3677 6.20976 26.7477V26.6877C2.58976 26.2177 1.28977 23.5377 1.32977 21.4277Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oorqpy\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:19,name:\"Vector\",svg:'<svg width=\"19\" height=\"27\" viewBox=\"0 0 19 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.77898 19.548C1.92898 10.798 9.05898 1.19799 18.089 0.247988V0.187988C13.415 0.580875 9.04508 2.66587 5.79913 6.05174C2.55319 9.43761 0.654374 13.8916 0.458984 18.578C0.458984 21.498 2.45899 26.458 9.18899 26.898V26.838C3.38899 26.318 1.73898 22.168 1.77898 19.548Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1i70z5q\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:45,name:\"Vector\",svg:'<svg width=\"45\" height=\"28\" viewBox=\"0 0 45 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.2281 17.6678C25.3881 8.47783 33.3081 0.957833 44.1681 0.0878325V0.027832C32.0081 0.777832 24.0481 7.33784 23.8881 16.6978C23.8181 20.1578 26.3481 26.5578 35.0781 27.0578C27.4581 26.4578 25.1781 20.8578 25.2281 17.6678ZM19.0481 0.227833C14.8581 -0.342167 9.79812 2.11783 6.94812 6.43783L6.99812 6.50783C9.69812 2.62783 14.2581 0.317832 17.9981 0.837833C20.5181 1.17783 22.2481 3.08783 21.8981 6.83783C21.0081 16.3878 12.9581 27.1178 0.078125 27.0878V27.1578C5.82358 27.3788 11.4377 25.4045 15.7802 21.6359C20.1227 17.8673 22.8678 12.5872 23.4581 6.86783C23.8081 2.72783 21.8881 0.617833 19.0481 0.227833Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-johxdt\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:21,name:\"Vector\",svg:'<svg width=\"21\" height=\"26\" viewBox=\"0 0 21 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.3891 5.79823C20.6991 2.50823 19.2291 0.79823 16.9191 0.48823C13.5891 0.0382302 9.53913 2.06823 7.08913 5.63823L7.13914 5.69823C9.38914 2.61823 12.9891 0.698231 15.8791 1.09823C17.8791 1.36823 19.1991 2.86823 18.8791 5.76823C18.1091 13.9882 10.2691 25.2882 0.119141 25.9182C11.4591 25.9082 19.5491 14.7582 20.3891 5.79823Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11lmlwg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"25\" viewBox=\"0 0 18 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.259766 24.7196V24.7796C9.70977 23.6496 16.7098 12.1696 17.4598 4.72956C17.6798 2.28956 16.5598 0.989561 14.8898 0.729561C12.3698 0.379561 9.22976 2.07956 7.28976 4.79956V4.85956C9.13976 2.46956 11.7198 1.04956 13.7598 1.32956C15.1998 1.52956 16.0798 2.61956 15.8898 4.60956C15.2598 11.3896 8.82977 22.9296 0.259766 24.7196Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4dsbf2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"40\" viewBox=\"0 0 18 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.36946 39.4885V39.5785C10.3695 37.6985 16.8595 25.5785 17.3695 19.5785C17.5095 18.0485 16.8295 17.1485 15.7095 16.9985C14.0395 16.7685 11.9195 17.9985 10.3695 19.9985V20.0585C11.6595 18.5185 13.3695 17.4285 14.6195 17.5985C15.4295 17.7085 15.9595 18.4185 15.8495 19.5485C15.4595 24.7885 9.45946 36.8885 3.36946 39.4885ZM2.26945 32.6785C1.52539 34.3103 0.994366 36.0311 0.689453 37.7985C0.699911 38.1324 0.797758 38.4577 0.973228 38.7419C1.1487 39.0262 1.39566 39.2595 1.68945 39.4185C1.78582 39.467 1.88619 39.5071 1.98945 39.5385V39.4485C1.84754 39.3108 1.74214 39.14 1.68278 38.9515C1.62342 38.7629 1.61196 38.5626 1.64945 38.3685C2.06281 36.5747 2.6697 34.8312 3.45945 33.1685L16.4595 0.168457L14.6295 0.528457C14.7295 0.948457 11.2195 9.57846 11.0795 10.0085L2.26945 32.6785Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mic7p9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"40\" viewBox=\"0 0 15 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.87842 31.6472C1.21758 33.2306 0.741119 34.8849 0.45842 36.5772C0.29842 38.3872 1.87842 39.3672 3.99842 39.6872V39.6272C2.54842 39.3672 1.42842 38.6272 1.55842 37.2272C1.89148 35.5126 2.40085 33.8371 3.07842 32.2272L11.7384 9.94721C11.9484 9.35721 15.2384 1.39721 14.7384 0.887207L12.9584 1.24721V1.34721C13.0284 3.28721 10.7784 8.59721 10.3184 9.84721L1.87842 31.6472Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yxnlz2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:14,name:\"Vector\",svg:'<svg width=\"14\" height=\"39\" viewBox=\"0 0 14 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.61827 8.73986L1.45827 29.6299C0.806059 31.1023 0.34239 32.6512 0.0782676 34.2399C-0.141732 36.7899 1.94827 38.5499 5.85827 38.8199C5.05254 38.731 4.26029 38.5463 3.49827 38.2699C2.78366 38.0964 2.15766 37.6665 1.73918 37.0618C1.32069 36.4571 1.13888 35.7198 1.22827 34.9899C1.51062 33.3283 2.00115 31.7089 2.68827 30.1699L11.0083 8.78986C11.4283 7.65986 13.8083 2.25986 13.2383 0.609863L11.5183 0.949863V1.04986C12.4583 2.33986 10.1683 7.33986 9.61827 8.73986Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ckdpb1\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:14,name:\"Vector\",svg:'<svg width=\"14\" height=\"38\" viewBox=\"0 0 14 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.6598 8.16814L2.11981 27.6081C1.49747 28.9882 1.07328 30.4493 0.859809 31.9481C0.589809 35.1381 3.35981 37.7481 8.85981 37.9481C4.24981 37.6881 1.73981 35.5081 1.98981 32.6281C2.22114 31.0875 2.66538 29.5865 3.30981 28.1681L11.0998 8.16814C11.7998 6.33814 13.8698 1.84814 12.7498 0.348145L10.9798 0.708144V0.808145C12.1798 2.45814 10.4598 6.16814 9.6598 8.16814Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ffrw4d\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:38,name:\"Vector\",svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M36.7781 37.0696C30.5681 36.7996 27.4381 33.7696 27.7781 30.2496C27.9632 28.8425 28.347 27.4688 28.9181 26.1696L36.1081 7.58955C37.0081 5.26955 38.6881 1.76955 37.3681 0.0395508L35.7381 0.379551V0.479551C37.1281 2.03955 35.8381 4.59955 34.8881 7.18955L27.7281 25.5896C27.1506 26.8564 26.776 28.2062 26.6181 29.5896C26.2781 33.4195 29.6881 36.8896 36.7581 37.0996L36.7781 37.0696ZM28.5981 13.6496C28.4681 11.1796 27.0081 10.0496 25.2381 10.0496C22.0181 10.0496 19.2381 12.5895 17.4881 16.0495V14.8296C17.3481 12.1396 15.4881 10.0496 12.1781 10.0496C5.17813 10.0496 1.72812 14.6596 0.578125 19.8796H0.638124C1.85812 14.9896 5.11812 10.5796 11.4081 10.5796C12.0104 10.5259 12.6172 10.5969 13.1908 10.7882C13.7643 10.9795 14.2923 11.2869 14.7418 11.6913C15.1913 12.0958 15.5525 12.5885 15.8031 13.1387C16.0537 13.689 16.1881 14.285 16.1981 14.8896C16.3681 18.0596 15.3181 20.5296 14.1981 23.3796L9.09812 36.7096H10.4581L15.5581 23.4896C15.8981 22.5796 16.2181 21.7295 16.5081 20.9095C17.5081 18.8095 18.7581 16.6595 19.4081 16.6595C19.8881 16.6595 20.0381 17.0696 20.0681 17.4396C20.0738 19.4297 19.5528 21.3858 18.5581 23.1096L18.6181 23.1696C20.1694 21.4195 21.0947 19.2032 21.2481 16.8696C21.2481 16.1796 20.9081 15.6896 20.2481 15.6896C19.1581 15.6896 17.7681 17.9296 16.7481 20.2995C16.8681 19.9195 16.9681 19.5396 17.0681 19.1696C18.1581 16.7996 19.6681 14.7796 21.0681 14.7796C21.9281 14.7796 22.4481 15.3695 22.4981 16.3396C22.6181 18.6996 20.4981 22.1396 18.7181 23.2696L18.7781 23.3296C21.1981 22.2496 23.8581 18.6996 23.7081 15.7996C23.6381 14.5096 22.9581 13.7996 21.8781 13.7996C20.0981 13.7996 18.3781 15.8696 17.1881 18.4296C17.1881 18.2295 17.2681 18.0295 17.2981 17.8195C18.6281 15.0695 20.5781 12.8896 22.7481 12.8896C23.9281 12.8896 24.8281 13.6896 24.9081 15.2496C25.0981 18.6896 21.8481 22.3496 18.9081 23.4196L18.9681 23.4795C22.5781 22.5595 26.3481 18.6896 26.1381 14.7096C26.0381 12.8296 24.9681 11.9196 23.5781 11.9196C21.0781 11.9296 18.8481 14.1696 17.4581 17.1696V16.6796C19.0481 13.4595 21.5581 11.0196 24.4581 11.0196C26.0181 11.0196 27.3081 12.0196 27.4581 14.1996C27.6981 18.7696 23.4581 22.6396 19.1381 23.6096L19.1981 23.6595C24.1981 22.8995 28.8681 18.7596 28.5981 13.6496Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ap19qw\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:15,name:\"Vector\",svg:'<svg width=\"15\" height=\"26\" viewBox=\"0 0 15 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.9483 3.98965C14.9388 3.44581 14.8186 2.90961 14.5949 2.41382C14.3711 1.91804 14.0486 1.47309 13.6471 1.10618C13.2456 0.739277 12.7734 0.458118 12.2595 0.279897C11.7456 0.101675 11.2008 0.030136 10.6583 0.0696525C5.07828 0.0696525 1.86828 4.21965 0.738281 8.87965H0.808281C2.04828 4.53965 4.88828 0.609652 9.87828 0.609652C10.3571 0.565174 10.84 0.621009 11.2961 0.773596C11.7521 0.926182 12.1714 1.17217 12.5271 1.49586C12.8828 1.81954 13.1671 2.21382 13.3618 2.65354C13.5566 3.09325 13.6576 3.56873 13.6583 4.04965C13.7983 6.67965 12.5583 9.57965 11.5683 12.2197L6.30828 25.7097H7.70828L12.8583 12.3297C13.9583 9.57965 15.0983 6.83965 14.9483 3.98965Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-198bah9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:13,name:\"Vector\",svg:'<svg width=\"13\" height=\"25\" viewBox=\"0 0 13 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.459 3.09952C12.4608 2.68085 12.375 2.26643 12.207 1.88291C12.0391 1.4994 11.7927 1.15529 11.4837 0.872723C11.1748 0.590153 10.8101 0.375377 10.4132 0.242213C10.0163 0.109048 9.59584 0.0604433 9.17899 0.0995241C4.79899 0.0995241 2.11898 3.87952 0.958984 7.88952H1.01898C2.24898 4.15952 4.76899 0.639524 8.40899 0.639524C8.75749 0.614944 9.10733 0.661957 9.43697 0.777669C9.76662 0.89338 10.0691 1.07534 10.3258 1.31235C10.5825 1.54935 10.7879 1.83639 10.9295 2.15579C11.0711 2.47518 11.1458 2.82017 11.149 3.16952C11.259 5.25952 9.81898 8.64952 8.86898 11.0195L3.45898 24.7095H4.90899L10.219 11.1095C11.159 8.63952 12.559 5.51952 12.459 3.09952Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10t1gpi\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:10,name:\"Vector\",svg:'<svg width=\"10\" height=\"24\" viewBox=\"0 0 10 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.90992 2.25845C9.91241 1.96864 9.85429 1.6815 9.73931 1.41545C9.62432 1.14941 9.45501 0.910331 9.24223 0.71355C9.02944 0.516769 8.77788 0.366629 8.50367 0.27276C8.22946 0.17889 7.93866 0.143363 7.64992 0.168454C4.64992 0.168454 2.25992 3.42845 1.11992 6.87845H1.18992C2.37992 3.79845 4.41992 0.698455 6.86992 0.698455C7.09497 0.672311 7.32302 0.695185 7.53839 0.765506C7.75377 0.835828 7.95136 0.951932 8.11763 1.10584C8.28389 1.25975 8.41487 1.44782 8.50157 1.65714C8.58828 1.86646 8.62865 2.09206 8.61992 2.31845C8.70992 3.97845 7.02992 7.74845 6.22992 9.83845L0.669922 23.7085H2.05992L7.51992 9.94845C8.45992 7.74846 10.0099 4.16845 9.90992 2.25845Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-t1r6c9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:20,name:\"Vector\",svg:'<svg width=\"20\" height=\"35\" viewBox=\"0 0 20 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.3896 13.4186C19.4047 13.2515 19.3831 13.0832 19.3263 12.9253C19.2695 12.7674 19.1789 12.6239 19.0607 12.5048C18.9425 12.3857 18.7998 12.2939 18.6424 12.2358C18.485 12.1777 18.3168 12.1548 18.1496 12.1686C16.3796 12.1686 14.4696 14.9586 13.3196 17.8586H13.3896C14.5496 15.2786 16.3396 12.6986 17.3896 12.6986C17.8196 12.6986 18.0996 12.9186 18.1296 13.4586C18.1896 14.5886 16.3096 18.8286 15.5496 20.6586L9.88956 34.6586H11.2896L16.8996 20.7386C17.6896 18.7986 19.4596 14.7686 19.3896 13.4186ZM4.09956 25.2886L4.99956 23.3986L1.94956 7.83861C1.09956 3.45861 2.11956 1.54861 5.55956 0.888613V0.828613H2.37956C1.45956 1.28861 -0.490438 2.66861 0.599562 7.82861L4.09956 25.2886Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-apb6rf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:38,name:\"Vector\",svg:'<svg width=\"38\" height=\"35\" viewBox=\"0 0 38 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.299 29.0486L18.189 27.1686L14.189 7.73861C13.439 3.96861 13.759 2.00861 15.009 0.888613V0.828613H12.849C12.189 2.23861 11.989 3.64861 12.749 7.37861L17.299 29.0486ZM15.459 32.7986L16.349 30.9386L11.349 7.32861C10.469 3.65861 10.669 1.97861 11.029 0.828613H9.11898C9.09904 2.81434 9.35482 4.79322 9.87898 6.70861L15.459 32.7986ZM7.36898 0.828613H5.11898V0.888613C6.11898 2.10861 6.41898 3.59861 7.21898 6.88861L13.219 34.7186H14.569L8.56898 6.79861C8.05062 4.83425 7.64991 2.84071 7.36898 0.828613ZM2.86898 0.828613H0.458984V0.888613C2.65898 1.75861 3.73898 3.42861 4.60898 7.33861L10.539 34.7086H11.889L5.91898 7.16861C4.88898 2.38861 3.80898 1.50861 2.86898 0.828613ZM33.529 0.828613C30.689 2.48861 28.999 5.55861 25.459 13.1686L25.549 13.2186C29.639 5.55861 31.969 2.50861 37.249 0.918613V0.828613H33.529ZM25.259 13.0186L25.349 13.0786C28.709 5.16861 29.589 2.95861 30.959 0.888613V0.828613H28.239V0.908613C28.519 4.07861 27.459 6.99861 25.259 13.0186Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cc4l9z\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:103,name:\"Vector\",svg:'<svg width=\"103\" height=\"13\" viewBox=\"0 0 103 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.07899 12.8986L2.16898 12.9586C4.29898 5.86861 4.98898 2.73861 3.10898 0.828613H0.458984V0.888613C3.45898 1.94861 4.07898 4.97861 2.07899 12.8986ZM99.459 9.92861V11.2786H99.259V9.92861H98.679V9.73861H100.059V9.92861H99.459ZM101.759 11.2786V9.96861L101.279 11.2586H101.049L100.619 9.96861V11.2786H100.429L100.489 9.73861H100.839L101.239 11.0286L101.699 9.73861H102.019L102.079 11.2786H101.759Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bcb8m\",\"data-framer-name\":\"star_rating\",name:\"star_rating\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g250dp\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-c4k5vx\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4y8aa2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.8839 6.14395L10.3589 5.44395L8.30894 1.14395C8.15894 0.843945 7.75894 0.843945 7.60894 1.14395L5.55894 5.46895L1.05894 6.14395C0.733945 6.19395 0.608945 6.61895 0.858945 6.84395L4.13394 10.2189L3.35894 14.9439C3.30894 15.2689 3.63394 15.5439 3.93394 15.3439L8.00894 13.1189L12.0589 15.3439C12.3339 15.4939 12.6839 15.2439 12.6089 14.9439L11.8339 10.2189L15.1089 6.84395C15.3089 6.61895 15.2089 6.19395 14.8839 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pk5t95\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mekvwf\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jzew78\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.8839 6.14395L10.3589 5.44395L8.30894 1.14395C8.15894 0.843945 7.75894 0.843945 7.60894 1.14395L5.55894 5.46895L1.05894 6.14395C0.733945 6.19395 0.608945 6.61895 0.858945 6.84395L4.13394 10.2189L3.35894 14.9439C3.30894 15.2689 3.63394 15.5439 3.93394 15.3439L8.00894 13.1189L12.0589 15.3439C12.3339 15.4939 12.6839 15.2439 12.6089 14.9439L11.8339 10.2189L15.1089 6.84395C15.3089 6.61895 15.2089 6.19395 14.8839 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1reen6s\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15py2tz\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rcb8e0\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.8839 6.14395L10.3589 5.44395L8.30894 1.14395C8.15894 0.843945 7.75894 0.843945 7.60894 1.14395L5.55894 5.46895L1.05894 6.14395C0.733945 6.19395 0.608945 6.61895 0.858945 6.84395L4.13394 10.2189L3.35894 14.9439C3.30894 15.2689 3.63394 15.5439 3.93394 15.3439L8.00894 13.1189L12.0589 15.3439C12.3339 15.4939 12.6839 15.2439 12.6089 14.9439L11.8339 10.2189L15.1089 6.84395C15.3089 6.61895 15.2089 6.19395 14.8839 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eu0qel\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-131kuth\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-m4k3wg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.8839 6.14395L10.3589 5.44395L8.30894 1.14395C8.15894 0.843945 7.75894 0.843945 7.60894 1.14395L5.55894 5.46895L1.05894 6.14395C0.733945 6.19395 0.608945 6.61895 0.858945 6.84395L4.13394 10.2189L3.35894 14.9439C3.30894 15.2689 3.63394 15.5439 3.93394 15.3439L8.00894 13.1189L12.0589 15.3439C12.3339 15.4939 12.6839 15.2439 12.6089 14.9439L11.8339 10.2189L15.1089 6.84395C15.3089 6.61895 15.2089 6.19395 14.8839 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6iri8n\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lrfv2h\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mkv4kp\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.8839 6.14395L10.3589 5.44395L8.30894 1.14395C8.15894 0.843945 7.75894 0.843945 7.60894 1.14395L5.55894 5.46895L1.05894 6.14395C0.733945 6.19395 0.608945 6.61895 0.858945 6.84395L4.13394 10.2189L3.35894 14.9439C3.30894 15.2689 3.63394 15.5439 3.93394 15.3439L8.00894 13.1189L12.0589 15.3439C12.3339 15.4939 12.6839 15.2439 12.6089 14.9439L11.8339 10.2189L15.1089 6.84395C15.3089 6.61895 15.2089 6.19395 14.8839 6.14395Z\" fill=\"#EFA411\"/>\\n</svg>\\n',withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"5/5\"})}),className:\"framer-euvbfs\",\"data-framer-name\":\"5/5\",fonts:[\"Inter\"],name:\"5/5\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-laxy4d-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"Ql0Wc76hJ\",layoutId:\"Ql0Wc76hJ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rgsasi\",\"data-framer-name\":\"Reviews\",name:\"Reviews\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b3ell8\",\"data-framer-name\":\"Reviews top\",name:\"Reviews top\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e42c3u\",\"data-framer-name\":\"Name + date\",name:\"Name + date\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS02MDA=\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(13, 86, 86)\"},children:\"Bertrand\"})}),className:\"framer-it337\",\"data-framer-name\":\"name\",fonts:[\"GF;Manrope Variable-600\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 115, 125)\"},children:\"T3 Punaauia\"})}),className:\"framer-muoqc8\",\"data-framer-name\":\"location\",fonts:[\"GF;Manrope Variable-regular\"],name:\"location\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8rwagx\",\"data-framer-name\":\"star_rating\",name:\"star_rating\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zhg79b\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19rw6zw\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ahmi8j\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19y2jhx\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3djh2k\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-leun9n\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vdw9fs\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-behqon\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-158ysc5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-od3hsl\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-161snwn\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-i09d9t\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j140t3\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yz1381\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-109i3ft\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\"},children:\"Nous avons pass\\xe9 un s\\xe9jour absolument fantastique dans ce magnifique logement encore plus beau en vrai que sur les photos !\"})}),className:\"framer-1vuf3ss\",\"data-framer-name\":\"Reviews texts\",fonts:[\"GF;Manrope Variable-regular\"],name:\"Reviews texts\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dsn2oi\",\"data-framer-name\":\"Reviews\",name:\"Reviews\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qw0tl5\",\"data-framer-name\":\"Reviews top\",name:\"Reviews top\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ephre7\",\"data-framer-name\":\"Name + date\",name:\"Name + date\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS02MDA=\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(13, 86, 86)\"},children:\"Arnaud\"})}),className:\"framer-17xgx8m\",\"data-framer-name\":\"name\",fonts:[\"GF;Manrope Variable-600\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 115, 125)\"},children:\"T3 Punaauia\"})}),className:\"framer-1iqopr7\",\"data-framer-name\":\"location\",fonts:[\"GF;Manrope Variable-regular\"],name:\"location\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m82m9f\",\"data-framer-name\":\"star_rating\",name:\"star_rating\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5b7p4h\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qnc2rc\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-g2v8hq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cfp6c3\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1523qg0\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l7xmac\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qorndn\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mkerwz\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2q4qk7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zii63v\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sknqk3\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-98i8zz\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ao0wr\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-va162b\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kq0c8r\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\"},children:\"Super s\\xe9jour ! Le logement est de qualit\\xe9 et la piscine de la r\\xe9sidence est un vrai plus ! L'\\xe9quipe a \\xe9t\\xe9 tr\\xe8s disponible et nous a m\\xeame conseill\\xe9 des bons plans !\"})}),className:\"framer-1pdwnen\",\"data-framer-name\":\"Reviews texts\",fonts:[\"GF;Manrope Variable-regular\"],name:\"Reviews texts\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-md7yvl\",\"data-framer-name\":\"Reviews\",name:\"Reviews\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-111csrv\",\"data-framer-name\":\"Reviews top\",name:\"Reviews top\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-czboby\",\"data-framer-name\":\"Name + date\",name:\"Name + date\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS02MDA=\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(13, 86, 86)\"},children:\"Ricardo\"})}),className:\"framer-1vc585s\",\"data-framer-name\":\"name\",fonts:[\"GF;Manrope Variable-600\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 115, 125)\"},children:\"T3 Punaauia\"})}),className:\"framer-1e814nc\",\"data-framer-name\":\"location\",fonts:[\"GF;Manrope Variable-regular\"],name:\"location\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wssrte\",\"data-framer-name\":\"star_rating\",name:\"star_rating\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ucoud3\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w0e36z\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ia3m61\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fna4v5\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jgmhjg\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-exykky\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-120l7c\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gl2r4\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-227tb9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18c17qq\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qkaccz\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hmmi95\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w3u5hp\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hb2yrw\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zv8ks4\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\"},children:\"Great place!! The team is very helpful and gave us a guide to get to know Tahiti it was very well worth it. thanks Team hope to see you soon \uD83E\uDD19\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-a2a8dw\",\"data-framer-name\":\"Reviews texts\",fonts:[\"GF;Manrope Variable-regular\"],name:\"Reviews texts\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s8y8cb\",\"data-framer-name\":\"Reviews\",name:\"Reviews\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vfmnr\",\"data-framer-name\":\"Reviews top\",name:\"Reviews top\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eap0zw\",\"data-framer-name\":\"Name + date\",name:\"Name + date\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS02MDA=\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(13, 86, 86)\"},children:\"Ana\"})}),className:\"framer-14742xf\",\"data-framer-name\":\"name\",fonts:[\"GF;Manrope Variable-600\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 115, 125)\"},children:\"T3 Punaauia\"})}),className:\"framer-1430om1\",\"data-framer-name\":\"location\",fonts:[\"GF;Manrope Variable-regular\"],name:\"location\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-30b3wy\",\"data-framer-name\":\"star_rating\",name:\"star_rating\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1crkbt8\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-161n51r\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jl7hzq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12plsw5\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ydas4s\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-k9u4z2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1inekvf\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eo229c\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a59tq7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vh2z12\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1glqrma\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-o5tyls\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sq05es\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h0f32o\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wqs9pf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\"},children:\"C\u2019est un v\\xe9ritable coup de c\u0153ur ! L'\\xe9quipe a \\xe9t\\xe9 tr\\xe8s proactive et nous a m\\xeame propos\\xe9 de nous amener \\xe0 l\u2019a\\xe9roport le lendemain matin. Nous nous sommes imm\\xe9diatement sentis \\xe0 l\u2019aise.\"})}),className:\"framer-k5x1ht\",\"data-framer-name\":\"Reviews texts\",fonts:[\"GF;Manrope Variable-regular\"],name:\"Reviews texts\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o2ofm3\",\"data-framer-name\":\"Reviews\",name:\"Reviews\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j6zgi1\",\"data-framer-name\":\"Reviews top\",name:\"Reviews top\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18st088\",\"data-framer-name\":\"Name + date\",name:\"Name + date\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS02MDA=\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(13, 86, 86)\"},children:\"Samuel\"})}),className:\"framer-naj0xq\",\"data-framer-name\":\"name\",fonts:[\"GF;Manrope Variable-600\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 115, 125)\"},children:\"T3 Punaauia\"})}),className:\"framer-vms0n0\",\"data-framer-name\":\"location\",fonts:[\"GF;Manrope Variable-regular\"],name:\"location\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ei535\",\"data-framer-name\":\"star_rating\",name:\"star_rating\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-e0v70d\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-adpc8l\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fgqjzi\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7swjk1\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r6pgfs\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nxctbr\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dr8l3m\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rvbgzc\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15prxo6\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ggkqyp\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kr1txq\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-172uyno\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18y76fa\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vab9kp\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ootd0f\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\"},children:\"Well-appointed apartment, excellent location with beach access nearby. Wonderful pool just outside the apartment. The team provided a personal check-in and explained everything - thanks. We had an enjoyable stay.\"})}),className:\"framer-13a6tp\",\"data-framer-name\":\"Reviews texts\",fonts:[\"GF;Manrope Variable-regular\"],name:\"Reviews texts\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gm0rr3\",\"data-framer-name\":\"Reviews\",name:\"Reviews\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pcnnfx\",\"data-framer-name\":\"Reviews top\",name:\"Reviews top\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18pvi9h\",\"data-framer-name\":\"Name + date\",name:\"Name + date\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS02MDA=\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(13, 86, 86)\"},children:\"Todd\"})}),className:\"framer-4323v3\",\"data-framer-name\":\"name\",fonts:[\"GF;Manrope Variable-600\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 115, 125)\"},children:\"T3 Punaauia\"})}),className:\"framer-n5081j\",\"data-framer-name\":\"location\",fonts:[\"GF;Manrope Variable-regular\"],name:\"location\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jedu9j\",\"data-framer-name\":\"star_rating\",name:\"star_rating\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6o8m88\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a224tl\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t1hgbk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-193igbn\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sq07y5\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a9k0a2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1149ps2\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fyfibj\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l7ks64\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8jg3mf\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yrhj59\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yre5wr\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-agtvvb\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dhxvdp\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-deee6s\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\"},children:\"This is a beautiful resort on a beautiful beach with great snorkeling. The pool is amazing and fairly clean. Neighbors were generally quiet and beach is peaceful in the morning.\"})}),className:\"framer-cra98m\",\"data-framer-name\":\"Reviews texts\",fonts:[\"GF;Manrope Variable-regular\"],name:\"Reviews texts\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qeb1rw\",\"data-framer-name\":\"Reviews\",name:\"Reviews\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l9xhgr\",\"data-framer-name\":\"Reviews top\",name:\"Reviews top\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k30ptf\",\"data-framer-name\":\"Name + date\",name:\"Name + date\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS02MDA=\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(13, 86, 86)\"},children:\"Kim\"})}),className:\"framer-a6hxlv\",\"data-framer-name\":\"name\",fonts:[\"GF;Manrope Variable-600\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 115, 125)\"},children:\"T3 Punaauia\"})}),className:\"framer-1nrh41p\",\"data-framer-name\":\"location\",fonts:[\"GF;Manrope Variable-regular\"],name:\"location\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-crgbqu\",\"data-framer-name\":\"star_rating\",name:\"star_rating\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1emgm18\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dknvzp\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-eemsx5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19o8qzi\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7c86nw\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-duaqpn\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-198fztl\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eeg7wc\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j000q1\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11c4rc4\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pqxpy1\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-aqk91u\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vt4p3j\",\"data-framer-name\":\"star\",name:\"star\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mqvqo2\",\"data-framer-name\":\"web&tech-19\",name:\"web&tech-19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b4h7yl\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,name:\"Vector\",svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.925 5.64395L10.4 4.94395L8.34996 0.643945C8.19996 0.343945 7.79996 0.343945 7.64996 0.643945L5.59996 4.96895L1.09996 5.64395C0.77496 5.69395 0.64996 6.11895 0.89996 6.34395L4.17496 9.71895L3.39996 14.4439C3.34996 14.7689 3.67496 15.0439 3.97496 14.8439L8.04996 12.6189L12.1 14.8439C12.375 14.9939 12.725 14.7439 12.65 14.4439L11.875 9.71895L15.15 6.34395C15.35 6.11895 15.25 5.69395 14.925 5.64395Z\" fill=\"#0D5656\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZSBWYXJpYWJsZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope Variable\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\"},children:\"The team was a delight to work with. Friendly, responsive, and they gave us fantastic recommendations of what to do. The place is clean and well located plus the pool and beach are a standout. \"})}),className:\"framer-3he496\",\"data-framer-name\":\"Reviews texts\",fonts:[\"GF;Manrope Variable-regular\"],name:\"Reviews texts\",verticalAlignment:\"top\",withExternalLayout:true})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nlmrjg\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{height:272,width:\"max(100vw - 48px, 1px)\",y:2868.4},T3pdjW58B:{height:360,width:\"max(100vw - 32px, 1px)\",y:4046}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:\"max(100vw - 208px, 1px)\",y:3543,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6rtcm7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{style:{width:\"100%\"},variant:\"rOavRONOB\"},T3pdjW58B:{variant:\"ennokrGlb\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"PmpsWZ_Ey\",layoutId:\"PmpsWZ_Ey\",style:{height:\"100%\",width:\"100%\"},variant:\"I969:26880;738:25915\",width:\"100%\",zOjLaQc8u:\"Maximisez vos revenus locatifs, laissez-nous faire le reste.\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ny55g0\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1adn0ib\",\"data-framer-name\":\"faq top\",name:\"faq top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mpuc9l\",\"data-styles-preset\":\"mGFJXVGLa\",children:\"Vos questions, nos r\\xe9ponses\"})}),className:\"framer-itl3gr\",\"data-framer-name\":\"Vos questions, nos r\\xe9ponses\",fonts:[\"Inter\"],name:\"Vos questions, nos r\\xe9ponses\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c2sikz\",\"data-styles-preset\":\"lposRbecE\",children:\"Vous souhaitez savoir comment fonctionne le service, comprendre nos tarifs ou savoir comment sont calcul\\xe9s les revenus des propri\\xe9taires ? Retrouvez ici les r\\xe9ponses aux questions les plus courantes sur notre service. \"})}),className:\"framer-glog7u\",\"data-framer-name\":\"Vous souhaitez savoir comment fonctionne le service, comprendre nos tarifs ou savoir comment sont calcul\\xe9s les revenus des propri\\xe9taires ? Retrouvez ici les r\\xe9ponses aux questions les plus courantes sur notre service.\",fonts:[\"Inter\"],name:\"Vous souhaitez savoir comment fonctionne le service, comprendre nos tarifs ou savoir comment sont calcul\\xe9s les revenus des propri\\xe9taires ? Retrouvez ici les r\\xe9ponses aux questions les plus courantes sur notre service.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gj22qv\",\"data-framer-name\":\"faq list\",name:\"faq list\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{width:\"calc(100vw - 48px)\",y:3444.4},T3pdjW58B:{width:\"calc(100vw - 32px)\",y:4726}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:\"calc(100vw - 208px)\",y:3887,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10k9ctf-container\",children:/*#__PURE__*/_jsx(FAQ,{B4tgbt_h4:\"Nous prenons en charge l\u2019int\\xe9gralit\\xe9 de la gestion de votre bien : shooting photo, cr\\xe9ation de l\u2019annonce, optimisation des tarifs, communication avec les voyageurs, gestion des check-ins / check-outs, m\\xe9nage et entretien complet du logement. Nous assurons une pr\\xe9sence continue pour que vous puissiez louer en toute tranquillit\\xe9 sans avoir \\xe0 vous occuper de rien.\",height:\"100%\",id:\"Vs3KVUWBi\",layoutId:\"Vs3KVUWBi\",style:{width:\"100%\"},variant:\"T4OQY28xE\",width:\"100%\",ZVjcDncni:\"Comment fonctionne votre service ?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{width:\"calc(100vw - 48px)\",y:3541.4},T3pdjW58B:{width:\"calc(100vw - 32px)\",y:4823}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:\"calc(100vw - 208px)\",y:3984,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9yxoz9-container\",children:/*#__PURE__*/_jsx(FAQ,{B4tgbt_h4:\"Nos frais de gestion sont calcul\\xe9s en fonction des revenus g\\xe9n\\xe9r\\xe9s par votre bien, sans co\\xfbts cach\\xe9s !  Nous appliquons une commission de 20 % sur le montant pay\\xe9 par les voyageurs, apr\\xe8s d\\xe9duction des frais de m\\xe9nage, ce qui signifie que vous ne payez des frais que lorsque votre logement est lou\\xe9. Ce mod\\xe8le garantit une gestion rentable et sans risque pour vous.\",height:\"100%\",id:\"najuuqE9l\",layoutId:\"najuuqE9l\",style:{width:\"100%\"},variant:\"T4OQY28xE\",width:\"100%\",ZVjcDncni:\"Quels sont vos tarifs ?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{width:\"calc(100vw - 48px)\",y:3638.4},T3pdjW58B:{width:\"calc(100vw - 32px)\",y:4920}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:\"calc(100vw - 208px)\",y:4081,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ao2j2-container\",children:/*#__PURE__*/_jsx(FAQ,{B4tgbt_h4:\"Nous g\\xe9rons un large \\xe9ventail de biens, qu\u2019il s\u2019agisse de studios, d\u2019appartements ou de maisons de standing. Si votre bien est situ\\xe9 dans notre zone d\u2019op\\xe9rations, qu\u2019il correspond aux crit\\xe8res de la location saisonni\\xe8re et que vous garantissez un acc\\xe8s priv\\xe9 et autonome aux locataires, nous serions ravis de vous proposer une estimation gratuite ! \",height:\"100%\",id:\"mMIqdnPam\",layoutId:\"mMIqdnPam\",style:{width:\"100%\"},variant:\"T4OQY28xE\",width:\"100%\",ZVjcDncni:\"Quels types de biens g\\xe9rez-vous ?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{width:\"calc(100vw - 48px)\",y:3735.4},T3pdjW58B:{width:\"calc(100vw - 32px)\",y:5017}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:\"calc(100vw - 208px)\",y:4178,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d6q1tq-container\",children:/*#__PURE__*/_jsx(FAQ,{B4tgbt_h4:\"Nous \\xe9valuons les revenus potentiels de votre bien en analysant plusieurs facteurs : la localisation, la saisonnalit\\xe9, la capacit\\xe9 d\u2019accueil, ainsi que les tarifs et taux de remplissage des biens similaires dans le secteur. Gr\\xe2ce \\xe0 notre tarification dynamique, nous ajustons le prix de votre logement en fonction de l\u2019offre et de la demande, maximisant ainsi votre taux d\u2019occupation et vos revenus. Cette estimation est affin\\xe9e r\\xe9guli\\xe8rement pour vous offrir une rentabilit\\xe9 optimale tout au long de l\u2019ann\\xe9e. Pour obtenir une estimation personnalis\\xe9e, demandez un devis gratuit sur notre site.\",height:\"100%\",id:\"fA3zT0Sdi\",layoutId:\"fA3zT0Sdi\",style:{width:\"100%\"},variant:\"T4OQY28xE\",width:\"100%\",ZVjcDncni:\"Comment estimez-vous les revenus potentiels ?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{width:\"calc(100vw - 48px)\",y:3832.4},T3pdjW58B:{width:\"calc(100vw - 32px)\",y:5114}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:\"calc(100vw - 208px)\",y:4275,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pqgbkz-container\",children:/*#__PURE__*/_jsx(FAQ,{B4tgbt_h4:\"Oui ! Nous avons une \\xe9quipe d\\xe9di\\xe9e au m\\xe9nage afin de nous assurer que votre bien est toujours impeccable pour chaque nouveau voyageur, ce qui garantit une exp\\xe9rience client optimale et des avis 5 \\xe9toiles.\",height:\"100%\",id:\"j7BwIUF4c\",layoutId:\"j7BwIUF4c\",style:{width:\"100%\"},variant:\"T4OQY28xE\",width:\"100%\",ZVjcDncni:\"G\\xe9rez-vous \\xe9galement le m\\xe9nage ?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{width:\"calc(100vw - 48px)\",y:3929.4},T3pdjW58B:{width:\"calc(100vw - 32px)\",y:5211}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:\"calc(100vw - 208px)\",y:4372,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10foknh-container\",children:/*#__PURE__*/_jsx(FAQ,{B4tgbt_h4:\"Votre revenu est calcul\\xe9 selon le tarif appliqu\\xe9 et le nombre de nuits r\\xe9serv\\xe9es par mois.  Nous d\\xe9duisons nos frais de gestion sur le revenu g\\xe9n\\xe9r\\xe9 apr\\xe8s les frais des plateformes. Gr\\xe2ce \\xe0 notre tarification dynamique, le prix des nuit\\xe9es varie en fonction de l\u2019offre et de la demande, optimisant ainsi le taux de remplissage. Vous touchez ainsi le revenu maximal possible pour chaque r\\xe9servation.\",height:\"100%\",id:\"w6afxdMl7\",layoutId:\"w6afxdMl7\",style:{width:\"100%\"},variant:\"T4OQY28xE\",width:\"100%\",ZVjcDncni:\"Comment calculez-vous le revenu des propri\\xe9taires ? \"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{width:\"calc(100vw - 48px)\",y:4026.4},T3pdjW58B:{width:\"calc(100vw - 32px)\",y:5308}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:\"calc(100vw - 208px)\",y:4469,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w7c69a-container\",children:/*#__PURE__*/_jsx(FAQ,{B4tgbt_h4:\"Nous versons les paiements \\xe0 la fin de chaque mois par virement bancaire, consolidant les revenus de toutes les r\\xe9servations effectu\\xe9es durant le mois. Lors du versement, vous recevez \\xe9galement un relev\\xe9 d\\xe9taill\\xe9 de chaque r\\xe9servation, avec votre facture comprenant le d\\xe9tail des frais.\",height:\"100%\",id:\"zwnOcDDKI\",layoutId:\"zwnOcDDKI\",style:{width:\"100%\"},variant:\"T4OQY28xE\",width:\"100%\",ZVjcDncni:\"Comment et quand sont vers\\xe9s les paiements ?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{width:\"calc(100vw - 48px)\",y:4123.4},T3pdjW58B:{width:\"calc(100vw - 32px)\",y:5405}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:\"calc(100vw - 208px)\",y:4566,children:/*#__PURE__*/_jsx(Container,{className:\"framer-behq7x-container\",children:/*#__PURE__*/_jsx(FAQ,{B4tgbt_h4:\"Nous appliquons des mesures de s\\xe9curit\\xe9 rigoureuses qui correspondent aux standards du march\\xe9 : une v\\xe9rification de chaque voyageur, des inspections de votre bien, et des assurances sp\\xe9cifiques couvrant les \\xe9ventuels dommages. Vous \\xeates prot\\xe9g\\xe9 tout en maximisant la rentabilit\\xe9 de votre bien.\",height:\"100%\",id:\"j5YczXVLj\",layoutId:\"j5YczXVLj\",style:{width:\"100%\"},variant:\"T4OQY28xE\",width:\"100%\",ZVjcDncni:\"Comment garantissez-vous la s\\xe9curit\\xe9 de mon bien ?\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-110k2d0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{y:4252.4},T3pdjW58B:{y:5534}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:388,width:\"max(100vw, 1px)\",y:4695,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dz2wal-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q4uotgG72:{variant:\"LeFNIMvXm\"},T3pdjW58B:{variant:\"bGi4t7G_m\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"wNXG35GfA\",layoutId:\"wNXG35GfA\",style:{width:\"100%\"},variant:\"EhnN6YuZQ\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-W5DiZ { background: white; }`,\".framer-W5DiZ.framer-lux5qc, .framer-W5DiZ .framer-lux5qc { display: block; }\",\".framer-W5DiZ.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-W5DiZ .framer-1liv5jc-container { flex: none; height: 100px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-W5DiZ .framer-1e23b8i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 104px 80px 104px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-bbn9tt { --framer-paragraph-spacing: 0px; flex: none; height: 41px; position: relative; white-space: pre-wrap; width: 1232px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5DiZ .framer-1gwt1tg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1144px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5DiZ .framer-fpsjrl-container, .framer-W5DiZ .framer-tyrrgi-container, .framer-W5DiZ .framer-ohgxou-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-W5DiZ .framer-2h4pwn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-1grnrd8-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-13h5g3v, .framer-W5DiZ .framer-o6onpj, .framer-W5DiZ .framer-1aydqiq, .framer-W5DiZ .framer-1vwbpp6, .framer-W5DiZ .framer-4h1vwc { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-1th4i0, .framer-W5DiZ .framer-5e93mg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-1vwizsk { flex: none; height: 40px; position: relative; width: 129px; }\",\".framer-W5DiZ .framer-44ev3r, .framer-W5DiZ .framer-tqvp1l { aspect-ratio: 5.893769454956055 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 236px; }\",\".framer-W5DiZ .framer-1u1vh3p, .framer-W5DiZ .framer-1cuacy8 { flex: none; height: 41px; left: 0px; position: absolute; top: -1px; width: 236px; }\",\".framer-W5DiZ .framer-1czh4g3, .framer-W5DiZ .framer-1scpehk { aspect-ratio: 3.125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 125px; }\",\".framer-W5DiZ .framer-1nvtuxs { bottom: 1px; flex: none; left: 100px; position: absolute; right: 5px; top: 12px; }\",\".framer-W5DiZ .framer-1jw9ohh, .framer-W5DiZ .framer-tnp37s { bottom: 0px; flex: none; left: 100px; position: absolute; right: 7px; top: 13px; }\",\".framer-W5DiZ .framer-12aivjh, .framer-W5DiZ .framer-1twsvj0 { bottom: 1px; flex: none; left: 101px; position: absolute; right: 9px; top: 13px; }\",\".framer-W5DiZ .framer-5lredz { bottom: 1px; flex: none; left: 95px; position: absolute; right: 12px; top: 13px; }\",\".framer-W5DiZ .framer-1chtj16 { bottom: 1px; flex: none; left: 93px; position: absolute; right: 17px; top: 13px; }\",\".framer-W5DiZ .framer-1anpwt7, .framer-W5DiZ .framer-oorqpy { bottom: 0px; flex: none; left: 90px; position: absolute; right: 17px; top: 13px; }\",\".framer-W5DiZ .framer-13f8m9, .framer-W5DiZ .framer-1i70z5q { bottom: 0px; flex: none; left: 64px; position: absolute; right: 17px; top: 12px; }\",\".framer-W5DiZ .framer-efha7v, .framer-W5DiZ .framer-johxdt { bottom: 1px; flex: none; left: 64px; position: absolute; right: 40px; top: 14px; }\",\".framer-W5DiZ .framer-1mrzjyf, .framer-W5DiZ .framer-11lmlwg { bottom: 1px; flex: none; left: 64px; position: absolute; right: 43px; top: 15px; }\",\".framer-W5DiZ .framer-jscpgb { bottom: 1px; flex: none; left: 62px; position: absolute; right: 46px; top: 0px; }\",\".framer-W5DiZ .framer-yrp3fa { bottom: 1px; flex: none; left: 59px; position: absolute; right: 51px; top: 0px; }\",\".framer-W5DiZ .framer-1mcpwyg, .framer-W5DiZ .framer-yxnlz2 { bottom: 1px; flex: none; left: 57px; position: absolute; right: 55px; top: 1px; }\",\".framer-W5DiZ .framer-19hpxfg { bottom: 0px; flex: none; left: 55px; position: absolute; right: 58px; top: 2px; }\",\".framer-W5DiZ .framer-1suwkjj, .framer-W5DiZ .framer-ffrw4d { bottom: 1px; flex: none; left: 27px; position: absolute; right: 61px; top: 2px; }\",\".framer-W5DiZ .framer-1cnirur { bottom: 1px; flex: none; left: 27px; position: absolute; right: 84px; top: 13px; }\",\".framer-W5DiZ .framer-1pfd4ka { bottom: 1px; flex: none; left: 27px; position: absolute; right: 86px; top: 14px; }\",\".framer-W5DiZ .framer-ka4yaq, .framer-W5DiZ .framer-10t1gpi { bottom: 1px; flex: none; left: 27px; position: absolute; right: 89px; top: 16px; }\",\".framer-W5DiZ .framer-1y60a9d, .framer-W5DiZ .framer-t1r6c9 { bottom: 1px; flex: none; left: 14px; position: absolute; right: 92px; top: 5px; }\",\".framer-W5DiZ .framer-19txsii, .framer-W5DiZ .framer-apb6rf { bottom: 1px; flex: none; left: -1px; position: absolute; right: 89px; top: 5px; }\",\".framer-W5DiZ .framer-6nz0dy, .framer-W5DiZ .framer-1cc4l9z { bottom: 23px; flex: none; left: 22px; position: absolute; right: 1px; top: 5px; }\",\".framer-W5DiZ .framer-1ox8fay { aspect-ratio: 3.0394737243652346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 122px; }\",\".framer-W5DiZ .framer-1ccwezs { bottom: 9px; flex: none; left: 32px; position: absolute; right: 70px; top: 11px; }\",\".framer-W5DiZ .framer-uhg4xf { bottom: 9px; flex: none; left: 53px; position: absolute; right: 48px; top: 11px; }\",\".framer-W5DiZ .framer-qby901 { bottom: 0px; flex: none; left: 75px; position: absolute; right: 28px; top: 11px; }\",\".framer-W5DiZ .framer-t2mzgo { bottom: 10px; flex: none; left: 96px; position: absolute; right: 21px; top: 1px; }\",\".framer-W5DiZ .framer-e90oqc { bottom: 9px; flex: none; left: 103px; position: absolute; right: 0px; top: 11px; }\",\".framer-W5DiZ .framer-erqlh2 { bottom: 9px; flex: none; left: -1px; position: absolute; right: 92px; top: 0px; }\",\".framer-W5DiZ .framer-1nxazdl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-1nn70k7 { flex: none; height: 40px; position: relative; width: 32px; }\",\".framer-W5DiZ .framer-1oss4y3 { flex: none; height: 40px; position: relative; width: 235px; }\",\".framer-W5DiZ .framer-13mnrpi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 104px 48px 104px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-424rst, .framer-W5DiZ .framer-8s8zh, .framer-W5DiZ .framer-1152ep9, .framer-W5DiZ .framer-17rpuwu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-1kmhca, .framer-W5DiZ .framer-qdclo5, .framer-W5DiZ .framer-1fyuoc8, .framer-W5DiZ .framer-uuxo8s, .framer-W5DiZ .framer-1a0wjmg, .framer-W5DiZ .framer-ruv84w, .framer-W5DiZ .framer-1dtcmf0, .framer-W5DiZ .framer-6ospka, .framer-W5DiZ .framer-12dgh40, .framer-W5DiZ .framer-130bfm8, .framer-W5DiZ .framer-11ql81c, .framer-W5DiZ .framer-1dhx1xy, .framer-W5DiZ .framer-euvbfs, .framer-W5DiZ .framer-it337, .framer-W5DiZ .framer-muoqc8, .framer-W5DiZ .framer-17xgx8m, .framer-W5DiZ .framer-1iqopr7, .framer-W5DiZ .framer-1vc585s, .framer-W5DiZ .framer-1e814nc, .framer-W5DiZ .framer-14742xf, .framer-W5DiZ .framer-1430om1, .framer-W5DiZ .framer-naj0xq, .framer-W5DiZ .framer-vms0n0, .framer-W5DiZ .framer-4323v3, .framer-W5DiZ .framer-n5081j, .framer-W5DiZ .framer-a6hxlv, .framer-W5DiZ .framer-1nrh41p { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-W5DiZ .framer-dt1dr8, .framer-W5DiZ .framer-1j9zkqq, .framer-W5DiZ .framer-18ch0vs, .framer-W5DiZ .framer-sky2wl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1232px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5DiZ .framer-1t1x343 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-1p97748, .framer-W5DiZ .framer-111suzv, .framer-W5DiZ .framer-3z44k1, .framer-W5DiZ .framer-efm2q8 { align-content: flex-start; align-items: flex-start; background-color: #f7f7f7; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 1px 3px 0px rgba(169, 169, 175, 0.4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-1c4t339, .framer-W5DiZ .framer-1dnsp3r, .framer-W5DiZ .framer-dc1xw8, .framer-W5DiZ .framer-1yco8ut, .framer-W5DiZ .framer-1k2apfh, .framer-W5DiZ .framer-a6lahi, .framer-W5DiZ .framer-9zzwlr, .framer-W5DiZ .framer-izxyq7 { aspect-ratio: 1.046875 / 1; background-color: #ecebdf; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 256px); overflow: hidden; position: relative; width: 268px; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5DiZ .framer-1fqywki, .framer-W5DiZ .framer-2mn2kp, .framer-W5DiZ .framer-1tuavln, .framer-W5DiZ .framer-1g1j20l, .framer-W5DiZ .framer-r6m2g6, .framer-W5DiZ .framer-1cmrrad { aspect-ratio: 1.046875 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 256px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-W5DiZ .framer-9w0eit, .framer-W5DiZ .framer-zdkkud, .framer-W5DiZ .framer-svpcg5, .framer-W5DiZ .framer-1h1id7c, .framer-W5DiZ .framer-8ljq4k, .framer-W5DiZ .framer-156l70z, .framer-W5DiZ .framer-oy11zk, .framer-W5DiZ .framer-kmldga, .framer-W5DiZ .framer-4lnni1, .framer-W5DiZ .framer-1xoqkl9 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-W5DiZ .framer-hedub8, .framer-W5DiZ .framer-1sgx2x2, .framer-W5DiZ .framer-gg7oby, .framer-W5DiZ .framer-1ym2cx5, .framer-W5DiZ .framer-14tbovn, .framer-W5DiZ .framer-1hz34wf, .framer-W5DiZ .framer-h2zvmi, .framer-W5DiZ .framer-1uvig1k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-1exvixu, .framer-W5DiZ .framer-m03rqf, .framer-W5DiZ .framer-1hscxdg, .framer-W5DiZ .framer-1xtutc4, .framer-W5DiZ .framer-1qru6dh, .framer-W5DiZ .framer-1skvizz, .framer-W5DiZ .framer-6hsf26, .framer-W5DiZ .framer-1dqzybn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 268px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5DiZ .framer-3tkioh, .framer-W5DiZ .framer-1jmcfj1, .framer-W5DiZ .framer-6gtp2e, .framer-W5DiZ .framer-d1grhg, .framer-W5DiZ .framer-8nfi3g, .framer-W5DiZ .framer-1pmamta, .framer-W5DiZ .framer-logup6, .framer-W5DiZ .framer-15bsl15 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 152px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-1pe4fqq, .framer-W5DiZ .framer-c80e8j, .framer-W5DiZ .framer-1thkihl, .framer-W5DiZ .framer-15ehqei, .framer-W5DiZ .framer-z210q7, .framer-W5DiZ .framer-t8hvx1, .framer-W5DiZ .framer-1rx3rf4, .framer-W5DiZ .framer-18jjuli, .framer-W5DiZ .framer-5vrg3i, .framer-W5DiZ .framer-1rba5xh, .framer-W5DiZ .framer-lyh2td, .framer-W5DiZ .framer-bsju9m, .framer-W5DiZ .framer-10i50mm, .framer-W5DiZ .framer-1dtxd5z, .framer-W5DiZ .framer-nmpiy0, .framer-W5DiZ .framer-1o27jbn, .framer-W5DiZ .framer-1o5rhof, .framer-W5DiZ .framer-g8nc2n, .framer-W5DiZ .framer-j1ne3r, .framer-W5DiZ .framer-1y6minl, .framer-W5DiZ .framer-gzxiu0, .framer-W5DiZ .framer-1wl6mgb, .framer-W5DiZ .framer-1x52dc0, .framer-W5DiZ .framer-62xax2, .framer-W5DiZ .framer-1yj95y8, .framer-W5DiZ .framer-1l17xc0, .framer-W5DiZ .framer-yow1zd, .framer-W5DiZ .framer-1r20pqc, .framer-W5DiZ .framer-1ynzju2, .framer-W5DiZ .framer-xp2kp8, .framer-W5DiZ .framer-10fod2g, .framer-W5DiZ .framer-oe2zsm, .framer-W5DiZ .framer-1rsvfhw, .framer-W5DiZ .framer-zkngqb, .framer-W5DiZ .framer-115c0to, .framer-W5DiZ .framer-1yg8a9t, .framer-W5DiZ .framer-pialyd, .framer-W5DiZ .framer-lxq67t, .framer-W5DiZ .framer-4xa82z, .framer-W5DiZ .framer-1dmz6s2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-2pewt7, .framer-W5DiZ .framer-1ucjrpu, .framer-W5DiZ .framer-1mgs204, .framer-W5DiZ .framer-lmuxle, .framer-W5DiZ .framer-1nsct24, .framer-W5DiZ .framer-6pfdwi, .framer-W5DiZ .framer-1jxsrp8, .framer-W5DiZ .framer-1o6s6k5, .framer-W5DiZ .framer-ien3gq, .framer-W5DiZ .framer-19fp339, .framer-W5DiZ .framer-1ma53tt, .framer-W5DiZ .framer-7x4yfv, .framer-W5DiZ .framer-u3k5zi, .framer-W5DiZ .framer-1s1hota, .framer-W5DiZ .framer-144pszz, .framer-W5DiZ .framer-n782ch, .framer-W5DiZ .framer-d70swr, .framer-W5DiZ .framer-1p9xuk, .framer-W5DiZ .framer-wzwd08, .framer-W5DiZ .framer-17pq6vk, .framer-W5DiZ .framer-125ld8l, .framer-W5DiZ .framer-1fuwe6z, .framer-W5DiZ .framer-vkbnoc, .framer-W5DiZ .framer-1sqtcvt, .framer-W5DiZ .framer-p53w23, .framer-W5DiZ .framer-1vge69d, .framer-W5DiZ .framer-tyzw82, .framer-W5DiZ .framer-vssj39, .framer-W5DiZ .framer-epuebt, .framer-W5DiZ .framer-31tgbe, .framer-W5DiZ .framer-pyhbj8, .framer-W5DiZ .framer-zhkylp, .framer-W5DiZ .framer-13sgmr8, .framer-W5DiZ .framer-13301xj, .framer-W5DiZ .framer-bh0gpf, .framer-W5DiZ .framer-n328rc, .framer-W5DiZ .framer-48qjyj, .framer-W5DiZ .framer-1c7kqxi, .framer-W5DiZ .framer-9p1gkw, .framer-W5DiZ .framer-1fx4p4s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-upuybc, .framer-W5DiZ .framer-191upm3, .framer-W5DiZ .framer-1eum4kw, .framer-W5DiZ .framer-1thbwlv, .framer-W5DiZ .framer-1kdzczx, .framer-W5DiZ .framer-eexj9g, .framer-W5DiZ .framer-fd0s55, .framer-W5DiZ .framer-pnifv9, .framer-W5DiZ .framer-16hhrnm, .framer-W5DiZ .framer-1ca83ja, .framer-W5DiZ .framer-p83x02, .framer-W5DiZ .framer-7dmxi9, .framer-W5DiZ .framer-eep3my, .framer-W5DiZ .framer-1af91hs, .framer-W5DiZ .framer-1ubdrsj, .framer-W5DiZ .framer-1mob9d, .framer-W5DiZ .framer-1m7e41l, .framer-W5DiZ .framer-bvbyvg, .framer-W5DiZ .framer-rfdit2, .framer-W5DiZ .framer-1wx7wux, .framer-W5DiZ .framer-1tiwl20, .framer-W5DiZ .framer-mmagdq, .framer-W5DiZ .framer-hpd80s, .framer-W5DiZ .framer-ge5or0, .framer-W5DiZ .framer-kfwpzg, .framer-W5DiZ .framer-1d020jz, .framer-W5DiZ .framer-12zs7x3, .framer-W5DiZ .framer-1tfklhu, .framer-W5DiZ .framer-my4k20, .framer-W5DiZ .framer-1b7tex3, .framer-W5DiZ .framer-1cejwky, .framer-W5DiZ .framer-1mr46yr, .framer-W5DiZ .framer-1dhc52d, .framer-W5DiZ .framer-hiy3ym, .framer-W5DiZ .framer-1hksytz, .framer-W5DiZ .framer-1hzhxpu, .framer-W5DiZ .framer-bqr4er, .framer-W5DiZ .framer-9wgbtr, .framer-W5DiZ .framer-10ir7e4, .framer-W5DiZ .framer-19c3j6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-ggec5w, .framer-W5DiZ .framer-3wg333, .framer-W5DiZ .framer-sa3nx0, .framer-W5DiZ .framer-7jbp96, .framer-W5DiZ .framer-dfizqa, .framer-W5DiZ .framer-1ytd1bp, .framer-W5DiZ .framer-cf9jvg, .framer-W5DiZ .framer-132fbyz, .framer-W5DiZ .framer-chnqy2, .framer-W5DiZ .framer-w8h056, .framer-W5DiZ .framer-ihon20, .framer-W5DiZ .framer-2rww4s, .framer-W5DiZ .framer-1cqajk2, .framer-W5DiZ .framer-1a3aa5q, .framer-W5DiZ .framer-x9zvx4, .framer-W5DiZ .framer-1rs2ra6, .framer-W5DiZ .framer-picx30, .framer-W5DiZ .framer-1d6rr5r, .framer-W5DiZ .framer-5w0csn, .framer-W5DiZ .framer-14n8fdb, .framer-W5DiZ .framer-bykao2, .framer-W5DiZ .framer-vs5a0m, .framer-W5DiZ .framer-1r64nkk, .framer-W5DiZ .framer-cslvig, .framer-W5DiZ .framer-k0e4vh, .framer-W5DiZ .framer-lfbzx3, .framer-W5DiZ .framer-1dbnnm2, .framer-W5DiZ .framer-3f4qoz, .framer-W5DiZ .framer-vr1b2c, .framer-W5DiZ .framer-kwxufu, .framer-W5DiZ .framer-1y384f7, .framer-W5DiZ .framer-1gyuad5, .framer-W5DiZ .framer-1z102z0, .framer-W5DiZ .framer-5tospt, .framer-W5DiZ .framer-1bqx6y7, .framer-W5DiZ .framer-1fksyff, .framer-W5DiZ .framer-12ytnnv, .framer-W5DiZ .framer-evw08o, .framer-W5DiZ .framer-tf27fv, .framer-W5DiZ .framer-ebcu { aspect-ratio: 1 / 1; background-color: #0d5656; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\".framer-W5DiZ .framer-154pync, .framer-W5DiZ .framer-yvq0z5, .framer-W5DiZ .framer-12urrrc, .framer-W5DiZ .framer-jhw4ns, .framer-W5DiZ .framer-uczgsa, .framer-W5DiZ .framer-cfb6fj, .framer-W5DiZ .framer-td0dzx, .framer-W5DiZ .framer-1fdyqb8, .framer-W5DiZ .framer-y2yhqk, .framer-W5DiZ .framer-emc49t, .framer-W5DiZ .framer-krkg50, .framer-W5DiZ .framer-dnsyng, .framer-W5DiZ .framer-vlwuz6, .framer-W5DiZ .framer-85gqse, .framer-W5DiZ .framer-1ua3bau, .framer-W5DiZ .framer-1591y60, .framer-W5DiZ .framer-1lrujdk, .framer-W5DiZ .framer-931s3e, .framer-W5DiZ .framer-n11vul, .framer-W5DiZ .framer-1v9zn5m, .framer-W5DiZ .framer-o6yzci, .framer-W5DiZ .framer-96u3ih, .framer-W5DiZ .framer-1pj182i, .framer-W5DiZ .framer-13377io, .framer-W5DiZ .framer-1blfkct, .framer-W5DiZ .framer-1qjtph2, .framer-W5DiZ .framer-14860hh, .framer-W5DiZ .framer-7286gl, .framer-W5DiZ .framer-kul9pr, .framer-W5DiZ .framer-1dflmoe, .framer-W5DiZ .framer-1bam5zv, .framer-W5DiZ .framer-1dk1fvq, .framer-W5DiZ .framer-10toavc, .framer-W5DiZ .framer-1dbisv4, .framer-W5DiZ .framer-1r3f8uw, .framer-W5DiZ .framer-11lwn2r, .framer-W5DiZ .framer-igdglt, .framer-W5DiZ .framer-f86g0w, .framer-W5DiZ .framer-gy5i2u, .framer-W5DiZ .framer-1ipbifa { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 244px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5DiZ .framer-19uml1y-container, .framer-W5DiZ .framer-10k9ctf-container, .framer-W5DiZ .framer-9yxoz9-container, .framer-W5DiZ .framer-10ao2j2-container, .framer-W5DiZ .framer-d6q1tq-container, .framer-W5DiZ .framer-pqgbkz-container, .framer-W5DiZ .framer-10foknh-container, .framer-W5DiZ .framer-w7c69a-container, .framer-W5DiZ .framer-behq7x-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-17d2hs8, .framer-W5DiZ .framer-j0jmoa, .framer-W5DiZ .framer-13cl1w0, .framer-W5DiZ .framer-u1ktwo { align-content: flex-start; align-items: flex-start; background-color: #f7f7f7; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 1px 3px 0px rgba(169, 169, 175, 0.4); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-1eode7n { align-content: center; align-items: center; background-color: #003d3d; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: 727px; justify-content: center; overflow: hidden; padding: 48px 104px 48px 104px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-1fztgqf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-3gd68l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 200px; justify-content: space-between; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 1232px; }\",\".framer-W5DiZ .framer-1ezs7q6, .framer-W5DiZ .framer-1oojb10 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 200px; }\",\".framer-W5DiZ .framer-1a7w05p, .framer-W5DiZ .framer-10liz4a { flex: none; height: 85px; position: relative; width: 208px; }\",\".framer-W5DiZ .framer-ojqxvp, .framer-W5DiZ .framer-4iq9ts { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: hidden; position: relative; width: 200px; }\",\".framer-W5DiZ .framer-1r4tvyn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1232px; }\",\".framer-W5DiZ .framer-uk5h9v, .framer-W5DiZ .framer-5pnyom, .framer-W5DiZ .framer-1oeojl0, .framer-W5DiZ .framer-11l21ex, .framer-W5DiZ .framer-ptuo7m, .framer-W5DiZ .framer-1tsg38u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 360px; }\",\".framer-W5DiZ .framer-ucitnn, .framer-W5DiZ .framer-19c0g5b, .framer-W5DiZ .framer-1t98h91, .framer-W5DiZ .framer-wxm59i, .framer-W5DiZ .framer-1rbcd2d, .framer-W5DiZ .framer-1cwcahm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 360px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5DiZ .framer-ymiho5 { align-content: center; align-items: center; background-color: #003d3d; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 104px 48px 104px; position: relative; width: 1440px; }\",\".framer-W5DiZ .framer-n959q0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 387px; justify-content: space-evenly; overflow: hidden; padding: 0px; position: relative; width: 1402px; }\",\".framer-W5DiZ .framer-10ngmkc, .framer-W5DiZ .framer-wmzjrn, .framer-W5DiZ .framer-1v75egc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 360px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 360px; }\",\".framer-W5DiZ .framer-ro5d7r, .framer-W5DiZ .framer-xjjdxy { flex: none; height: 200px; position: relative; width: 200px; }\",\".framer-W5DiZ .framer-gtmf59, .framer-W5DiZ .framer-ny55g0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 104px 48px 104px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-fgbt91 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 104px; height: min-content; justify-content: center; overflow: visible; padding: 4px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-ts3nul, .framer-W5DiZ .framer-1yrie5k, .framer-W5DiZ .framer-1orpgtz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-b915r { flex: none; height: 41px; position: relative; width: 129px; }\",\".framer-W5DiZ .framer-1kvwt3t, .framer-W5DiZ .framer-16ygmvk, .framer-W5DiZ .framer-bcb8m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-lhgzei, .framer-W5DiZ .framer-bp15t2, .framer-W5DiZ .framer-hip7ze, .framer-W5DiZ .framer-ota7dh, .framer-W5DiZ .framer-19jp9dt, .framer-W5DiZ .framer-l53ona, .framer-W5DiZ .framer-m6d0gc, .framer-W5DiZ .framer-zhrlqj, .framer-W5DiZ .framer-1es7jaq, .framer-W5DiZ .framer-1jkh60f, .framer-W5DiZ .framer-g250dp, .framer-W5DiZ .framer-1pk5t95, .framer-W5DiZ .framer-1reen6s, .framer-W5DiZ .framer-1eu0qel, .framer-W5DiZ .framer-6iri8n, .framer-W5DiZ .framer-zhg79b, .framer-W5DiZ .framer-19y2jhx, .framer-W5DiZ .framer-1vdw9fs, .framer-W5DiZ .framer-od3hsl, .framer-W5DiZ .framer-1j140t3, .framer-W5DiZ .framer-5b7p4h, .framer-W5DiZ .framer-1cfp6c3, .framer-W5DiZ .framer-1qorndn, .framer-W5DiZ .framer-zii63v, .framer-W5DiZ .framer-6ao0wr, .framer-W5DiZ .framer-1ucoud3, .framer-W5DiZ .framer-fna4v5, .framer-W5DiZ .framer-120l7c, .framer-W5DiZ .framer-18c17qq, .framer-W5DiZ .framer-1w3u5hp, .framer-W5DiZ .framer-1crkbt8, .framer-W5DiZ .framer-12plsw5, .framer-W5DiZ .framer-1inekvf, .framer-W5DiZ .framer-vh2z12, .framer-W5DiZ .framer-1sq05es, .framer-W5DiZ .framer-e0v70d, .framer-W5DiZ .framer-7swjk1, .framer-W5DiZ .framer-dr8l3m, .framer-W5DiZ .framer-ggkqyp, .framer-W5DiZ .framer-18y76fa, .framer-W5DiZ .framer-6o8m88, .framer-W5DiZ .framer-193igbn, .framer-W5DiZ .framer-1149ps2, .framer-W5DiZ .framer-8jg3mf, .framer-W5DiZ .framer-agtvvb, .framer-W5DiZ .framer-1emgm18, .framer-W5DiZ .framer-19o8qzi, .framer-W5DiZ .framer-198fztl, .framer-W5DiZ .framer-11c4rc4, .framer-W5DiZ .framer-vt4p3j { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; width: 16px; }\",\".framer-W5DiZ .framer-64qe30, .framer-W5DiZ .framer-vjsf9c, .framer-W5DiZ .framer-brdhg8, .framer-W5DiZ .framer-12b0ye3, .framer-W5DiZ .framer-qjwu6c, .framer-W5DiZ .framer-1qzq1lm, .framer-W5DiZ .framer-1ryi2s0, .framer-W5DiZ .framer-1kiwlo7, .framer-W5DiZ .framer-i7t65z, .framer-W5DiZ .framer-yn06hf, .framer-W5DiZ .framer-c4k5vx, .framer-W5DiZ .framer-mekvwf, .framer-W5DiZ .framer-15py2tz, .framer-W5DiZ .framer-131kuth, .framer-W5DiZ .framer-lrfv2h, .framer-W5DiZ .framer-19rw6zw, .framer-W5DiZ .framer-3djh2k, .framer-W5DiZ .framer-behqon, .framer-W5DiZ .framer-161snwn, .framer-W5DiZ .framer-1yz1381, .framer-W5DiZ .framer-qnc2rc, .framer-W5DiZ .framer-1523qg0, .framer-W5DiZ .framer-1mkerwz, .framer-W5DiZ .framer-sknqk3, .framer-W5DiZ .framer-va162b, .framer-W5DiZ .framer-1w0e36z, .framer-W5DiZ .framer-1jgmhjg, .framer-W5DiZ .framer-1gl2r4, .framer-W5DiZ .framer-1qkaccz, .framer-W5DiZ .framer-hb2yrw, .framer-W5DiZ .framer-161n51r, .framer-W5DiZ .framer-1ydas4s, .framer-W5DiZ .framer-eo229c, .framer-W5DiZ .framer-1glqrma, .framer-W5DiZ .framer-1h0f32o, .framer-W5DiZ .framer-adpc8l, .framer-W5DiZ .framer-r6pgfs, .framer-W5DiZ .framer-1rvbgzc, .framer-W5DiZ .framer-1kr1txq, .framer-W5DiZ .framer-1vab9kp, .framer-W5DiZ .framer-a224tl, .framer-W5DiZ .framer-1sq07y5, .framer-W5DiZ .framer-1fyfibj, .framer-W5DiZ .framer-yrhj59, .framer-W5DiZ .framer-1dhxvdp, .framer-W5DiZ .framer-1dknvzp, .framer-W5DiZ .framer-7c86nw, .framer-W5DiZ .framer-1eeg7wc, .framer-W5DiZ .framer-1pqxpy1, .framer-W5DiZ .framer-mqvqo2 { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-W5DiZ .framer-25lcs3, .framer-W5DiZ .framer-1hbaf4z, .framer-W5DiZ .framer-ueczi0, .framer-W5DiZ .framer-hqomog, .framer-W5DiZ .framer-am04bf, .framer-W5DiZ .framer-9g9iqd, .framer-W5DiZ .framer-ycnrub, .framer-W5DiZ .framer-1umliuw { bottom: 2px; flex: none; left: 1px; position: absolute; right: 1px; top: 0px; }\",\".framer-W5DiZ .framer-qoze4v, .framer-W5DiZ .framer-ixtkzu { bottom: 2px; flex: none; left: 1px; position: absolute; right: 9px; top: 1px; }\",\".framer-W5DiZ .framer-1uk2k95, .framer-W5DiZ .framer-ud9djq { bottom: 1px; flex: none; left: 0px; position: absolute; right: 1px; top: 0px; }\",\".framer-W5DiZ .framer-1pjosdu { bottom: 1px; flex: none; left: 101px; position: absolute; right: 4px; top: 12px; }\",\".framer-W5DiZ .framer-1w267kz { bottom: 1px; flex: none; left: 96px; position: absolute; right: 12px; top: 13px; }\",\".framer-W5DiZ .framer-10j9vdo { bottom: 1px; flex: none; left: 94px; position: absolute; right: 16px; top: 13px; }\",\".framer-W5DiZ .framer-4dsbf2 { bottom: 1px; flex: none; left: 62px; position: absolute; right: 47px; top: 0px; }\",\".framer-W5DiZ .framer-1mic7p9 { bottom: 1px; flex: none; left: 60px; position: absolute; right: 51px; top: 0px; }\",\".framer-W5DiZ .framer-ckdpb1 { bottom: 0px; flex: none; left: 54px; position: absolute; right: 58px; top: 2px; }\",\".framer-W5DiZ .framer-1ap19qw { bottom: 1px; flex: none; left: 27px; position: absolute; right: 84px; top: 14px; }\",\".framer-W5DiZ .framer-198bah9 { bottom: 1px; flex: none; left: 27px; position: absolute; right: 87px; top: 15px; }\",\".framer-W5DiZ .framer-4y8aa2, .framer-W5DiZ .framer-jzew78, .framer-W5DiZ .framer-1rcb8e0, .framer-W5DiZ .framer-m4k3wg, .framer-W5DiZ .framer-1mkv4kp { bottom: 2px; flex: none; left: 0px; position: absolute; right: 2px; top: 0px; }\",\".framer-W5DiZ .framer-laxy4d-container { flex: none; height: 224px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-rgsasi, .framer-W5DiZ .framer-dsn2oi, .framer-W5DiZ .framer-md7yvl, .framer-W5DiZ .framer-1s8y8cb, .framer-W5DiZ .framer-o2ofm3, .framer-W5DiZ .framer-1gm0rr3, .framer-W5DiZ .framer-qeb1rw { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 4px 12px 0px rgba(169, 169, 175, 0.2); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 176px; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 304px; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5DiZ .framer-b3ell8, .framer-W5DiZ .framer-1qw0tl5, .framer-W5DiZ .framer-111csrv, .framer-W5DiZ .framer-vfmnr, .framer-W5DiZ .framer-j6zgi1, .framer-W5DiZ .framer-1pcnnfx, .framer-W5DiZ .framer-l9xhgr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-1e42c3u, .framer-W5DiZ .framer-1ephre7, .framer-W5DiZ .framer-czboby, .framer-W5DiZ .framer-1eap0zw, .framer-W5DiZ .framer-18st088, .framer-W5DiZ .framer-18pvi9h, .framer-W5DiZ .framer-1k30ptf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-8rwagx, .framer-W5DiZ .framer-m82m9f, .framer-W5DiZ .framer-1wssrte, .framer-W5DiZ .framer-30b3wy, .framer-W5DiZ .framer-2ei535, .framer-W5DiZ .framer-1jedu9j, .framer-W5DiZ .framer-crgbqu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5DiZ .framer-1ahmi8j, .framer-W5DiZ .framer-leun9n, .framer-W5DiZ .framer-158ysc5, .framer-W5DiZ .framer-i09d9t, .framer-W5DiZ .framer-109i3ft, .framer-W5DiZ .framer-g2v8hq, .framer-W5DiZ .framer-l7xmac, .framer-W5DiZ .framer-2q4qk7, .framer-W5DiZ .framer-98i8zz, .framer-W5DiZ .framer-1kq0c8r, .framer-W5DiZ .framer-1ia3m61, .framer-W5DiZ .framer-exykky, .framer-W5DiZ .framer-227tb9, .framer-W5DiZ .framer-1hmmi95, .framer-W5DiZ .framer-zv8ks4, .framer-W5DiZ .framer-jl7hzq, .framer-W5DiZ .framer-k9u4z2, .framer-W5DiZ .framer-1a59tq7, .framer-W5DiZ .framer-o5tyls, .framer-W5DiZ .framer-1wqs9pf, .framer-W5DiZ .framer-1fgqjzi, .framer-W5DiZ .framer-1nxctbr, .framer-W5DiZ .framer-15prxo6, .framer-W5DiZ .framer-172uyno, .framer-W5DiZ .framer-1ootd0f, .framer-W5DiZ .framer-t1hgbk, .framer-W5DiZ .framer-1a9k0a2, .framer-W5DiZ .framer-1l7ks64, .framer-W5DiZ .framer-yre5wr, .framer-W5DiZ .framer-deee6s, .framer-W5DiZ .framer-eemsx5, .framer-W5DiZ .framer-duaqpn, .framer-W5DiZ .framer-j000q1, .framer-W5DiZ .framer-aqk91u, .framer-W5DiZ .framer-b4h7yl { bottom: 1px; flex: none; left: 0px; position: absolute; right: 2px; top: 0px; }\",\".framer-W5DiZ .framer-1vuf3ss, .framer-W5DiZ .framer-1pdwnen, .framer-W5DiZ .framer-a2a8dw, .framer-W5DiZ .framer-k5x1ht, .framer-W5DiZ .framer-13a6tp, .framer-W5DiZ .framer-cra98m, .framer-W5DiZ .framer-3he496 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 272px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5DiZ .framer-1nlmrjg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 104px 48px 104px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-6rtcm7-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 0; }\",\".framer-W5DiZ .framer-1adn0ib { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-itl3gr, .framer-W5DiZ .framer-glog7u { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-W5DiZ .framer-1gj22qv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-110k2d0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5DiZ .framer-dz2wal-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-W5DiZ.framer-72rtr7, .framer-W5DiZ .framer-1e23b8i, .framer-W5DiZ .framer-2h4pwn, .framer-W5DiZ .framer-13h5g3v, .framer-W5DiZ .framer-1th4i0, .framer-W5DiZ .framer-o6onpj, .framer-W5DiZ .framer-1aydqiq, .framer-W5DiZ .framer-1vwbpp6, .framer-W5DiZ .framer-4h1vwc, .framer-W5DiZ .framer-1nxazdl, .framer-W5DiZ .framer-13mnrpi, .framer-W5DiZ .framer-424rst, .framer-W5DiZ .framer-1t1x343, .framer-W5DiZ .framer-1p97748, .framer-W5DiZ .framer-hedub8, .framer-W5DiZ .framer-1pe4fqq, .framer-W5DiZ .framer-2pewt7, .framer-W5DiZ .framer-upuybc, .framer-W5DiZ .framer-c80e8j, .framer-W5DiZ .framer-1ucjrpu, .framer-W5DiZ .framer-191upm3, .framer-W5DiZ .framer-1thkihl, .framer-W5DiZ .framer-1mgs204, .framer-W5DiZ .framer-1eum4kw, .framer-W5DiZ .framer-15ehqei, .framer-W5DiZ .framer-lmuxle, .framer-W5DiZ .framer-1thbwlv, .framer-W5DiZ .framer-z210q7, .framer-W5DiZ .framer-1nsct24, .framer-W5DiZ .framer-1kdzczx, .framer-W5DiZ .framer-111suzv, .framer-W5DiZ .framer-1sgx2x2, .framer-W5DiZ .framer-t8hvx1, .framer-W5DiZ .framer-6pfdwi, .framer-W5DiZ .framer-eexj9g, .framer-W5DiZ .framer-1rx3rf4, .framer-W5DiZ .framer-1jxsrp8, .framer-W5DiZ .framer-fd0s55, .framer-W5DiZ .framer-18jjuli, .framer-W5DiZ .framer-1o6s6k5, .framer-W5DiZ .framer-pnifv9, .framer-W5DiZ .framer-5vrg3i, .framer-W5DiZ .framer-ien3gq, .framer-W5DiZ .framer-16hhrnm, .framer-W5DiZ .framer-1rba5xh, .framer-W5DiZ .framer-19fp339, .framer-W5DiZ .framer-1ca83ja, .framer-W5DiZ .framer-3z44k1, .framer-W5DiZ .framer-gg7oby, .framer-W5DiZ .framer-lyh2td, .framer-W5DiZ .framer-1ma53tt, .framer-W5DiZ .framer-p83x02, .framer-W5DiZ .framer-bsju9m, .framer-W5DiZ .framer-7x4yfv, .framer-W5DiZ .framer-7dmxi9, .framer-W5DiZ .framer-10i50mm, .framer-W5DiZ .framer-u3k5zi, .framer-W5DiZ .framer-eep3my, .framer-W5DiZ .framer-1dtxd5z, .framer-W5DiZ .framer-1s1hota, .framer-W5DiZ .framer-1af91hs, .framer-W5DiZ .framer-nmpiy0, .framer-W5DiZ .framer-144pszz, .framer-W5DiZ .framer-1ubdrsj, .framer-W5DiZ .framer-efm2q8, .framer-W5DiZ .framer-1ym2cx5, .framer-W5DiZ .framer-1o27jbn, .framer-W5DiZ .framer-n782ch, .framer-W5DiZ .framer-1mob9d, .framer-W5DiZ .framer-1o5rhof, .framer-W5DiZ .framer-d70swr, .framer-W5DiZ .framer-1m7e41l, .framer-W5DiZ .framer-g8nc2n, .framer-W5DiZ .framer-1p9xuk, .framer-W5DiZ .framer-bvbyvg, .framer-W5DiZ .framer-j1ne3r, .framer-W5DiZ .framer-wzwd08, .framer-W5DiZ .framer-rfdit2, .framer-W5DiZ .framer-1y6minl, .framer-W5DiZ .framer-17pq6vk, .framer-W5DiZ .framer-1wx7wux, .framer-W5DiZ .framer-17d2hs8, .framer-W5DiZ .framer-14tbovn, .framer-W5DiZ .framer-gzxiu0, .framer-W5DiZ .framer-125ld8l, .framer-W5DiZ .framer-1tiwl20, .framer-W5DiZ .framer-1wl6mgb, .framer-W5DiZ .framer-1fuwe6z, .framer-W5DiZ .framer-mmagdq, .framer-W5DiZ .framer-1x52dc0, .framer-W5DiZ .framer-vkbnoc, .framer-W5DiZ .framer-hpd80s, .framer-W5DiZ .framer-62xax2, .framer-W5DiZ .framer-1sqtcvt, .framer-W5DiZ .framer-ge5or0, .framer-W5DiZ .framer-1yj95y8, .framer-W5DiZ .framer-p53w23, .framer-W5DiZ .framer-kfwpzg, .framer-W5DiZ .framer-j0jmoa, .framer-W5DiZ .framer-1hz34wf, .framer-W5DiZ .framer-1l17xc0, .framer-W5DiZ .framer-1vge69d, .framer-W5DiZ .framer-1d020jz, .framer-W5DiZ .framer-yow1zd, .framer-W5DiZ .framer-tyzw82, .framer-W5DiZ .framer-12zs7x3, .framer-W5DiZ .framer-1r20pqc, .framer-W5DiZ .framer-vssj39, .framer-W5DiZ .framer-1tfklhu, .framer-W5DiZ .framer-1ynzju2, .framer-W5DiZ .framer-epuebt, .framer-W5DiZ .framer-my4k20, .framer-W5DiZ .framer-xp2kp8, .framer-W5DiZ .framer-31tgbe, .framer-W5DiZ .framer-1b7tex3, .framer-W5DiZ .framer-13cl1w0, .framer-W5DiZ .framer-h2zvmi, .framer-W5DiZ .framer-10fod2g, .framer-W5DiZ .framer-pyhbj8, .framer-W5DiZ .framer-1cejwky, .framer-W5DiZ .framer-oe2zsm, .framer-W5DiZ .framer-zhkylp, .framer-W5DiZ .framer-1mr46yr, .framer-W5DiZ .framer-1rsvfhw, .framer-W5DiZ .framer-13sgmr8, .framer-W5DiZ .framer-1dhc52d, .framer-W5DiZ .framer-zkngqb, .framer-W5DiZ .framer-13301xj, .framer-W5DiZ .framer-hiy3ym, .framer-W5DiZ .framer-115c0to, .framer-W5DiZ .framer-bh0gpf, .framer-W5DiZ .framer-1hksytz, .framer-W5DiZ .framer-u1ktwo, .framer-W5DiZ .framer-1uvig1k, .framer-W5DiZ .framer-1yg8a9t, .framer-W5DiZ .framer-n328rc, .framer-W5DiZ .framer-1hzhxpu, .framer-W5DiZ .framer-pialyd, .framer-W5DiZ .framer-48qjyj, .framer-W5DiZ .framer-bqr4er, .framer-W5DiZ .framer-lxq67t, .framer-W5DiZ .framer-1c7kqxi, .framer-W5DiZ .framer-9wgbtr, .framer-W5DiZ .framer-4xa82z, .framer-W5DiZ .framer-9p1gkw, .framer-W5DiZ .framer-10ir7e4, .framer-W5DiZ .framer-1dmz6s2, .framer-W5DiZ .framer-1fx4p4s, .framer-W5DiZ .framer-19c3j6, .framer-W5DiZ .framer-1eode7n, .framer-W5DiZ .framer-8s8zh, .framer-W5DiZ .framer-1fztgqf, .framer-W5DiZ .framer-uk5h9v, .framer-W5DiZ .framer-5pnyom, .framer-W5DiZ .framer-1oeojl0, .framer-W5DiZ .framer-ymiho5, .framer-W5DiZ .framer-1152ep9, .framer-W5DiZ .framer-10ngmkc, .framer-W5DiZ .framer-11l21ex, .framer-W5DiZ .framer-wmzjrn, .framer-W5DiZ .framer-ptuo7m, .framer-W5DiZ .framer-1v75egc, .framer-W5DiZ .framer-1tsg38u, .framer-W5DiZ .framer-gtmf59, .framer-W5DiZ .framer-17rpuwu, .framer-W5DiZ .framer-fgbt91, .framer-W5DiZ .framer-ts3nul, .framer-W5DiZ .framer-5e93mg, .framer-W5DiZ .framer-1kvwt3t, .framer-W5DiZ .framer-1yrie5k, .framer-W5DiZ .framer-16ygmvk, .framer-W5DiZ .framer-1orpgtz, .framer-W5DiZ .framer-bcb8m, .framer-W5DiZ .framer-rgsasi, .framer-W5DiZ .framer-1e42c3u, .framer-W5DiZ .framer-8rwagx, .framer-W5DiZ .framer-dsn2oi, .framer-W5DiZ .framer-1ephre7, .framer-W5DiZ .framer-m82m9f, .framer-W5DiZ .framer-md7yvl, .framer-W5DiZ .framer-czboby, .framer-W5DiZ .framer-1wssrte, .framer-W5DiZ .framer-1s8y8cb, .framer-W5DiZ .framer-1eap0zw, .framer-W5DiZ .framer-30b3wy, .framer-W5DiZ .framer-o2ofm3, .framer-W5DiZ .framer-18st088, .framer-W5DiZ .framer-2ei535, .framer-W5DiZ .framer-1gm0rr3, .framer-W5DiZ .framer-18pvi9h, .framer-W5DiZ .framer-1jedu9j, .framer-W5DiZ .framer-qeb1rw, .framer-W5DiZ .framer-1k30ptf, .framer-W5DiZ .framer-crgbqu, .framer-W5DiZ .framer-1nlmrjg, .framer-W5DiZ .framer-ny55g0, .framer-W5DiZ .framer-1adn0ib, .framer-W5DiZ .framer-1gj22qv, .framer-W5DiZ .framer-110k2d0 { gap: 0px; } .framer-W5DiZ.framer-72rtr7 > *, .framer-W5DiZ .framer-1p97748 > *, .framer-W5DiZ .framer-111suzv > *, .framer-W5DiZ .framer-3z44k1 > *, .framer-W5DiZ .framer-efm2q8 > *, .framer-W5DiZ .framer-17d2hs8 > *, .framer-W5DiZ .framer-j0jmoa > *, .framer-W5DiZ .framer-13cl1w0 > *, .framer-W5DiZ .framer-u1ktwo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-W5DiZ.framer-72rtr7 > :first-child, .framer-W5DiZ .framer-1e23b8i > :first-child, .framer-W5DiZ .framer-2h4pwn > :first-child, .framer-W5DiZ .framer-13h5g3v > :first-child, .framer-W5DiZ .framer-o6onpj > :first-child, .framer-W5DiZ .framer-1aydqiq > :first-child, .framer-W5DiZ .framer-1vwbpp6 > :first-child, .framer-W5DiZ .framer-4h1vwc > :first-child, .framer-W5DiZ .framer-13mnrpi > :first-child, .framer-W5DiZ .framer-424rst > :first-child, .framer-W5DiZ .framer-1p97748 > :first-child, .framer-W5DiZ .framer-hedub8 > :first-child, .framer-W5DiZ .framer-1pe4fqq > :first-child, .framer-W5DiZ .framer-c80e8j > :first-child, .framer-W5DiZ .framer-1thkihl > :first-child, .framer-W5DiZ .framer-15ehqei > :first-child, .framer-W5DiZ .framer-z210q7 > :first-child, .framer-W5DiZ .framer-111suzv > :first-child, .framer-W5DiZ .framer-1sgx2x2 > :first-child, .framer-W5DiZ .framer-t8hvx1 > :first-child, .framer-W5DiZ .framer-1rx3rf4 > :first-child, .framer-W5DiZ .framer-18jjuli > :first-child, .framer-W5DiZ .framer-5vrg3i > :first-child, .framer-W5DiZ .framer-1rba5xh > :first-child, .framer-W5DiZ .framer-3z44k1 > :first-child, .framer-W5DiZ .framer-gg7oby > :first-child, .framer-W5DiZ .framer-lyh2td > :first-child, .framer-W5DiZ .framer-bsju9m > :first-child, .framer-W5DiZ .framer-10i50mm > :first-child, .framer-W5DiZ .framer-1dtxd5z > :first-child, .framer-W5DiZ .framer-nmpiy0 > :first-child, .framer-W5DiZ .framer-efm2q8 > :first-child, .framer-W5DiZ .framer-1ym2cx5 > :first-child, .framer-W5DiZ .framer-1o27jbn > :first-child, .framer-W5DiZ .framer-1o5rhof > :first-child, .framer-W5DiZ .framer-g8nc2n > :first-child, .framer-W5DiZ .framer-j1ne3r > :first-child, .framer-W5DiZ .framer-1y6minl > :first-child, .framer-W5DiZ .framer-17d2hs8 > :first-child, .framer-W5DiZ .framer-14tbovn > :first-child, .framer-W5DiZ .framer-gzxiu0 > :first-child, .framer-W5DiZ .framer-1wl6mgb > :first-child, .framer-W5DiZ .framer-1x52dc0 > :first-child, .framer-W5DiZ .framer-62xax2 > :first-child, .framer-W5DiZ .framer-1yj95y8 > :first-child, .framer-W5DiZ .framer-j0jmoa > :first-child, .framer-W5DiZ .framer-1hz34wf > :first-child, .framer-W5DiZ .framer-1l17xc0 > :first-child, .framer-W5DiZ .framer-yow1zd > :first-child, .framer-W5DiZ .framer-1r20pqc > :first-child, .framer-W5DiZ .framer-1ynzju2 > :first-child, .framer-W5DiZ .framer-xp2kp8 > :first-child, .framer-W5DiZ .framer-13cl1w0 > :first-child, .framer-W5DiZ .framer-h2zvmi > :first-child, .framer-W5DiZ .framer-10fod2g > :first-child, .framer-W5DiZ .framer-oe2zsm > :first-child, .framer-W5DiZ .framer-1rsvfhw > :first-child, .framer-W5DiZ .framer-zkngqb > :first-child, .framer-W5DiZ .framer-115c0to > :first-child, .framer-W5DiZ .framer-u1ktwo > :first-child, .framer-W5DiZ .framer-1uvig1k > :first-child, .framer-W5DiZ .framer-1yg8a9t > :first-child, .framer-W5DiZ .framer-pialyd > :first-child, .framer-W5DiZ .framer-lxq67t > :first-child, .framer-W5DiZ .framer-4xa82z > :first-child, .framer-W5DiZ .framer-1dmz6s2 > :first-child, .framer-W5DiZ .framer-1eode7n > :first-child, .framer-W5DiZ .framer-8s8zh > :first-child, .framer-W5DiZ .framer-1fztgqf > :first-child, .framer-W5DiZ .framer-uk5h9v > :first-child, .framer-W5DiZ .framer-5pnyom > :first-child, .framer-W5DiZ .framer-1oeojl0 > :first-child, .framer-W5DiZ .framer-ymiho5 > :first-child, .framer-W5DiZ .framer-1152ep9 > :first-child, .framer-W5DiZ .framer-10ngmkc > :first-child, .framer-W5DiZ .framer-11l21ex > :first-child, .framer-W5DiZ .framer-wmzjrn > :first-child, .framer-W5DiZ .framer-ptuo7m > :first-child, .framer-W5DiZ .framer-1v75egc > :first-child, .framer-W5DiZ .framer-1tsg38u > :first-child, .framer-W5DiZ .framer-gtmf59 > :first-child, .framer-W5DiZ .framer-17rpuwu > :first-child, .framer-W5DiZ .framer-ts3nul > :first-child, .framer-W5DiZ .framer-1yrie5k > :first-child, .framer-W5DiZ .framer-1orpgtz > :first-child, .framer-W5DiZ .framer-rgsasi > :first-child, .framer-W5DiZ .framer-1e42c3u > :first-child, .framer-W5DiZ .framer-dsn2oi > :first-child, .framer-W5DiZ .framer-1ephre7 > :first-child, .framer-W5DiZ .framer-md7yvl > :first-child, .framer-W5DiZ .framer-czboby > :first-child, .framer-W5DiZ .framer-1s8y8cb > :first-child, .framer-W5DiZ .framer-1eap0zw > :first-child, .framer-W5DiZ .framer-o2ofm3 > :first-child, .framer-W5DiZ .framer-18st088 > :first-child, .framer-W5DiZ .framer-1gm0rr3 > :first-child, .framer-W5DiZ .framer-18pvi9h > :first-child, .framer-W5DiZ .framer-qeb1rw > :first-child, .framer-W5DiZ .framer-1k30ptf > :first-child, .framer-W5DiZ .framer-ny55g0 > :first-child, .framer-W5DiZ .framer-1adn0ib > :first-child, .framer-W5DiZ .framer-1gj22qv > :first-child { margin-top: 0px; } .framer-W5DiZ.framer-72rtr7 > :last-child, .framer-W5DiZ .framer-1e23b8i > :last-child, .framer-W5DiZ .framer-2h4pwn > :last-child, .framer-W5DiZ .framer-13h5g3v > :last-child, .framer-W5DiZ .framer-o6onpj > :last-child, .framer-W5DiZ .framer-1aydqiq > :last-child, .framer-W5DiZ .framer-1vwbpp6 > :last-child, .framer-W5DiZ .framer-4h1vwc > :last-child, .framer-W5DiZ .framer-13mnrpi > :last-child, .framer-W5DiZ .framer-424rst > :last-child, .framer-W5DiZ .framer-1p97748 > :last-child, .framer-W5DiZ .framer-hedub8 > :last-child, .framer-W5DiZ .framer-1pe4fqq > :last-child, .framer-W5DiZ .framer-c80e8j > :last-child, .framer-W5DiZ .framer-1thkihl > :last-child, .framer-W5DiZ .framer-15ehqei > :last-child, .framer-W5DiZ .framer-z210q7 > :last-child, .framer-W5DiZ .framer-111suzv > :last-child, .framer-W5DiZ .framer-1sgx2x2 > :last-child, .framer-W5DiZ .framer-t8hvx1 > :last-child, .framer-W5DiZ .framer-1rx3rf4 > :last-child, .framer-W5DiZ .framer-18jjuli > :last-child, .framer-W5DiZ .framer-5vrg3i > :last-child, .framer-W5DiZ .framer-1rba5xh > :last-child, .framer-W5DiZ .framer-3z44k1 > :last-child, .framer-W5DiZ .framer-gg7oby > :last-child, .framer-W5DiZ .framer-lyh2td > :last-child, .framer-W5DiZ .framer-bsju9m > :last-child, .framer-W5DiZ .framer-10i50mm > :last-child, .framer-W5DiZ .framer-1dtxd5z > :last-child, .framer-W5DiZ .framer-nmpiy0 > :last-child, .framer-W5DiZ .framer-efm2q8 > :last-child, .framer-W5DiZ .framer-1ym2cx5 > :last-child, .framer-W5DiZ .framer-1o27jbn > :last-child, .framer-W5DiZ .framer-1o5rhof > :last-child, .framer-W5DiZ .framer-g8nc2n > :last-child, .framer-W5DiZ .framer-j1ne3r > :last-child, .framer-W5DiZ .framer-1y6minl > :last-child, .framer-W5DiZ .framer-17d2hs8 > :last-child, .framer-W5DiZ .framer-14tbovn > :last-child, .framer-W5DiZ .framer-gzxiu0 > :last-child, .framer-W5DiZ .framer-1wl6mgb > :last-child, .framer-W5DiZ .framer-1x52dc0 > :last-child, .framer-W5DiZ .framer-62xax2 > :last-child, .framer-W5DiZ .framer-1yj95y8 > :last-child, .framer-W5DiZ .framer-j0jmoa > :last-child, .framer-W5DiZ .framer-1hz34wf > :last-child, .framer-W5DiZ .framer-1l17xc0 > :last-child, .framer-W5DiZ .framer-yow1zd > :last-child, .framer-W5DiZ .framer-1r20pqc > :last-child, .framer-W5DiZ .framer-1ynzju2 > :last-child, .framer-W5DiZ .framer-xp2kp8 > :last-child, .framer-W5DiZ .framer-13cl1w0 > :last-child, .framer-W5DiZ .framer-h2zvmi > :last-child, .framer-W5DiZ .framer-10fod2g > :last-child, .framer-W5DiZ .framer-oe2zsm > :last-child, .framer-W5DiZ .framer-1rsvfhw > :last-child, .framer-W5DiZ .framer-zkngqb > :last-child, .framer-W5DiZ .framer-115c0to > :last-child, .framer-W5DiZ .framer-u1ktwo > :last-child, .framer-W5DiZ .framer-1uvig1k > :last-child, .framer-W5DiZ .framer-1yg8a9t > :last-child, .framer-W5DiZ .framer-pialyd > :last-child, .framer-W5DiZ .framer-lxq67t > :last-child, .framer-W5DiZ .framer-4xa82z > :last-child, .framer-W5DiZ .framer-1dmz6s2 > :last-child, .framer-W5DiZ .framer-1eode7n > :last-child, .framer-W5DiZ .framer-8s8zh > :last-child, .framer-W5DiZ .framer-1fztgqf > :last-child, .framer-W5DiZ .framer-uk5h9v > :last-child, .framer-W5DiZ .framer-5pnyom > :last-child, .framer-W5DiZ .framer-1oeojl0 > :last-child, .framer-W5DiZ .framer-ymiho5 > :last-child, .framer-W5DiZ .framer-1152ep9 > :last-child, .framer-W5DiZ .framer-10ngmkc > :last-child, .framer-W5DiZ .framer-11l21ex > :last-child, .framer-W5DiZ .framer-wmzjrn > :last-child, .framer-W5DiZ .framer-ptuo7m > :last-child, .framer-W5DiZ .framer-1v75egc > :last-child, .framer-W5DiZ .framer-1tsg38u > :last-child, .framer-W5DiZ .framer-gtmf59 > :last-child, .framer-W5DiZ .framer-17rpuwu > :last-child, .framer-W5DiZ .framer-ts3nul > :last-child, .framer-W5DiZ .framer-1yrie5k > :last-child, .framer-W5DiZ .framer-1orpgtz > :last-child, .framer-W5DiZ .framer-rgsasi > :last-child, .framer-W5DiZ .framer-1e42c3u > :last-child, .framer-W5DiZ .framer-dsn2oi > :last-child, .framer-W5DiZ .framer-1ephre7 > :last-child, .framer-W5DiZ .framer-md7yvl > :last-child, .framer-W5DiZ .framer-czboby > :last-child, .framer-W5DiZ .framer-1s8y8cb > :last-child, .framer-W5DiZ .framer-1eap0zw > :last-child, .framer-W5DiZ .framer-o2ofm3 > :last-child, .framer-W5DiZ .framer-18st088 > :last-child, .framer-W5DiZ .framer-1gm0rr3 > :last-child, .framer-W5DiZ .framer-18pvi9h > :last-child, .framer-W5DiZ .framer-qeb1rw > :last-child, .framer-W5DiZ .framer-1k30ptf > :last-child, .framer-W5DiZ .framer-ny55g0 > :last-child, .framer-W5DiZ .framer-1adn0ib > :last-child, .framer-W5DiZ .framer-1gj22qv > :last-child { margin-bottom: 0px; } .framer-W5DiZ .framer-1e23b8i > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-W5DiZ .framer-2h4pwn > *, .framer-W5DiZ .framer-13h5g3v > *, .framer-W5DiZ .framer-o6onpj > *, .framer-W5DiZ .framer-1aydqiq > *, .framer-W5DiZ .framer-1vwbpp6 > *, .framer-W5DiZ .framer-4h1vwc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-W5DiZ .framer-1th4i0 > *, .framer-W5DiZ .framer-2pewt7 > *, .framer-W5DiZ .framer-1ucjrpu > *, .framer-W5DiZ .framer-1mgs204 > *, .framer-W5DiZ .framer-lmuxle > *, .framer-W5DiZ .framer-1nsct24 > *, .framer-W5DiZ .framer-6pfdwi > *, .framer-W5DiZ .framer-1jxsrp8 > *, .framer-W5DiZ .framer-1o6s6k5 > *, .framer-W5DiZ .framer-ien3gq > *, .framer-W5DiZ .framer-19fp339 > *, .framer-W5DiZ .framer-1ma53tt > *, .framer-W5DiZ .framer-7x4yfv > *, .framer-W5DiZ .framer-u3k5zi > *, .framer-W5DiZ .framer-1s1hota > *, .framer-W5DiZ .framer-144pszz > *, .framer-W5DiZ .framer-n782ch > *, .framer-W5DiZ .framer-d70swr > *, .framer-W5DiZ .framer-1p9xuk > *, .framer-W5DiZ .framer-wzwd08 > *, .framer-W5DiZ .framer-17pq6vk > *, .framer-W5DiZ .framer-125ld8l > *, .framer-W5DiZ .framer-1fuwe6z > *, .framer-W5DiZ .framer-vkbnoc > *, .framer-W5DiZ .framer-1sqtcvt > *, .framer-W5DiZ .framer-p53w23 > *, .framer-W5DiZ .framer-1vge69d > *, .framer-W5DiZ .framer-tyzw82 > *, .framer-W5DiZ .framer-vssj39 > *, .framer-W5DiZ .framer-epuebt > *, .framer-W5DiZ .framer-31tgbe > *, .framer-W5DiZ .framer-pyhbj8 > *, .framer-W5DiZ .framer-zhkylp > *, .framer-W5DiZ .framer-13sgmr8 > *, .framer-W5DiZ .framer-13301xj > *, .framer-W5DiZ .framer-bh0gpf > *, .framer-W5DiZ .framer-n328rc > *, .framer-W5DiZ .framer-48qjyj > *, .framer-W5DiZ .framer-1c7kqxi > *, .framer-W5DiZ .framer-9p1gkw > *, .framer-W5DiZ .framer-1fx4p4s > *, .framer-W5DiZ .framer-5e93mg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-W5DiZ .framer-1th4i0 > :first-child, .framer-W5DiZ .framer-1nxazdl > :first-child, .framer-W5DiZ .framer-1t1x343 > :first-child, .framer-W5DiZ .framer-2pewt7 > :first-child, .framer-W5DiZ .framer-upuybc > :first-child, .framer-W5DiZ .framer-1ucjrpu > :first-child, .framer-W5DiZ .framer-191upm3 > :first-child, .framer-W5DiZ .framer-1mgs204 > :first-child, .framer-W5DiZ .framer-1eum4kw > :first-child, .framer-W5DiZ .framer-lmuxle > :first-child, .framer-W5DiZ .framer-1thbwlv > :first-child, .framer-W5DiZ .framer-1nsct24 > :first-child, .framer-W5DiZ .framer-1kdzczx > :first-child, .framer-W5DiZ .framer-6pfdwi > :first-child, .framer-W5DiZ .framer-eexj9g > :first-child, .framer-W5DiZ .framer-1jxsrp8 > :first-child, .framer-W5DiZ .framer-fd0s55 > :first-child, .framer-W5DiZ .framer-1o6s6k5 > :first-child, .framer-W5DiZ .framer-pnifv9 > :first-child, .framer-W5DiZ .framer-ien3gq > :first-child, .framer-W5DiZ .framer-16hhrnm > :first-child, .framer-W5DiZ .framer-19fp339 > :first-child, .framer-W5DiZ .framer-1ca83ja > :first-child, .framer-W5DiZ .framer-1ma53tt > :first-child, .framer-W5DiZ .framer-p83x02 > :first-child, .framer-W5DiZ .framer-7x4yfv > :first-child, .framer-W5DiZ .framer-7dmxi9 > :first-child, .framer-W5DiZ .framer-u3k5zi > :first-child, .framer-W5DiZ .framer-eep3my > :first-child, .framer-W5DiZ .framer-1s1hota > :first-child, .framer-W5DiZ .framer-1af91hs > :first-child, .framer-W5DiZ .framer-144pszz > :first-child, .framer-W5DiZ .framer-1ubdrsj > :first-child, .framer-W5DiZ .framer-n782ch > :first-child, .framer-W5DiZ .framer-1mob9d > :first-child, .framer-W5DiZ .framer-d70swr > :first-child, .framer-W5DiZ .framer-1m7e41l > :first-child, .framer-W5DiZ .framer-1p9xuk > :first-child, .framer-W5DiZ .framer-bvbyvg > :first-child, .framer-W5DiZ .framer-wzwd08 > :first-child, .framer-W5DiZ .framer-rfdit2 > :first-child, .framer-W5DiZ .framer-17pq6vk > :first-child, .framer-W5DiZ .framer-1wx7wux > :first-child, .framer-W5DiZ .framer-125ld8l > :first-child, .framer-W5DiZ .framer-1tiwl20 > :first-child, .framer-W5DiZ .framer-1fuwe6z > :first-child, .framer-W5DiZ .framer-mmagdq > :first-child, .framer-W5DiZ .framer-vkbnoc > :first-child, .framer-W5DiZ .framer-hpd80s > :first-child, .framer-W5DiZ .framer-1sqtcvt > :first-child, .framer-W5DiZ .framer-ge5or0 > :first-child, .framer-W5DiZ .framer-p53w23 > :first-child, .framer-W5DiZ .framer-kfwpzg > :first-child, .framer-W5DiZ .framer-1vge69d > :first-child, .framer-W5DiZ .framer-1d020jz > :first-child, .framer-W5DiZ .framer-tyzw82 > :first-child, .framer-W5DiZ .framer-12zs7x3 > :first-child, .framer-W5DiZ .framer-vssj39 > :first-child, .framer-W5DiZ .framer-1tfklhu > :first-child, .framer-W5DiZ .framer-epuebt > :first-child, .framer-W5DiZ .framer-my4k20 > :first-child, .framer-W5DiZ .framer-31tgbe > :first-child, .framer-W5DiZ .framer-1b7tex3 > :first-child, .framer-W5DiZ .framer-pyhbj8 > :first-child, .framer-W5DiZ .framer-1cejwky > :first-child, .framer-W5DiZ .framer-zhkylp > :first-child, .framer-W5DiZ .framer-1mr46yr > :first-child, .framer-W5DiZ .framer-13sgmr8 > :first-child, .framer-W5DiZ .framer-1dhc52d > :first-child, .framer-W5DiZ .framer-13301xj > :first-child, .framer-W5DiZ .framer-hiy3ym > :first-child, .framer-W5DiZ .framer-bh0gpf > :first-child, .framer-W5DiZ .framer-1hksytz > :first-child, .framer-W5DiZ .framer-n328rc > :first-child, .framer-W5DiZ .framer-1hzhxpu > :first-child, .framer-W5DiZ .framer-48qjyj > :first-child, .framer-W5DiZ .framer-bqr4er > :first-child, .framer-W5DiZ .framer-1c7kqxi > :first-child, .framer-W5DiZ .framer-9wgbtr > :first-child, .framer-W5DiZ .framer-9p1gkw > :first-child, .framer-W5DiZ .framer-10ir7e4 > :first-child, .framer-W5DiZ .framer-1fx4p4s > :first-child, .framer-W5DiZ .framer-19c3j6 > :first-child, .framer-W5DiZ .framer-fgbt91 > :first-child, .framer-W5DiZ .framer-5e93mg > :first-child, .framer-W5DiZ .framer-1kvwt3t > :first-child, .framer-W5DiZ .framer-16ygmvk > :first-child, .framer-W5DiZ .framer-bcb8m > :first-child, .framer-W5DiZ .framer-8rwagx > :first-child, .framer-W5DiZ .framer-m82m9f > :first-child, .framer-W5DiZ .framer-1wssrte > :first-child, .framer-W5DiZ .framer-30b3wy > :first-child, .framer-W5DiZ .framer-2ei535 > :first-child, .framer-W5DiZ .framer-1jedu9j > :first-child, .framer-W5DiZ .framer-crgbqu > :first-child, .framer-W5DiZ .framer-1nlmrjg > :first-child, .framer-W5DiZ .framer-110k2d0 > :first-child { margin-left: 0px; } .framer-W5DiZ .framer-1th4i0 > :last-child, .framer-W5DiZ .framer-1nxazdl > :last-child, .framer-W5DiZ .framer-1t1x343 > :last-child, .framer-W5DiZ .framer-2pewt7 > :last-child, .framer-W5DiZ .framer-upuybc > :last-child, .framer-W5DiZ .framer-1ucjrpu > :last-child, .framer-W5DiZ .framer-191upm3 > :last-child, .framer-W5DiZ .framer-1mgs204 > :last-child, .framer-W5DiZ .framer-1eum4kw > :last-child, .framer-W5DiZ .framer-lmuxle > :last-child, .framer-W5DiZ .framer-1thbwlv > :last-child, .framer-W5DiZ .framer-1nsct24 > :last-child, .framer-W5DiZ .framer-1kdzczx > :last-child, .framer-W5DiZ .framer-6pfdwi > :last-child, .framer-W5DiZ .framer-eexj9g > :last-child, .framer-W5DiZ .framer-1jxsrp8 > :last-child, .framer-W5DiZ .framer-fd0s55 > :last-child, .framer-W5DiZ .framer-1o6s6k5 > :last-child, .framer-W5DiZ .framer-pnifv9 > :last-child, .framer-W5DiZ .framer-ien3gq > :last-child, .framer-W5DiZ .framer-16hhrnm > :last-child, .framer-W5DiZ .framer-19fp339 > :last-child, .framer-W5DiZ .framer-1ca83ja > :last-child, .framer-W5DiZ .framer-1ma53tt > :last-child, .framer-W5DiZ .framer-p83x02 > :last-child, .framer-W5DiZ .framer-7x4yfv > :last-child, .framer-W5DiZ .framer-7dmxi9 > :last-child, .framer-W5DiZ .framer-u3k5zi > :last-child, .framer-W5DiZ .framer-eep3my > :last-child, .framer-W5DiZ .framer-1s1hota > :last-child, .framer-W5DiZ .framer-1af91hs > :last-child, .framer-W5DiZ .framer-144pszz > :last-child, .framer-W5DiZ .framer-1ubdrsj > :last-child, .framer-W5DiZ .framer-n782ch > :last-child, .framer-W5DiZ .framer-1mob9d > :last-child, .framer-W5DiZ .framer-d70swr > :last-child, .framer-W5DiZ .framer-1m7e41l > :last-child, .framer-W5DiZ .framer-1p9xuk > :last-child, .framer-W5DiZ .framer-bvbyvg > :last-child, .framer-W5DiZ .framer-wzwd08 > :last-child, .framer-W5DiZ .framer-rfdit2 > :last-child, .framer-W5DiZ .framer-17pq6vk > :last-child, .framer-W5DiZ .framer-1wx7wux > :last-child, .framer-W5DiZ .framer-125ld8l > :last-child, .framer-W5DiZ .framer-1tiwl20 > :last-child, .framer-W5DiZ .framer-1fuwe6z > :last-child, .framer-W5DiZ .framer-mmagdq > :last-child, .framer-W5DiZ .framer-vkbnoc > :last-child, .framer-W5DiZ .framer-hpd80s > :last-child, .framer-W5DiZ .framer-1sqtcvt > :last-child, .framer-W5DiZ .framer-ge5or0 > :last-child, .framer-W5DiZ .framer-p53w23 > :last-child, .framer-W5DiZ .framer-kfwpzg > :last-child, .framer-W5DiZ .framer-1vge69d > :last-child, .framer-W5DiZ .framer-1d020jz > :last-child, .framer-W5DiZ .framer-tyzw82 > :last-child, .framer-W5DiZ .framer-12zs7x3 > :last-child, .framer-W5DiZ .framer-vssj39 > :last-child, .framer-W5DiZ .framer-1tfklhu > :last-child, .framer-W5DiZ .framer-epuebt > :last-child, .framer-W5DiZ .framer-my4k20 > :last-child, .framer-W5DiZ .framer-31tgbe > :last-child, .framer-W5DiZ .framer-1b7tex3 > :last-child, .framer-W5DiZ .framer-pyhbj8 > :last-child, .framer-W5DiZ .framer-1cejwky > :last-child, .framer-W5DiZ .framer-zhkylp > :last-child, .framer-W5DiZ .framer-1mr46yr > :last-child, .framer-W5DiZ .framer-13sgmr8 > :last-child, .framer-W5DiZ .framer-1dhc52d > :last-child, .framer-W5DiZ .framer-13301xj > :last-child, .framer-W5DiZ .framer-hiy3ym > :last-child, .framer-W5DiZ .framer-bh0gpf > :last-child, .framer-W5DiZ .framer-1hksytz > :last-child, .framer-W5DiZ .framer-n328rc > :last-child, .framer-W5DiZ .framer-1hzhxpu > :last-child, .framer-W5DiZ .framer-48qjyj > :last-child, .framer-W5DiZ .framer-bqr4er > :last-child, .framer-W5DiZ .framer-1c7kqxi > :last-child, .framer-W5DiZ .framer-9wgbtr > :last-child, .framer-W5DiZ .framer-9p1gkw > :last-child, .framer-W5DiZ .framer-10ir7e4 > :last-child, .framer-W5DiZ .framer-1fx4p4s > :last-child, .framer-W5DiZ .framer-19c3j6 > :last-child, .framer-W5DiZ .framer-fgbt91 > :last-child, .framer-W5DiZ .framer-5e93mg > :last-child, .framer-W5DiZ .framer-1kvwt3t > :last-child, .framer-W5DiZ .framer-16ygmvk > :last-child, .framer-W5DiZ .framer-bcb8m > :last-child, .framer-W5DiZ .framer-8rwagx > :last-child, .framer-W5DiZ .framer-m82m9f > :last-child, .framer-W5DiZ .framer-1wssrte > :last-child, .framer-W5DiZ .framer-30b3wy > :last-child, .framer-W5DiZ .framer-2ei535 > :last-child, .framer-W5DiZ .framer-1jedu9j > :last-child, .framer-W5DiZ .framer-crgbqu > :last-child, .framer-W5DiZ .framer-1nlmrjg > :last-child, .framer-W5DiZ .framer-110k2d0 > :last-child { margin-right: 0px; } .framer-W5DiZ .framer-1nxazdl > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-W5DiZ .framer-13mnrpi > *, .framer-W5DiZ .framer-1eode7n > *, .framer-W5DiZ .framer-ymiho5 > *, .framer-W5DiZ .framer-gtmf59 > *, .framer-W5DiZ .framer-ny55g0 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-W5DiZ .framer-424rst > *, .framer-W5DiZ .framer-8s8zh > *, .framer-W5DiZ .framer-1152ep9 > *, .framer-W5DiZ .framer-17rpuwu > *, .framer-W5DiZ .framer-rgsasi > *, .framer-W5DiZ .framer-dsn2oi > *, .framer-W5DiZ .framer-md7yvl > *, .framer-W5DiZ .framer-1s8y8cb > *, .framer-W5DiZ .framer-o2ofm3 > *, .framer-W5DiZ .framer-1gm0rr3 > *, .framer-W5DiZ .framer-qeb1rw > *, .framer-W5DiZ .framer-1adn0ib > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-W5DiZ .framer-1t1x343 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-W5DiZ .framer-hedub8 > *, .framer-W5DiZ .framer-1sgx2x2 > *, .framer-W5DiZ .framer-gg7oby > *, .framer-W5DiZ .framer-1ym2cx5 > *, .framer-W5DiZ .framer-14tbovn > *, .framer-W5DiZ .framer-1hz34wf > *, .framer-W5DiZ .framer-h2zvmi > *, .framer-W5DiZ .framer-1uvig1k > *, .framer-W5DiZ .framer-1fztgqf > *, .framer-W5DiZ .framer-uk5h9v > *, .framer-W5DiZ .framer-5pnyom > *, .framer-W5DiZ .framer-1oeojl0 > *, .framer-W5DiZ .framer-10ngmkc > *, .framer-W5DiZ .framer-11l21ex > *, .framer-W5DiZ .framer-wmzjrn > *, .framer-W5DiZ .framer-ptuo7m > *, .framer-W5DiZ .framer-1v75egc > *, .framer-W5DiZ .framer-1tsg38u > *, .framer-W5DiZ .framer-1gj22qv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-W5DiZ .framer-1pe4fqq > *, .framer-W5DiZ .framer-c80e8j > *, .framer-W5DiZ .framer-1thkihl > *, .framer-W5DiZ .framer-15ehqei > *, .framer-W5DiZ .framer-z210q7 > *, .framer-W5DiZ .framer-t8hvx1 > *, .framer-W5DiZ .framer-1rx3rf4 > *, .framer-W5DiZ .framer-18jjuli > *, .framer-W5DiZ .framer-5vrg3i > *, .framer-W5DiZ .framer-1rba5xh > *, .framer-W5DiZ .framer-lyh2td > *, .framer-W5DiZ .framer-bsju9m > *, .framer-W5DiZ .framer-10i50mm > *, .framer-W5DiZ .framer-1dtxd5z > *, .framer-W5DiZ .framer-nmpiy0 > *, .framer-W5DiZ .framer-1o27jbn > *, .framer-W5DiZ .framer-1o5rhof > *, .framer-W5DiZ .framer-g8nc2n > *, .framer-W5DiZ .framer-j1ne3r > *, .framer-W5DiZ .framer-1y6minl > *, .framer-W5DiZ .framer-gzxiu0 > *, .framer-W5DiZ .framer-1wl6mgb > *, .framer-W5DiZ .framer-1x52dc0 > *, .framer-W5DiZ .framer-62xax2 > *, .framer-W5DiZ .framer-1yj95y8 > *, .framer-W5DiZ .framer-1l17xc0 > *, .framer-W5DiZ .framer-yow1zd > *, .framer-W5DiZ .framer-1r20pqc > *, .framer-W5DiZ .framer-1ynzju2 > *, .framer-W5DiZ .framer-xp2kp8 > *, .framer-W5DiZ .framer-10fod2g > *, .framer-W5DiZ .framer-oe2zsm > *, .framer-W5DiZ .framer-1rsvfhw > *, .framer-W5DiZ .framer-zkngqb > *, .framer-W5DiZ .framer-115c0to > *, .framer-W5DiZ .framer-1yg8a9t > *, .framer-W5DiZ .framer-pialyd > *, .framer-W5DiZ .framer-lxq67t > *, .framer-W5DiZ .framer-4xa82z > *, .framer-W5DiZ .framer-1dmz6s2 > *, .framer-W5DiZ .framer-ts3nul > *, .framer-W5DiZ .framer-1yrie5k > *, .framer-W5DiZ .framer-1orpgtz > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-W5DiZ .framer-upuybc > *, .framer-W5DiZ .framer-191upm3 > *, .framer-W5DiZ .framer-1eum4kw > *, .framer-W5DiZ .framer-1thbwlv > *, .framer-W5DiZ .framer-1kdzczx > *, .framer-W5DiZ .framer-eexj9g > *, .framer-W5DiZ .framer-fd0s55 > *, .framer-W5DiZ .framer-pnifv9 > *, .framer-W5DiZ .framer-16hhrnm > *, .framer-W5DiZ .framer-1ca83ja > *, .framer-W5DiZ .framer-p83x02 > *, .framer-W5DiZ .framer-7dmxi9 > *, .framer-W5DiZ .framer-eep3my > *, .framer-W5DiZ .framer-1af91hs > *, .framer-W5DiZ .framer-1ubdrsj > *, .framer-W5DiZ .framer-1mob9d > *, .framer-W5DiZ .framer-1m7e41l > *, .framer-W5DiZ .framer-bvbyvg > *, .framer-W5DiZ .framer-rfdit2 > *, .framer-W5DiZ .framer-1wx7wux > *, .framer-W5DiZ .framer-1tiwl20 > *, .framer-W5DiZ .framer-mmagdq > *, .framer-W5DiZ .framer-hpd80s > *, .framer-W5DiZ .framer-ge5or0 > *, .framer-W5DiZ .framer-kfwpzg > *, .framer-W5DiZ .framer-1d020jz > *, .framer-W5DiZ .framer-12zs7x3 > *, .framer-W5DiZ .framer-1tfklhu > *, .framer-W5DiZ .framer-my4k20 > *, .framer-W5DiZ .framer-1b7tex3 > *, .framer-W5DiZ .framer-1cejwky > *, .framer-W5DiZ .framer-1mr46yr > *, .framer-W5DiZ .framer-1dhc52d > *, .framer-W5DiZ .framer-hiy3ym > *, .framer-W5DiZ .framer-1hksytz > *, .framer-W5DiZ .framer-1hzhxpu > *, .framer-W5DiZ .framer-bqr4er > *, .framer-W5DiZ .framer-9wgbtr > *, .framer-W5DiZ .framer-10ir7e4 > *, .framer-W5DiZ .framer-19c3j6 > *, .framer-W5DiZ .framer-1nlmrjg > *, .framer-W5DiZ .framer-110k2d0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-W5DiZ .framer-fgbt91 > * { margin: 0px; margin-left: calc(104px / 2); margin-right: calc(104px / 2); } .framer-W5DiZ .framer-1kvwt3t > *, .framer-W5DiZ .framer-16ygmvk > *, .framer-W5DiZ .framer-bcb8m > *, .framer-W5DiZ .framer-8rwagx > *, .framer-W5DiZ .framer-m82m9f > *, .framer-W5DiZ .framer-1wssrte > *, .framer-W5DiZ .framer-30b3wy > *, .framer-W5DiZ .framer-2ei535 > *, .framer-W5DiZ .framer-1jedu9j > *, .framer-W5DiZ .framer-crgbqu > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-W5DiZ .framer-1e42c3u > *, .framer-W5DiZ .framer-1ephre7 > *, .framer-W5DiZ .framer-czboby > *, .framer-W5DiZ .framer-1eap0zw > *, .framer-W5DiZ .framer-18st088 > *, .framer-W5DiZ .framer-18pvi9h > *, .framer-W5DiZ .framer-1k30ptf > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-W5DiZ { background: white; } .framer-W5DiZ.framer-72rtr7 { width: 810px; } .framer-W5DiZ .framer-1liv5jc-container { height: auto; } .framer-W5DiZ .framer-1e23b8i { gap: 24px; padding: 56px 24px 72px 24px; } .framer-W5DiZ .framer-bbn9tt { order: 0; width: 100%; } .framer-W5DiZ .framer-1gwt1tg { order: 1; width: 100%; } .framer-W5DiZ .framer-fpsjrl-container { order: 2; } .framer-W5DiZ .framer-1grnrd8-container { height: 160px; } .framer-W5DiZ .framer-13mnrpi { gap: 40px; padding: 40px 24px 40px 24px; } .framer-W5DiZ .framer-424rst, .framer-W5DiZ .framer-dt1dr8, .framer-W5DiZ .framer-1152ep9, .framer-W5DiZ .framer-18ch0vs, .framer-W5DiZ .framer-wxm59i, .framer-W5DiZ .framer-1rbcd2d, .framer-W5DiZ .framer-1cwcahm, .framer-W5DiZ .framer-17rpuwu, .framer-W5DiZ .framer-sky2wl { width: 100%; } .framer-W5DiZ .framer-1kmhca, .framer-W5DiZ .framer-1dtcmf0, .framer-W5DiZ .framer-6ospka, .framer-W5DiZ .framer-12dgh40, .framer-W5DiZ .framer-130bfm8 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-W5DiZ .framer-ymiho5 { gap: 40px; padding: 48px 24px 48px 24px; width: 100%; } .framer-W5DiZ .framer-n959q0 { flex-direction: column; gap: 16px; height: min-content; justify-content: center; width: 100%; } .framer-W5DiZ .framer-10ngmkc, .framer-W5DiZ .framer-wmzjrn, .framer-W5DiZ .framer-1v75egc { flex-direction: row; height: min-content; width: 560px; } .framer-W5DiZ .framer-11l21ex, .framer-W5DiZ .framer-1tsg38u { flex: 1 0 0px; width: 1px; } .framer-W5DiZ .framer-ro5d7r { order: 0; } .framer-W5DiZ .framer-ptuo7m { flex: 1 0 0px; order: 1; width: 1px; } .framer-W5DiZ .framer-gtmf59 { gap: 40px; padding: 32px 24px 24px 24px; } .framer-W5DiZ .framer-fgbt91 { gap: 64px; } .framer-W5DiZ .framer-1nlmrjg { padding: 24px; } .framer-W5DiZ .framer-6rtcm7-container { align-self: unset; } .framer-W5DiZ .framer-ny55g0 { gap: 40px; padding: 48px 24px 48px 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-W5DiZ .framer-1e23b8i, .framer-W5DiZ .framer-13mnrpi, .framer-W5DiZ .framer-ymiho5, .framer-W5DiZ .framer-n959q0, .framer-W5DiZ .framer-10ngmkc, .framer-W5DiZ .framer-wmzjrn, .framer-W5DiZ .framer-1v75egc, .framer-W5DiZ .framer-gtmf59, .framer-W5DiZ .framer-fgbt91, .framer-W5DiZ .framer-ny55g0 { gap: 0px; } .framer-W5DiZ .framer-1e23b8i > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-W5DiZ .framer-1e23b8i > :first-child, .framer-W5DiZ .framer-13mnrpi > :first-child, .framer-W5DiZ .framer-ymiho5 > :first-child, .framer-W5DiZ .framer-n959q0 > :first-child, .framer-W5DiZ .framer-gtmf59 > :first-child, .framer-W5DiZ .framer-ny55g0 > :first-child { margin-top: 0px; } .framer-W5DiZ .framer-1e23b8i > :last-child, .framer-W5DiZ .framer-13mnrpi > :last-child, .framer-W5DiZ .framer-ymiho5 > :last-child, .framer-W5DiZ .framer-n959q0 > :last-child, .framer-W5DiZ .framer-gtmf59 > :last-child, .framer-W5DiZ .framer-ny55g0 > :last-child { margin-bottom: 0px; } .framer-W5DiZ .framer-13mnrpi > *, .framer-W5DiZ .framer-ymiho5 > *, .framer-W5DiZ .framer-gtmf59 > *, .framer-W5DiZ .framer-ny55g0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-W5DiZ .framer-n959q0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-W5DiZ .framer-10ngmkc > *, .framer-W5DiZ .framer-wmzjrn > *, .framer-W5DiZ .framer-1v75egc > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-W5DiZ .framer-10ngmkc > :first-child, .framer-W5DiZ .framer-wmzjrn > :first-child, .framer-W5DiZ .framer-1v75egc > :first-child, .framer-W5DiZ .framer-fgbt91 > :first-child { margin-left: 0px; } .framer-W5DiZ .framer-10ngmkc > :last-child, .framer-W5DiZ .framer-wmzjrn > :last-child, .framer-W5DiZ .framer-1v75egc > :last-child, .framer-W5DiZ .framer-fgbt91 > :last-child { margin-right: 0px; } .framer-W5DiZ .framer-fgbt91 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-W5DiZ { background: white; } .framer-W5DiZ.framer-72rtr7 { width: 390px; } .framer-W5DiZ .framer-1liv5jc-container { height: auto; order: 0; } .framer-W5DiZ .framer-1e23b8i { gap: 24px; order: 1; padding: 56px 16px 64px 16px; } .framer-W5DiZ .framer-bbn9tt, .framer-W5DiZ .framer-1gwt1tg, .framer-W5DiZ .framer-424rst, .framer-W5DiZ .framer-dt1dr8, .framer-W5DiZ .framer-1152ep9, .framer-W5DiZ .framer-18ch0vs, .framer-W5DiZ .framer-wxm59i, .framer-W5DiZ .framer-1rbcd2d, .framer-W5DiZ .framer-17rpuwu, .framer-W5DiZ .framer-sky2wl { width: 100%; } .framer-W5DiZ .framer-2h4pwn { order: 2; } .framer-W5DiZ .framer-1grnrd8-container { height: 120px; } .framer-W5DiZ .framer-13mnrpi { order: 3; padding: 40px 16px 40px 16px; } .framer-W5DiZ .framer-1kmhca, .framer-W5DiZ .framer-ruv84w, .framer-W5DiZ .framer-130bfm8 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-W5DiZ .framer-ymiho5 { gap: 32px; order: 5; padding: 48px 16px 48px 16px; width: 100%; } .framer-W5DiZ .framer-n959q0 { flex-direction: column; gap: 16px; height: min-content; justify-content: center; width: 100%; } .framer-W5DiZ .framer-10ngmkc, .framer-W5DiZ .framer-wmzjrn, .framer-W5DiZ .framer-1v75egc { height: min-content; width: min-content; } .framer-W5DiZ .framer-ro5d7r, .framer-W5DiZ .framer-xjjdxy { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 160px); width: 160px; } .framer-W5DiZ .framer-gtmf59 { gap: 32px; order: 7; padding: 32px 16px 24px 16px; } .framer-W5DiZ .framer-fgbt91 { align-content: center; align-items: center; flex-direction: column; gap: 64px; } .framer-W5DiZ .framer-1nlmrjg { height: 456px; order: 8; padding: 48px 16px 48px 16px; } .framer-W5DiZ .framer-6rtcm7-container { align-self: unset; height: 100%; } .framer-W5DiZ .framer-ny55g0 { gap: 32px; order: 9; padding: 48px 16px 48px 16px; } .framer-W5DiZ .framer-110k2d0 { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-W5DiZ .framer-1e23b8i, .framer-W5DiZ .framer-ymiho5, .framer-W5DiZ .framer-n959q0, .framer-W5DiZ .framer-gtmf59, .framer-W5DiZ .framer-fgbt91, .framer-W5DiZ .framer-ny55g0 { gap: 0px; } .framer-W5DiZ .framer-1e23b8i > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-W5DiZ .framer-1e23b8i > :first-child, .framer-W5DiZ .framer-ymiho5 > :first-child, .framer-W5DiZ .framer-n959q0 > :first-child, .framer-W5DiZ .framer-gtmf59 > :first-child, .framer-W5DiZ .framer-fgbt91 > :first-child, .framer-W5DiZ .framer-ny55g0 > :first-child { margin-top: 0px; } .framer-W5DiZ .framer-1e23b8i > :last-child, .framer-W5DiZ .framer-ymiho5 > :last-child, .framer-W5DiZ .framer-n959q0 > :last-child, .framer-W5DiZ .framer-gtmf59 > :last-child, .framer-W5DiZ .framer-fgbt91 > :last-child, .framer-W5DiZ .framer-ny55g0 > :last-child { margin-bottom: 0px; } .framer-W5DiZ .framer-ymiho5 > *, .framer-W5DiZ .framer-gtmf59 > *, .framer-W5DiZ .framer-ny55g0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-W5DiZ .framer-n959q0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-W5DiZ .framer-fgbt91 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4934\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Q4uotgG72\":{\"layout\":[\"fixed\",\"auto\"]},\"T3pdjW58B\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-W5DiZ\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4934,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavHeaderFonts,...ButtonFonts,...TickerFonts,...CarouselFonts,...CTAFonts,...FAQFonts,...FooterFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4934\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Q4uotgG72\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T3pdjW58B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "isNumber", "t", "isEasingList", "wrap", "e", "n", "o", "getEasingForSegment", "mix", "noopReturn", "t", "progress", "e", "n", "fillOffset", "o", "s", "mix", "defaultOffset", "interpolate", "f", "r", "clamp", "getEasingForSegment", "isFunction", "t", "isString", "e", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "e", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "P", "j", "testAnimation", "e", "C", "R", "H", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "Y", "createAxisInfo", "createScrollInfo", "J", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "Q", "ee", "resolveEdge", "isString", "isNumber", "te", "resolveOffset", "ne", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "noopReturn", "oe", "ie", "se", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "borderRadiusControl", "ControlType", "usePadding", "props", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "se", "paddingControl", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PmxXfIOLX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1q6z8a5", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "css", "FramergD5joJt0R", "withCSS", "gD5joJt0R_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "j0MyLXxa8_default", "ButtonFonts", "u_2DkHM8O_default", "NavBurgerFonts", "gD5joJt0R_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transformTemplate1", "_", "transformTemplate2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "PmxXfIOLXtxyyif", "overlay", "loadMore", "args", "PmxXfIOLX1pexxm1", "PmxXfIOLXlnyrl0", "PmxXfIOLXifqvtk", "ref1", "pe", "isDisplayed", "isDisplayed1", "ref2", "ref3", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "l", "AnimatePresence", "Floating", "css", "FramerlSy4HlWoD", "withCSS", "lSy4HlWoD_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZVjcDncni", "B4tgbt_h4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap5yjpgz", "args", "onTaphytq6z", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "SVG", "RichText2", "css", "FramerpKiV83IZf", "withCSS", "pKiV83IZf_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "LogoFonts", "getFonts", "j0MyLXxa8_default", "ButtonFonts", "u_2DkHM8O_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "Link", "SVG", "css", "FramerPPblWDcI8", "withCSS", "PPblWDcI8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavHeaderFonts", "getFonts", "lSy4HlWoD_default", "ButtonFonts", "u_2DkHM8O_default", "TickerFonts", "Ticker", "CarouselFonts", "Carousel", "CTAFonts", "e319schyE_default", "FAQFonts", "pKiV83IZf_default", "FooterFooterFonts", "PPblWDcI8_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
