{
  "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.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/ddeyjQ2r9Xibg9wdL56v/Ticker.js", "ssg:https://framerusercontent.com/modules/3hP163J2ODKoBXCWjiFo/fxYtN0oARXBAUx05rU46/Hf8xXn_SV.js", "ssg:https://framerusercontent.com/modules/6C3ckozqpCoMORV220HL/aL95uZj1fu6FjxmolwgY/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,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[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 P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});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]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};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){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.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 f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}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=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.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(l));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=a.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 a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}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\"function\"===typeof 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 r(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){f(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:u(i,s,o[r]),easing:d(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,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));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,A(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=O((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 N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;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=q.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&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=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 X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}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 Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(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}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;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=y(m(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 i=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:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}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 te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.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()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.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 ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,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 se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(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 re={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 ae={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 ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=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 le)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)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[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(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[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:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.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)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.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{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H 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}from\"framer-motion\";import{resize}from\"@motionone/dom\";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;const numChildren=Children.count(slots);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 = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.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 isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (1c1e241)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/ddeyjQ2r9Xibg9wdL56v/Ticker.js\";import*as localizedValues from\"./Hf8xXn_SV-0.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"NnX82otEe\",\"hbFXeIkL4\"];const serializationHash=\"framer-H6Jhx\";const variantClassNames={hbFXeIkL4:\"framer-v-g9ba0f\",NnX82otEe:\"framer-v-us6c5g\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},hbFXeIkL4:{damping:100,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={xrMGI3fhk:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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 humanReadableVariantMap={\"Logo Ticker - M\":\"hbFXeIkL4\",\"Logo Ticker\":\"NnX82otEe\"};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:\"NnX82otEe\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"NnX82otEe\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-H6Jhx\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-us6c5g\",className),\"data-framer-name\":\"Logo Ticker\",layoutDependency:layoutDependency,layoutId:\"NnX82otEe\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.6,...style},...addPropertyOverrides({hbFXeIkL4:{\"data-framer-name\":\"Logo Ticker - M\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lcj6lb-container\",layoutDependency:layoutDependency,layoutId:\"W56Wwnqgy-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:.3,id:\"W56Wwnqgy\",layoutId:\"W56Wwnqgy\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45.5,intrinsicWidth:43,pixelHeight:91,pixelWidth:86,src:\"https://framerusercontent.com/images/jWFqdGOwPWQ2UqUs1DIwJzoMIg.png\"},className:\"framer-c1q9rz\",\"data-framer-name\":\"Leader_Price\",layoutDependency:layoutDependency,layoutId:\"ccrdDo8ht\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:15.5,intrinsicWidth:100.5,pixelHeight:31,pixelWidth:201,src:\"https://framerusercontent.com/images/KKkXQypmwd2yfBXSbQF0oMQzJh0.png\"},className:\"framer-trmzz7\",\"data-framer-name\":\"Alltricks\",layoutDependency:layoutDependency,layoutId:\"efxkw4sOT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:26.5,intrinsicWidth:117,pixelHeight:53,pixelWidth:234,src:\"https://framerusercontent.com/images/DC5xMlq4n8surf1kXtrOILRsA.png\"},className:\"framer-16ad7wt\",\"data-framer-name\":\"Medoucine\",layoutDependency:layoutDependency,layoutId:\"Mkpfx97TH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.5,intrinsicWidth:96.5,pixelHeight:61,pixelWidth:193,src:\"https://framerusercontent.com/images/uimKKG7fBLHeesaTlcBFu4ok.png\"},className:\"framer-34ggjr\",\"data-framer-name\":\"Google_svg\",layoutDependency:layoutDependency,layoutId:\"ZHpuATGYd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.5,intrinsicWidth:77,pixelHeight:61,pixelWidth:154,src:\"https://framerusercontent.com/images/qMnkI6DC5kF4uxqBwfuaRpROMiQ.png\"},className:\"framer-oz180x\",\"data-framer-name\":\"UCPA\",layoutDependency:layoutDependency,layoutId:\"itypMi_pF\"}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40.5,intrinsicWidth:138.5,pixelHeight:81,pixelWidth:277,src:\"https://framerusercontent.com/images/S9mmcUpGs4xB565rrG91XveN5A.png\"},className:\"framer-lvmnw1\",\"data-framer-name\":\"Rothschild_Co\",layoutDependency:layoutDependency,layoutId:\"bjHDpwqWe\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l6g45i\",\"data-framer-name\":\"logo_R_Co_colour_blue\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QFWzy35uT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 139 41\"><path d=\"M 114.456 24.703 C 114.715 24.308 114.9 23.868 115.001 23.405 C 115.103 22.934 115.166 22.455 115.191 21.972 L 115.191 21.907 L 116.606 21.907 L 116.606 20.322 L 113.586 20.322 L 113.586 20.949 C 113.586 21.215 113.573 21.493 113.547 21.772 C 113.521 22.051 113.495 22.343 113.452 22.604 C 113.417 22.851 113.343 23.091 113.231 23.314 L 113.184 23.401 L 110.934 20.932 L 111.008 20.888 C 111.327 20.703 111.634 20.497 111.925 20.27 C 112.193 20.062 112.435 19.824 112.647 19.56 C 112.851 19.305 113.01 19.018 113.119 18.71 C 113.236 18.369 113.293 18.009 113.288 17.648 C 113.288 17.173 113.201 16.746 113.019 16.38 C 112.846 16.022 112.6 15.705 112.297 15.448 C 111.985 15.19 111.627 14.993 111.242 14.869 C 110.832 14.738 110.404 14.672 109.974 14.673 C 109.539 14.671 109.107 14.74 108.694 14.878 C 107.479 15.279 106.667 16.431 106.691 17.717 C 106.689 17.975 106.721 18.231 106.786 18.48 C 106.846 18.704 106.933 18.921 107.045 19.124 C 107.164 19.338 107.302 19.541 107.457 19.729 C 107.623 19.944 107.8 20.149 107.989 20.344 L 108.045 20.409 L 107.971 20.452 C 107.327 20.853 106.803 21.328 106.41 21.859 C 106.016 22.391 105.83 23.035 105.83 23.784 C 105.83 24.35 105.938 24.869 106.15 25.317 C 106.357 25.758 106.651 26.151 107.015 26.471 C 107.391 26.79 107.822 27.035 108.287 27.194 C 108.779 27.366 109.297 27.453 109.818 27.451 C 110.437 27.452 111.051 27.347 111.635 27.142 C 112.228 26.931 112.775 26.605 113.244 26.184 L 113.296 26.136 L 114.183 27.138 L 116.618 27.138 L 114.43 24.747 Z M 108.983 16.659 C 109.266 16.438 109.616 16.319 109.974 16.324 C 110.381 16.324 110.722 16.446 110.995 16.69 C 111.267 16.933 111.406 17.286 111.406 17.735 C 111.412 17.972 111.363 18.208 111.263 18.423 C 111.168 18.615 111.039 18.787 110.882 18.933 C 110.724 19.079 110.55 19.208 110.363 19.316 L 109.801 19.638 L 109.754 19.664 L 109.321 19.224 C 109.18 19.086 109.053 18.934 108.94 18.771 C 108.831 18.612 108.737 18.443 108.659 18.266 C 108.581 18.082 108.541 17.883 108.542 17.683 C 108.542 17.23 108.689 16.89 108.983 16.659 Z M 112.046 24.908 C 111.786 25.21 111.445 25.429 111.064 25.539 C 110.698 25.643 110.32 25.696 109.939 25.696 C 109.652 25.697 109.366 25.654 109.092 25.57 C 108.829 25.492 108.584 25.365 108.369 25.195 C 108.159 25.024 107.987 24.808 107.867 24.564 C 107.738 24.294 107.672 23.997 107.677 23.697 C 107.672 23.46 107.712 23.223 107.794 23 C 107.871 22.806 107.98 22.626 108.118 22.469 C 108.257 22.311 108.415 22.172 108.59 22.055 C 108.763 21.942 108.953 21.816 109.161 21.689 L 109.208 21.659 L 112.085 24.86 Z M 138.723 20.818 C 138.544 20.311 138.284 19.836 137.953 19.412 C 137.651 19.037 137.222 18.706 136.682 18.432 C 136.141 18.157 135.526 18.018 134.843 18.018 C 134.159 18.018 133.545 18.157 133.009 18.432 C 132.472 18.706 132.04 19.033 131.733 19.412 C 131.405 19.838 131.146 20.312 130.963 20.818 C 130.781 21.324 130.69 21.968 130.69 22.726 C 130.69 23.484 130.781 24.128 130.963 24.633 C 131.146 25.142 131.407 25.618 131.737 26.045 C 132.04 26.419 132.468 26.746 133.009 27.02 C 133.55 27.295 134.164 27.434 134.843 27.434 C 135.522 27.434 136.145 27.295 136.682 27.02 C 137.218 26.746 137.651 26.419 137.953 26.04 C 138.283 25.617 138.543 25.144 138.723 24.638 C 138.905 24.128 139 23.484 139 22.726 C 139 21.968 138.905 21.324 138.723 20.818 Z M 136.806 23.993 C 136.731 24.394 136.545 24.765 136.27 25.065 C 136.099 25.244 135.897 25.39 135.674 25.496 C 135.412 25.613 135.129 25.672 134.843 25.666 C 134.558 25.672 134.276 25.614 134.017 25.496 C 133.792 25.391 133.59 25.245 133.42 25.065 C 133.145 24.764 132.958 24.394 132.879 23.993 C 132.718 23.156 132.718 22.296 132.879 21.459 C 132.96 21.059 133.147 20.689 133.42 20.387 C 134.011 19.789 134.907 19.619 135.674 19.96 C 135.898 20.063 136.1 20.208 136.27 20.387 C 136.543 20.688 136.729 21.059 136.806 21.459 C 136.975 22.295 136.975 23.157 136.806 23.993 Z M 122.255 19.181 C 122.305 18.858 122.392 18.542 122.515 18.24 C 122.629 17.944 122.799 17.674 123.016 17.443 C 123.264 17.17 123.568 16.954 123.907 16.812 C 124.246 16.668 124.609 16.594 124.976 16.594 C 125.352 16.591 125.726 16.657 126.079 16.79 C 126.403 16.913 126.689 17.122 126.905 17.395 C 127.062 17.585 127.195 17.794 127.299 18.018 C 127.391 18.231 127.449 18.457 127.472 18.689 L 129.639 18.689 C 129.577 18.227 129.457 17.775 129.284 17.343 C 129.1 16.879 128.826 16.455 128.48 16.097 C 128.028 15.628 127.48 15.264 126.875 15.03 C 126.27 14.792 125.625 14.671 124.976 14.673 C 124.336 14.67 123.701 14.785 123.103 15.013 C 122.502 15.243 121.958 15.601 121.507 16.062 C 121.192 16.376 120.922 16.732 120.706 17.121 C 120.505 17.494 120.351 17.89 120.248 18.301 C 120.141 18.737 120.072 19.181 120.04 19.629 C 120.006 20.095 119.988 20.583 119.988 21.084 C 119.988 21.585 120.006 22.09 120.04 22.552 C 120.072 22.997 120.142 23.438 120.248 23.871 C 120.351 24.283 120.505 24.679 120.706 25.052 C 120.922 25.441 121.192 25.797 121.507 26.11 C 121.957 26.57 122.502 26.926 123.103 27.151 C 123.702 27.374 124.337 27.486 124.976 27.482 C 125.627 27.482 126.272 27.355 126.875 27.107 C 127.478 26.86 128.024 26.491 128.48 26.023 C 128.827 25.662 129.101 25.236 129.284 24.769 C 129.457 24.333 129.576 23.878 129.639 23.414 L 127.472 23.414 C 127.419 23.91 127.22 24.378 126.901 24.76 C 126.687 25.035 126.403 25.246 126.079 25.37 C 125.728 25.511 125.354 25.582 124.976 25.579 C 124.609 25.579 124.246 25.505 123.907 25.361 C 123.568 25.218 123.264 25.002 123.016 24.729 C 122.799 24.499 122.629 24.228 122.515 23.932 C 122.392 23.63 122.305 23.314 122.255 22.992 C 122.202 22.664 122.17 22.334 122.16 22.003 C 122.148 21.697 122.142 21.39 122.142 21.084 C 122.142 20.797 122.147 20.496 122.16 20.165 C 122.17 19.835 122.202 19.506 122.255 19.181 Z M 85.983 17.082 L 88.055 17.082 L 88.055 14.834 L 85.983 16.097 Z M 31.146 20.831 C 31.557 20.226 31.764 19.49 31.764 18.654 C 31.765 18.16 31.679 17.671 31.509 17.208 C 31.342 16.747 31.076 16.329 30.73 15.984 C 30.38 15.631 29.926 15.344 29.389 15.126 C 28.853 14.908 28.208 14.804 27.477 14.804 L 22.966 14.804 L 22.966 27.303 L 25.124 27.303 L 25.124 22.521 L 27.313 22.521 L 29.402 27.303 L 31.725 27.303 L 29.437 22.16 L 29.506 22.134 C 30.177 21.887 30.752 21.431 31.146 20.831 Z M 29.065 20.095 C 28.701 20.431 28.178 20.596 27.512 20.596 L 25.107 20.596 L 25.107 16.672 L 27.477 16.672 C 27.781 16.668 28.084 16.721 28.368 16.829 C 28.623 16.926 28.856 17.074 29.052 17.264 C 29.233 17.447 29.376 17.665 29.472 17.905 C 29.57 18.142 29.62 18.397 29.619 18.654 C 29.619 19.277 29.433 19.764 29.065 20.095 Z M 39.996 19.403 C 39.685 19.024 39.248 18.689 38.698 18.406 C 38.149 18.122 37.522 17.987 36.825 17.987 C 36.129 17.987 35.502 18.127 34.957 18.406 C 34.411 18.684 33.97 19.024 33.659 19.407 C 33.321 19.837 33.055 20.32 32.871 20.836 C 32.69 21.354 32.595 22.012 32.595 22.782 C 32.595 23.553 32.69 24.211 32.871 24.729 C 33.056 25.246 33.322 25.73 33.659 26.162 C 33.97 26.545 34.407 26.881 34.952 27.159 C 35.497 27.438 36.133 27.582 36.825 27.582 C 37.517 27.582 38.149 27.438 38.698 27.159 C 39.248 26.881 39.685 26.545 39.996 26.162 C 40.33 25.729 40.594 25.245 40.779 24.729 C 40.965 24.211 41.06 23.558 41.06 22.782 C 41.06 22.007 40.965 21.358 40.779 20.836 C 40.594 20.32 40.33 19.836 39.996 19.403 Z M 38.828 24.072 C 38.748 24.481 38.558 24.861 38.279 25.169 C 38.105 25.35 37.9 25.498 37.673 25.605 C 37.407 25.726 37.117 25.785 36.825 25.779 C 36.535 25.785 36.246 25.726 35.982 25.605 C 35.755 25.499 35.549 25.351 35.376 25.169 C 35.094 24.863 34.904 24.482 34.827 24.072 C 34.659 23.221 34.659 22.345 34.827 21.493 C 34.905 21.084 35.095 20.706 35.376 20.4 C 35.753 20.001 36.278 19.778 36.825 19.786 C 37.118 19.782 37.407 19.842 37.673 19.965 C 37.9 20.07 38.106 20.218 38.279 20.4 C 38.557 20.708 38.747 21.086 38.828 21.493 C 38.995 22.345 38.995 23.22 38.828 24.072 Z M 46.658 25.583 C 46.286 25.583 46.005 25.496 45.827 25.322 C 45.65 25.147 45.559 24.869 45.559 24.494 L 45.559 19.912 L 47.878 19.912 L 47.878 18.218 L 45.559 18.218 L 45.559 14.834 L 43.487 16.097 L 43.487 18.218 L 41.804 18.218 L 41.804 19.912 L 43.487 19.912 L 43.487 24.69 C 43.487 25.561 43.712 26.249 44.157 26.737 C 44.603 27.225 45.286 27.473 46.195 27.473 C 46.811 27.471 47.424 27.392 48.02 27.238 L 48.02 25.505 C 47.744 25.535 47.51 25.552 47.324 25.566 C 47.138 25.579 46.891 25.583 46.658 25.583 Z M 56.369 18.906 C 56.104 18.615 55.779 18.385 55.417 18.231 C 55.045 18.07 54.613 17.988 54.128 17.988 C 53.649 17.99 53.176 18.094 52.74 18.292 C 52.294 18.497 51.931 18.789 51.671 19.168 L 51.542 19.355 L 51.542 14.821 L 49.469 14.821 L 49.469 27.347 L 51.542 27.347 L 51.542 22.534 C 51.542 22.231 51.579 21.928 51.65 21.633 C 51.716 21.332 51.833 21.045 51.996 20.784 C 52.151 20.528 52.361 20.311 52.61 20.148 C 52.861 19.978 53.164 19.895 53.505 19.895 C 54.12 19.895 54.544 20.061 54.769 20.387 C 54.994 20.714 55.102 21.149 55.102 21.698 L 55.102 27.347 L 57.174 27.347 L 57.174 21.232 C 57.178 20.791 57.108 20.352 56.966 19.934 C 56.834 19.556 56.631 19.208 56.369 18.906 Z M 63.762 21.999 L 63.195 21.911 L 62.754 21.846 L 62.33 21.794 L 61.798 21.733 C 61.538 21.693 61.286 21.609 61.054 21.485 C 60.799 21.345 60.673 21.093 60.673 20.731 C 60.668 20.496 60.744 20.267 60.89 20.082 C 61.031 19.907 61.214 19.771 61.422 19.686 C 61.581 19.616 61.75 19.572 61.923 19.555 C 62.085 19.543 62.246 19.537 62.408 19.538 C 62.648 19.537 62.887 19.578 63.113 19.66 C 63.319 19.725 63.507 19.836 63.662 19.987 C 63.773 20.109 63.866 20.247 63.939 20.396 C 64.008 20.534 64.046 20.686 64.052 20.84 L 66.02 20.84 C 66.01 20.526 65.936 20.218 65.804 19.934 C 65.658 19.61 65.463 19.312 65.224 19.05 C 64.877 18.684 64.446 18.409 63.969 18.249 C 62.954 17.91 61.858 17.9 60.838 18.223 C 60.398 18.366 59.991 18.596 59.639 18.898 C 59.37 19.136 59.147 19.422 58.982 19.743 C 58.809 20.069 58.722 20.466 58.722 20.927 C 58.721 21.49 58.922 22.035 59.289 22.46 C 59.675 22.91 60.198 23.218 60.777 23.336 C 61.193 23.433 61.615 23.502 62.04 23.54 C 62.477 23.584 62.91 23.636 63.321 23.693 C 63.619 23.745 63.857 23.858 64.034 24.037 C 64.212 24.215 64.303 24.455 64.303 24.747 C 64.303 25.039 64.233 25.23 64.099 25.396 C 63.969 25.562 63.799 25.692 63.606 25.775 C 63.404 25.861 63.192 25.919 62.975 25.949 C 62.382 26.027 61.884 26.001 61.53 25.892 C 61.304 25.828 61.093 25.719 60.911 25.57 C 60.75 25.43 60.621 25.256 60.535 25.06 C 60.451 24.883 60.402 24.691 60.392 24.494 L 58.458 24.494 C 58.464 24.881 58.559 25.261 58.735 25.605 C 58.908 25.949 59.136 26.263 59.41 26.532 C 59.779 26.892 60.224 27.163 60.712 27.325 C 61.235 27.499 61.783 27.586 62.334 27.582 C 62.927 27.588 63.518 27.504 64.086 27.334 C 64.597 27.184 65.062 26.908 65.44 26.532 C 65.674 26.289 65.863 26.006 65.998 25.696 C 66.141 25.374 66.215 24.986 66.215 24.551 C 66.215 23.837 65.985 23.257 65.531 22.826 C 65.077 22.395 64.476 22.116 63.762 21.999 Z M 69.969 20.361 C 70.135 20.186 70.332 20.043 70.549 19.939 C 70.774 19.825 71.051 19.769 71.367 19.769 C 71.682 19.769 72.024 19.838 72.271 19.973 C 72.5 20.099 72.696 20.278 72.842 20.496 C 72.919 20.625 72.982 20.762 73.028 20.905 C 73.072 21.04 73.101 21.178 73.114 21.319 L 75.152 21.319 C 75.122 20.984 75.054 20.654 74.948 20.335 C 74.839 20.005 74.675 19.696 74.464 19.42 C 74.152 19.028 73.729 18.684 73.201 18.406 C 72.673 18.127 72.059 17.987 71.367 17.987 C 70.674 17.987 70.047 18.131 69.502 18.414 C 68.957 18.697 68.529 19.041 68.217 19.425 C 67.873 19.867 67.618 20.373 67.469 20.914 C 67.14 22.126 67.14 23.404 67.469 24.616 C 67.619 25.158 67.874 25.666 68.217 26.11 C 68.529 26.493 68.962 26.828 69.502 27.116 C 70.043 27.403 70.674 27.543 71.367 27.543 C 72.059 27.543 72.677 27.403 73.201 27.125 C 73.724 26.846 74.152 26.502 74.464 26.11 C 74.675 25.834 74.839 25.525 74.948 25.195 C 75.055 24.877 75.123 24.546 75.152 24.211 L 73.114 24.211 C 73.102 24.352 73.073 24.491 73.028 24.625 C 72.983 24.766 72.922 24.902 72.846 25.03 C 72.7 25.25 72.502 25.431 72.271 25.557 C 72.024 25.692 71.721 25.762 71.367 25.762 C 71.082 25.768 70.801 25.707 70.545 25.583 C 70.329 25.475 70.134 25.329 69.969 25.152 C 69.69 24.846 69.505 24.464 69.437 24.054 C 69.364 23.629 69.327 23.197 69.329 22.765 C 69.328 22.332 69.364 21.899 69.437 21.472 C 69.503 21.057 69.688 20.671 69.969 20.361 Z M 83.358 18.906 C 83.095 18.614 82.771 18.384 82.41 18.231 C 82.034 18.07 81.601 17.988 81.117 17.988 C 80.638 17.991 80.165 18.094 79.728 18.292 C 79.3 18.481 78.931 18.784 78.66 19.168 L 78.53 19.355 L 78.53 14.821 L 76.458 14.821 L 76.458 27.347 L 78.53 27.347 L 78.53 22.534 C 78.533 22.231 78.569 21.928 78.638 21.633 C 78.708 21.333 78.825 21.047 78.984 20.784 C 79.142 20.529 79.353 20.312 79.603 20.148 C 79.854 19.978 80.157 19.895 80.498 19.895 C 81.113 19.895 81.537 20.061 81.761 20.387 C 81.986 20.714 82.094 21.149 82.094 21.694 L 82.094 27.347 L 84.162 27.347 L 84.162 21.232 C 84.166 20.791 84.096 20.352 83.955 19.934 C 83.824 19.556 83.622 19.206 83.358 18.906 Z M 88.003 18.149 L 86.035 18.149 L 86.035 27.356 L 88.003 27.356 Z M 93 25.618 C 92.593 25.618 92.338 25.531 92.217 25.348 C 92.096 25.165 92.044 24.943 92.044 24.655 L 92.044 14.821 L 89.954 14.821 L 89.954 25.03 C 89.954 25.884 90.179 26.506 90.621 26.885 C 91.062 27.264 91.663 27.456 92.398 27.456 C 92.558 27.46 92.717 27.451 92.874 27.43 L 93.303 27.342 L 93.303 25.605 L 93.225 25.605 C 93.15 25.613 93.075 25.616 93 25.614 M 100.514 18.985 L 100.388 18.837 C 100.198 18.606 99.899 18.406 99.506 18.24 C 99.112 18.075 98.615 17.988 98.035 17.988 C 97.613 17.981 97.194 18.046 96.793 18.179 C 96.442 18.299 96.116 18.482 95.829 18.719 C 94.756 19.616 94.211 20.988 94.211 22.8 C 94.211 23.667 94.341 24.451 94.605 25.121 C 94.854 25.776 95.271 26.352 95.811 26.794 C 96.103 27.033 96.432 27.221 96.785 27.351 C 97.18 27.495 97.598 27.566 98.018 27.56 C 98.512 27.561 99.002 27.463 99.458 27.273 C 99.906 27.094 100.286 26.777 100.544 26.367 L 100.648 26.201 L 100.808 27.347 L 102.586 27.347 L 102.586 14.821 L 100.514 14.821 Z M 100.622 22.765 C 100.621 23.115 100.594 23.465 100.54 23.81 C 100.492 24.157 100.385 24.493 100.224 24.803 C 100.069 25.103 99.842 25.358 99.562 25.544 C 99.281 25.735 98.909 25.836 98.459 25.836 C 98.104 25.836 97.797 25.757 97.546 25.609 C 97.307 25.469 97.094 25.29 96.915 25.078 C 96.672 24.756 96.507 24.382 96.434 23.985 C 96.357 23.583 96.317 23.174 96.318 22.765 C 96.317 22.36 96.356 21.956 96.434 21.559 C 96.508 21.164 96.672 20.793 96.915 20.474 C 97.093 20.261 97.307 20.08 97.546 19.939 C 97.797 19.791 98.104 19.716 98.459 19.716 C 98.909 19.716 99.281 19.812 99.562 20.004 C 99.84 20.192 100.067 20.447 100.224 20.744 C 100.384 21.052 100.491 21.385 100.54 21.729 C 100.594 22.071 100.622 22.418 100.622 22.765 Z M 16.464 16.707 L 19.457 14.403 L 17.935 14.081 L 18.043 12.556 L 15.045 14.882 L 15.119 15.762 L 10.897 19.098 L 13.237 14.242 L 14.111 14.124 L 15.789 10.71 L 14.297 11.11 L 13.73 9.678 L 12.052 13.096 L 12.489 13.863 L 10.131 18.767 L 10.127 17.465 L 10.127 17.46 L 10.135 15.231 L 10.144 13.301 L 10.879 12.818 L 10.897 9.02 L 9.72 10.035 L 8.565 9.02 L 8.578 12.818 L 9.318 13.301 L 9.322 15.231 L 9.331 17.46 L 9.335 17.465 L 9.326 18.776 L 6.969 13.863 L 7.41 13.096 L 5.727 9.678 L 5.161 11.11 L 3.668 10.71 L 5.347 14.124 L 6.225 14.242 L 8.561 19.102 L 4.339 15.762 L 4.417 14.882 L 1.414 12.556 L 1.522 14.081 L 0 14.403 L 2.993 16.707 L 3.846 16.437 L 9.054 20.553 L 6.926 22.225 L 6.921 22.225 L 2.665 25.605 L 2.461 24.642 L 0.727 27.686 L 4.075 26.702 L 3.179 26.262 L 8.582 21.986 L 8.107 22.983 L 8.098 22.996 L 5.597 28.218 L 4.983 27.434 L 4.767 30.94 L 7.341 28.566 L 6.35 28.566 L 9.335 22.356 L 9.335 29.233 L 8.448 28.788 L 9.724 32.046 L 9.729 32.046 L 11.005 28.788 L 10.118 29.233 L 10.122 22.356 L 13.107 28.566 L 12.116 28.566 L 14.694 30.94 L 14.474 27.434 L 13.86 28.218 L 11.359 22.996 L 11.355 22.983 L 10.879 21.986 L 16.282 26.262 L 15.387 26.702 L 18.73 27.686 L 16.996 24.642 L 16.793 25.605 L 12.536 22.225 L 10.395 20.548 L 15.612 16.437 L 16.464 16.707 Z\" fill=\"rgb(75, 87, 110)\"></path></svg>',svgContentId:1535622057,withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.5,intrinsicWidth:143,pixelHeight:61,pixelWidth:286,src:\"https://framerusercontent.com/images/dmTzsqt0qHbs1dkP3QgLaybB2bw.png\"},className:\"framer-du8om2\",\"data-framer-name\":\"Yves_Rocher\",layoutDependency:layoutDependency,layoutId:\"K2u7ll1xK\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.5,intrinsicWidth:142.5,pixelHeight:61,pixelWidth:285,src:\"https://framerusercontent.com/images/qDh4TgpQLT9uDMZwMOdkrkIBei8.png\"},className:\"framer-4r98qm\",\"data-framer-name\":\"T_C\",layoutDependency:layoutDependency,layoutId:\"jwhm6mqHJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.5,intrinsicWidth:43.5,pixelHeight:61,pixelWidth:87,src:\"https://framerusercontent.com/images/EHtJbNY8uaUEIW5fxnLPkQxJKU4.png\"},className:\"framer-3tl0fe\",\"data-framer-name\":\"Cre\u0301dit_Agricole\",layoutDependency:layoutDependency,layoutId:\"lhntEIuxd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25.5,intrinsicWidth:122,pixelHeight:51,pixelWidth:244,src:\"https://framerusercontent.com/images/e5bpiP825920S3oTBTPqWgGTTg.png\"},className:\"framer-196onuy\",\"data-framer-name\":\"LearnyBox\",layoutDependency:layoutDependency,layoutId:\"izBFi3QrT\"})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({hbFXeIkL4:{speed:40}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-H6Jhx [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-H6Jhx .framer-14x8tlm { display: block; }\",\".framer-H6Jhx .framer-us6c5g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: hidden; padding: 32px 16px 32px 16px; position: relative; width: 1080px; }\",\".framer-H6Jhx .framer-lcj6lb-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-H6Jhx .framer-c1q9rz { aspect-ratio: 0.945054945054945 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 43px; }\",\".framer-H6Jhx .framer-trmzz7 { aspect-ratio: 6.483870967741935 / 1; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; width: 101px; }\",\".framer-H6Jhx .framer-16ad7wt { aspect-ratio: 4.415094339622642 / 1; height: var(--framer-aspect-ratio-supported, 27px); overflow: visible; position: relative; width: 117px; }\",\".framer-H6Jhx .framer-34ggjr { aspect-ratio: 3.1639344262295084 / 1; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 97px; }\",\".framer-H6Jhx .framer-oz180x { aspect-ratio: 2.5245901639344264 / 1; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 77px; }\",\".framer-H6Jhx .framer-lvmnw1 { aspect-ratio: 3.419753086419753 / 1; height: var(--framer-aspect-ratio-supported, 41px); overflow: visible; position: relative; width: 139px; }\",\".framer-H6Jhx .framer-1l6g45i { flex: none; height: 41px; left: 0px; position: absolute; top: 0px; width: 139px; }\",\".framer-H6Jhx .framer-du8om2 { aspect-ratio: 4.688524590163935 / 1; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 143px; }\",\".framer-H6Jhx .framer-4r98qm { aspect-ratio: 4.672131147540983 / 1; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 143px; }\",\".framer-H6Jhx .framer-3tl0fe { aspect-ratio: 1.4262295081967213 / 1; height: var(--framer-aspect-ratio-supported, 31px); overflow: visible; position: relative; width: 44px; }\",\".framer-H6Jhx .framer-196onuy { aspect-ratio: 4.784313725490196 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 122px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-H6Jhx .framer-us6c5g { gap: 0px; } .framer-H6Jhx .framer-us6c5g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-H6Jhx .framer-us6c5g > :first-child { margin-top: 0px; } .framer-H6Jhx .framer-us6c5g > :last-child { margin-bottom: 0px; } }\",\".framer-H6Jhx.framer-v-g9ba0f .framer-us6c5g { gap: 0px; height: 96px; padding: 32px 0px 32px 0px; width: 359px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-H6Jhx.framer-v-g9ba0f .framer-us6c5g { gap: 0px; } .framer-H6Jhx.framer-v-g9ba0f .framer-us6c5g > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-H6Jhx.framer-v-g9ba0f .framer-us6c5g > :first-child { margin-top: 0px; } .framer-H6Jhx.framer-v-g9ba0f .framer-us6c5g > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hbFXeIkL4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n */const FramerHf8xXn_SV=withCSS(Component,css,\"framer-H6Jhx\");export default FramerHf8xXn_SV;FramerHf8xXn_SV.displayName=\"Carrousel logos\";FramerHf8xXn_SV.defaultProps={height:64,width:1080};addPropertyControls(FramerHf8xXn_SV,{variant:{options:[\"NnX82otEe\",\"hbFXeIkL4\"],optionTitles:[\"Logo Ticker\",\"Logo Ticker - M\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHf8xXn_SV,[...TickerFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHf8xXn_SV\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hbFXeIkL4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerIntrinsicWidth\":\"1080\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hf8xXn_SV.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Hamburger from\"https://framerusercontent.com/modules/GNdoitruthHRHhrpBhcY/3DbjFuzUDuBBppbA8oqE/F4jklYmyb.js\";import Button from\"#framer/local/canvasComponent/eADfFWq6z/eADfFWq6z.js\";import Step from\"#framer/local/canvasComponent/hd0EBhRI8/hd0EBhRI8.js\";import CarrouselLogos from\"#framer/local/canvasComponent/Hf8xXn_SV/Hf8xXn_SV.js\";import ProjectCardDesktop from\"#framer/local/canvasComponent/ID1BueNRR/ID1BueNRR.js\";import Subtitle from\"#framer/local/canvasComponent/imQFOIXyV/imQFOIXyV.js\";import Moyenne from\"#framer/local/canvasComponent/k56OibApy/k56OibApy.js\";import Testimonial from\"#framer/local/canvasComponent/mMNXBGZw3/mMNXBGZw3.js\";import Footer from\"#framer/local/canvasComponent/SOZ_DUMTu/SOZ_DUMTu.js\";import Header from\"#framer/local/canvasComponent/xmCdq_Rly/xmCdq_Rly.js\";import RefonteDesign from\"#framer/local/collection/D5rYcH1J6/D5rYcH1J6.js\";import*as sharedStyle1 from\"#framer/local/css/Dd4m2ZMMT/Dd4m2ZMMT.js\";import*as sharedStyle from\"#framer/local/css/DYfu5vS4Q/DYfu5vS4Q.js\";import*as sharedStyle2 from\"#framer/local/css/HKqr8hrDA/HKqr8hrDA.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const CarrouselLogosFonts=getFonts(CarrouselLogos);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MoyenneFonts=getFonts(Moyenne);const HamburgerFonts=getFonts(Hamburger);const ImageWithFX=withFX(Image);const SubtitleFonts=getFonts(Subtitle);const ProjectCardDesktopFonts=getFonts(ProjectCardDesktop);const ButtonFonts=getFonts(Button);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const StepFonts=getFonts(Step);const TestimonialFonts=getFonts(Testimonial);const FooterFonts=getFonts(Footer);const FooterWithVariantAppearEffect=withVariantAppearEffect(Footer);const breakpoints={O9JosGUGJ:\"(min-width: 768px) and (max-width: 1199px)\",SsoBK9Mwq:\"(max-width: 767px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-iNigv\";const variantClassNames={O9JosGUGJ:\"framer-v-124q5rn\",SsoBK9Mwq:\"framer-v-1jwejtx\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:30,delay:.8,mass:.8,stiffness:400,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition3={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:1,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};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 animation9={opacity:1,rotate:8,rotateX:10,rotateY:-36,scale:1.1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation10={opacity:1,rotate:8,rotateX:10,rotateY:-36,scale:1.1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition5={damping:40,delay:0,mass:1,stiffness:325,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:50};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"jlyNN4sux\";}else{return\"x40brakwJ\";}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"SsoBK9Mwq\",Tablet:\"O9JosGUGJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ZQ9fB8rAlgGEYy1s4e,u3A1lbFU5gGEYy1s4e,GMKqG2giIgGEYy1s4e,tMvdVj2oXgGEYy1s4e,ncJeajCiGgGEYy1s4e,lxIuOT0SJgGEYy1s4e,gIw0JM_fkgGEYy1s4e,CRsqFSpZ7gGEYy1s4e,XJLOaF6uHgGEYy1s4e,idgGEYy1s4e,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const Is4AesgxA3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"lQmTYpVnU\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"SsoBK9Mwq\")return false;return true;};const elementId1=useRouteElementId(\"qwqVLuheb\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(245, 244, 242); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1248px)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:.5,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l64qo8-container\",nodeId:\"XX7NEqG2J\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SsoBK9Mwq:{variant:\"fT3Q77mIC\"}},children:/*#__PURE__*/_jsx(Header,{fQ5YS0aLu:false,height:\"100%\",id:\"XX7NEqG2J\",layoutId:\"XX7NEqG2J\",Ot4CzeD16:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"cDgA2TQVB\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oihsk2\",\"data-framer-name\":\"Body\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lsu8vs\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wyngau\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14im8u1\",\"data-framer-name\":\"Sides\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u4iq5h\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-616rfj\",\"data-framer-name\":\"Value prop\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Johan Ayache\",/*#__PURE__*/_jsx(\"br\",{}),\"UX / UI Designer Freelance\"]})})},SsoBK9Mwq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Johan Ayache\",/*#__PURE__*/_jsx(\"br\",{}),\"UX / UI Designer Freelance\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Johan Ayache \u2022 UX / UI Designer Freelance\"})}),className:\"framer-v740uh\",\"data-framer-appear-id\":\"v740uh\",\"data-framer-name\":\"Copie\",fonts:[\"GF;Sora-regular\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SsoBK9Mwq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-oqrzgg\",\"data-styles-preset\":\"DYfu5vS4Q\",style:{\"--framer-text-alignment\":\"center\"},children:\"Le Designer derri\\xe8re les entreprises les plus exigeantes\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-oqrzgg\",\"data-styles-preset\":\"DYfu5vS4Q\",style:{\"--framer-text-alignment\":\"left\"},children:\"Le Designer derri\\xe8re les entreprises les plus exigeantes\"})}),className:\"framer-2p3umo\",\"data-framer-appear-id\":\"2p3umo\",\"data-framer-name\":\"Copie\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1tn1vqf-container\",\"data-framer-appear-id\":\"1tn1vqf\",\"data-framer-name\":\"Carrousel clients\",initial:animation5,name:\"Carrousel clients\",nodeId:\"LdRlZ4wXh\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SsoBK9Mwq:{style:{height:\"100%\",width:\"100%\"},variant:\"hbFXeIkL4\"}},children:/*#__PURE__*/_jsx(CarrouselLogos,{height:\"100%\",id:\"LdRlZ4wXh\",layoutId:\"LdRlZ4wXh\",name:\"Carrousel clients\",style:{width:\"100%\"},variant:\"NnX82otEe\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{y:(componentViewport?.y||0)+0+134+40+0+0+0+0+0+32+196},SsoBK9Mwq:{y:(componentViewport?.y||0)+0+110+0+0+0+256+0+0+0+0+32+185.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+134+40+0+0+0+0+0+32+201.6,children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-19t6gmk-container\",\"data-framer-appear-id\":\"19t6gmk\",id:\"19t6gmk\",initial:animation7,nodeId:\"G6mpzt0f6\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SsoBK9Mwq:{variant:\"nNHYG3Ds5\"}},children:/*#__PURE__*/_jsx(Moyenne,{height:\"100%\",id:\"G6mpzt0f6\",Is4AesgxA:Is4AesgxA3bnx0g({overlay}),layoutId:\"G6mpzt0f6\",variant:\"iuQ0Kg9Ka\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1xsovoa\"),\"data-framer-portal-id\":\"19t6gmk\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"q58zLyoqP\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-58e6zz\"),\"data-framer-name\":\"Popin\",\"data-framer-portal-id\":\"19t6gmk\",exit:animation8,initial:animation,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-86td1t\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kr47o9\",\"data-framer-name\":\"Subtitle\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wusavn\",\"data-styles-preset\":\"Dd4m2ZMMT\",children:\"Avis clients\"})}),className:\"framer-1ttkj97\",\"data-framer-name\":\"H2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xcognj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wraans\",\"data-framer-name\":\"Photos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Solange Arnaud, CEO M\\xe9doucine\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,pixelHeight:720,pixelWidth:1280,sizes:\"48px\",src:\"https://framerusercontent.com/images/TWGHzxV6KE239PlvNsvzRu2kBI.jpg\",srcSet:\"https://framerusercontent.com/images/TWGHzxV6KE239PlvNsvzRu2kBI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TWGHzxV6KE239PlvNsvzRu2kBI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TWGHzxV6KE239PlvNsvzRu2kBI.jpg 1280w\"},className:\"framer-1by5iz7\",\"data-border\":true,\"data-framer-name\":\"Client\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Solange Arnaud, CEO M\\xe9doucine\",fit:\"fill\",intrinsicHeight:448,intrinsicWidth:450,pixelHeight:448,pixelWidth:450,src:\"https://framerusercontent.com/images/EXw3oJ6Abg493dkHvdqVq983vw.webp\"},className:\"framer-eedq6i\",\"data-border\":true,\"data-framer-name\":\"Client\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Solange Arnaud, CEO M\\xe9doucine\",fit:\"fill\",intrinsicHeight:594,intrinsicWidth:450,pixelHeight:594,pixelWidth:450,sizes:\"48px\",src:\"https://framerusercontent.com/images/IDmwrHrDJuwDKqX6n2XOJ5qxSg.webp\",srcSet:\"https://framerusercontent.com/images/IDmwrHrDJuwDKqX6n2XOJ5qxSg.webp 450w\"},className:\"framer-1ui32qh\",\"data-border\":true,\"data-framer-name\":\"Client\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Solange Arnaud, CEO M\\xe9doucine\",fit:\"fill\",intrinsicHeight:1513,intrinsicWidth:1544,pixelHeight:1513,pixelWidth:1544,sizes:\"48px\",src:\"https://framerusercontent.com/images/oBnw6lXRWStjW0y1u40FMcBbMw.jpg\",srcSet:\"https://framerusercontent.com/images/oBnw6lXRWStjW0y1u40FMcBbMw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oBnw6lXRWStjW0y1u40FMcBbMw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oBnw6lXRWStjW0y1u40FMcBbMw.jpg 1544w\"},className:\"framer-1toqe6l\",\"data-border\":true,\"data-framer-name\":\"Client\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Solange Arnaud, CEO M\\xe9doucine\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/44ZafG24yfE6Wxyz0R5ehSf608U.jpg\"},className:\"framer-mkz5u2\",\"data-border\":true,\"data-framer-name\":\"Client\",transformTemplate:transformTemplate2})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12kt3by\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oo2hu\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1esazln\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:11958968266,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7qw7io\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:8925127515,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r8rm1f\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:12385641959,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vtjkow\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:11916203931,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14ofxt8\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><g><defs><path d=\"M 7.644 13.813 C 7.84 13.704 8.156 13.702 8.356 13.813 L 12.011 15.826 C 12.79 16.254 13.3 15.864 13.152 14.957 L 12.453 10.694 C 12.416 10.464 12.512 10.149 12.673 9.984 L 15.63 6.964 C 16.261 6.321 16.065 5.691 15.196 5.559 L 11.108 4.938 C 10.888 4.903 10.633 4.711 10.533 4.499 L 8.705 0.619 C 8.315 -0.206 7.683 -0.206 7.295 0.619 L 5.467 4.499 C 5.369 4.708 5.115 4.903 4.892 4.938 L 0.804 5.559 C -0.066 5.691 -0.26 6.323 0.37 6.964 L 3.325 9.984 C 3.486 10.147 3.584 10.46 3.547 10.694 L 2.847 14.957 C 2.699 15.865 3.212 16.254 3.989 15.826 Z\" id=\"a1008z\"></path><clipPath id=\"a1009z\"><use xlink:href=\"#a1008z\"></use></clipPath></defs><use xlink:href=\"#a1008z\" fill=\"rgba(250, 191, 1, 0.3)\" clip-path=\"url(#a1009z)\" stroke-width=\"1\" stroke=\"rgba(247, 190, 0, 0.4)\" stroke-miterlimit=\"10\"></use></g><path d=\"M 3.989 15.826 C 3.212 16.254 2.699 15.865 2.847 14.957 L 3.547 10.694 C 3.584 10.46 3.486 10.147 3.325 9.984 L 0.37 6.964 C 0.12 6.71 0 6.458 0 6.237 L 0 6.236 C 0 5.901 0.279 5.639 0.804 5.559 L 4.892 4.938 C 5.115 4.903 5.369 4.708 5.467 4.499 L 7.295 0.619 C 7.489 0.207 7.744 0 7.999 0 L 8 0 C 8.255 0 8.51 0.207 8.705 0.619 L 10.533 4.499 C 10.633 4.711 10.888 4.903 11.108 4.938 L 11.2 4.952 L 11.2 15.38 L 8.356 13.813 C 8.156 13.702 7.84 13.704 7.644 13.813 Z\" fill=\"hsl(46, 100%, 49%)\"></path></svg>',svgContentId:8613204767,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"4,7/5\"})}),className:\"framer-ndf4hf\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Moyenne des notes r\\xe9colt\\xe9es en fin de collaboration (+75 missions)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Moyenne des notes r\\xe9colt\\xe9es en fin de collaboration (+75 missions)\"})}),className:\"framer-kdg9g\",\"data-framer-name\":\"Intro\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18zupnr\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-inxjnp-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"F7GkXbkrD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Hamburger,{height:\"100%\",id:\"F7GkXbkrD\",layoutId:\"F7GkXbkrD\",style:{height:\"100%\",width:\"100%\"},variant:\"OPQD0MgXY\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u6bro3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e9g3p9\",\"data-framer-name\":\".card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i6ldu9\",\"data-border\":true,\"data-framer-name\":\".\uD83D\uDD12box\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ksiclo\",\"data-styles-preset\":\"HKqr8hrDA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Confiance\"})}),className:\"framer-112a1np\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6eba5b35-4f9a-44a5-9ca0-05fe50f6e1e9, rgb(66, 63, 55))\"},children:\"Plus que des mots, chaque action est une preuve de s\\xe9rieux qui renforcera notre relation : transparence, conseils, respect des engagements...\"})}),className:\"framer-13j02pk\",\"data-framer-name\":\"Description\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tc9ac8\",\"data-framer-name\":\"BottomCard\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13thg85\",\"data-framer-name\":\"Theme\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgba(66, 63, 55, 0.5)\"},children:\"Note de mes clients sur ce crit\\xe8re\"})}),className:\"framer-vtyzaa\",\"data-framer-name\":\"Note des clients\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-an0es1\",\"data-framer-name\":\"Note\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a1uk26\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-noh5t0\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:11958968266,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2kkjm9\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:8925127515,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hhuwmd\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:12385641959,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-119jiy2\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:11916203931,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-x85xgy\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><g><defs><path d=\"M 7.644 13.813 C 7.84 13.704 8.156 13.702 8.356 13.813 L 12.011 15.826 C 12.79 16.254 13.3 15.864 13.152 14.957 L 12.453 10.694 C 12.416 10.464 12.512 10.149 12.673 9.984 L 15.63 6.964 C 16.261 6.321 16.065 5.691 15.196 5.559 L 11.108 4.938 C 10.888 4.903 10.633 4.711 10.533 4.499 L 8.705 0.619 C 8.315 -0.206 7.683 -0.206 7.295 0.619 L 5.467 4.499 C 5.369 4.708 5.115 4.903 4.892 4.938 L 0.804 5.559 C -0.066 5.691 -0.26 6.323 0.37 6.964 L 3.325 9.984 C 3.486 10.147 3.584 10.46 3.547 10.694 L 2.847 14.957 C 2.699 15.865 3.212 16.254 3.989 15.826 Z\" id=\"a1012z\"></path><clipPath id=\"a1013z\"><use xlink:href=\"#a1012z\"></use></clipPath></defs><use xlink:href=\"#a1012z\" fill=\"rgba(250, 191, 1, 0.3)\" clip-path=\"url(#a1013z)\" stroke-width=\"1\" stroke=\"rgba(247, 190, 0, 0.4)\" stroke-miterlimit=\"10\"></use></g><path d=\"M 3.989 15.826 C 3.212 16.254 2.699 15.865 2.847 14.957 L 3.547 10.694 C 3.584 10.46 3.486 10.147 3.325 9.984 L 0.37 6.964 C 0.12 6.71 0 6.458 0 6.237 L 0 6.236 C 0 5.901 0.279 5.639 0.804 5.559 L 4.892 4.938 C 5.115 4.903 5.369 4.708 5.467 4.499 L 7.295 0.619 C 7.489 0.207 7.744 0 7.999 0 L 8 0 C 8.255 0 8.51 0.207 8.705 0.619 L 10.533 4.499 C 10.633 4.711 10.888 4.903 11.108 4.938 L 12.8 5.195 L 12.8 9.854 L 12.673 9.984 C 12.512 10.149 12.416 10.464 12.453 10.694 L 12.8 12.808 L 12.8 15.963 C 12.598 16.039 12.327 16 12.011 15.826 L 8.356 13.813 C 8.156 13.702 7.84 13.704 7.644 13.813 Z\" fill=\"hsl(46, 100%, 49%)\"></path></svg>',svgContentId:9243413327,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\"},children:\"4,8/5\"})}),className:\"framer-183kptz\",\"data-framer-name\":\"4,8/5\",fonts:[\"GF;Space Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e3brna\",\"data-framer-name\":\".card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12z6on7\",\"data-border\":true,\"data-framer-name\":\".\uD83D\uDD12box\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ksiclo\",\"data-styles-preset\":\"HKqr8hrDA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Communication\"})}),className:\"framer-1wgt4zx\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6eba5b35-4f9a-44a5-9ca0-05fe50f6e1e9, rgb(66, 63, 55))\"},children:\"Le temps \\xe9tant pr\\xe9cieux, je privil\\xe9gie le mode d\u2019\\xe9change le plus appropri\\xe9 pour vous tenir constamment inform\\xe9 en \\xe9conomisant votre temps et votre argent\"})}),className:\"framer-zas9gk\",\"data-framer-name\":\"Description\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9v3itp\",\"data-framer-name\":\"BottomCard\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yhknyl\",\"data-framer-name\":\"Theme\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgba(66, 63, 55, 0.5)\"},children:\"Note de mes clients sur ce crit\\xe8re\"})}),className:\"framer-4btg68\",\"data-framer-name\":\"Note des clients\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7kpcma\",\"data-framer-name\":\"Note\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p1y9es\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ykdgrx\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:11958968266,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-shbmny\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:8925127515,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-briq5d\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:12385641959,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1anzndx\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:11916203931,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s4wkdc\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><g><defs><path d=\"M 7.644 13.813 C 7.84 13.704 8.156 13.702 8.356 13.813 L 12.011 15.826 C 12.79 16.254 13.3 15.864 13.152 14.957 L 12.453 10.694 C 12.416 10.464 12.512 10.149 12.673 9.984 L 15.63 6.964 C 16.261 6.321 16.065 5.691 15.196 5.559 L 11.108 4.938 C 10.888 4.903 10.633 4.711 10.533 4.499 L 8.705 0.619 C 8.315 -0.206 7.683 -0.206 7.295 0.619 L 5.467 4.499 C 5.369 4.708 5.115 4.903 4.892 4.938 L 0.804 5.559 C -0.066 5.691 -0.26 6.323 0.37 6.964 L 3.325 9.984 C 3.486 10.147 3.584 10.46 3.547 10.694 L 2.847 14.957 C 2.699 15.865 3.212 16.254 3.989 15.826 Z\" id=\"a1016z\"></path><clipPath id=\"a1017z\"><use xlink:href=\"#a1016z\"></use></clipPath></defs><use xlink:href=\"#a1016z\" fill=\"rgba(250, 191, 1, 0.3)\" clip-path=\"url(#a1017z)\" stroke-width=\"1\" stroke=\"rgba(247, 190, 0, 0.4)\" stroke-miterlimit=\"10\"></use></g><path d=\"M 3.989 15.826 C 3.212 16.254 2.699 15.865 2.847 14.957 L 3.547 10.694 C 3.584 10.46 3.486 10.147 3.325 9.984 L 0.37 6.964 C 0.12 6.71 0 6.458 0 6.237 L 0 6.236 C 0 5.901 0.279 5.639 0.804 5.559 L 4.892 4.938 C 5.115 4.903 5.369 4.708 5.467 4.499 L 7.295 0.619 C 7.489 0.207 7.744 0 7.999 0 L 8 0 C 8.255 0 8.51 0.207 8.705 0.619 L 9.6 2.519 L 9.6 14.498 L 8.356 13.813 C 8.156 13.702 7.84 13.704 7.644 13.813 Z\" fill=\"hsl(46, 100%, 49%)\"></path></svg>',svgContentId:10771111737,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\"},children:\"4,6/5\"})}),className:\"framer-oo3177\",\"data-framer-name\":\"4,8/5\",fonts:[\"GF;Space Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-trhtt3\",\"data-framer-name\":\".card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ogtm9w\",\"data-border\":true,\"data-framer-name\":\".\uD83D\uDD12box\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ksiclo\",\"data-styles-preset\":\"HKqr8hrDA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Qualit\\xe9\"})}),className:\"framer-ypeof7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6eba5b35-4f9a-44a5-9ca0-05fe50f6e1e9, rgb(66, 63, 55))\"},children:\"Des d\\xe9veloppeurs devront prendre la suite de mon travail. Mon r\\xf4le est aussi de leur faire gagner du temps. Mon objectif est qu\u2019ils m\u2019adorent !\"})}),className:\"framer-4knux\",\"data-framer-name\":\"Description\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15j60gy\",\"data-framer-name\":\"BottomCard\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cbkwvk\",\"data-framer-name\":\"Theme\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgba(66, 63, 55, 0.5)\"},children:\"Note de mes clients sur ce crit\\xe8re\"})}),className:\"framer-m7bigb\",\"data-framer-name\":\"Note des clients\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hekz16\",\"data-framer-name\":\"Note\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cuxus1\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1n29ekp\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:11958968266,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n7n8pm\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:8925127515,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hwbtp1\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:12385641959,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xdqz54\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 16\"><path d=\"M 7.166 13.536 C 7.35 13.432 7.647 13.431 7.833 13.536 L 11.26 15.454 C 11.99 15.861 12.469 15.489 12.33 14.625 L 11.675 10.565 C 11.64 10.346 11.73 10.046 11.881 9.889 L 14.653 7.013 C 15.245 6.401 15.061 5.801 14.246 5.676 L 10.413 5.084 C 10.207 5.051 9.968 4.868 9.875 4.666 L 8.161 0.971 C 7.796 0.184 7.203 0.184 6.839 0.971 L 5.125 4.666 C 5.033 4.864 4.795 5.051 4.586 5.084 L 0.754 5.676 C -0.062 5.801 -0.243 6.403 0.347 7.013 L 3.118 9.889 C 3.268 10.045 3.36 10.343 3.325 10.565 L 2.669 14.625 C 2.531 15.491 3.011 15.861 3.74 15.454 Z\" fill=\"#FAC000\"></path></svg>',svgContentId:11916203931,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mnhnvy\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><g><defs><path d=\"M 7.644 13.813 C 7.84 13.704 8.156 13.702 8.356 13.813 L 12.011 15.826 C 12.79 16.254 13.3 15.864 13.152 14.957 L 12.453 10.694 C 12.416 10.464 12.512 10.149 12.673 9.984 L 15.63 6.964 C 16.261 6.321 16.065 5.691 15.196 5.559 L 11.108 4.938 C 10.888 4.903 10.633 4.711 10.533 4.499 L 8.705 0.619 C 8.315 -0.206 7.683 -0.206 7.295 0.619 L 5.467 4.499 C 5.369 4.708 5.115 4.903 4.892 4.938 L 0.804 5.559 C -0.066 5.691 -0.26 6.323 0.37 6.964 L 3.325 9.984 C 3.486 10.147 3.584 10.46 3.547 10.694 L 2.847 14.957 C 2.699 15.865 3.212 16.254 3.989 15.826 Z\" id=\"a1008z\"></path><clipPath id=\"a1009z\"><use xlink:href=\"#a1008z\"></use></clipPath></defs><use xlink:href=\"#a1008z\" fill=\"rgba(250, 191, 1, 0.3)\" clip-path=\"url(#a1009z)\" stroke-width=\"1\" stroke=\"rgba(247, 190, 0, 0.4)\" stroke-miterlimit=\"10\"></use></g><path d=\"M 3.989 15.826 C 3.212 16.254 2.699 15.865 2.847 14.957 L 3.547 10.694 C 3.584 10.46 3.486 10.147 3.325 9.984 L 0.37 6.964 C 0.12 6.71 0 6.458 0 6.237 L 0 6.236 C 0 5.901 0.279 5.639 0.804 5.559 L 4.892 4.938 C 5.115 4.903 5.369 4.708 5.467 4.499 L 7.295 0.619 C 7.489 0.207 7.744 0 7.999 0 L 8 0 C 8.255 0 8.51 0.207 8.705 0.619 L 10.533 4.499 C 10.633 4.711 10.888 4.903 11.108 4.938 L 11.2 4.952 L 11.2 15.38 L 8.356 13.813 C 8.156 13.702 7.84 13.704 7.644 13.813 Z\" fill=\"hsl(46, 100%, 49%)\"></path></svg>',svgContentId:8613204767,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\"},children:\"4,7/5\"})}),className:\"framer-pceoej\",\"data-framer-name\":\"4,8/5\",fonts:[\"GF;Space Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})]})]}),getContainer())})})]})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+134+40+0+4),pixelHeight:1e3,pixelWidth:1e3,sizes:\"240px\",src:\"https://framerusercontent.com/images/hfgD1UIoy1LuO5dr8ZrAZhXok0.jpg\",srcSet:\"https://framerusercontent.com/images/hfgD1UIoy1LuO5dr8ZrAZhXok0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hfgD1UIoy1LuO5dr8ZrAZhXok0.jpg 1000w\"}},SsoBK9Mwq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+110+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"160px\",src:\"https://framerusercontent.com/images/hfgD1UIoy1LuO5dr8ZrAZhXok0.jpg\",srcSet:\"https://framerusercontent.com/images/hfgD1UIoy1LuO5dr8ZrAZhXok0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hfgD1UIoy1LuO5dr8ZrAZhXok0.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+134+40+0+2.55),pixelHeight:1e3,pixelWidth:1e3,sizes:\"240px\",src:\"https://framerusercontent.com/images/hfgD1UIoy1LuO5dr8ZrAZhXok0.jpg\",srcSet:\"https://framerusercontent.com/images/hfgD1UIoy1LuO5dr8ZrAZhXok0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hfgD1UIoy1LuO5dr8ZrAZhXok0.jpg 1000w\"},className:\"framer-z2eft8\",\"data-border\":true,\"data-framer-name\":\"Photo\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation11,className:\"framer-1adwff9\",\"data-framer-appear-id\":\"1adwff9\",\"data-framer-name\":\"Cas clients\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{y:(componentViewport?.y||0)+0+134+40+372+0+0},SsoBK9Mwq:{y:(componentViewport?.y||0)+0+110+0+609.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+134+40+377.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16qasy2-container\",nodeId:\"MyVBaFqx0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Subtitle,{BuyVYmgJX:\"Cas clients\",height:\"100%\",id:\"MyVBaFqx0\",layoutId:\"MyVBaFqx0\",style:{width:\"100%\"},UczYOynoq:\"D\\xe9couvrez les d\\xe9tails de quelques missions r\\xe9alis\\xe9es pour des clients\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mukckn\",\"data-framer-name\":\"Cas clients\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SsoBK9Mwq:{query:{from:{alias:\"gGEYy1s4e\",data:RefonteDesign,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"gGEYy1s4e\",name:\"ZQ9fB8rAl\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"u3A1lbFU5\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"GMKqG2giI\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"tMvdVj2oX\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"ncJeajCiG\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"lxIuOT0SJ\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"gIw0JM_fk\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"CRsqFSpZ7\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"XJLOaF6uH\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"gGEYy1s4e\",name:\"tCniIIEKW\",type:\"Identifier\"},operator:\"and\",right:{collection:\"gGEYy1s4e\",name:\"ZQ9fB8rAl\",type:\"Identifier\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gGEYy1s4e\",data:RefonteDesign,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"gGEYy1s4e\",name:\"ZQ9fB8rAl\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"u3A1lbFU5\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"GMKqG2giI\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"tMvdVj2oX\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"ncJeajCiG\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"lxIuOT0SJ\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"gIw0JM_fk\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"CRsqFSpZ7\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"XJLOaF6uH\",type:\"Identifier\"},{collection:\"gGEYy1s4e\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"gGEYy1s4e\",name:\"tCniIIEKW\",type:\"Identifier\"},operator:\"and\",right:{collection:\"gGEYy1s4e\",name:\"ZQ9fB8rAl\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({CRsqFSpZ7:CRsqFSpZ7gGEYy1s4e,gIw0JM_fk:gIw0JM_fkgGEYy1s4e,GMKqG2giI:GMKqG2giIgGEYy1s4e,id:idgGEYy1s4e,lxIuOT0SJ:lxIuOT0SJgGEYy1s4e,ncJeajCiG:ncJeajCiGgGEYy1s4e,tMvdVj2oX:tMvdVj2oXgGEYy1s4e,u3A1lbFU5:u3A1lbFU5gGEYy1s4e,XJLOaF6uH:XJLOaF6uHgGEYy1s4e,ZQ9fB8rAl:ZQ9fB8rAlgGEYy1s4e},index)=>{ZQ9fB8rAlgGEYy1s4e??=true;GMKqG2giIgGEYy1s4e??=\"\";tMvdVj2oXgGEYy1s4e??=\"\";ncJeajCiGgGEYy1s4e??=\"\";lxIuOT0SJgGEYy1s4e??=\"\";gIw0JM_fkgGEYy1s4e??=\"#09F\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gGEYy1s4e-${idgGEYy1s4e}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{lxIuOT0SJ:lxIuOT0SJgGEYy1s4e},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{lxIuOT0SJ:lxIuOT0SJgGEYy1s4e},webPageId:\"zDxziSeg1\"},implicitPathVariables:undefined},{href:{pathVariables:{lxIuOT0SJ:lxIuOT0SJgGEYy1s4e},webPageId:\"zDxziSeg1\"},implicitPathVariables:undefined},{href:{pathVariables:{lxIuOT0SJ:lxIuOT0SJgGEYy1s4e},webPageId:\"zDxziSeg1\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{height:160,y:(componentViewport?.y||0)+0+134+40+372+0+107+0+0},SsoBK9Mwq:{height:201,width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+110+0+609.2+0+107+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:214,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 32px) / 3, 200px)`,y:(componentViewport?.y||0)+0+134+40+377.6+0+107+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uf7nzb-container\",nodeId:\"xmeJEBSqf\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{NHbzLIovr:resolvedLinks[1],variant:\"mUyGCgEBI\"},SsoBK9Mwq:{NHbzLIovr:resolvedLinks[2],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"mUyGCgEBI\"}},children:/*#__PURE__*/_jsx(ProjectCardDesktop,{BKCrzbMfh:gIw0JM_fkgGEYy1s4e,dGy2za7x9:toResponsiveImage(u3A1lbFU5gGEYy1s4e),height:\"100%\",id:\"xmeJEBSqf\",II4d7mkiN:GMKqG2giIgGEYy1s4e,layoutId:\"xmeJEBSqf\",NHbzLIovr:resolvedLinks[0],o_Cqd4svw:ncJeajCiGgGEYy1s4e,O4HDfxnVr:equals(XJLOaF6uHgGEYy1s4e,\"ts4aW3a3S\"),slIwIFXpZ:tMvdVj2oXgGEYy1s4e,style:{height:\"100%\",width:\"100%\"},variant:convertFromBoolean(ZQ9fB8rAlgGEYy1s4e,activeLocale),VHUhOgKPk:tMvdVj2oXgGEYy1s4e,width:\"100%\",Z9xXQ3I9V:ncJeajCiGgGEYy1s4e,ZPKdzZsLB:toResponsiveImage(CRsqFSpZ7gGEYy1s4e)})})})})})})})},idgGEYy1s4e);})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VVlGanhJ6\"},implicitPathVariables:undefined},{href:{webPageId:\"VVlGanhJ6\"},implicitPathVariables:undefined},{href:{webPageId:\"VVlGanhJ6\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{y:(componentViewport?.y||0)+0+134+40+372+0+315},SsoBK9Mwq:{y:(componentViewport?.y||0)+0+110+0+609.2+0+340}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+134+40+377.6+0+369,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k1suu0-container\",nodeId:\"l8Gw4RzTD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{oIq_GJ6Ke:resolvedLinks1[1]},SsoBK9Mwq:{oIq_GJ6Ke:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"l8Gw4RzTD\",layoutId:\"l8Gw4RzTD\",oIq_GJ6Ke:resolvedLinks1[0],variant:\"s1cT7pprA\",width:\"100%\",wTNQ1uDo7:\"Voir tous les cas clients\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-80aiad\",\"data-framer-name\":\"Process\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1861pl\",\"data-framer-name\":\"Process mission\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{y:(componentViewport?.y||0)+0+134+40+791+0+0+0+0},SsoBK9Mwq:{y:(componentViewport?.y||0)+0+110+0+1045.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+134+40+850.6+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rmsls3-container\",nodeId:\"P4rxAKisj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Subtitle,{BuyVYmgJX:\"D\\xe9roul\\xe9 d'une collaboration\",height:\"100%\",id:\"P4rxAKisj\",layoutId:\"P4rxAKisj\",style:{width:\"100%\"},UczYOynoq:\"Au fil des ann\\xe9es, j'ai construit un process qui a fait ses preuves sur +75 missions afin de vous garantir un r\\xe9sultat \\xe0 la hauteur de vos attentes.\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gnh9p\",\"data-framer-name\":\"Steps\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i2j0lq\",\"data-framer-name\":\"Start\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-321god\",\"data-framer-name\":\"Frise\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+134+40+791+0+0+0+75+16+16},SsoBK9Mwq:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+110+0+1045.2+0+0+0+107+16+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,y:(componentViewport?.y||0)+0+134+40+850.6+0+0+0+107+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w0w0dd-container\",\"data-framer-name\":\"Step 1\",name:\"Step 1\",nodeId:\"xXVTzt399\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{variant:\"HmK5e2dCD\"},SsoBK9Mwq:{variant:\"HmK5e2dCD\"}},children:/*#__PURE__*/_jsx(Step,{height:\"100%\",id:\"xXVTzt399\",JwzzPey2l:\"D\\xe9couvrir\",layoutId:\"xXVTzt399\",name:\"Step 1\",PClYc3muE:\"Toute nouvelle collaboration commence par un premier \\xe9change de d\\xe9couverte pour que vous puissiez m'exposer votre probl\\xe9matique et vos attentes\",style:{width:\"100%\"},variant:\"kMafvLVE3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+134+40+791+0+0+0+75+16+82},SsoBK9Mwq:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+110+0+1045.2+0+0+0+107+16+82}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,y:(componentViewport?.y||0)+0+134+40+850.6+0+0+0+107+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-129o8fr-container\",\"data-framer-name\":\"Step 2\",name:\"Step 2\",nodeId:\"vfv7k0Drd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{variant:\"HmK5e2dCD\"},SsoBK9Mwq:{variant:\"HmK5e2dCD\"}},children:/*#__PURE__*/_jsx(Step,{height:\"100%\",id:\"vfv7k0Drd\",JwzzPey2l:\"Comprendre\",layoutId:\"vfv7k0Drd\",name:\"Step 2\",PClYc3muE:\"Il est ensuite important que je puisse m'immerger au mieux dans votre business en connaissant vos besoins et ceux de vos clients pour apporter une r\\xe9ponse adapt\\xe9e \\xe0 votre probl\\xe9matique\",style:{width:\"100%\"},variant:\"kMafvLVE3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+134+40+791+0+0+0+75+16+148},SsoBK9Mwq:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+110+0+1045.2+0+0+0+107+16+148}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,y:(componentViewport?.y||0)+0+134+40+850.6+0+0+0+107+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-stmm2b-container\",\"data-framer-name\":\"Step 3\",name:\"Step 3\",nodeId:\"q80jNkZic\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{variant:\"HmK5e2dCD\"},SsoBK9Mwq:{variant:\"HmK5e2dCD\"}},children:/*#__PURE__*/_jsx(Step,{height:\"100%\",id:\"q80jNkZic\",JwzzPey2l:\"Concevoir et tester\",layoutId:\"q80jNkZic\",name:\"Step 3\",PClYc3muE:\"Nous construisons ensemble une solution unique et sur mesure pour r\\xe9pondre \\xe0 votre probl\\xe9matique tout en s'assurant que celle-ci sera accept\\xe9e et appr\\xe9ci\\xe9e par vos clients\",style:{width:\"100%\"},variant:\"kMafvLVE3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+134+40+791+0+0+0+75+16+214},SsoBK9Mwq:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+110+0+1045.2+0+0+0+107+16+214}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,y:(componentViewport?.y||0)+0+134+40+850.6+0+0+0+107+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o7vhmi-container\",\"data-framer-name\":\"Step 4\",name:\"Step 4\",nodeId:\"znR_NGrkO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{variant:\"HmK5e2dCD\"},SsoBK9Mwq:{variant:\"HmK5e2dCD\"}},children:/*#__PURE__*/_jsx(Step,{height:\"100%\",id:\"znR_NGrkO\",JwzzPey2l:\"Livrer et mesurer\",layoutId:\"znR_NGrkO\",name:\"Step 4\",PClYc3muE:\"Apr\\xe8s avoir valid\\xe9 la pertinence de la r\\xe9ponse imagin\\xe9e, tout sera mis \\xe0 votre disposition pour d\\xe9ployer celle-ci aupr\\xe8s de vos clients et mesurer l'impact qu'aura cette derni\\xe8re sur votre business\",style:{width:\"100%\"},variant:\"kMafvLVE3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hg4ecx\",\"data-framer-name\":\"Stop\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-acvqu3\",\"data-framer-name\":\"Frise\"})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16h1pr4\",\"data-framer-name\":\"Citations clients\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{y:(componentViewport?.y||0)+0+134+40+1242+0+0},SsoBK9Mwq:{y:(componentViewport?.y||0)+0+110+0+1520.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+134+40+1103.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fhqpyi-container\",nodeId:\"GI7E5xziG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Subtitle,{BuyVYmgJX:\"Avis clients\",height:\"100%\",id:\"GI7E5xziG\",layoutId:\"GI7E5xziG\",style:{width:\"100%\"},UczYOynoq:\"Chaque fin de mission est l'occasion de vous demander ce que vous avez pens\\xe9 de notre collaboration et de comment am\\xe9liorer les choses\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2kyige\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+134+40+1242+0+107+0+0},SsoBK9Mwq:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+110+0+1520.2+0+107+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 48px) / 3, 200px)`,y:(componentViewport?.y||0)+0+134+40+1103.6+0+107+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18l17dw-container\",nodeId:\"Paum431TH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SsoBK9Mwq:{variant:\"qNFE4jPRb\"}},children:/*#__PURE__*/_jsx(Testimonial,{AtpdZgDWj:\"https://www.linkedin.com/in/richard-bordenave-7506405/\",eI6om3frE:'\"Johan a r\\xe9ussi \\xe0 faire communiquer les mondes chez BVA : ethno, quali, dev front end, designers, gr\\xe2ce \\xe0 sa ma\\xeetrise \\xe9largie des concepts UX et ses talents de communiquant. Conf\\xe9rencier engag\\xe9, chef de projet aux Mille-mains (et modeste) Johan est un partenaire de choix\"',hAVPyrI2Z:\"https://www.linkedin.com/in/ayachejohan/details/recommendations/?detailScreenTabIndex=0\",height:\"100%\",i8UVnazVp:\"\",id:\"Paum431TH\",layoutId:\"Paum431TH\",NIWll9ms_:addImageAlt({src:\"https://framerusercontent.com/images/bXaqD6cGd3kWwwMQACa24NY.jpeg\"},\"Richard Bordenave, Directeur Marketing \u2022 BVA\"),NQPjXD2L9:\"Richard Bordenave\",q91yyEBr6:true,style:{width:\"100%\"},TKXEGo6er:\"Directeur Marketing \u2022 BVA\",variant:\"jrAgud2yd\",width:\"100%\",wWFAAX45O:\"LinkedIn\",zzdZjqpnX:\"rgb(153, 153, 153)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+134+40+1242+0+107+0+0},SsoBK9Mwq:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+110+0+1520.2+0+107+0+199}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 48px) / 3, 200px)`,y:(componentViewport?.y||0)+0+134+40+1103.6+0+107+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uupajt-container\",nodeId:\"wKUgnVzmy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SsoBK9Mwq:{variant:\"qNFE4jPRb\"}},children:/*#__PURE__*/_jsx(Testimonial,{AtpdZgDWj:\"https://www.linkedin.com/in/solange-arnaud-b75354/\",eI6om3frE:'\u201C[...] Designer pour M\\xe9doucine pendant plusieurs ann\\xe9es, Johan a su comprendre nos besoins et ceux de nos clients pour faire des recommandations et des interfaces pertinentes pour notre produit.\"',hAVPyrI2Z:\"https://g.co/kgs/T9xoprN\",height:\"100%\",i8UVnazVp:\"5/5\",id:\"wKUgnVzmy\",layoutId:\"wKUgnVzmy\",NIWll9ms_:addImageAlt({src:\"https://framerusercontent.com/images/oCEfcmRxlgripbP2i80F6vx2Tg.jpeg\"},\"Solange Arnaud, Fondatrice & CEO \u2022 M\\xe9doucine\"),NQPjXD2L9:\"Solange Arnaud\",q91yyEBr6:true,style:{width:\"100%\"},TKXEGo6er:\"Fondatrice \u2022 M\\xe9doucine\",variant:\"jrAgud2yd\",width:\"100%\",wWFAAX45O:\"Google\",zzdZjqpnX:\"rgb(153, 153, 153)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+134+40+1242+0+107+0+199},SsoBK9Mwq:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+110+0+1520.2+0+107+0+398}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 48px) / 3, 200px)`,y:(componentViewport?.y||0)+0+134+40+1103.6+0+107+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13v47hg-container\",nodeId:\"q8tErYxsH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SsoBK9Mwq:{variant:\"qNFE4jPRb\"}},children:/*#__PURE__*/_jsx(Testimonial,{AtpdZgDWj:\"https://www.linkedin.com/in/lucasbourdalle/\",eI6om3frE:\"\u201CLa qualit\\xe9 du travail, la r\\xe9activit\\xe9 et l'autonomie sont \uD83D\uDC4D Au niveau collaboration/humain, c'est un r\\xe9el plaisir de travailler avec toi (sinc\\xe8rement). [...] Au final, le design r\\xe9alis\\xe9 sur notre nouveau site est sans conteste une belle r\\xe9ussite \uD83D\uDC4F F\\xe9licitations \uD83C\uDF89\u201D\",height:\"100%\",i8UVnazVp:\"\",id:\"q8tErYxsH\",layoutId:\"q8tErYxsH\",NIWll9ms_:addImageAlt({src:\"https://framerusercontent.com/images/OZmNBjaZ7K7vKLYldNaYNprrX4.jpeg\",srcSet:\"https://framerusercontent.com/images/OZmNBjaZ7K7vKLYldNaYNprrX4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/OZmNBjaZ7K7vKLYldNaYNprrX4.jpeg 614w\"},\"Lucas Bourdall\\xe9, Responsable Produit \u2022 Appvizer\"),NQPjXD2L9:\"Lucas Bourdall\\xe9\",q91yyEBr6:true,style:{width:\"100%\"},TKXEGo6er:\"Responsable Produit \u2022 Appvizer\",variant:\"jrAgud2yd\",width:\"100%\",wWFAAX45O:\"Evaluation fin de mission\",zzdZjqpnX:\"rgb(153, 153, 153)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+134+40+1242+0+107+0+199},SsoBK9Mwq:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px)`,y:(componentViewport?.y||0)+0+110+0+1520.2+0+107+0+597}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 48px) / 3, 200px)`,y:(componentViewport?.y||0)+0+134+40+1103.6+0+107+0+199,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ebmhht-container\",nodeId:\"ayMSw7OAg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SsoBK9Mwq:{variant:\"qNFE4jPRb\"}},children:/*#__PURE__*/_jsx(Testimonial,{AtpdZgDWj:\"https://www.linkedin.com/in/marine-benech-58525982/\",eI6om3frE:\"\\\"[...] S\\xe9rieux, passionn\\xe9, disponible et tr\\xe8s \\xe0 l'\\xe9coute, j'ai grandement appr\\xe9ci\\xe9 notre collaboration. En plus de ses comp\\xe9tences professionnelles, Johan poss\\xe8de des qualit\\xe9s humaines qui facilitent et rendent agr\\xe9able la conduite de projet. Je le recommande vivement !\\\"\",hAVPyrI2Z:\"https://www.linkedin.com/in/ayachejohan/details/recommendations/?detailScreenTabIndex=0\",height:\"100%\",i8UVnazVp:\"\",id:\"ayMSw7OAg\",layoutId:\"ayMSw7OAg\",NIWll9ms_:addImageAlt({src:\"https://framerusercontent.com/images/oEMBjeq9RdnTJMmXUSJjFAK0.jpeg\"},\"Marine Benech, Directrice Marketing \u2022 M\\xe9doucine\"),NQPjXD2L9:\"Marine Benech\",q91yyEBr6:true,style:{width:\"100%\"},TKXEGo6er:\"Directrice Marketing \u2022 M\\xe9doucine\",variant:\"jrAgud2yd\",width:\"100%\",wWFAAX45O:\"LinkedIn\",zzdZjqpnX:\"rgb(153, 153, 153)\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+134+40+1242+0+107+0+398}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 48px) / 3, 200px)`,y:(componentViewport?.y||0)+0+134+40+1103.6+0+107+0+199,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cjl4n6-container hidden-1jwejtx\",nodeId:\"mGJSv0CEQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{AtpdZgDWj:\"https://www.linkedin.com/in/brunofaourclassequine/\",eI6om3frE:'\u201CTr\\xe8s content de la mission de Johan pour l\u2019audit UX Design de notre site e-commerce. Il est \\xe0 l\u2019\\xe9coute des besoins et il est force de propositions. Rapport complet. Je recommande +++\"',hAVPyrI2Z:\"https://g.co/kgs/UYZyuTP\",height:\"100%\",i8UVnazVp:\"5/5\",id:\"mGJSv0CEQ\",layoutId:\"mGJSv0CEQ\",NIWll9ms_:addImageAlt({src:\"https://framerusercontent.com/images/yqoBjs3zdcyTIoPwLjRJ2BGPY.jpeg\"},\"Bruno Faour, Co-fondateur et CEO \u2022 Classequine\"),NQPjXD2L9:\"Bruno Faour\",q91yyEBr6:true,style:{width:\"100%\"},TKXEGo6er:\"Co-fondateur et CEO \u2022 Classequine\",variant:\"jrAgud2yd\",width:\"100%\",wWFAAX45O:\"Google\",zzdZjqpnX:\"rgb(153, 153, 153)\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+134+40+1242+0+107+0+398}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 48px) / 3, 200px)`,y:(componentViewport?.y||0)+0+134+40+1103.6+0+107+0+199,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c6m4f2-container hidden-1jwejtx\",nodeId:\"aRLpg6OMc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{AtpdZgDWj:\"https://www.linkedin.com/in/guilhem-tuffery-urbassist/\",eI6om3frE:'\"[...] Ce travail avec Johan est all\\xe9 bien au del\\xe0 d\u2019une \\xab simple \\xbb maquette par un long travail it\\xe9ratif et bienveillant, bas\\xe9 sur une communication rapide et efficace\"',height:\"100%\",i8UVnazVp:\"\",id:\"aRLpg6OMc\",layoutId:\"aRLpg6OMc\",NIWll9ms_:addImageAlt({src:\"https://framerusercontent.com/images/q67FGFTTdJSC22XEVpJXnwNU0.jpeg\",srcSet:\"https://framerusercontent.com/images/q67FGFTTdJSC22XEVpJXnwNU0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/q67FGFTTdJSC22XEVpJXnwNU0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q67FGFTTdJSC22XEVpJXnwNU0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/q67FGFTTdJSC22XEVpJXnwNU0.jpeg 2560w\"},\"Guilhem Tuffery, CEO \u2022 Urbassist\"),NQPjXD2L9:\"Guilhem Tuffery\",q91yyEBr6:true,style:{width:\"100%\"},TKXEGo6er:\"CEO \u2022 Urbassist\",variant:\"jrAgud2yd\",width:\"100%\",wWFAAX45O:\"Evaluation fin de mission\",zzdZjqpnX:\"rgb(153, 153, 153)\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+134+40+1242+0+107+0+597}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 48px) / 3, 200px)`,y:(componentViewport?.y||0)+0+134+40+1103.6+0+107+0+398,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mw949w-container hidden-1jwejtx\",nodeId:\"ud8RRT7A5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{AtpdZgDWj:\"https://www.linkedin.com/in/marion-honor%C3%A9/\",eI6om3frE:\"\u201CCe fut un r\\xe9el plaisir de travailler avec Johan : il s\u2019adapte facilement aux situations et aux interlocuteurs, apprend tr\\xe8s vite et fait preuve d\u2019une grande autonomie. J\u2019ai [...] appr\\xe9ci\\xe9 sa pro-activit\\xe9 avec des suggestions pertinentes et r\\xe9alistes. [...] Johan est toujours souriant et agr\\xe9able, facilitant les relations avec l\u2019ensemble de son entourage\u201D\",hAVPyrI2Z:\"https://www.linkedin.com/in/ayachejohan/details/recommendations/?detailScreenTabIndex=0\",height:\"100%\",i8UVnazVp:\"\",id:\"ud8RRT7A5\",layoutId:\"ud8RRT7A5\",NIWll9ms_:addImageAlt({src:\"https://framerusercontent.com/images/ygNulsi2Nd2N3Cf66YjXQfeqSnY.jpeg\"},\"Marion Honor\\xe9, Responsable UX \u2022 Yves Rocher\"),NQPjXD2L9:\"Marion Honor\\xe9\",q91yyEBr6:true,style:{width:\"100%\"},TKXEGo6er:\"Responsable UX \u2022 Yves Rocher\",variant:\"jrAgud2yd\",width:\"100%\",wWFAAX45O:\"LinkedIn\",zzdZjqpnX:\"rgb(153, 153, 153)\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+134+40+1242+0+107+0+597}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.85, 1200px) - 48px) / 3, 200px)`,y:(componentViewport?.y||0)+0+134+40+1103.6+0+107+0+398,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16rtffz-container hidden-1jwejtx\",nodeId:\"JuLeGLsI6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{AtpdZgDWj:\"https://www.linkedin.com/in/evallespi\",eI6om3frE:'\"[...] Tr\\xe8s satisfait de son travail, des interactions avant - pendant et apr\\xe8s ses missions, Johan est un prestataire/partenaire fiable et efficace. A l\u2019\\xe9coute des besoins et capable de propositions fortes, je n\u2019h\\xe9siterai pas a confier d\u2019autres projets \\xe0 Johan\"',height:\"100%\",i8UVnazVp:\"\",id:\"JuLeGLsI6\",layoutId:\"JuLeGLsI6\",NIWll9ms_:addImageAlt({src:\"https://framerusercontent.com/images/erMjX7HF95j3nyq2FJA5qOcxXdo.jpeg\"},\"Emeric Vallespi, Responsable Relation Clients \u2022 M\\xe9doucine\"),NQPjXD2L9:\"Emeric Vallespi\",q91yyEBr6:true,style:{width:\"100%\"},TKXEGo6er:\"Responsable Relation Clients \u2022 M\\xe9doucine\",variant:\"jrAgud2yd\",width:\"100%\",wWFAAX45O:\"LinkedIn\",zzdZjqpnX:\"rgb(153, 153, 153)\"})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{y:(componentViewport?.y||0)+0+2359},SsoBK9Mwq:{y:(componentViewport?.y||0)+0+2549.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2021.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jv10it-container\",id:elementId1,nodeId:\"qwqVLuheb\",ref:ref1,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9JosGUGJ:{variant:\"Bv8WS8l6E\"},SsoBK9Mwq:{__framer__obscuredVariantId:\"Bv8WS8l6E\",__framer__visibleVariantId:\"QyDecSSZe\",variant:\"Bv8WS8l6E\"}},children:/*#__PURE__*/_jsx(FooterWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"N68Et7ISH\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"h1lCicsXl\",height:\"100%\",IA2TLDQVm:\"une refonte\",id:\"qwqVLuheb\",layoutId:\"qwqVLuheb\",style:{height:\"100%\",width:\"100%\"},TZECekQvl:\"Contactez-moi\",variant:\"N68Et7ISH\",width:\"100%\",yTDoMXObe:\"de pr\\xe9vue ?\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iNigv.framer-lux5qc, .framer-iNigv .framer-lux5qc { display: block; }\",\".framer-iNigv.framer-72rtr7 { align-content: center; align-items: center; background-color: #f5f4f2; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-iNigv .framer-l64qo8-container { flex: none; height: auto; max-width: 1248px; position: sticky; top: 32px; width: 90%; z-index: 2; }\",\".framer-iNigv .framer-oihsk2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 85%; }\",\".framer-iNigv .framer-1lsu8vs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-iNigv .framer-wyngau { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iNigv .framer-14im8u1 { 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; position: relative; width: 100%; }\",\".framer-iNigv .framer-1u4iq5h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 32px 0px 32px 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-iNigv .framer-616rfj, .framer-iNigv .framer-13thg85, .framer-iNigv .framer-yhknyl, .framer-iNigv .framer-1cbkwvk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iNigv .framer-v740uh, .framer-iNigv .framer-2p3umo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-iNigv .framer-1tn1vqf-container { flex: none; height: auto; opacity: 0.6; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-iNigv .framer-19t6gmk-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-iNigv.framer-1xsovoa { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 4; }\",\".framer-iNigv.framer-58e6zz { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 50%; max-height: 90%; max-width: 1200px; overflow: hidden; padding: 40px 32px 40px 32px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 90%; will-change: var(--framer-will-change-effect-override, transform); z-index: 4; }\",\".framer-iNigv .framer-86td1t { 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: center; overflow: visible; padding: 0px 0px 0px 32px; position: relative; width: 100%; }\",\".framer-iNigv .framer-1kr47o9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-iNigv .framer-1ttkj97, .framer-iNigv .framer-kdg9g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iNigv .framer-1xcognj { align-content: center; align-items: center; 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: min-content; }\",\".framer-iNigv .framer-1wraans { flex: none; height: 48px; overflow: visible; position: relative; width: 170px; }\",\".framer-iNigv .framer-1by5iz7 { --border-bottom-width: 3px; --border-color: var(--token-6f881fab-af3d-47bf-8262-c61cad368b55, #f5f4f2); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 1 / 1; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: 48px; }\",\".framer-iNigv .framer-eedq6i { --border-bottom-width: 3px; --border-color: var(--token-6f881fab-af3d-47bf-8262-c61cad368b55, #f5f4f2); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 1 / 1; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 30px; position: absolute; top: 50%; transform: translateY(-50%); width: 48px; }\",\".framer-iNigv .framer-1ui32qh { --border-bottom-width: 3px; --border-color: var(--token-6f881fab-af3d-47bf-8262-c61cad368b55, #f5f4f2); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 1 / 1; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 60px; position: absolute; top: 50%; transform: translateY(-50%); width: 48px; }\",\".framer-iNigv .framer-1toqe6l { --border-bottom-width: 3px; --border-color: var(--token-6f881fab-af3d-47bf-8262-c61cad368b55, #f5f4f2); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 1 / 1; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 90px; position: absolute; top: 50%; transform: translateY(-50%); width: 48px; }\",\".framer-iNigv .framer-mkz5u2 { --border-bottom-width: 3px; --border-color: var(--token-6f881fab-af3d-47bf-8262-c61cad368b55, #f5f4f2); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 1 / 1; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 120px; position: absolute; top: 50%; transform: translateY(-50%); width: 48px; }\",\".framer-iNigv .framer-12kt3by { 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-iNigv .framer-oo2hu, .framer-iNigv .framer-a1uk26, .framer-iNigv .framer-1p1y9es, .framer-iNigv .framer-cuxus1 { 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-iNigv .framer-1esazln, .framer-iNigv .framer-7qw7io, .framer-iNigv .framer-1r8rm1f, .framer-iNigv .framer-1vtjkow, .framer-iNigv .framer-noh5t0, .framer-iNigv .framer-2kkjm9, .framer-iNigv .framer-hhuwmd, .framer-iNigv .framer-119jiy2, .framer-iNigv .framer-1ykdgrx, .framer-iNigv .framer-shbmny, .framer-iNigv .framer-briq5d, .framer-iNigv .framer-1anzndx, .framer-iNigv .framer-1n29ekp, .framer-iNigv .framer-n7n8pm, .framer-iNigv .framer-1hwbtp1, .framer-iNigv .framer-xdqz54 { flex: none; height: 16px; position: relative; width: 15px; }\",\".framer-iNigv .framer-14ofxt8, .framer-iNigv .framer-x85xgy, .framer-iNigv .framer-s4wkdc, .framer-iNigv .framer-1mnhnvy { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-iNigv .framer-ndf4hf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-iNigv .framer-18zupnr { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 17px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 16px; }\",\".framer-iNigv .framer-inxjnp-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\",\".framer-iNigv .framer-1u6bro3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iNigv .framer-1e9g3p9, .framer-iNigv .framer-e3brna, .framer-iNigv .framer-trhtt3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iNigv .framer-i6ldu9, .framer-iNigv .framer-12z6on7, .framer-iNigv .framer-ogtm9w { --border-bottom-width: 1px; --border-color: #efefef; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 0px 10px 0px rgba(17, 85, 204, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 16px 24px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iNigv .framer-112a1np, .framer-iNigv .framer-13j02pk, .framer-iNigv .framer-vtyzaa, .framer-iNigv .framer-1wgt4zx, .framer-iNigv .framer-zas9gk, .framer-iNigv .framer-4btg68, .framer-iNigv .framer-ypeof7, .framer-iNigv .framer-4knux, .framer-iNigv .framer-m7bigb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iNigv .framer-1tc9ac8, .framer-iNigv .framer-9v3itp, .framer-iNigv .framer-15j60gy { 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-iNigv .framer-an0es1, .framer-iNigv .framer-7kpcma, .framer-iNigv .framer-1hekz16 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iNigv .framer-183kptz, .framer-iNigv .framer-oo3177, .framer-iNigv .framer-pceoej { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-iNigv .framer-z2eft8 { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 0.7777777777777778 / 1; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.12), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.1), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.04); flex: none; height: var(--framer-aspect-ratio-supported, 309px); overflow: visible; position: relative; width: 240px; z-index: 1; }\",\".framer-iNigv .framer-1adwff9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-iNigv .framer-16qasy2-container, .framer-iNigv .framer-rmsls3-container, .framer-iNigv .framer-1fhqpyi-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-iNigv .framer-1mukckn { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-iNigv .framer-uf7nzb-container { align-self: start; flex: none; height: 214px; justify-self: start; position: relative; width: 100%; z-index: 1; }\",\".framer-iNigv .framer-k1suu0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-iNigv .framer-80aiad { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iNigv .framer-1861pl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iNigv .framer-gnh9p { 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: center; overflow: hidden; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-iNigv .framer-1i2j0lq, .framer-iNigv .framer-1hg4ecx { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-iNigv .framer-321god { align-content: center; align-items: center; background-color: #ede8df; border-bottom-left-radius: 16px; border-top-left-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 16px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 16px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-iNigv .framer-w0w0dd-container, .framer-iNigv .framer-129o8fr-container, .framer-iNigv .framer-stmm2b-container, .framer-iNigv .framer-1o7vhmi-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-iNigv .framer-acvqu3 { align-content: center; align-items: center; background-color: #ede8df; border-bottom-right-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 16px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 16px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-iNigv .framer-16h1pr4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iNigv .framer-2kyige { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iNigv .framer-18l17dw-container, .framer-iNigv .framer-uupajt-container, .framer-iNigv .framer-13v47hg-container, .framer-iNigv .framer-1ebmhht-container, .framer-iNigv .framer-1cjl4n6-container, .framer-iNigv .framer-1c6m4f2-container, .framer-iNigv .framer-mw949w-container, .framer-iNigv .framer-16rtffz-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-iNigv .framer-1jv10it-container { flex: none; height: 100vh; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-iNigv.framer-72rtr7, .framer-iNigv .framer-oihsk2, .framer-iNigv .framer-1lsu8vs, .framer-iNigv .framer-wyngau, .framer-iNigv .framer-14im8u1, .framer-iNigv .framer-1u4iq5h, .framer-iNigv .framer-616rfj, .framer-iNigv.framer-58e6zz, .framer-iNigv .framer-86td1t, .framer-iNigv .framer-1kr47o9, .framer-iNigv .framer-1xcognj, .framer-iNigv .framer-12kt3by, .framer-iNigv .framer-oo2hu, .framer-iNigv .framer-18zupnr, .framer-iNigv .framer-1u6bro3, .framer-iNigv .framer-1e9g3p9, .framer-iNigv .framer-i6ldu9, .framer-iNigv .framer-1tc9ac8, .framer-iNigv .framer-13thg85, .framer-iNigv .framer-an0es1, .framer-iNigv .framer-a1uk26, .framer-iNigv .framer-e3brna, .framer-iNigv .framer-12z6on7, .framer-iNigv .framer-9v3itp, .framer-iNigv .framer-yhknyl, .framer-iNigv .framer-7kpcma, .framer-iNigv .framer-1p1y9es, .framer-iNigv .framer-trhtt3, .framer-iNigv .framer-ogtm9w, .framer-iNigv .framer-15j60gy, .framer-iNigv .framer-1cbkwvk, .framer-iNigv .framer-1hekz16, .framer-iNigv .framer-cuxus1, .framer-iNigv .framer-1adwff9, .framer-iNigv .framer-80aiad, .framer-iNigv .framer-1861pl, .framer-iNigv .framer-gnh9p, .framer-iNigv .framer-1i2j0lq, .framer-iNigv .framer-321god, .framer-iNigv .framer-1hg4ecx, .framer-iNigv .framer-acvqu3, .framer-iNigv .framer-16h1pr4 { gap: 0px; } .framer-iNigv.framer-72rtr7 > *, .framer-iNigv .framer-oihsk2 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-iNigv.framer-72rtr7 > :first-child, .framer-iNigv .framer-oihsk2 > :first-child, .framer-iNigv .framer-wyngau > :first-child, .framer-iNigv .framer-1u4iq5h > :first-child, .framer-iNigv .framer-616rfj > :first-child, .framer-iNigv.framer-58e6zz > :first-child, .framer-iNigv .framer-1kr47o9 > :first-child, .framer-iNigv .framer-1xcognj > :first-child, .framer-iNigv .framer-18zupnr > :first-child, .framer-iNigv .framer-1e9g3p9 > :first-child, .framer-iNigv .framer-i6ldu9 > :first-child, .framer-iNigv .framer-1tc9ac8 > :first-child, .framer-iNigv .framer-13thg85 > :first-child, .framer-iNigv .framer-e3brna > :first-child, .framer-iNigv .framer-12z6on7 > :first-child, .framer-iNigv .framer-9v3itp > :first-child, .framer-iNigv .framer-yhknyl > :first-child, .framer-iNigv .framer-trhtt3 > :first-child, .framer-iNigv .framer-ogtm9w > :first-child, .framer-iNigv .framer-15j60gy > :first-child, .framer-iNigv .framer-1cbkwvk > :first-child, .framer-iNigv .framer-1adwff9 > :first-child, .framer-iNigv .framer-80aiad > :first-child, .framer-iNigv .framer-1861pl > :first-child, .framer-iNigv .framer-16h1pr4 > :first-child { margin-top: 0px; } .framer-iNigv.framer-72rtr7 > :last-child, .framer-iNigv .framer-oihsk2 > :last-child, .framer-iNigv .framer-wyngau > :last-child, .framer-iNigv .framer-1u4iq5h > :last-child, .framer-iNigv .framer-616rfj > :last-child, .framer-iNigv.framer-58e6zz > :last-child, .framer-iNigv .framer-1kr47o9 > :last-child, .framer-iNigv .framer-1xcognj > :last-child, .framer-iNigv .framer-18zupnr > :last-child, .framer-iNigv .framer-1e9g3p9 > :last-child, .framer-iNigv .framer-i6ldu9 > :last-child, .framer-iNigv .framer-1tc9ac8 > :last-child, .framer-iNigv .framer-13thg85 > :last-child, .framer-iNigv .framer-e3brna > :last-child, .framer-iNigv .framer-12z6on7 > :last-child, .framer-iNigv .framer-9v3itp > :last-child, .framer-iNigv .framer-yhknyl > :last-child, .framer-iNigv .framer-trhtt3 > :last-child, .framer-iNigv .framer-ogtm9w > :last-child, .framer-iNigv .framer-15j60gy > :last-child, .framer-iNigv .framer-1cbkwvk > :last-child, .framer-iNigv .framer-1adwff9 > :last-child, .framer-iNigv .framer-80aiad > :last-child, .framer-iNigv .framer-1861pl > :last-child, .framer-iNigv .framer-16h1pr4 > :last-child { margin-bottom: 0px; } .framer-iNigv .framer-1lsu8vs > *, .framer-iNigv .framer-1u6bro3 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-iNigv .framer-1lsu8vs > :first-child, .framer-iNigv .framer-14im8u1 > :first-child, .framer-iNigv .framer-86td1t > :first-child, .framer-iNigv .framer-12kt3by > :first-child, .framer-iNigv .framer-oo2hu > :first-child, .framer-iNigv .framer-1u6bro3 > :first-child, .framer-iNigv .framer-an0es1 > :first-child, .framer-iNigv .framer-a1uk26 > :first-child, .framer-iNigv .framer-7kpcma > :first-child, .framer-iNigv .framer-1p1y9es > :first-child, .framer-iNigv .framer-1hekz16 > :first-child, .framer-iNigv .framer-cuxus1 > :first-child, .framer-iNigv .framer-gnh9p > :first-child, .framer-iNigv .framer-1i2j0lq > :first-child, .framer-iNigv .framer-321god > :first-child, .framer-iNigv .framer-1hg4ecx > :first-child, .framer-iNigv .framer-acvqu3 > :first-child { margin-left: 0px; } .framer-iNigv .framer-1lsu8vs > :last-child, .framer-iNigv .framer-14im8u1 > :last-child, .framer-iNigv .framer-86td1t > :last-child, .framer-iNigv .framer-12kt3by > :last-child, .framer-iNigv .framer-oo2hu > :last-child, .framer-iNigv .framer-1u6bro3 > :last-child, .framer-iNigv .framer-an0es1 > :last-child, .framer-iNigv .framer-a1uk26 > :last-child, .framer-iNigv .framer-7kpcma > :last-child, .framer-iNigv .framer-1p1y9es > :last-child, .framer-iNigv .framer-1hekz16 > :last-child, .framer-iNigv .framer-cuxus1 > :last-child, .framer-iNigv .framer-gnh9p > :last-child, .framer-iNigv .framer-1i2j0lq > :last-child, .framer-iNigv .framer-321god > :last-child, .framer-iNigv .framer-1hg4ecx > :last-child, .framer-iNigv .framer-acvqu3 > :last-child { margin-right: 0px; } .framer-iNigv .framer-wyngau > *, .framer-iNigv .framer-18zupnr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-iNigv .framer-14im8u1 > *, .framer-iNigv .framer-86td1t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-iNigv .framer-1u4iq5h > *, .framer-iNigv.framer-58e6zz > *, .framer-iNigv .framer-i6ldu9 > *, .framer-iNigv .framer-12z6on7 > *, .framer-iNigv .framer-ogtm9w > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-iNigv .framer-616rfj > *, .framer-iNigv .framer-1e9g3p9 > *, .framer-iNigv .framer-13thg85 > *, .framer-iNigv .framer-e3brna > *, .framer-iNigv .framer-yhknyl > *, .framer-iNigv .framer-trhtt3 > *, .framer-iNigv .framer-1cbkwvk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-iNigv .framer-1kr47o9 > *, .framer-iNigv .framer-1xcognj > *, .framer-iNigv .framer-1tc9ac8 > *, .framer-iNigv .framer-9v3itp > *, .framer-iNigv .framer-15j60gy > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-iNigv .framer-12kt3by > *, .framer-iNigv .framer-an0es1 > *, .framer-iNigv .framer-7kpcma > *, .framer-iNigv .framer-1hekz16 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-iNigv .framer-oo2hu > *, .framer-iNigv .framer-a1uk26 > *, .framer-iNigv .framer-1p1y9es > *, .framer-iNigv .framer-cuxus1 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-iNigv .framer-1adwff9 > *, .framer-iNigv .framer-80aiad > *, .framer-iNigv .framer-1861pl > *, .framer-iNigv .framer-16h1pr4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-iNigv .framer-gnh9p > *, .framer-iNigv .framer-1i2j0lq > *, .framer-iNigv .framer-321god > *, .framer-iNigv .framer-1hg4ecx > *, .framer-iNigv .framer-acvqu3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-iNigv[data-border=\"true\"]::after, .framer-iNigv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 768px) and (max-width: 1199px) { .framer-iNigv.framer-72rtr7 { width: 768px; } .framer-iNigv .framer-oo2hu, .framer-iNigv .framer-a1uk26, .framer-iNigv .framer-1p1y9es, .framer-iNigv .framer-cuxus1 { padding: 2px 0px 0px 0px; } .framer-iNigv .framer-uf7nzb-container { aspect-ratio: 1.29375 / 1; height: var(--framer-aspect-ratio-supported, 160px); } .framer-iNigv .framer-1861pl { gap: 0px; } .framer-iNigv .framer-gnh9p { flex-direction: column; } .framer-iNigv .framer-321god { border-bottom-left-radius: unset; border-top-right-radius: 16px; } .framer-iNigv .framer-w0w0dd-container, .framer-iNigv .framer-129o8fr-container, .framer-iNigv .framer-stmm2b-container, .framer-iNigv .framer-1o7vhmi-container { flex: none; width: 100%; } .framer-iNigv .framer-acvqu3 { border-bottom-left-radius: 16px; border-top-right-radius: unset; } .framer-iNigv .framer-2kyige { grid-template-columns: repeat(2, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-iNigv .framer-1861pl, .framer-iNigv .framer-gnh9p { gap: 0px; } .framer-iNigv .framer-1861pl > *, .framer-iNigv .framer-gnh9p > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-iNigv .framer-1861pl > :first-child, .framer-iNigv .framer-gnh9p > :first-child { margin-top: 0px; } .framer-iNigv .framer-1861pl > :last-child, .framer-iNigv .framer-gnh9p > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 767px) { .framer-iNigv.framer-72rtr7 { gap: 40px; width: 320px; } .framer-iNigv .framer-l64qo8-container { order: 0; top: 16px; } .framer-iNigv .framer-oihsk2 { gap: 56px; order: 1; padding: 0px; } .framer-iNigv .framer-1lsu8vs, .framer-iNigv .framer-gnh9p { flex-direction: column; } .framer-iNigv .framer-wyngau { flex: none; order: 1; width: 100%; } .framer-iNigv .framer-14im8u1 { flex-direction: column; gap: 24px; } .framer-iNigv .framer-1u4iq5h { align-content: center; align-items: center; flex: none; gap: 20px; width: 100%; } .framer-iNigv .framer-1tn1vqf-container { height: 64px; } .framer-iNigv.framer-58e6zz { align-content: flex-start; align-items: flex-start; gap: 16px; max-width: 90%; overflow: auto; padding: 20px; } .framer-iNigv .framer-1ttkj97 { order: 0; } .framer-iNigv .framer-1xcognj { order: 1; width: 100%; } .framer-iNigv .framer-kdg9g { order: 2; } .framer-iNigv .framer-1u6bro3 { flex-direction: column; gap: 20px; } .framer-iNigv .framer-1e9g3p9, .framer-iNigv .framer-e3brna, .framer-iNigv .framer-trhtt3, .framer-iNigv .framer-w0w0dd-container, .framer-iNigv .framer-129o8fr-container, .framer-iNigv .framer-stmm2b-container, .framer-iNigv .framer-1o7vhmi-container { flex: none; width: 100%; } .framer-iNigv .framer-z2eft8 { aspect-ratio: unset; height: 240px; order: 0; width: 160px; } .framer-iNigv .framer-1mukckn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-iNigv .framer-uf7nzb-container { align-self: unset; height: auto; max-width: 100%; } .framer-iNigv .framer-321god { border-bottom-left-radius: unset; border-top-right-radius: 16px; } .framer-iNigv .framer-acvqu3 { border-bottom-left-radius: 16px; border-top-right-radius: unset; } .framer-iNigv .framer-2kyige { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-iNigv .framer-18l17dw-container, .framer-iNigv .framer-uupajt-container, .framer-iNigv .framer-13v47hg-container, .framer-iNigv .framer-1ebmhht-container { align-self: unset; } .framer-iNigv .framer-1jv10it-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-iNigv.framer-72rtr7, .framer-iNigv .framer-oihsk2, .framer-iNigv .framer-1lsu8vs, .framer-iNigv .framer-14im8u1, .framer-iNigv .framer-1u4iq5h, .framer-iNigv.framer-58e6zz, .framer-iNigv .framer-1u6bro3, .framer-iNigv .framer-1mukckn, .framer-iNigv .framer-gnh9p, .framer-iNigv .framer-2kyige { gap: 0px; } .framer-iNigv.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-iNigv.framer-72rtr7 > :first-child, .framer-iNigv .framer-oihsk2 > :first-child, .framer-iNigv .framer-1lsu8vs > :first-child, .framer-iNigv .framer-14im8u1 > :first-child, .framer-iNigv .framer-1u4iq5h > :first-child, .framer-iNigv.framer-58e6zz > :first-child, .framer-iNigv .framer-1u6bro3 > :first-child, .framer-iNigv .framer-1mukckn > :first-child, .framer-iNigv .framer-gnh9p > :first-child, .framer-iNigv .framer-2kyige > :first-child { margin-top: 0px; } .framer-iNigv.framer-72rtr7 > :last-child, .framer-iNigv .framer-oihsk2 > :last-child, .framer-iNigv .framer-1lsu8vs > :last-child, .framer-iNigv .framer-14im8u1 > :last-child, .framer-iNigv .framer-1u4iq5h > :last-child, .framer-iNigv.framer-58e6zz > :last-child, .framer-iNigv .framer-1u6bro3 > :last-child, .framer-iNigv .framer-1mukckn > :last-child, .framer-iNigv .framer-gnh9p > :last-child, .framer-iNigv .framer-2kyige > :last-child { margin-bottom: 0px; } .framer-iNigv .framer-oihsk2 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-iNigv .framer-1lsu8vs > *, .framer-iNigv.framer-58e6zz > *, .framer-iNigv .framer-1mukckn > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-iNigv .framer-14im8u1 > *, .framer-iNigv .framer-2kyige > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-iNigv .framer-1u4iq5h > *, .framer-iNigv .framer-1u6bro3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-iNigv .framer-gnh9p > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3921.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"O9JosGUGJ\":{\"layout\":[\"fixed\",\"auto\"]},\"SsoBK9Mwq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"lQmTYpVnU\":{\"pattern\":\":lQmTYpVnU\",\"name\":\"body\"},\"qwqVLuheb\":{\"pattern\":\":qwqVLuheb\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-iNigv\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3921.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSdSnn-PIwNhBti0.woff2\",weight:\"400\"},{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\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Space Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksmNsFjTDJK.woff2\",weight:\"700\"}]},...HeaderFonts,...CarrouselLogosFonts,...MoyenneFonts,...HamburgerFonts,...SubtitleFonts,...ProjectCardDesktopFonts,...ButtonFonts,...StepFonts,...TestimonialFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O9JosGUGJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SsoBK9Mwq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"3921.5\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"lQmTYpVnU\\\":{\\\"pattern\\\":\\\":lQmTYpVnU\\\",\\\"name\\\":\\\"body\\\"},\\\"qwqVLuheb\\\":{\\\"pattern\\\":\\\":qwqVLuheb\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "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", "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", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "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", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "addPropertyOverrides", "Ticker", "Image2", "SVG", "css", "FramerHf8xXn_SV", "withCSS", "Hf8xXn_SV_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "HeaderFonts", "getFonts", "xmCdq_Rly_default", "ContainerWithFX", "withFX", "Container", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "CarrouselLogosFonts", "Hf8xXn_SV_default", "ContainerWithOptimizedAppearEffect", "MoyenneFonts", "k56OibApy_default", "HamburgerFonts", "F4jklYmyb_default", "ImageWithFX", "Image2", "SubtitleFonts", "imQFOIXyV_default", "ProjectCardDesktopFonts", "ID1BueNRR_default", "ButtonFonts", "eADfFWq6z_default", "MotionDivWithOptimizedAppearEffect", "motion", "StepFonts", "hd0EBhRI8_default", "TestimonialFonts", "mMNXBGZw3_default", "FooterFonts", "SOZ_DUMTu_default", "FooterWithVariantAppearEffect", "withVariantAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "animation1", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "animation8", "transformTemplate1", "_", "t", "transformTemplate2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation9", "animation10", "animation11", "animation12", "transition5", "animation13", "convertFromBoolean", "value", "activeLocale", "toResponsiveImage", "equals", "a", "b", "QueryData", "query", "pageSize", "data", "useQueryData", "addImageAlt", "image", "alt", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ZQ9fB8rAlgGEYy1s4e", "u3A1lbFU5gGEYy1s4e", "GMKqG2giIgGEYy1s4e", "tMvdVj2oXgGEYy1s4e", "ncJeajCiGgGEYy1s4e", "lxIuOT0SJgGEYy1s4e", "gIw0JM_fkgGEYy1s4e", "CRsqFSpZ7gGEYy1s4e", "XJLOaF6uHgGEYy1s4e", "idgGEYy1s4e", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "Is4AesgxA3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "isDisplayed", "elementId1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "l", "AnimatePresence", "Ga", "SVG", "getLoadingLazyAtYPosition", "ChildrenCanSuspend", "D5rYcH1J6_default", "collection", "paginationInfo", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
