{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.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/FzZ67ct97QwFne6Bf7ku/Ticker.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framer.com/m/framer/useConstant.js@^1.0.0", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framerusercontent.com/modules/upHscEcqDQ8iVzrOfuEk/iHEJIWt3POCR8hWv8Fip/dSMVdIqsz.js", "ssg:https://framerusercontent.com/modules/aRc9nPxNBQzhNns0Yh92/LNbk2foKwZh3QIAuRmnK/J6zSbb6tO.js", "ssg:https://framerusercontent.com/modules/7MOnPOZhAqPFJMTQWlQ1/eXxL9EYpXeKXblL5JOpZ/SEIeOoI9U.js", "ssg:https://framerusercontent.com/modules/bVgOthKSwEKzZJqKJGhT/5Vs7jualPI6HakZK2GTV/F9Ov10Un5.js", "ssg:https://framerusercontent.com/modules/xs5y1HPP6xIbXjFSvCPz/bgaqCwi7jUot4zRRr5uz/gxwNZgbM_.js", "ssg:https://framerusercontent.com/modules/sTshJUJjZPgD0IglrM18/HqrAGIGdSPUIz16UGSML/da2gTD9dV.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 isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);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 r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}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,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}},(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}},(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\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;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=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}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:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=useMemo(()=>startTimeProp===100?99.9:startTimeProp,[startTimeProp]);const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTime,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on.\n * By using `useConstant` you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "import { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";// Generated by Framer (24dff6d)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{Image,addFonts,withCSS,addPropertyControls,ControlType,cx,useAddVariantProps,useVariantState,RichText}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"s58Y_r8Ez\",\"vRzgmGWpd\",\"FVETXFjb1\"];const variantClassNames={\"s58Y_r8Ez\":\"framer-v-3v9zgb\",\"FVETXFjb1\":\"framer-v-3hetrw\",\"vRzgmGWpd\":\"framer-v-14lsyg\"};const humanReadableVariantMap={\"Photo\":\"s58Y_r8Ez\",\"Placeholder\":\"vRzgmGWpd\",\"Initials\":\"FVETXFjb1\"};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":0.3,\"delay\":0,\"stiffness\":500,\"damping\":60,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({style:externalStyle={},className,width,height,layoutId,variant:outerVariant=\"s58Y_r8Ez\",image:xmIvQmf4p=new URL(\"assets/512/3FLphn4nNQcp8m6DWDVn5OAPXI.jpg\",\"https://framerusercontent.com/modules/upHscEcqDQ8iVzrOfuEk/iHEJIWt3POCR8hWv8Fip/dSMVdIqsz.js\").href,initials:nk9VMvIfG=\"HC\",radius:VqLXyQmbq=100,accent:v407kujy9=\"rgb(255, 255, 255)\",background:etbl5ORQn=\"rgb(97, 51, 237)\",indicator:ApbJ0qlLr=true,indicator1:rxuSom06d=\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152)) /* {\\\"name\\\":\\\"Green\\\"} */\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"s58Y_r8Ez\",variant,transitions,variantClassNames,cycleOrder});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const variantProps=React.useMemo(()=>({\"FVETXFjb1\":{\"s58Y_r8Ez\":{\"data-framer-name\":\"Initials\"},\"zPXPmOECM\":{\"html\":\"<p style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\"><span style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\">HC</span></p>\",\"__htmlStructure\":\"<p style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\"><span style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\">{{ text-placeholder }}</span></p>\",\"fonts\":[\"GF;Be Vietnam Pro-600\"]}},\"vRzgmGWpd\":{\"s58Y_r8Ez\":{\"data-framer-name\":\"Placeholder\"}}}),[v407kujy9]);const addVariantProps=useAddVariantProps(baseVariant,gestureVariant,variantProps);const isDisplayed1=()=>{if(baseVariant===\"vRzgmGWpd\")return false;return true;};const isDisplayed2=()=>{if([\"FVETXFjb1\",\"vRzgmGWpd\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"vRzgmGWpd\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"vRzgmGWpd\")return true;return false;};const defaultLayoutId=useRandomID();const{pointerEvents,...style}=externalStyle;return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{\"data-framer-generated\":true,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-oTphn\",classNames),style:{\"display\":\"contents\",\"pointerEvents\":pointerEvents!==null&&pointerEvents!==void 0?pointerEvents:undefined},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,layoutId:\"s58Y_r8Ez\",className:cx(\"framer-3v9zgb\",className),style:{\"borderBottomLeftRadius\":VqLXyQmbq,\"borderBottomRightRadius\":VqLXyQmbq,\"borderTopRightRadius\":VqLXyQmbq,\"borderTopLeftRadius\":VqLXyQmbq,\"backgroundColor\":etbl5ORQn,...style},\"data-framer-name\":\"Photo\",transition:transition,layoutDependency:layoutDependency,ref:ref,...addVariantProps(\"s58Y_r8Ez\"),children:[isDisplayed1()&&/*#__PURE__*/ _jsx(RichText,{fonts:[\"GF;Be Vietnam Pro-600\"],style:{\"--variable-reference-v407kujy9\":v407kujy9,\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},withExternalLayout:true,verticalAlignment:\"top\",center:true,__fromCanvasComponent:true,layoutId:\"zPXPmOECM\",className:\"framer-1c9qosn\",html:\"<p style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\"><span style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\">HC</span></p>\",__htmlStructure:\"<p style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\"><span style=\\\"--framer-font-family:&quot;Be Vietnam Pro&quot;, serif; --framer-font-style:normal; --framer-font-weight:600; --font-selector:R0Y7QmUgVmlldG5hbSBQcm8tNjAw; --framer-text-color:var(--variable-reference-v407kujy9); --framer-font-size:12px;\\\">{{ text-placeholder }}</span></p>\",text:nk9VMvIfG,transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"zPXPmOECM\")}),isDisplayed2()&&/*#__PURE__*/ _jsx(Image,{layoutId:\"QsbvWmrdZ\",className:\"framer-16ah2q\",style:{\"borderBottomLeftRadius\":VqLXyQmbq,\"borderBottomRightRadius\":VqLXyQmbq,\"borderTopRightRadius\":VqLXyQmbq,\"borderTopLeftRadius\":VqLXyQmbq},background:{\"src\":xmIvQmf4p,\"pixelWidth\":512,\"pixelHeight\":512,\"intrinsicWidth\":512,\"intrinsicHeight\":512,\"fit\":\"fill\"},\"data-framer-name\":\"Avatar\",alt:\"\",transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"QsbvWmrdZ\"),children:ApbJ0qlLr&&/*#__PURE__*/ _jsx(motion.div,{layoutId:\"SCsTp1y2E\",className:\"framer-16cyh4v\",style:{\"borderBottomLeftRadius\":\"50%\",\"borderBottomRightRadius\":\"50%\",\"borderTopRightRadius\":\"50%\",\"borderTopLeftRadius\":\"50%\",\"backgroundColor\":\"rgb(255, 255, 255)\"},\"data-framer-name\":\"Indicator\",transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"SCsTp1y2E\"),children:/*#__PURE__*/ _jsx(motion.div,{layoutId:\"X1jq3J_Fl\",className:\"framer-1owj0hl\",style:{\"borderBottomLeftRadius\":\"50%\",\"borderBottomRightRadius\":\"50%\",\"borderTopRightRadius\":\"50%\",\"borderTopLeftRadius\":\"50%\",\"backgroundColor\":rxuSom06d},transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"X1jq3J_Fl\")})})}),isDisplayed3()&&/*#__PURE__*/ _jsx(motion.div,{layoutId:\"MWzMqWFtB\",className:\"framer-nkdrr7\",style:{\"borderBottomLeftRadius\":\"50%\",\"borderBottomRightRadius\":\"50%\",\"borderTopRightRadius\":\"50%\",\"borderTopLeftRadius\":\"50%\",\"backgroundColor\":v407kujy9},\"data-framer-name\":\"Placeholder body\",transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"MWzMqWFtB\")}),isDisplayed4()&&/*#__PURE__*/ _jsx(motion.div,{layoutId:\"oLkkfmJK2\",className:\"framer-g5wxn5\",style:{\"borderBottomLeftRadius\":\"50%\",\"borderBottomRightRadius\":\"50%\",\"borderTopRightRadius\":\"50%\",\"borderTopLeftRadius\":\"50%\",\"backgroundColor\":v407kujy9},\"data-framer-name\":\"Placeholder head\",transition:transition,layoutDependency:layoutDependency,...addVariantProps(\"oLkkfmJK2\")})]})})}));});const css=[\".framer-oTphn [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-oTphn * { box-sizing: border-box; }\",\".framer-oTphn .framer-3v9zgb { position: relative; overflow: visible; width: 30px; height: 30px; }\",\".framer-oTphn .framer-1c9qosn { position: absolute; width: auto; height: auto; left: 50%; top: 50%; flex: none; white-space: pre; }\",\".framer-oTphn .framer-16ah2q { position: absolute; overflow: visible; right: 0px; bottom: 0px; left: 0px; top: 0px; flex: none; }\",\".framer-oTphn .framer-16cyh4v { position: absolute; overflow: visible; width: 27%; height: 27%; right: 0px; bottom: 0px; flex: none; }\",\".framer-oTphn .framer-1owj0hl { position: absolute; overflow: visible; width: 75%; height: 75%; left: calc(50.00000000000002% - 75%/2); top: calc(50.00000000000002% - 75%/2); flex: none; }\",\".framer-oTphn .framer-nkdrr7 { position: absolute; overflow: visible; width: 27%; height: 27%; left: calc(50.00000000000002% - 26.666666666666668%/2); top: calc(36.666666666666686% - 26.666666666666668%/2); flex: none; }\",\".framer-oTphn .framer-g5wxn5 { position: absolute; overflow: visible; width: 53%; height: 30%; left: calc(50.00000000000002% - 53.333333333333336%/2); top: calc(70.00000000000001% - 30%/2); flex: none; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}, \"FVETXFjb1\": {\"layout\": [\"fixed\", \"fixed\"]}, \"vRzgmGWpd\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"xmIvQmf4p\": \"image\", \"nk9VMvIfG\": \"initials\", \"VqLXyQmbq\": \"radius\", \"v407kujy9\": \"accent\", \"etbl5ORQn\": \"background\", \"ApbJ0qlLr\": \"indicator\", \"rxuSom06d\": \"indicator1\"}\n */ const FramerdSMVdIqsz=withCSS(Component,css);export default FramerdSMVdIqsz;FramerdSMVdIqsz.displayName=\"Elements / Avatar\";FramerdSMVdIqsz.defaultProps={\"width\":30,\"height\":30};addPropertyControls(FramerdSMVdIqsz,{\"variant\":{\"type\":ControlType.Enum,\"title\":\"Variant\",\"options\":[\"s58Y_r8Ez\",\"vRzgmGWpd\",\"FVETXFjb1\"],\"optionTitles\":[\"Photo\",\"Placeholder\",\"Initials\"]},\"xmIvQmf4p\":{\"type\":ControlType.Image,\"title\":\"Image\",\"__defaultAssetReference\":\"data:framer/asset-reference,3FLphn4nNQcp8m6DWDVn5OAPXI.jpg?originalFilename=unknown.jpg&preferredSize=small\"},\"nk9VMvIfG\":{\"type\":ControlType.String,\"title\":\"Initials\",\"defaultValue\":\"HC\",\"displayTextArea\":false},\"VqLXyQmbq\":{\"type\":ControlType.Number,\"title\":\"Radius\",\"defaultValue\":100,\"min\":0,\"max\":200},\"v407kujy9\":{\"type\":ControlType.Color,\"title\":\"Accent\",\"defaultValue\":\"rgb(255, 255, 255)\"},\"etbl5ORQn\":{\"type\":ControlType.Color,\"title\":\"Background\",\"defaultValue\":\"rgb(97, 51, 237)\"},\"ApbJ0qlLr\":{\"type\":ControlType.Boolean,\"title\":\"Indicator\",\"defaultValue\":true},\"rxuSom06d\":{\"type\":ControlType.Color,\"title\":\"Indicator\",\"defaultValue\":\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152)) /* {\\\"name\\\":\\\"Green\\\"} */\"}});addFonts(FramerdSMVdIqsz,[{\"url\":\"https://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf\",\"family\":\"Be Vietnam Pro\",\"style\":\"normal\",\"weight\":\"600\",\"moduleAsset\":{\"url\":\"https://fonts.gstatic.com/s/bevietnampro/v8/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf\",\"localModuleIdentifier\":\"local-module:canvasComponent/dSMVdIqsz:default\"}}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdSMVdIqsz\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"30\",\"framerIntrinsicHeight\":\"30\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"FVETXFjb1\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"vRzgmGWpd\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"xmIvQmf4p\\\": \\\"image\\\", \\\"nk9VMvIfG\\\": \\\"initials\\\", \\\"VqLXyQmbq\\\": \\\"radius\\\", \\\"v407kujy9\\\": \\\"accent\\\", \\\"etbl5ORQn\\\": \\\"background\\\", \\\"ApbJ0qlLr\\\": \\\"indicator\\\", \\\"rxuSom06d\\\": \\\"indicator1\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dSMVdIqsz.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;DM Sans-regular\"]);export const fonts=[{family:\"DM Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/J6zSbb6tO:default\",url:\"https://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\",weight:\"400\"}];export const css=['.framer-q6bLP .framer-styles-preset-fspyba:not(.rich-text-wrapper), .framer-q6bLP .framer-styles-preset-fspyba.rich-text-wrapper h5 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f5a20418-5c0d-4268-91b5-0b92d2ed9cf2, #111827); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-q6bLP .framer-styles-preset-fspyba:not(.rich-text-wrapper), .framer-q6bLP .framer-styles-preset-fspyba.rich-text-wrapper h5 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f5a20418-5c0d-4268-91b5-0b92d2ed9cf2, #111827); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-q6bLP .framer-styles-preset-fspyba:not(.rich-text-wrapper), .framer-q6bLP .framer-styles-preset-fspyba.rich-text-wrapper h5 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f5a20418-5c0d-4268-91b5-0b92d2ed9cf2, #111827); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-q6bLP\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/aRc9nPxNBQzhNns0Yh92/LNbk2foKwZh3QIAuRmnK/J6zSbb6tO.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/6rY0aUYTDbdcTpwNWwmT/4TFWOCYfuZOhFJn8qQOB/QCnAqn05t.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/tFTuuFQRZIrQQExpfSqw/M2cUAg1tHZAOGvGF7rs9/uKCyWD_sn.js\";const cycleOrder=[\"HtdYCrr1W\"];const serializationHash=\"framer-QzVWB\";const variantClassNames={HtdYCrr1W:\"framer-v-1dwbdeg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({contactName,height,id,image,jobTitleCompany,olivierUZAN,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,I25V5Dp21:(_ref=olivierUZAN!==null&&olivierUZAN!==void 0?olivierUZAN:props.I25V5Dp21)!==null&&_ref!==void 0?_ref:\"I had the pleasure of working with Olivier in the search for an automation engineer. Despite the shortage of talent, Olivier was able to present me with several interesting profiles that perfectly matched our criteria and our way of working.\",LdPu8lXOP:(_ref1=image!==null&&image!==void 0?image:props.LdPu8lXOP)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/kZDtr04QuImtrTrCqi3lftYiTk.png?scale-down-to=512&lossless=1\",srcSet:\"https://framerusercontent.com/images/kZDtr04QuImtrTrCqi3lftYiTk.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/kZDtr04QuImtrTrCqi3lftYiTk.png?lossless=1 606w\"},mpYp0FmAS:(_ref2=jobTitleCompany!==null&&jobTitleCompany!==void 0?jobTitleCompany:props.mpYp0FmAS)!==null&&_ref2!==void 0?_ref2:\"Head of Feature Teams @ Corum L'\\xe9pargne\",QQgAHaGsX:(_ref3=contactName!==null&&contactName!==void 0?contactName:props.QQgAHaGsX)!==null&&_ref3!==void 0?_ref3:\"Olivier UZAN\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LdPu8lXOP,I25V5Dp21,QQgAHaGsX,mpYp0FmAS,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HtdYCrr1W\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dwbdeg\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Person 1\",layoutDependency:layoutDependency,layoutId:\"HtdYCrr1W\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-29f4037d-1dc2-476d-8092-26858e7cc3dd, rgb(229, 231, 235))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-49b22e1a-1155-4faf-92dc-21627346bda1, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zxin6o\",layoutDependency:layoutDependency,layoutId:\"gIfEqRfYo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wedfng\",\"data-styles-preset\":\"uKCyWD_sn\",children:\"A written or recorded statement that showcases a positive experience, opinion, or recommendation from a user or customer of a product, service, or experience\"})}),className:\"framer-1eluuu\",\"data-framer-name\":\"Testimonial Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XNN2FvqWC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:I25V5Dp21,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rto8ox\",\"data-framer-name\":\"Testimonial info\",layoutDependency:layoutDependency,layoutId:\"Dc4fvmRV8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:3276,pixelHeight:4096,pixelWidth:3276,sizes:\"40px\",...toResponsiveImage(LdPu8lXOP)},className:\"framer-h1er0q\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"B72LWVPxM\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q55puv\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"tRIYRHb4m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fspyba\",\"data-styles-preset\":\"J6zSbb6tO\",children:\"John Doe\"})}),className:\"framer-bbz747\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q9QGrZsIe\",text:QQgAHaGsX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2pb6q\",\"data-styles-preset\":\"QCnAqn05t\",children:\"Job title, Company\"})}),className:\"framer-4prx7c\",\"data-framer-name\":\"Job Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iJd2ZLfw7\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mpYp0FmAS,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QzVWB.framer-1qbwwjv, .framer-QzVWB .framer-1qbwwjv { display: block; }\",\".framer-QzVWB.framer-1dwbdeg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: 278px; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QzVWB .framer-zxin6o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QzVWB .framer-1eluuu { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-QzVWB .framer-rto8ox { 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: min-content; }\",\".framer-QzVWB .framer-h1er0q { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QzVWB .framer-1q55puv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QzVWB .framer-bbz747, .framer-QzVWB .framer-4prx7c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QzVWB.framer-1dwbdeg, .framer-QzVWB .framer-zxin6o, .framer-QzVWB .framer-rto8ox, .framer-QzVWB .framer-1q55puv { gap: 0px; } .framer-QzVWB.framer-1dwbdeg > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-QzVWB.framer-1dwbdeg > :first-child, .framer-QzVWB .framer-1q55puv > :first-child { margin-top: 0px; } .framer-QzVWB.framer-1dwbdeg > :last-child, .framer-QzVWB .framer-1q55puv > :last-child { margin-bottom: 0px; } .framer-QzVWB .framer-zxin6o > *, .framer-QzVWB .framer-rto8ox > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QzVWB .framer-zxin6o > :first-child, .framer-QzVWB .framer-rto8ox > :first-child { margin-left: 0px; } .framer-QzVWB .framer-zxin6o > :last-child, .framer-QzVWB .framer-rto8ox > :last-child { margin-right: 0px; } .framer-QzVWB .framer-1q55puv > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-QzVWB[data-border=\"true\"]::after, .framer-QzVWB [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 278\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"LdPu8lXOP\":\"image\",\"I25V5Dp21\":\"olivierUZAN\",\"QQgAHaGsX\":\"contactName\",\"mpYp0FmAS\":\"jobTitleCompany\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSEIeOoI9U=withCSS(Component,css,\"framer-QzVWB\");export default FramerSEIeOoI9U;FramerSEIeOoI9U.displayName=\"Card Testimonial\";FramerSEIeOoI9U.defaultProps={height:278,width:400};addPropertyControls(FramerSEIeOoI9U,{LdPu8lXOP:{__defaultAssetReference:\"data:framer/asset-reference,kZDtr04QuImtrTrCqi3lftYiTk.png?originalFilename=Olivier+UZAN+-+Testimonial+1.png&preferredSize=lossless\",title:\"Image\",type:ControlType.ResponsiveImage},I25V5Dp21:{defaultValue:\"I had the pleasure of working with Olivier in the search for an automation engineer. Despite the shortage of talent, Olivier was able to present me with several interesting profiles that perfectly matched our criteria and our way of working.\",displayTextArea:true,title:\"Olivier UZAN\",type:ControlType.String},QQgAHaGsX:{defaultValue:\"Olivier UZAN\",displayTextArea:false,title:\"Contact Name\",type:ControlType.String},mpYp0FmAS:{defaultValue:\"Head of Feature Teams @ Corum L'\\xe9pargne\",displayTextArea:false,title:\"Job Title / Company\",type:ControlType.String}});addFonts(FramerSEIeOoI9U,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSEIeOoI9U\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"LdPu8lXOP\\\":\\\"image\\\",\\\"I25V5Dp21\\\":\\\"olivierUZAN\\\",\\\"QQgAHaGsX\\\":\\\"contactName\\\",\\\"mpYp0FmAS\\\":\\\"jobTitleCompany\\\"}\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"278\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SEIeOoI9U.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;DM Sans-regular\"]);export const fonts=[{family:\"DM Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/F9Ov10Un5:default\",url:\"https://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\",weight:\"400\"}];export const css=['.framer-tm8lF .framer-styles-preset-13kds3k:not(.rich-text-wrapper), .framer-tm8lF .framer-styles-preset-13kds3k.rich-text-wrapper h2 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f5a20418-5c0d-4268-91b5-0b92d2ed9cf2, #111827); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-tm8lF .framer-styles-preset-13kds3k:not(.rich-text-wrapper), .framer-tm8lF .framer-styles-preset-13kds3k.rich-text-wrapper h2 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f5a20418-5c0d-4268-91b5-0b92d2ed9cf2, #111827); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-tm8lF .framer-styles-preset-13kds3k:not(.rich-text-wrapper), .framer-tm8lF .framer-styles-preset-13kds3k.rich-text-wrapper h2 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f5a20418-5c0d-4268-91b5-0b92d2ed9cf2, #111827); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-tm8lF\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;DM Sans-regular\"]);export const fonts=[{family:\"DM Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/gxwNZgbM_:default\",url:\"https://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\",weight:\"400\"}];export const css=['.framer-HmfbE .framer-styles-preset-1frghug:not(.rich-text-wrapper), .framer-HmfbE .framer-styles-preset-1frghug.rich-text-wrapper h3 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f5a20418-5c0d-4268-91b5-0b92d2ed9cf2, #111827); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-HmfbE .framer-styles-preset-1frghug:not(.rich-text-wrapper), .framer-HmfbE .framer-styles-preset-1frghug.rich-text-wrapper h3 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f5a20418-5c0d-4268-91b5-0b92d2ed9cf2, #111827); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-HmfbE .framer-styles-preset-1frghug:not(.rich-text-wrapper), .framer-HmfbE .framer-styles-preset-1frghug.rich-text-wrapper h3 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f5a20418-5c0d-4268-91b5-0b92d2ed9cf2, #111827); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-HmfbE\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/FzZ67ct97QwFne6Bf7ku/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js\";import ElementsAvatar from\"https://framerusercontent.com/modules/upHscEcqDQ8iVzrOfuEk/iHEJIWt3POCR8hWv8Fip/dSMVdIqsz.js\";import Footer from\"#framer/local/canvasComponent/B_vNBfGcI/B_vNBfGcI.js\";import Button from\"#framer/local/canvasComponent/CufoZIgDB/CufoZIgDB.js\";import Navbar from\"#framer/local/canvasComponent/ea6MiA2lH/ea6MiA2lH.js\";import CardTestimonial from\"#framer/local/canvasComponent/SEIeOoI9U/SEIeOoI9U.js\";import*as sharedStyle4 from\"#framer/local/css/B8O4Go29Y/B8O4Go29Y.js\";import*as sharedStyle2 from\"#framer/local/css/EtagHKxB6/EtagHKxB6.js\";import*as sharedStyle8 from\"#framer/local/css/F9Ov10Un5/F9Ov10Un5.js\";import*as sharedStyle6 from\"#framer/local/css/gxwNZgbM_/gxwNZgbM_.js\";import*as sharedStyle5 from\"#framer/local/css/i0ZqwRXhY/i0ZqwRXhY.js\";import*as sharedStyle3 from\"#framer/local/css/J6zSbb6tO/J6zSbb6tO.js\";import*as sharedStyle1 from\"#framer/local/css/oJddJP3wq/oJddJP3wq.js\";import*as sharedStyle7 from\"#framer/local/css/uKCyWD_sn/uKCyWD_sn.js\";import*as sharedStyle from\"#framer/local/css/XdOGbcXh8/XdOGbcXh8.js\";import metadataProvider from\"#framer/local/webPageMetadata/da2gTD9dV/da2gTD9dV.js\";const NavbarFonts=getFonts(Navbar);const ButtonFonts=getFonts(Button);const VideoFonts=getFonts(Video);const ElementsAvatarFonts=getFonts(ElementsAvatar);const PhosphorFonts=getFonts(Phosphor);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const CardTestimonialFonts=getFonts(CardTestimonial);const Ticker1Fonts=getFonts(Ticker1);const Phosphor1Fonts=getFonts(Phosphor1);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const breakpoints={eteUTl1CR:\"(min-width: 810px) and (max-width: 1199px)\",MSJ95oQ4C:\"(max-width: 809px)\",UdctGvrPg:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tcyXe\";const variantClassNames={eteUTl1CR:\"framer-v-1ob04pv\",MSJ95oQ4C:\"framer-v-1sxhajk\",UdctGvrPg:\"framer-v-64rqgi\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition1={damping:80,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:100};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition2={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:100};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"UdctGvrPg\",Phone:\"MSJ95oQ4C\",Tablet:\"eteUTl1CR\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"UdctGvrPg\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"UdctGvrPg\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-64rqgi\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:9e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:6e3,pixelWidth:9e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/UstlIVNa7RIk0XuQyOwXKkbfBdU.jpg\",srcSet:\"https://framerusercontent.com/images/UstlIVNa7RIk0XuQyOwXKkbfBdU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UstlIVNa7RIk0XuQyOwXKkbfBdU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UstlIVNa7RIk0XuQyOwXKkbfBdU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UstlIVNa7RIk0XuQyOwXKkbfBdU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/UstlIVNa7RIk0XuQyOwXKkbfBdU.jpg 9000w\"},className:\"framer-v8s8wz\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b8wvik-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{variant:\"ReJFhOZy3\"},MSJ95oQ4C:{variant:\"S2wk6ZO_6\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"BiphwMz14\",layoutId:\"BiphwMz14\",style:{width:\"100%\"},variant:\"Jislp_e68\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ukad2\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bkut49\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-188asla\",\"data-styles-preset\":\"XdOGbcXh8\",style:{\"--framer-text-color\":\"var(--token-49b22e1a-1155-4faf-92dc-21627346bda1, rgb(255, 255, 255))\"},children:\"Let us build your perfect devops team\"})}),className:\"framer-1vcnwdx\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-72vlid\",\"data-styles-preset\":\"oJddJP3wq\",style:{\"--framer-text-color\":\"var(--token-920ab684-1283-4ff9-a5ff-511de1ca74de, rgb(195, 221, 253))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Scale faster and minimize downtime with exclusive access to our private, pre-vetted network of senior DevOps engineers in NYC\u2014ready to deliver impact from day one.\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-72vlid\",\"data-styles-preset\":\"oJddJP3wq\",style:{\"--framer-text-color\":\"var(--token-920ab684-1283-4ff9-a5ff-511de1ca74de, rgb(195, 221, 253))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-unz0ka\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined},{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined},{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5c7dbs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{link:resolvedLinks[1],variant:\"k3HxtUSOW\"},MSJ95oQ4C:{link:resolvedLinks[2],variant:\"yWcRUdRqv\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",iconLeft:false,iconLeft1:\"PlayCircle\",iconRight:true,iconRight1:\"ArrowRight\",id:\"WrLMKcFoX\",layoutId:\"WrLMKcFoX\",link:resolvedLinks[0],newTab:false,smoothScroll:false,title:\"Start hiring now\",variant:\"zRNSxx3Ag\",weightLeft:\"bold\",weightRight:\"bold\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xs4ovo\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lzfnjb\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iepjuk-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"WzWe1sXrT\",isMixedBorderRadius:false,layoutId:\"WzWe1sXrT\",loop:false,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Zl60I1H8JQr5Y0e077ZJ90Vdg.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmi85\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1qytjnl\",\"data-styles-preset\":\"EtagHKxB6\",children:\"Top candidates\"})}),className:\"framer-20rp4y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7vrm1l\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-98tqez\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ld72r-container\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"QDq4ekSZh\",image:\"https://framerusercontent.com/images/sGoGubUZ330MQ2UkaiCamXXibI0.jpg\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"QDq4ekSZh\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"s58Y_r8Ez\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eertvx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-fspyba\",\"data-styles-preset\":\"J6zSbb6tO\",style:{\"--framer-text-color\":\"var(--token-7d26aa94-f6d0-4221-937e-22675412a882, rgb(158, 158, 158))\"},children:\"Julian Ross\"})}),className:\"framer-29wvuu\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vlgch\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rb5zht-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Q08XhAWNV\",layoutId:\"Q08XhAWNV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kqq9xc-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"a5DU4NUdf\",layoutId:\"a5DU4NUdf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f9a4ed-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"SKLP3F2yW\",layoutId:\"SKLP3F2yW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o5z77z-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"fBRUXS2aL\",layoutId:\"fBRUXS2aL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s4ckub-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"kMRuv8K6K\",layoutId:\"kMRuv8K6K\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eswpsf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15zvskt-container\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"DSnaPO_A3\",image:\"https://framerusercontent.com/images/d58dnqSJdEdthEgBzxMNucZ2Y.jpg\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"DSnaPO_A3\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"s58Y_r8Ez\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s8l8fm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-fspyba\",\"data-styles-preset\":\"J6zSbb6tO\",style:{\"--framer-text-color\":\"var(--token-7d26aa94-f6d0-4221-937e-22675412a882, rgb(158, 158, 158))\"},children:\"Jeanette Allen\"})}),className:\"framer-thxcqb\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16n1day\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l7deay-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"luPmXeky1\",layoutId:\"luPmXeky1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ek8cx7-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"HeUm7S0xc\",layoutId:\"HeUm7S0xc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-puabks-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Qrh2ZLGVZ\",layoutId:\"Qrh2ZLGVZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sjkopl-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"jtx99osgo\",layoutId:\"jtx99osgo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a1nhvv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"x01gafB1x\",layoutId:\"x01gafB1x\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ogemc6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fqvb5b-container\",children:/*#__PURE__*/_jsx(ElementsAvatar,{accent:\"rgb(255, 255, 255)\",background:\"rgb(97, 51, 237)\",height:\"100%\",id:\"T_UX8AxOY\",image:\"https://framerusercontent.com/images/tnSPKpbJmW7zVnoZRZsYb4JdAno.jpg\",indicator:true,indicator1:\"var(--token-a249c9b2-a602-4b93-ba21-377a16cea550, rgb(12, 223, 152))\",initials:\"HC\",layoutId:\"T_UX8AxOY\",radius:100,style:{height:\"100%\",width:\"100%\"},variant:\"s58Y_r8Ez\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iic34i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-fspyba\",\"data-styles-preset\":\"J6zSbb6tO\",style:{\"--framer-text-color\":\"var(--token-7d26aa94-f6d0-4221-937e-22675412a882, rgb(158, 158, 158))\"},children:\"Sherry Matthews\"})}),className:\"framer-lqkibw\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ee2ksl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mwpmha-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"VaT8dWnsR\",layoutId:\"VaT8dWnsR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lj60qc-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"kD6Nx1Gvb\",layoutId:\"kD6Nx1Gvb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rjwqq4-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"ec2pEOpMP\",layoutId:\"ec2pEOpMP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x6m069-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"enM9cLGix\",layoutId:\"enM9cLGix\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dvlkmv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2d01aac3-b43b-4570-802a-7ad8764bbf93, rgb(250, 202, 21))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"sHLyOdEsk\",layoutId:\"sHLyOdEsk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})]})]})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12s57nx\",style:{rotate:51},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tb4jd\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1djgvrq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x9oft7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a88onc\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ywbzw9\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eul81y\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k3tggp\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14zspa\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14udli7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zdmva5\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fspf8b\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11l0r2e\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z3wmjh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mjdf5q\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m36to7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ifuoll\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b2193h\",\"data-framer-name\":\"Logo Ticker\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vu5mu8-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"d1nXUQNvb\",layoutId:\"d1nXUQNvb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bdg0uw\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1452,intrinsicWidth:5e3,pixelHeight:1452,pixelWidth:5e3,sizes:\"200px\",src:\"https://framerusercontent.com/images/pjJ73Cf4TRft6KCP8J8jOxkg.png\",srcSet:\"https://framerusercontent.com/images/pjJ73Cf4TRft6KCP8J8jOxkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/pjJ73Cf4TRft6KCP8J8jOxkg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pjJ73Cf4TRft6KCP8J8jOxkg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pjJ73Cf4TRft6KCP8J8jOxkg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/pjJ73Cf4TRft6KCP8J8jOxkg.png 5000w\"},className:\"framer-y64fee\",\"data-framer-name\":\"Company_Logo_Sloclap\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xdspvv\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"200px\",src:\"https://framerusercontent.com/images/LShdJ4eII6PjZMFZfSuwVTDAM.png\",srcSet:\"https://framerusercontent.com/images/LShdJ4eII6PjZMFZfSuwVTDAM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LShdJ4eII6PjZMFZfSuwVTDAM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LShdJ4eII6PjZMFZfSuwVTDAM.png 1920w\"},className:\"framer-ej2nws\",\"data-framer-name\":\"samsung\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:400,pixelHeight:108,pixelWidth:400,src:\"https://framerusercontent.com/images/YaO4y4KmkNWGoq3mn68OJbPyDm8.png\"},className:\"framer-a8ujb1\",\"data-framer-name\":\"logo1\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wkpbyd\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1667,intrinsicWidth:4167,pixelHeight:1667,pixelWidth:4167,sizes:\"188px\",src:\"https://framerusercontent.com/images/bZZBAD7Mmm5UDZWwYyOzPW37Q1A.png\",srcSet:\"https://framerusercontent.com/images/bZZBAD7Mmm5UDZWwYyOzPW37Q1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/bZZBAD7Mmm5UDZWwYyOzPW37Q1A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bZZBAD7Mmm5UDZWwYyOzPW37Q1A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bZZBAD7Mmm5UDZWwYyOzPW37Q1A.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/bZZBAD7Mmm5UDZWwYyOzPW37Q1A.png 4167w\"},className:\"framer-30plu2\",\"data-framer-name\":\"$61ddbdf52dd02f0cb41af31b_DigitalNativeGroup_logotype_N\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:194,intrinsicWidth:552,pixelHeight:194,pixelWidth:552,sizes:\"139.4227px\",src:\"https://framerusercontent.com/images/ZIycNVaxJHZmL6NgBlOwtJSwXY.png\",srcSet:\"https://framerusercontent.com/images/ZIycNVaxJHZmL6NgBlOwtJSwXY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZIycNVaxJHZmL6NgBlOwtJSwXY.png 552w\"},className:\"framer-z8k1gb\",\"data-framer-name\":\"Corum_LEPARGNE_couleurs_RVB\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l0sou8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:195,intrinsicWidth:267,svg:'<svg width=\"267\" height=\"195\" viewBox=\"0 0 267 195\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.15033 53.1752C-0.494046 40.0227 8.83508 28.0275 21.9875 26.3831L224.405 1.07589C237.558 -0.568493 249.553 8.76063 251.197 21.9131L266.234 142.18C267.878 155.333 258.549 167.328 245.397 168.972L42.9787 194.279C29.8263 195.924 17.8311 186.595 16.1867 173.442L1.15033 53.1752Z\" fill=\"white\" style=\"fill:white;fill-opacity:1;\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M187.396 5.11762C168.146 7.48962 123.019 14.0874 86.1685 18.5474C49.3185 23.0064 20.1006 26.1764 17.9006 26.9964C15.7006 27.8174 11.0731 30.3763 9.69808 31.4543L8.09333 33.2374L21.4185 33.5844C29.8055 33.5964 36.6685 33.9884 36.6685 34.4554C36.6685 34.9224 35.5435 43.8104 34.1685 54.2054C32.7935 64.6014 31.6685 73.3234 31.6685 73.5884C31.6685 73.8534 32.7775 72.4384 34.1335 70.4424C35.4895 68.4474 45.7085 59.3424 56.8415 50.2104L77.0835 33.6064L101.627 33.6284C125.043 33.6494 126.071 33.7304 124.023 35.3784C122.843 36.3294 111.26 46.7504 98.2815 58.5374C77.7315 77.2034 74.8565 80.1714 76.0055 81.5374C76.7315 82.4004 85.1845 92.1064 94.7915 103.106C104.399 114.106 112.603 123.669 113.023 124.356C113.626 125.343 108.644 125.606 89.3685 125.606H64.9515L49.5595 109.03C41.0945 99.9134 33.2525 90.7124 32.1335 88.5824L30.0995 84.7094L27.7885 102.908C24.5755 128.216 25.8145 125.606 17.0145 125.606H9.57752L10.1305 128.856C10.4345 130.643 11.8145 141.77 13.1975 153.581C14.5805 165.392 16.1425 176.642 16.6685 178.581C19.0365 187.309 27.5787 193.478 37.5647 194.584C40.6487 194.926 68.9845 191.421 117.169 185.651C263.69 168.107 249.141 170.095 254.977 166.818C260.742 163.581 264.094 159.373 265.821 153.205C267.172 148.385 266.608 142.625 257.592 69.1064C250.978 15.1784 250.931 11.9868 243.898 6.62279C239.707 3.42579 231.724 0.687678 226.646 0.833678C224.671 0.890678 206.646 2.74562 187.396 5.11762ZM134.247 35.8564C133.335 40.3084 131.669 53.7494 131.669 56.6474V59.6064H151.902L151.359 62.3564C151.062 63.8694 149.797 73.2144 148.549 83.1234C146.578 98.7634 146.449 101.75 147.574 105.767C150.223 115.227 158.363 121.399 171.92 124.225C175.771 125.029 179.034 125.555 179.171 125.396C179.307 125.236 181.292 111.831 183.583 95.6064C185.874 79.3814 188.006 64.6444 188.32 62.8564L188.892 59.6064H232.631L233.101 57.3564C233.36 56.1194 234.079 51.0564 234.698 46.1064C235.318 41.1564 236.045 36.3184 236.314 35.3564C236.776 33.7064 233.893 33.6064 185.755 33.6064H134.707L134.247 35.8564ZM240.892 42.1634C237.629 44.4484 237.853 49.8194 241.326 52.5514C247.781 57.6284 255.499 48.2524 249.48 42.6454C246.865 40.2084 243.918 40.0434 240.892 42.1634ZM241.911 43.1494C239.3 44.9784 238.977 48.7714 241.24 51.0354C245.285 55.0794 251.774 50.6454 249.719 45.2414C249.168 43.7924 248.293 42.6064 247.775 42.6064C247.256 42.6064 246.23 42.3754 245.493 42.0924C244.757 41.8094 243.145 42.2854 241.911 43.1494ZM241.669 47.0404C241.669 49.0014 242.119 50.6064 242.669 50.6064C243.219 50.6064 243.669 50.0664 243.669 49.4064C243.669 48.4734 243.935 48.4734 244.868 49.4064C246.826 51.3644 247.504 50.8014 247.331 47.3564C247.193 44.6034 246.749 44.0584 244.419 43.7904C241.874 43.4974 241.669 43.7394 241.669 47.0404ZM20.3325 146.543C19.9915 149.808 19.4155 154.339 19.0515 156.611L18.3905 160.743L22.2795 160.425C25.9585 160.123 26.1955 159.9 26.6685 156.296L27.1685 152.485L31.1215 156.546C34.6585 160.179 35.5785 160.606 39.8715 160.606C42.5095 160.606 44.6685 160.323 44.6685 159.977C44.6685 159.631 43.0935 157.605 41.1685 155.474C39.2435 153.344 37.6685 151.186 37.6685 150.681C37.6685 150.175 40.0235 147.701 42.9015 145.184L48.1345 140.606H42.7155C37.8175 140.606 36.8235 141.005 32.3685 144.762L27.4405 148.918L28.8445 140.606H20.9535L20.3325 146.543ZM52.2795 145.479C51.4495 151.738 52.1025 153.272 56.2355 154.766C59.0625 155.788 59.5165 156.363 59.0315 158.296C58.4965 160.428 58.7675 160.606 62.5605 160.606C66.2015 160.606 66.6685 160.34 66.6685 158.264C66.6685 156.4 67.4815 155.679 70.6525 154.729C75.2195 153.361 76.1925 151.964 77.1835 145.356L77.8955 140.606H74.3905C70.9965 140.606 70.8575 140.758 70.0175 145.356L69.1495 150.106H59.1685L59.6535 140.606H56.2895C53.0205 140.606 52.9085 140.742 52.2795 145.479ZM83.3105 144.356C82.1035 151.655 82.5655 156.503 84.6685 158.606C86.4015 160.339 88.0015 160.606 96.6685 160.606C102.169 160.606 106.669 160.193 106.669 159.688C106.669 159.183 106.942 158.058 107.276 157.188C107.795 155.836 106.84 155.606 100.71 155.606C90.7585 155.606 89.3965 154.723 90.2005 148.793C90.5505 146.215 91.0545 143.319 91.3195 142.356C91.7215 140.904 91.1335 140.606 87.8665 140.606C84.0945 140.606 83.9045 140.763 83.3105 144.356ZM115.309 142.856C111.692 146.148 110.665 155.602 113.605 158.542C117.638 162.575 134.226 160.808 136.012 156.155C136.334 155.317 136.897 152.364 137.264 149.593C138.279 141.945 136.612 140.606 126.07 140.606C118.873 140.606 117.455 140.902 115.309 142.856ZM142.669 143.606C142.669 146.449 142.881 146.606 146.747 146.606C150.659 146.606 150.805 146.719 150.301 149.356C150.012 150.868 149.487 154.018 149.135 156.356L148.493 160.606H156.548L157.917 146.705L162.542 146.406C166.758 146.133 167.196 145.862 167.484 143.356L167.801 140.606H142.669V143.606ZM175.984 141.613C173.122 142.766 172.072 144.976 171.354 151.36C170.84 155.92 171.053 156.889 172.965 158.691C174.898 160.512 176.178 160.726 183.392 160.436C194.001 160.01 195.833 158.476 196.484 149.478C196.858 144.299 196.631 143.052 195.109 141.939C193.037 140.424 179.509 140.193 175.984 141.613ZM202.331 142.856C202.026 144.094 201.466 148.594 201.085 152.856L200.393 160.606H207.465L208.872 146.606H219.872L218.452 160.749L225.169 160.106L226.042 152.321C227.286 141.232 226.595 140.606 213.122 140.606C203.338 140.606 202.86 140.705 202.331 142.856ZM233.351 141.356C233.111 141.768 232.6 145.256 232.215 149.106C231.831 152.956 231.277 157.118 230.984 158.356C230.507 160.37 230.828 160.606 234.042 160.606C237.964 160.606 237.98 160.578 239.176 151.356L239.792 146.606H250.896L250.211 151.356C249.834 153.969 249.284 157.118 248.989 158.356C248.51 160.366 248.828 160.606 251.98 160.606C255.036 160.606 255.58 160.237 256.036 157.856C259.135 141.667 258.4 140.606 244.073 140.606C238.416 140.606 233.591 140.944 233.351 141.356ZM119.275 149.667C118.918 151.9 118.887 154.15 119.206 154.667C119.526 155.183 121.952 155.606 124.597 155.606C129.379 155.606 129.411 155.584 130.027 151.856C131.066 145.57 131.094 145.606 125.297 145.606H119.925L119.275 149.667ZM178.507 150.177C178.307 152.69 178.337 154.94 178.573 155.177C178.809 155.413 181.129 155.606 183.729 155.606C188.947 155.606 189.669 154.806 189.669 149.024V145.606H178.87L178.507 150.177Z\" fill=\"#FC2A05\" style=\"fill:#FC2A05;fill:color(display-p3 0.9882 0.1647 0.0196);fill-opacity:1;\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234,intrinsicWidth:851,pixelHeight:234,pixelWidth:851,sizes:\"141.8333px\",src:\"https://framerusercontent.com/images/V3k5eDP63qOIyTRXhL2mFGPrmuY.png\",srcSet:\"https://framerusercontent.com/images/V3k5eDP63qOIyTRXhL2mFGPrmuY.png?scale-down-to=512 512w,https://framerusercontent.com/images/V3k5eDP63qOIyTRXhL2mFGPrmuY.png 851w\"},className:\"framer-1fojaat\",\"data-framer-name\":\"LogoEPOKA_L300mm_RVB_2800BE\"})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n0vyuc\"})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-yqelkh\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p0tal3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5pv6a\",\"data-styles-preset\":\"B8O4Go29Y\",style:{\"--framer-text-alignment\":\"center\"},children:\"testimonials\"})}),className:\"framer-8asfg7\",\"data-framer-name\":\"Featured\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-5mmblf\",\"data-styles-preset\":\"i0ZqwRXhY\",style:{\"--framer-text-alignment\":\"center\"},children:\"What customers say\"})}),className:\"framer-4p1tqk\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-72vlid\",\"data-styles-preset\":\"oJddJP3wq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover the impact we have made on our clients recruitment strategies through their own words.\"})}),className:\"framer-49wzoy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y016sy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{background:{alt:\"Gradient\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:9e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+879.8+100+322.79999999999995+0+0),pixelHeight:6e3,pixelWidth:9e3,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) * 0.8)`,src:\"https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg\",srcSet:\"https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg 9000w\"}},MSJ95oQ4C:{__framer__threshold:0,background:{alt:\"Gradient\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:9e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1299.8+80+312.79999999999995+0+0),pixelHeight:6e3,pixelWidth:9e3,sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 1200px)`,src:\"https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg\",srcSet:\"https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg 9000w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Gradient\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:9e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+960+100+322.79999999999995+0+0),pixelHeight:6e3,pixelWidth:9e3,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) * 0.6)`,src:\"https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg\",srcSet:\"https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/z7XpmOyp6yVC3pR7d2nLACsIgCA.jpg 9000w\"},className:\"framer-fvu0pj\",\"data-border\":true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1frghug\",\"data-styles-preset\":\"gxwNZgbM_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-49b22e1a-1155-4faf-92dc-21627346bda1, rgb(255, 255, 255))\"},children:\"After struggling for months to fill a crucial role in our division, working with Olivier was a breakthrough. His keen listening skills helped him grasp our needs and quickly identify a suitable, motivated candidate who met all our expectations.\"})}),className:\"framer-a6pnbk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hfib7x\",\"data-framer-name\":\"Quote Info\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6240,intrinsicWidth:4160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+879.8+100+322.79999999999995+0+0+60+66.4+0),pixelHeight:400,pixelWidth:322,src:\"https://framerusercontent.com/images/D3QtuzXnNU6cboNHOF8kBVFB7Y.png\"}},MSJ95oQ4C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6240,intrinsicWidth:4160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1299.8+80+312.79999999999995+0+0+36+56.400000000000006+0),pixelHeight:400,pixelWidth:322,src:\"https://framerusercontent.com/images/D3QtuzXnNU6cboNHOF8kBVFB7Y.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6240,intrinsicWidth:4160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+960+100+322.79999999999995+0+0+60+66.4+0),pixelHeight:400,pixelWidth:322,src:\"https://framerusercontent.com/images/D3QtuzXnNU6cboNHOF8kBVFB7Y.png\"},className:\"framer-1xu0a1m\",\"data-framer-name\":\"Avatar\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12vflsr\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSJ95oQ4C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-49b22e1a-1155-4faf-92dc-21627346bda1, rgb(255, 255, 255))\"},children:\"Filippo Cesare Ferrara\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-49b22e1a-1155-4faf-92dc-21627346bda1, rgb(255, 255, 255))\"},children:\"Filippo Cesare Ferrara\"})}),className:\"framer-83zo3k\",\"data-framer-name\":\"Name\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSJ95oQ4C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-920ab684-1283-4ff9-a5ff-511de1ca74de, rgb(195, 221, 253))\"},children:\"Solutions Director at Samsung\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-920ab684-1283-4ff9-a5ff-511de1ca74de, rgb(195, 221, 253))\"},children:\"Solutions Director at Samsung\"})}),className:\"framer-vuryyv\",\"data-framer-name\":\"Job Title\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jas4xp\"})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q3gjpk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSJ95oQ4C:{padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.5,id:\"veHKNpxKf\",layoutId:\"veHKNpxKf\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y93sh0-container\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",I25V5Dp21:\"After struggling for months to fill a crucial role in our division, working with Olivier was a breakthrough. His keen listening skills helped him grasp our needs and quickly identify a suitable, motivated candidate who met all our expectations.\",id:\"YMOoxVC9C\",layoutId:\"YMOoxVC9C\",LdPu8lXOP:addImageAlt({src:\"https://framerusercontent.com/images/D3QtuzXnNU6cboNHOF8kBVFB7Y.png\"},\"Avatar for person 1\"),mpYp0FmAS:\"Solutions Director @ Samsung\",QQgAHaGsX:\"Filippo Cesare Ferrara \",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wlg95v-container\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",I25V5Dp21:\"Working with Olivier in our search for an automation engineer was a pleasure. Despite talent shortages, he provided several suitable candidates promptly. His advice and dedication were invaluable, ensuring the success of our hiring process.\",id:\"lomu9ab3F\",layoutId:\"lomu9ab3F\",mpYp0FmAS:\"Head of Feature Teams @ Corum L\u2019\\xe9pargne\",QQgAHaGsX:\"Olivier UZAN \",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g5wxob-container\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",I25V5Dp21:\"Olivier supported us with professionalism, rigor and perseverance and was able to quickly unlock the recruitment of a key position for our organization.\",id:\"xgJrhXazb\",layoutId:\"xgJrhXazb\",LdPu8lXOP:addImageAlt({src:\"https://framerusercontent.com/images/woEsTiZt4mBLsMJtVBHUlgxjEU.png\"},\"\"),mpYp0FmAS:\"HR Director @ Kylotonn\",QQgAHaGsX:\"Arnaud VANNINI \",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9e19tz-container\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",I25V5Dp21:\"Olivier expertly guided our search for tech talent, understanding our needs and challenges, finding suitable candidates, and persuading them to join us. His finesse and persistence are highly valued.\",id:\"s8k77k_Bu\",layoutId:\"s8k77k_Bu\",LdPu8lXOP:addImageAlt({src:\"https://framerusercontent.com/images/zLlmfhR3uc4kEkIMksHWNF8AbTY.png\"},\"\"),mpYp0FmAS:\"HR Director @ Corum L\u2019\\xe9pargne\",QQgAHaGsX:\"Lydie Riquier \",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-50vb35\",\"data-framer-name\":\"features-005\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-upebcz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5pv6a\",\"data-styles-preset\":\"B8O4Go29Y\",style:{\"--framer-text-alignment\":\"center\"},children:\"The journey\"})}),className:\"framer-1rh925j\",\"data-framer-name\":\"Featured\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-5mmblf\",\"data-styles-preset\":\"i0ZqwRXhY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Elevate your recruitment strategy with our expertise\"})}),className:\"framer-19kigv8\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1su7b0g\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-odtxoi\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wd4k8d\",\"data-framer-name\":\"Feature 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gm52pd-container\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-da744707-dfae-40d8-b13b-991353d85912, rgb(108, 43, 217))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"UsersFour\",id:\"KPpTJR2Vq\",layoutId:\"KPpTJR2Vq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ta9ui\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSJ95oQ4C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1qytjnl\",\"data-styles-preset\":\"EtagHKxB6\",style:{\"--framer-text-alignment\":\"left\"},children:\"Wide Talent Network\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1qytjnl\",\"data-styles-preset\":\"EtagHKxB6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Wide Talent Network\"})}),className:\"framer-bmlu27\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSJ95oQ4C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wedfng\",\"data-styles-preset\":\"uKCyWD_sn\",style:{\"--framer-text-alignment\":\"left\"},children:\"Access our extensive talent network, spanning across diverse industries and skill sets.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wedfng\",\"data-styles-preset\":\"uKCyWD_sn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Access our extensive talent network, spanning across diverse industries and skill sets.\"})}),className:\"framer-gotgg7\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-122kgld\",\"data-framer-name\":\"Feature 2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z3ijpm-container\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-da744707-dfae-40d8-b13b-991353d85912, rgb(108, 43, 217))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"UserSwitch\",id:\"W2YdfNtyo\",layoutId:\"W2YdfNtyo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nl1ju0\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSJ95oQ4C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1qytjnl\",\"data-styles-preset\":\"EtagHKxB6\",style:{\"--framer-text-alignment\":\"left\"},children:\"Efficient Screening\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1qytjnl\",\"data-styles-preset\":\"EtagHKxB6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Efficient Screening\"})}),className:\"framer-3mzbzo\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSJ95oQ4C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wedfng\",\"data-styles-preset\":\"uKCyWD_sn\",style:{\"--framer-text-alignment\":\"left\"},children:\"Save valuable time and resources with our streamlined and professional screening process \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wedfng\",\"data-styles-preset\":\"uKCyWD_sn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Save valuable time and resources with our streamlined and professional screening process \"})}),className:\"framer-1fwmua8\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18w6az8\",\"data-framer-name\":\"Feature 3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f21v1a-container\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-da744707-dfae-40d8-b13b-991353d85912, rgb(88, 80, 236))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TreeStructure\",id:\"qtM8GKQQ2\",layoutId:\"qtM8GKQQ2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rjcci3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSJ95oQ4C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1qytjnl\",\"data-styles-preset\":\"EtagHKxB6\",style:{\"--framer-text-alignment\":\"left\"},children:\"Customized Solutions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1qytjnl\",\"data-styles-preset\":\"EtagHKxB6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Customized Solutions\"})}),className:\"framer-148jv1k\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSJ95oQ4C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wedfng\",\"data-styles-preset\":\"uKCyWD_sn\",style:{\"--framer-text-alignment\":\"left\"},children:\"Every company is different. That's why we offer a custom solutions tailored to your requirements.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wedfng\",\"data-styles-preset\":\"uKCyWD_sn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Every company is different. That's why we offer a custom solutions tailored to your requirements.\"})}),className:\"framer-ok4vzf\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y7o7yh\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1435vcj\",\"data-framer-name\":\"Features\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6r1w2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5pv6a\",\"data-styles-preset\":\"B8O4Go29Y\",children:\"Step 1\"})}),className:\"framer-1lqns7n\",\"data-framer-name\":\"Featured\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13kds3k\",\"data-styles-preset\":\"F9Ov10Un5\",children:\"In-Depth Assessment\"})}),className:\"framer-9z03tu\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-72vlid\",\"data-styles-preset\":\"oJddJP3wq\",children:\"Precise and rational definition of ideal candidate profile to find the candidate that's going to have the most impact on your organization.\"})}),className:\"framer-1b5hn21\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15rwrfp\",\"data-framer-name\":\"Button Group\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined},{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined},{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-22abmq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{link:resolvedLinks1[1],variant:\"O3uEGOaex\"},MSJ95oQ4C:{link:resolvedLinks1[2],variant:\"oTKOdVigM\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",iconLeft:false,iconLeft1:\"Circle\",iconRight:false,iconRight1:\"Circle\",id:\"O0NQ9atCG\",layoutId:\"O0NQ9atCG\",link:resolvedLinks1[0],newTab:false,smoothScroll:false,title:\"Contact us today\",variant:\"xCF1twHZe\",weightLeft:\"duotone\",weightRight:\"duotone\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:3600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2540.6+100.00000000000003+11.599999999999994),pixelHeight:2400,pixelWidth:3600,src:\"https://framerusercontent.com/images/CGsr9X3nwZGLktLY5mxGWsrf0.jpg?scale-down-to=1024\"}},MSJ95oQ4C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:3600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3008.2+60+0+0),pixelHeight:2400,pixelWidth:3600,src:\"https://framerusercontent.com/images/CGsr9X3nwZGLktLY5mxGWsrf0.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:3600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2663.7999999999997+100+0),pixelHeight:2400,pixelWidth:3600,src:\"https://framerusercontent.com/images/CGsr9X3nwZGLktLY5mxGWsrf0.jpg?scale-down-to=1024\"},className:\"framer-1o0beoz\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rawyfw\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v3687l\",\"data-framer-name\":\"Features\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2665,intrinsicWidth:3997,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3103.8+100.00000000000003+11.599999999999994),pixelHeight:2665,pixelWidth:3997,src:\"https://framerusercontent.com/images/h9prX6oMS1K7sb6Sdv1D1EnETg.jpg?scale-down-to=1024\"}},MSJ95oQ4C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2665,intrinsicWidth:3997,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3866.3999999999996+60+0+0),pixelHeight:2665,pixelWidth:3997,src:\"https://framerusercontent.com/images/h9prX6oMS1K7sb6Sdv1D1EnETg.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2665,intrinsicWidth:3997,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3363.7999999999997+100+0),pixelHeight:2665,pixelWidth:3997,src:\"https://framerusercontent.com/images/h9prX6oMS1K7sb6Sdv1D1EnETg.jpg?scale-down-to=1024\"},className:\"framer-9jc1t2\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19xyyrx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5pv6a\",\"data-styles-preset\":\"B8O4Go29Y\",children:\"Step 2\"})}),className:\"framer-rjnwmv\",\"data-framer-name\":\"Featured\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13kds3k\",\"data-styles-preset\":\"F9Ov10Un5\",children:\"Sourcing\"})}),className:\"framer-1ydf832\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-72vlid\",\"data-styles-preset\":\"oJddJP3wq\",children:\"Build a solid candidate pipeline using the latest sourcing tools combined with a personalized and humane approach.\"})}),className:\"framer-18b4i0r\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xk8byy\",\"data-framer-name\":\"Button Group\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eD0MTsUua\"},implicitPathVariables:undefined},{href:{webPageId:\"eD0MTsUua\"},implicitPathVariables:undefined},{href:{webPageId:\"eD0MTsUua\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-spo7ww-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{link:resolvedLinks2[1],variant:\"O3uEGOaex\"},MSJ95oQ4C:{link:resolvedLinks2[2],variant:\"oTKOdVigM\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",iconLeft:false,iconLeft1:\"Circle\",iconRight:false,iconRight1:\"Circle\",id:\"loOVlYzZe\",layoutId:\"loOVlYzZe\",link:resolvedLinks2[0],newTab:false,smoothScroll:false,title:\"View pricing\",variant:\"xCF1twHZe\",weightLeft:\"duotone\",weightRight:\"duotone\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b6x9pg\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-g6lgn8\",\"data-framer-name\":\"Features\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vki5vq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5pv6a\",\"data-styles-preset\":\"B8O4Go29Y\",children:\"Step 3\"})}),className:\"framer-13dm5jc\",\"data-framer-name\":\"Featured\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13kds3k\",\"data-styles-preset\":\"F9Ov10Un5\",children:\"Candidate Screening\"})}),className:\"framer-19ukiyh\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-72vlid\",\"data-styles-preset\":\"oJddJP3wq\",children:\"Systematic candidate evaluation framework allowing us to send you the most relevant profiles.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-72vlid\",\"data-styles-preset\":\"oJddJP3wq\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1d298vy\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9yabaz\",\"data-framer-name\":\"Button Group\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined},{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined},{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11sd1f3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{link:resolvedLinks3[1],variant:\"O3uEGOaex\"},MSJ95oQ4C:{link:resolvedLinks3[2],variant:\"oTKOdVigM\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",iconLeft:false,iconLeft1:\"Circle\",iconRight:true,iconRight1:\"ArrowRight\",id:\"IsQeSBOPn\",layoutId:\"IsQeSBOPn\",link:resolvedLinks3[0],newTab:false,smoothScroll:false,title:\"Start hiring\",variant:\"xCF1twHZe\",weightLeft:\"bold\",weightRight:\"bold\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3667+100+92.10000000000002),pixelHeight:4480,pixelWidth:6720,src:\"https://framerusercontent.com/images/oqczOaTedSetWNWZqJIC9s40oSM.jpg?scale-down-to=1024\"}},MSJ95oQ4C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4724.599999999999+60+0+0),pixelHeight:4480,pixelWidth:6720,src:\"https://framerusercontent.com/images/oqczOaTedSetWNWZqJIC9s40oSM.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4063.7999999999997+100+12.100000000000023),pixelHeight:4480,pixelWidth:6720,src:\"https://framerusercontent.com/images/oqczOaTedSetWNWZqJIC9s40oSM.jpg?scale-down-to=1024\"},className:\"framer-1mvn4ya\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-11ss8b6\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wwldu7\",\"data-framer-name\":\"Features\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2665,intrinsicWidth:3997,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4391.2+100+18.400000000000006+11.599999999999994),pixelHeight:1097,pixelWidth:1500,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/RuourpyfJUg08B0Blwre8jgMg6s.jpg?scale-down-to=1024\"}},MSJ95oQ4C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2665,intrinsicWidth:3997,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5738.799999999999+60+0+0+0),pixelHeight:1097,pixelWidth:1500,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/RuourpyfJUg08B0Blwre8jgMg6s.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2665,intrinsicWidth:3997,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4788+100+0+0),pixelHeight:1097,pixelWidth:1500,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/RuourpyfJUg08B0Blwre8jgMg6s.jpg?scale-down-to=1024\"},className:\"framer-apz8cw\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-altwl5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5pv6a\",\"data-styles-preset\":\"B8O4Go29Y\",children:\"Step 4\"})}),className:\"framer-1oifogx\",\"data-framer-name\":\"Featured\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13kds3k\",\"data-styles-preset\":\"F9Ov10Un5\",children:\"Closing\"})}),className:\"framer-1ywo8iy\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-72vlid\",\"data-styles-preset\":\"oJddJP3wq\",children:\"Helping both parties make the right decision.\"})}),className:\"framer-tuu6js\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11tbqyd\",\"data-framer-name\":\"Button Group\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eD0MTsUua\"},implicitPathVariables:undefined},{href:{webPageId:\"eD0MTsUua\"},implicitPathVariables:undefined},{href:{webPageId:\"eD0MTsUua\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nqy3gv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{link:resolvedLinks4[1],variant:\"O3uEGOaex\"},MSJ95oQ4C:{link:resolvedLinks4[2],variant:\"oTKOdVigM\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",iconLeft:false,iconLeft1:\"Circle\",iconRight:false,iconRight1:\"Circle\",id:\"RBHFMlpje\",layoutId:\"RBHFMlpje\",link:resolvedLinks4[0],newTab:false,smoothScroll:false,title:\"View pricing\",variant:\"xCF1twHZe\",weightLeft:\"duotone\",weightRight:\"duotone\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-aqucbk\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nkzpe4\",\"data-framer-name\":\"Features\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbkx0y\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5pv6a\",\"data-styles-preset\":\"B8O4Go29Y\",children:\"Step 5\"})}),className:\"framer-1ultr19\",\"data-framer-name\":\"Featured\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13kds3k\",\"data-styles-preset\":\"F9Ov10Un5\",children:\"Onboarding & Retention\"})}),className:\"framer-1uwzjb7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-72vlid\",\"data-styles-preset\":\"oJddJP3wq\",children:\"Trial period validation and candidate engagement.\"})}),className:\"framer-fc2wmt\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ezyjac\",\"data-framer-name\":\"Button Group\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined},{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined},{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ocmhki-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{link:resolvedLinks5[1],variant:\"O3uEGOaex\"},MSJ95oQ4C:{link:resolvedLinks5[2],variant:\"oTKOdVigM\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",iconLeft:false,iconLeft1:\"Circle\",iconRight:true,iconRight1:\"ArrowRight\",id:\"MpTVeb3Af\",layoutId:\"MpTVeb3Af\",link:resolvedLinks5[0],newTab:false,smoothScroll:false,title:\"Start hiring\",variant:\"xCF1twHZe\",weightLeft:\"bold\",weightRight:\"bold\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4991.2+100+10.900000000000006+19.099999999999994),pixelHeight:1001,pixelWidth:1500,positionX:\"right\",positionY:\"center\",src:\"https://framerusercontent.com/images/kNnKE8M3eKPK07bsESRTWng9Do.jpg?scale-down-to=1024\"}},MSJ95oQ4C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6596.999999999999+60+0+0+0),pixelHeight:1001,pixelWidth:1500,positionX:\"right\",positionY:\"center\",src:\"https://framerusercontent.com/images/kNnKE8M3eKPK07bsESRTWng9Do.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5488+100+0+0),pixelHeight:1001,pixelWidth:1500,positionX:\"right\",positionY:\"center\",src:\"https://framerusercontent.com/images/kNnKE8M3eKPK07bsESRTWng9Do.jpg?scale-down-to=1024\"},className:\"framer-14s417c\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-155zndo\",\"data-framer-name\":\"cta-003\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sz3w32\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fqqi9t\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5pv6a\",\"data-styles-preset\":\"B8O4Go29Y\",style:{\"--framer-text-alignment\":\"center\"},children:\"get started\"})}),className:\"framer-u6wpos\",\"data-framer-name\":\"Featured\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-5mmblf\",\"data-styles-preset\":\"i0ZqwRXhY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Transform Your Recruitment Process\"})}),className:\"framer-17w8ju9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-72vlid\",\"data-styles-preset\":\"oJddJP3wq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Revolutionize your recruitment strategy and unlock the full potential of your team.\"})}),className:\"framer-17k495f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v9jdt0\",\"data-framer-name\":\"Button Group\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eD0MTsUua\"},implicitPathVariables:undefined},{href:{webPageId:\"eD0MTsUua\"},implicitPathVariables:undefined},{href:{webPageId:\"eD0MTsUua\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zovwk9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{link:resolvedLinks6[1],variant:\"k3HxtUSOW\"},MSJ95oQ4C:{link:resolvedLinks6[2],variant:\"yWcRUdRqv\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",iconLeft:false,iconLeft1:\"PlayCircle\",iconRight:false,iconRight1:\"ArrowRight\",id:\"vyDf9Ipsl\",layoutId:\"vyDf9Ipsl\",link:resolvedLinks6[0],newTab:false,smoothScroll:false,title:\"Pricing\",variant:\"zRNSxx3Ag\",weightLeft:\"bold\",weightRight:\"bold\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined},{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined},{href:{webPageId:\"fm6AmtSiz\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3d1fnr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{link:resolvedLinks7[1],variant:\"O3uEGOaex\"},MSJ95oQ4C:{link:resolvedLinks7[2],variant:\"oTKOdVigM\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",iconLeft:false,iconLeft1:\"PlayCircle\",iconRight:true,iconRight1:\"ArrowRight\",id:\"yUKZeNf0i\",layoutId:\"yUKZeNf0i\",link:resolvedLinks7[0],newTab:false,smoothScroll:false,title:\"Start hiring now\",variant:\"H3iMQjydF\",weightLeft:\"bold\",weightRight:\"bold\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{y:(componentViewport?.y||0)+0+6287},MSJ95oQ4C:{y:(componentViewport?.y||0)+0+8120.999999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:382,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7003.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fu5cat-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eteUTl1CR:{variant:\"o6ujw8qic\"},MSJ95oQ4C:{variant:\"QVswu9T4D\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"n8o40MiCm\",layoutId:\"n8o40MiCm\",style:{width:\"100%\"},variant:\"IyYgfIUnK\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tcyXe.framer-3ye2j8, .framer-tcyXe .framer-3ye2j8 { display: block; }\",\".framer-tcyXe.framer-64rqgi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-tcyXe .framer-v8s8wz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-b8wvik-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-tcyXe .framer-14ukad2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; z-index: 2; }\",\".framer-tcyXe .framer-bkut49 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-tcyXe .framer-1vcnwdx, .framer-tcyXe .framer-29wvuu, .framer-tcyXe .framer-thxcqb, .framer-tcyXe .framer-lqkibw, .framer-tcyXe .framer-8asfg7, .framer-tcyXe .framer-4p1tqk, .framer-tcyXe .framer-1rh925j, .framer-tcyXe .framer-19kigv8, .framer-tcyXe .framer-bmlu27, .framer-tcyXe .framer-gotgg7, .framer-tcyXe .framer-3mzbzo, .framer-tcyXe .framer-1fwmua8, .framer-tcyXe .framer-148jv1k, .framer-tcyXe .framer-ok4vzf, .framer-tcyXe .framer-1lqns7n, .framer-tcyXe .framer-rjnwmv, .framer-tcyXe .framer-13dm5jc, .framer-tcyXe .framer-1oifogx, .framer-tcyXe .framer-1ultr19, .framer-tcyXe .framer-u6wpos, .framer-tcyXe .framer-17w8ju9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tcyXe .framer-unz0ka, .framer-tcyXe .framer-1b5hn21, .framer-tcyXe .framer-18b4i0r, .framer-tcyXe .framer-1d298vy, .framer-tcyXe .framer-tuu6js, .framer-tcyXe .framer-fc2wmt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-tcyXe .framer-5c7dbs-container, .framer-tcyXe .framer-22abmq-container, .framer-tcyXe .framer-spo7ww-container, .framer-tcyXe .framer-11sd1f3-container, .framer-tcyXe .framer-nqy3gv-container, .framer-tcyXe .framer-ocmhki-container, .framer-tcyXe .framer-zovwk9-container, .framer-tcyXe .framer-3d1fnr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tcyXe .framer-xs4ovo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-tcyXe .framer-1lzfnjb { --border-bottom-width: 5px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 460px; overflow: hidden; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tcyXe .framer-1iepjuk-container { bottom: -2px; flex: none; left: -220px; position: absolute; right: -39px; top: 0px; }\",\".framer-tcyXe .framer-1xmi85 { --border-bottom-width: 1px; --border-color: var(--token-1594a670-4215-41ae-985b-491396dc7491, #d1d5db); --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: var(--token-49b22e1a-1155-4faf-92dc-21627346bda1, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 40px; box-shadow: 0px 0.6021873017743928px 0.48174984141951427px -1.25px rgba(0, 0, 0, 0.62), 0px 2.288533303243457px 1.8308266425947657px -2.5px rgba(0, 0, 0, 0.54659), 0px 10px 8px -3.75px rgba(0, 0, 0, 0.215); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 30px; overflow: hidden; padding: 20px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-tcyXe .framer-20rp4y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 146px; word-break: break-word; word-wrap: break-word; }\",\".framer-tcyXe .framer-7vrm1l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 111px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 146px; }\",\".framer-tcyXe .framer-98tqez, .framer-tcyXe .framer-1eswpsf, .framer-tcyXe .framer-ogemc6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-2ld72r-container, .framer-tcyXe .framer-15zvskt-container, .framer-tcyXe .framer-1fqvb5b-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-tcyXe .framer-eertvx, .framer-tcyXe .framer-1s8l8fm, .framer-tcyXe .framer-iic34i { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tcyXe .framer-1vlgch, .framer-tcyXe .framer-16n1day, .framer-tcyXe .framer-ee2ksl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tcyXe .framer-rb5zht-container, .framer-tcyXe .framer-kqq9xc-container, .framer-tcyXe .framer-1f9a4ed-container, .framer-tcyXe .framer-1o5z77z-container, .framer-tcyXe .framer-s4ckub-container, .framer-tcyXe .framer-l7deay-container, .framer-tcyXe .framer-ek8cx7-container, .framer-tcyXe .framer-puabks-container, .framer-tcyXe .framer-sjkopl-container, .framer-tcyXe .framer-1a1nhvv-container, .framer-tcyXe .framer-mwpmha-container, .framer-tcyXe .framer-1lj60qc-container, .framer-tcyXe .framer-1rjwqq4-container, .framer-tcyXe .framer-1x6m069-container, .framer-tcyXe .framer-dvlkmv-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-tcyXe .framer-12s57nx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; opacity: 0.15; overflow: hidden; padding: 0px; position: absolute; right: 8px; top: 129px; width: min-content; z-index: 1; }\",\".framer-tcyXe .framer-1tb4jd, .framer-tcyXe .framer-1djgvrq, .framer-tcyXe .framer-x9oft7, .framer-tcyXe .framer-1a88onc, .framer-tcyXe .framer-1ywbzw9, .framer-tcyXe .framer-eul81y, .framer-tcyXe .framer-1k3tggp, .framer-tcyXe .framer-14zspa, .framer-tcyXe .framer-14udli7, .framer-tcyXe .framer-zdmva5, .framer-tcyXe .framer-1fspf8b, .framer-tcyXe .framer-11l0r2e, .framer-tcyXe .framer-z3wmjh, .framer-tcyXe .framer-1mjdf5q, .framer-tcyXe .framer-m36to7, .framer-tcyXe .framer-1ifuoll { background-color: #ffffff; flex: none; height: 1500px; overflow: hidden; position: relative; width: 1px; }\",\".framer-tcyXe .framer-b2193h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; z-index: 1; }\",\".framer-tcyXe .framer-1vu5mu8-container { flex: 1 0 0px; height: 80px; position: relative; width: 1px; }\",\".framer-tcyXe .framer-bdg0uw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 100px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tcyXe .framer-y64fee { aspect-ratio: 3.443526170798898 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); overflow: visible; position: relative; width: 200px; }\",\".framer-tcyXe .framer-xdspvv { flex: none; height: 65px; overflow: hidden; position: relative; width: 179px; }\",\".framer-tcyXe .framer-ej2nws { flex: none; height: 113px; left: calc(50.00000000000002% - 200px / 2); overflow: visible; position: absolute; top: calc(58.46153846153849% - 113px / 2); width: 200px; }\",\".framer-tcyXe .framer-a8ujb1 { aspect-ratio: 3.7037037037037037 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: 233px; }\",\".framer-tcyXe .framer-1wkpbyd { flex: none; height: 44px; overflow: hidden; position: relative; width: 154px; }\",\".framer-tcyXe .framer-30plu2 { flex: none; height: 75px; left: calc(50.00000000000002% - 188px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 75px / 2); width: 188px; }\",\".framer-tcyXe .framer-z8k1gb { aspect-ratio: 2.845360824742268 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 139px; }\",\".framer-tcyXe .framer-1l0sou8 { aspect-ratio: 1.3692307692307693 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); position: relative; width: 90px; }\",\".framer-tcyXe .framer-1fojaat { aspect-ratio: 3.6367521367521367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); overflow: visible; position: relative; width: 142px; }\",\".framer-tcyXe .framer-1n0vyuc, .framer-tcyXe .framer-jas4xp { background-color: rgba(81, 69, 205, 0.9); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-tcyXe .framer-yqelkh { align-content: center; align-items: center; background-color: var(--token-03bb7f4a-bbc8-4d71-9ddc-3636a8fc6e20, #f9fafb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-1p0tal3, .framer-tcyXe .framer-1fqqi9t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-tcyXe .framer-49wzoy, .framer-tcyXe .framer-17k495f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-tcyXe .framer-1y016sy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-fvu0pj { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 30px 60px 30px; position: relative; width: 60%; will-change: var(--framer-will-change-override, transform); }\",\".framer-tcyXe .framer-a6pnbk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-tcyXe .framer-hfib7x { 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: min-content; z-index: 2; }\",\".framer-tcyXe .framer-1xu0a1m { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tcyXe .framer-12vflsr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-tcyXe .framer-83zo3k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tcyXe .framer-vuryyv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tcyXe .framer-1q3gjpk-container { flex: none; height: 280px; max-width: 1300px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-1y93sh0-container, .framer-tcyXe .framer-1wlg95v-container, .framer-tcyXe .framer-1g5wxob-container, .framer-tcyXe .framer-9e19tz-container { height: 280px; position: relative; width: 400px; }\",\".framer-tcyXe .framer-50vb35 { align-content: center; align-items: center; background-color: var(--token-adb6f102-74a9-4379-8e2d-c9d4a9d1e261, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-upebcz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-tcyXe .framer-1su7b0g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-odtxoi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-wd4k8d, .framer-tcyXe .framer-122kgld, .framer-tcyXe .framer-18w6az8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 1px; }\",\".framer-tcyXe .framer-1gm52pd-container, .framer-tcyXe .framer-z3ijpm-container, .framer-tcyXe .framer-f21v1a-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-tcyXe .framer-12ta9ui, .framer-tcyXe .framer-nl1ju0, .framer-tcyXe .framer-1rjcci3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-1y7o7yh, .framer-tcyXe .framer-1rawyfw, .framer-tcyXe .framer-1b6x9pg { align-content: center; align-items: center; background-color: var(--token-adb6f102-74a9-4379-8e2d-c9d4a9d1e261, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-1435vcj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-tcyXe .framer-c6r1w2, .framer-tcyXe .framer-19xyyrx, .framer-tcyXe .framer-vki5vq, .framer-tcyXe .framer-altwl5, .framer-tcyXe .framer-1bbkx0y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px 40px 0px 40px; position: relative; width: 1px; }\",\".framer-tcyXe .framer-9z03tu, .framer-tcyXe .framer-1ydf832, .framer-tcyXe .framer-19ukiyh, .framer-tcyXe .framer-1ywo8iy, .framer-tcyXe .framer-1uwzjb7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-tcyXe .framer-15rwrfp, .framer-tcyXe .framer-xk8byy, .framer-tcyXe .framer-9yabaz, .framer-tcyXe .framer-11tbqyd, .framer-tcyXe .framer-1ezyjac { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-1o0beoz, .framer-tcyXe .framer-9jc1t2, .framer-tcyXe .framer-1mvn4ya, .framer-tcyXe .framer-apz8cw, .framer-tcyXe .framer-14s417c { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tcyXe .framer-1v3687l, .framer-tcyXe .framer-g6lgn8 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-tcyXe .framer-11ss8b6, .framer-tcyXe .framer-aqucbk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-1wwldu7, .framer-tcyXe .framer-nkzpe4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-155zndo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 60px 100px 60px; position: relative; width: 100%; }\",\".framer-tcyXe .framer-1sz3w32 { align-content: center; align-items: center; background-color: var(--token-b2d8da45-7350-4557-9480-2561a3de975d, #f6f5ff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-tcyXe .framer-v9jdt0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-tcyXe .framer-fu5cat-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tcyXe.framer-64rqgi, .framer-tcyXe .framer-v8s8wz, .framer-tcyXe .framer-14ukad2, .framer-tcyXe .framer-bkut49, .framer-tcyXe .framer-xs4ovo, .framer-tcyXe .framer-1xmi85, .framer-tcyXe .framer-7vrm1l, .framer-tcyXe .framer-98tqez, .framer-tcyXe .framer-eertvx, .framer-tcyXe .framer-1vlgch, .framer-tcyXe .framer-1eswpsf, .framer-tcyXe .framer-1s8l8fm, .framer-tcyXe .framer-16n1day, .framer-tcyXe .framer-ogemc6, .framer-tcyXe .framer-iic34i, .framer-tcyXe .framer-ee2ksl, .framer-tcyXe .framer-12s57nx, .framer-tcyXe .framer-b2193h, .framer-tcyXe .framer-bdg0uw, .framer-tcyXe .framer-yqelkh, .framer-tcyXe .framer-1p0tal3, .framer-tcyXe .framer-1y016sy, .framer-tcyXe .framer-fvu0pj, .framer-tcyXe .framer-hfib7x, .framer-tcyXe .framer-12vflsr, .framer-tcyXe .framer-50vb35, .framer-tcyXe .framer-upebcz, .framer-tcyXe .framer-1su7b0g, .framer-tcyXe .framer-odtxoi, .framer-tcyXe .framer-wd4k8d, .framer-tcyXe .framer-12ta9ui, .framer-tcyXe .framer-122kgld, .framer-tcyXe .framer-nl1ju0, .framer-tcyXe .framer-18w6az8, .framer-tcyXe .framer-1rjcci3, .framer-tcyXe .framer-1y7o7yh, .framer-tcyXe .framer-1435vcj, .framer-tcyXe .framer-c6r1w2, .framer-tcyXe .framer-15rwrfp, .framer-tcyXe .framer-1o0beoz, .framer-tcyXe .framer-1rawyfw, .framer-tcyXe .framer-1v3687l, .framer-tcyXe .framer-9jc1t2, .framer-tcyXe .framer-19xyyrx, .framer-tcyXe .framer-xk8byy, .framer-tcyXe .framer-1b6x9pg, .framer-tcyXe .framer-g6lgn8, .framer-tcyXe .framer-vki5vq, .framer-tcyXe .framer-9yabaz, .framer-tcyXe .framer-1mvn4ya, .framer-tcyXe .framer-11ss8b6, .framer-tcyXe .framer-1wwldu7, .framer-tcyXe .framer-apz8cw, .framer-tcyXe .framer-altwl5, .framer-tcyXe .framer-11tbqyd, .framer-tcyXe .framer-aqucbk, .framer-tcyXe .framer-nkzpe4, .framer-tcyXe .framer-1bbkx0y, .framer-tcyXe .framer-1ezyjac, .framer-tcyXe .framer-14s417c, .framer-tcyXe .framer-155zndo, .framer-tcyXe .framer-1sz3w32, .framer-tcyXe .framer-1fqqi9t, .framer-tcyXe .framer-v9jdt0 { gap: 0px; } .framer-tcyXe.framer-64rqgi > *, .framer-tcyXe .framer-155zndo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tcyXe.framer-64rqgi > :first-child, .framer-tcyXe .framer-v8s8wz > :first-child, .framer-tcyXe .framer-bkut49 > :first-child, .framer-tcyXe .framer-xs4ovo > :first-child, .framer-tcyXe .framer-1xmi85 > :first-child, .framer-tcyXe .framer-7vrm1l > :first-child, .framer-tcyXe .framer-eertvx > :first-child, .framer-tcyXe .framer-1s8l8fm > :first-child, .framer-tcyXe .framer-iic34i > :first-child, .framer-tcyXe .framer-yqelkh > :first-child, .framer-tcyXe .framer-1p0tal3 > :first-child, .framer-tcyXe .framer-1y016sy > :first-child, .framer-tcyXe .framer-fvu0pj > :first-child, .framer-tcyXe .framer-12vflsr > :first-child, .framer-tcyXe .framer-50vb35 > :first-child, .framer-tcyXe .framer-upebcz > :first-child, .framer-tcyXe .framer-1su7b0g > :first-child, .framer-tcyXe .framer-wd4k8d > :first-child, .framer-tcyXe .framer-12ta9ui > :first-child, .framer-tcyXe .framer-122kgld > :first-child, .framer-tcyXe .framer-nl1ju0 > :first-child, .framer-tcyXe .framer-18w6az8 > :first-child, .framer-tcyXe .framer-1rjcci3 > :first-child, .framer-tcyXe .framer-c6r1w2 > :first-child, .framer-tcyXe .framer-1o0beoz > :first-child, .framer-tcyXe .framer-9jc1t2 > :first-child, .framer-tcyXe .framer-19xyyrx > :first-child, .framer-tcyXe .framer-vki5vq > :first-child, .framer-tcyXe .framer-1mvn4ya > :first-child, .framer-tcyXe .framer-11ss8b6 > :first-child, .framer-tcyXe .framer-apz8cw > :first-child, .framer-tcyXe .framer-altwl5 > :first-child, .framer-tcyXe .framer-aqucbk > :first-child, .framer-tcyXe .framer-1bbkx0y > :first-child, .framer-tcyXe .framer-14s417c > :first-child, .framer-tcyXe .framer-155zndo > :first-child, .framer-tcyXe .framer-1sz3w32 > :first-child, .framer-tcyXe .framer-1fqqi9t > :first-child { margin-top: 0px; } .framer-tcyXe.framer-64rqgi > :last-child, .framer-tcyXe .framer-v8s8wz > :last-child, .framer-tcyXe .framer-bkut49 > :last-child, .framer-tcyXe .framer-xs4ovo > :last-child, .framer-tcyXe .framer-1xmi85 > :last-child, .framer-tcyXe .framer-7vrm1l > :last-child, .framer-tcyXe .framer-eertvx > :last-child, .framer-tcyXe .framer-1s8l8fm > :last-child, .framer-tcyXe .framer-iic34i > :last-child, .framer-tcyXe .framer-yqelkh > :last-child, .framer-tcyXe .framer-1p0tal3 > :last-child, .framer-tcyXe .framer-1y016sy > :last-child, .framer-tcyXe .framer-fvu0pj > :last-child, .framer-tcyXe .framer-12vflsr > :last-child, .framer-tcyXe .framer-50vb35 > :last-child, .framer-tcyXe .framer-upebcz > :last-child, .framer-tcyXe .framer-1su7b0g > :last-child, .framer-tcyXe .framer-wd4k8d > :last-child, .framer-tcyXe .framer-12ta9ui > :last-child, .framer-tcyXe .framer-122kgld > :last-child, .framer-tcyXe .framer-nl1ju0 > :last-child, .framer-tcyXe .framer-18w6az8 > :last-child, .framer-tcyXe .framer-1rjcci3 > :last-child, .framer-tcyXe .framer-c6r1w2 > :last-child, .framer-tcyXe .framer-1o0beoz > :last-child, .framer-tcyXe .framer-9jc1t2 > :last-child, .framer-tcyXe .framer-19xyyrx > :last-child, .framer-tcyXe .framer-vki5vq > :last-child, .framer-tcyXe .framer-1mvn4ya > :last-child, .framer-tcyXe .framer-11ss8b6 > :last-child, .framer-tcyXe .framer-apz8cw > :last-child, .framer-tcyXe .framer-altwl5 > :last-child, .framer-tcyXe .framer-aqucbk > :last-child, .framer-tcyXe .framer-1bbkx0y > :last-child, .framer-tcyXe .framer-14s417c > :last-child, .framer-tcyXe .framer-155zndo > :last-child, .framer-tcyXe .framer-1sz3w32 > :last-child, .framer-tcyXe .framer-1fqqi9t > :last-child { margin-bottom: 0px; } .framer-tcyXe .framer-v8s8wz > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-tcyXe .framer-14ukad2 > *, .framer-tcyXe .framer-1435vcj > *, .framer-tcyXe .framer-1v3687l > *, .framer-tcyXe .framer-g6lgn8 > *, .framer-tcyXe .framer-1wwldu7 > *, .framer-tcyXe .framer-nkzpe4 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-tcyXe .framer-14ukad2 > :first-child, .framer-tcyXe .framer-98tqez > :first-child, .framer-tcyXe .framer-1vlgch > :first-child, .framer-tcyXe .framer-1eswpsf > :first-child, .framer-tcyXe .framer-16n1day > :first-child, .framer-tcyXe .framer-ogemc6 > :first-child, .framer-tcyXe .framer-ee2ksl > :first-child, .framer-tcyXe .framer-12s57nx > :first-child, .framer-tcyXe .framer-b2193h > :first-child, .framer-tcyXe .framer-bdg0uw > :first-child, .framer-tcyXe .framer-hfib7x > :first-child, .framer-tcyXe .framer-odtxoi > :first-child, .framer-tcyXe .framer-1y7o7yh > :first-child, .framer-tcyXe .framer-1435vcj > :first-child, .framer-tcyXe .framer-15rwrfp > :first-child, .framer-tcyXe .framer-1rawyfw > :first-child, .framer-tcyXe .framer-1v3687l > :first-child, .framer-tcyXe .framer-xk8byy > :first-child, .framer-tcyXe .framer-1b6x9pg > :first-child, .framer-tcyXe .framer-g6lgn8 > :first-child, .framer-tcyXe .framer-9yabaz > :first-child, .framer-tcyXe .framer-1wwldu7 > :first-child, .framer-tcyXe .framer-11tbqyd > :first-child, .framer-tcyXe .framer-nkzpe4 > :first-child, .framer-tcyXe .framer-1ezyjac > :first-child, .framer-tcyXe .framer-v9jdt0 > :first-child { margin-left: 0px; } .framer-tcyXe .framer-14ukad2 > :last-child, .framer-tcyXe .framer-98tqez > :last-child, .framer-tcyXe .framer-1vlgch > :last-child, .framer-tcyXe .framer-1eswpsf > :last-child, .framer-tcyXe .framer-16n1day > :last-child, .framer-tcyXe .framer-ogemc6 > :last-child, .framer-tcyXe .framer-ee2ksl > :last-child, .framer-tcyXe .framer-12s57nx > :last-child, .framer-tcyXe .framer-b2193h > :last-child, .framer-tcyXe .framer-bdg0uw > :last-child, .framer-tcyXe .framer-hfib7x > :last-child, .framer-tcyXe .framer-odtxoi > :last-child, .framer-tcyXe .framer-1y7o7yh > :last-child, .framer-tcyXe .framer-1435vcj > :last-child, .framer-tcyXe .framer-15rwrfp > :last-child, .framer-tcyXe .framer-1rawyfw > :last-child, .framer-tcyXe .framer-1v3687l > :last-child, .framer-tcyXe .framer-xk8byy > :last-child, .framer-tcyXe .framer-1b6x9pg > :last-child, .framer-tcyXe .framer-g6lgn8 > :last-child, .framer-tcyXe .framer-9yabaz > :last-child, .framer-tcyXe .framer-1wwldu7 > :last-child, .framer-tcyXe .framer-11tbqyd > :last-child, .framer-tcyXe .framer-nkzpe4 > :last-child, .framer-tcyXe .framer-1ezyjac > :last-child, .framer-tcyXe .framer-v9jdt0 > :last-child { margin-right: 0px; } .framer-tcyXe .framer-bkut49 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-tcyXe .framer-xs4ovo > *, .framer-tcyXe .framer-1xmi85 > *, .framer-tcyXe .framer-upebcz > *, .framer-tcyXe .framer-wd4k8d > *, .framer-tcyXe .framer-122kgld > *, .framer-tcyXe .framer-18w6az8 > *, .framer-tcyXe .framer-c6r1w2 > *, .framer-tcyXe .framer-1o0beoz > *, .framer-tcyXe .framer-9jc1t2 > *, .framer-tcyXe .framer-19xyyrx > *, .framer-tcyXe .framer-vki5vq > *, .framer-tcyXe .framer-1mvn4ya > *, .framer-tcyXe .framer-11ss8b6 > *, .framer-tcyXe .framer-apz8cw > *, .framer-tcyXe .framer-altwl5 > *, .framer-tcyXe .framer-aqucbk > *, .framer-tcyXe .framer-1bbkx0y > *, .framer-tcyXe .framer-14s417c > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-tcyXe .framer-7vrm1l > *, .framer-tcyXe .framer-1p0tal3 > *, .framer-tcyXe .framer-12ta9ui > *, .framer-tcyXe .framer-nl1ju0 > *, .framer-tcyXe .framer-1rjcci3 > *, .framer-tcyXe .framer-1fqqi9t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tcyXe .framer-98tqez > *, .framer-tcyXe .framer-1eswpsf > *, .framer-tcyXe .framer-ogemc6 > *, .framer-tcyXe .framer-b2193h > *, .framer-tcyXe .framer-hfib7x > *, .framer-tcyXe .framer-1y7o7yh > *, .framer-tcyXe .framer-15rwrfp > *, .framer-tcyXe .framer-1rawyfw > *, .framer-tcyXe .framer-xk8byy > *, .framer-tcyXe .framer-1b6x9pg > *, .framer-tcyXe .framer-9yabaz > *, .framer-tcyXe .framer-11tbqyd > *, .framer-tcyXe .framer-1ezyjac > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tcyXe .framer-eertvx > *, .framer-tcyXe .framer-1s8l8fm > *, .framer-tcyXe .framer-iic34i > *, .framer-tcyXe .framer-12vflsr > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-tcyXe .framer-1vlgch > *, .framer-tcyXe .framer-16n1day > *, .framer-tcyXe .framer-ee2ksl > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-tcyXe .framer-12s57nx > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-tcyXe .framer-bdg0uw > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-tcyXe .framer-yqelkh > *, .framer-tcyXe .framer-1y016sy > *, .framer-tcyXe .framer-fvu0pj > *, .framer-tcyXe .framer-1sz3w32 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tcyXe .framer-50vb35 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-tcyXe .framer-1su7b0g > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-tcyXe .framer-odtxoi > *, .framer-tcyXe .framer-v9jdt0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-tcyXe[data-border=\"true\"]::after, .framer-tcyXe [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: 810px) and (max-width: 1199px) { .framer-tcyXe.framer-64rqgi { width: 810px; } .framer-tcyXe .framer-v8s8wz { padding: 0px 0px 60px 0px; } .framer-tcyXe .framer-14ukad2 { gap: 30px; padding: 0px 40px 0px 40px; } .framer-tcyXe .framer-xs4ovo { align-content: flex-end; align-items: flex-end; height: 400px; } .framer-tcyXe .framer-1lzfnjb { height: 340px; order: 0; width: 292px; } .framer-tcyXe .framer-1iepjuk-container { left: -118px; right: -25px; top: -1px; } .framer-tcyXe .framer-1xmi85 { bottom: 19px; left: 20px; order: 1; } .framer-tcyXe .framer-b2193h { padding: 0px 40px 0px 40px; } .framer-tcyXe .framer-yqelkh, .framer-tcyXe .framer-1y7o7yh, .framer-tcyXe .framer-1rawyfw, .framer-tcyXe .framer-1b6x9pg { padding: 100px 40px 100px 40px; } .framer-tcyXe .framer-1p0tal3 { width: 80%; } .framer-tcyXe .framer-1y016sy, .framer-tcyXe .framer-1v3687l, .framer-tcyXe .framer-g6lgn8, .framer-tcyXe .framer-1wwldu7, .framer-tcyXe .framer-nkzpe4 { gap: 30px; } .framer-tcyXe .framer-fvu0pj { padding: 60px 80px 60px 80px; width: 80%; } .framer-tcyXe .framer-a6pnbk, .framer-tcyXe .framer-9z03tu, .framer-tcyXe .framer-1b5hn21, .framer-tcyXe .framer-1ydf832, .framer-tcyXe .framer-18b4i0r, .framer-tcyXe .framer-19ukiyh, .framer-tcyXe .framer-1d298vy, .framer-tcyXe .framer-1ywo8iy, .framer-tcyXe .framer-tuu6js, .framer-tcyXe .framer-1uwzjb7, .framer-tcyXe .framer-fc2wmt { width: 100%; } .framer-tcyXe .framer-50vb35 { gap: 40px; padding: 100px 40px 100px 40px; } .framer-tcyXe .framer-upebcz { width: 70%; } .framer-tcyXe .framer-odtxoi, .framer-tcyXe .framer-v9jdt0 { gap: 10px; } .framer-tcyXe .framer-wd4k8d, .framer-tcyXe .framer-122kgld, .framer-tcyXe .framer-18w6az8 { padding: 0px 20px 0px 20px; } .framer-tcyXe .framer-1gm52pd-container, .framer-tcyXe .framer-z3ijpm-container, .framer-tcyXe .framer-f21v1a-container { height: 40px; width: 40px; } .framer-tcyXe .framer-12ta9ui, .framer-tcyXe .framer-nl1ju0, .framer-tcyXe .framer-1rjcci3 { gap: 5px; } .framer-tcyXe .framer-1435vcj { gap: 20px; } .framer-tcyXe .framer-c6r1w2, .framer-tcyXe .framer-19xyyrx, .framer-tcyXe .framer-altwl5 { gap: 15px; padding: 0px 20px 0px 20px; } .framer-tcyXe .framer-1o0beoz, .framer-tcyXe .framer-9jc1t2, .framer-tcyXe .framer-1mvn4ya, .framer-tcyXe .framer-apz8cw, .framer-tcyXe .framer-14s417c { height: 340px; } .framer-tcyXe .framer-vki5vq, .framer-tcyXe .framer-1bbkx0y { padding: 0px 15px 0px 15px; } .framer-tcyXe .framer-11ss8b6, .framer-tcyXe .framer-aqucbk { height: 600px; padding: 100px 40px 100px 40px; } .framer-tcyXe .framer-155zndo { padding: 80px 40px 80px 40px; } .framer-tcyXe .framer-1sz3w32 { padding: 80px 0px 80px 0px; } .framer-tcyXe .framer-1fqqi9t { width: 60%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tcyXe .framer-14ukad2, .framer-tcyXe .framer-1y016sy, .framer-tcyXe .framer-50vb35, .framer-tcyXe .framer-odtxoi, .framer-tcyXe .framer-12ta9ui, .framer-tcyXe .framer-nl1ju0, .framer-tcyXe .framer-1rjcci3, .framer-tcyXe .framer-1435vcj, .framer-tcyXe .framer-c6r1w2, .framer-tcyXe .framer-1v3687l, .framer-tcyXe .framer-19xyyrx, .framer-tcyXe .framer-g6lgn8, .framer-tcyXe .framer-1wwldu7, .framer-tcyXe .framer-altwl5, .framer-tcyXe .framer-nkzpe4, .framer-tcyXe .framer-v9jdt0 { gap: 0px; } .framer-tcyXe .framer-14ukad2 > *, .framer-tcyXe .framer-1v3687l > *, .framer-tcyXe .framer-g6lgn8 > *, .framer-tcyXe .framer-1wwldu7 > *, .framer-tcyXe .framer-nkzpe4 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-tcyXe .framer-14ukad2 > :first-child, .framer-tcyXe .framer-odtxoi > :first-child, .framer-tcyXe .framer-1435vcj > :first-child, .framer-tcyXe .framer-1v3687l > :first-child, .framer-tcyXe .framer-g6lgn8 > :first-child, .framer-tcyXe .framer-1wwldu7 > :first-child, .framer-tcyXe .framer-nkzpe4 > :first-child, .framer-tcyXe .framer-v9jdt0 > :first-child { margin-left: 0px; } .framer-tcyXe .framer-14ukad2 > :last-child, .framer-tcyXe .framer-odtxoi > :last-child, .framer-tcyXe .framer-1435vcj > :last-child, .framer-tcyXe .framer-1v3687l > :last-child, .framer-tcyXe .framer-g6lgn8 > :last-child, .framer-tcyXe .framer-1wwldu7 > :last-child, .framer-tcyXe .framer-nkzpe4 > :last-child, .framer-tcyXe .framer-v9jdt0 > :last-child { margin-right: 0px; } .framer-tcyXe .framer-1y016sy > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-tcyXe .framer-1y016sy > :first-child, .framer-tcyXe .framer-50vb35 > :first-child, .framer-tcyXe .framer-12ta9ui > :first-child, .framer-tcyXe .framer-nl1ju0 > :first-child, .framer-tcyXe .framer-1rjcci3 > :first-child, .framer-tcyXe .framer-c6r1w2 > :first-child, .framer-tcyXe .framer-19xyyrx > :first-child, .framer-tcyXe .framer-altwl5 > :first-child { margin-top: 0px; } .framer-tcyXe .framer-1y016sy > :last-child, .framer-tcyXe .framer-50vb35 > :last-child, .framer-tcyXe .framer-12ta9ui > :last-child, .framer-tcyXe .framer-nl1ju0 > :last-child, .framer-tcyXe .framer-1rjcci3 > :last-child, .framer-tcyXe .framer-c6r1w2 > :last-child, .framer-tcyXe .framer-19xyyrx > :last-child, .framer-tcyXe .framer-altwl5 > :last-child { margin-bottom: 0px; } .framer-tcyXe .framer-50vb35 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tcyXe .framer-odtxoi > *, .framer-tcyXe .framer-v9jdt0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tcyXe .framer-12ta9ui > *, .framer-tcyXe .framer-nl1ju0 > *, .framer-tcyXe .framer-1rjcci3 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-tcyXe .framer-1435vcj > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-tcyXe .framer-c6r1w2 > *, .framer-tcyXe .framer-19xyyrx > *, .framer-tcyXe .framer-altwl5 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}\",\"@media (max-width: 809px) { .framer-tcyXe.framer-64rqgi { width: 390px; } .framer-tcyXe .framer-v8s8wz { gap: 70px; padding: 0px 0px 60px 0px; } .framer-tcyXe .framer-14ukad2 { flex-direction: column; gap: 40px; padding: 0px 30px 0px 30px; } .framer-tcyXe .framer-bkut49 { flex: none; width: 100%; } .framer-tcyXe .framer-unz0ka, .framer-tcyXe .framer-1p0tal3, .framer-tcyXe .framer-49wzoy, .framer-tcyXe .framer-a6pnbk, .framer-tcyXe .framer-upebcz, .framer-tcyXe .framer-9z03tu, .framer-tcyXe .framer-1b5hn21, .framer-tcyXe .framer-1ydf832, .framer-tcyXe .framer-18b4i0r, .framer-tcyXe .framer-19ukiyh, .framer-tcyXe .framer-1d298vy, .framer-tcyXe .framer-1ywo8iy, .framer-tcyXe .framer-tuu6js, .framer-tcyXe .framer-1uwzjb7, .framer-tcyXe .framer-fc2wmt, .framer-tcyXe .framer-1fqqi9t, .framer-tcyXe .framer-17k495f { width: 100%; } .framer-tcyXe .framer-xs4ovo { align-content: flex-end; align-items: flex-end; flex: none; height: 440px; justify-content: flex-start; width: 100%; } .framer-tcyXe .framer-1lzfnjb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; padding: 0px; width: 90%; } .framer-tcyXe .framer-1iepjuk-container { bottom: unset; height: 324px; left: unset; position: relative; right: unset; top: unset; width: 328px; } .framer-tcyXe .framer-1xmi85 { bottom: 11px; left: 10px; } .framer-tcyXe .framer-12s57nx { right: -312px; top: 199px; } .framer-tcyXe .framer-b2193h { padding: 0px 10px 0px 10px; } .framer-tcyXe .framer-yqelkh { gap: 30px; padding: 80px 30px 80px 30px; } .framer-tcyXe .framer-1y016sy { gap: 30px; } .framer-tcyXe .framer-fvu0pj { gap: 30px; padding: 36px; width: 100%; } .framer-tcyXe .framer-1xu0a1m { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; } .framer-tcyXe .framer-1q3gjpk-container { height: 210px; } .framer-tcyXe .framer-50vb35 { gap: 40px; padding: 80px 30px 80px 30px; } .framer-tcyXe .framer-odtxoi, .framer-tcyXe .framer-1435vcj, .framer-tcyXe .framer-1v3687l, .framer-tcyXe .framer-1wwldu7 { flex-direction: column; gap: 30px; } .framer-tcyXe .framer-wd4k8d, .framer-tcyXe .framer-122kgld, .framer-tcyXe .framer-18w6az8 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: row; gap: 10px; padding: 0px; width: 100%; } .framer-tcyXe .framer-1gm52pd-container, .framer-tcyXe .framer-z3ijpm-container, .framer-tcyXe .framer-f21v1a-container { height: 40px; width: 40px; } .framer-tcyXe .framer-12ta9ui, .framer-tcyXe .framer-nl1ju0, .framer-tcyXe .framer-1rjcci3 { flex: 1 0 0px; gap: 5px; width: 1px; } .framer-tcyXe .framer-1y7o7yh, .framer-tcyXe .framer-1rawyfw, .framer-tcyXe .framer-1b6x9pg { gap: 20px; padding: 60px 30px 60px 30px; } .framer-tcyXe .framer-c6r1w2, .framer-tcyXe .framer-vki5vq, .framer-tcyXe .framer-1bbkx0y { flex: none; order: 1; padding: 0px; width: 100%; } .framer-tcyXe .framer-15rwrfp, .framer-tcyXe .framer-xk8byy, .framer-tcyXe .framer-9yabaz, .framer-tcyXe .framer-11tbqyd, .framer-tcyXe .framer-1ezyjac { padding: 5px 0px 5px 0px; } .framer-tcyXe .framer-1o0beoz, .framer-tcyXe .framer-1mvn4ya, .framer-tcyXe .framer-14s417c { flex: none; height: 340px; order: 0; width: 100%; } .framer-tcyXe .framer-9jc1t2, .framer-tcyXe .framer-apz8cw { flex: none; height: 340px; width: 100%; } .framer-tcyXe .framer-19xyyrx, .framer-tcyXe .framer-altwl5 { flex: none; padding: 0px; width: 100%; } .framer-tcyXe .framer-g6lgn8, .framer-tcyXe .framer-nkzpe4 { flex-direction: column; gap: 40px; } .framer-tcyXe .framer-11ss8b6, .framer-tcyXe .framer-aqucbk, .framer-tcyXe .framer-1sz3w32 { padding: 60px 30px 60px 30px; } .framer-tcyXe .framer-155zndo { padding: 80px 20px 80px 20px; } .framer-tcyXe .framer-v9jdt0 { gap: 10px; justify-content: center; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tcyXe .framer-v8s8wz, .framer-tcyXe .framer-14ukad2, .framer-tcyXe .framer-1lzfnjb, .framer-tcyXe .framer-yqelkh, .framer-tcyXe .framer-1y016sy, .framer-tcyXe .framer-fvu0pj, .framer-tcyXe .framer-50vb35, .framer-tcyXe .framer-odtxoi, .framer-tcyXe .framer-wd4k8d, .framer-tcyXe .framer-12ta9ui, .framer-tcyXe .framer-122kgld, .framer-tcyXe .framer-nl1ju0, .framer-tcyXe .framer-18w6az8, .framer-tcyXe .framer-1rjcci3, .framer-tcyXe .framer-1y7o7yh, .framer-tcyXe .framer-1435vcj, .framer-tcyXe .framer-1rawyfw, .framer-tcyXe .framer-1v3687l, .framer-tcyXe .framer-1b6x9pg, .framer-tcyXe .framer-g6lgn8, .framer-tcyXe .framer-1wwldu7, .framer-tcyXe .framer-nkzpe4, .framer-tcyXe .framer-v9jdt0 { gap: 0px; } .framer-tcyXe .framer-v8s8wz > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-tcyXe .framer-v8s8wz > :first-child, .framer-tcyXe .framer-14ukad2 > :first-child, .framer-tcyXe .framer-yqelkh > :first-child, .framer-tcyXe .framer-1y016sy > :first-child, .framer-tcyXe .framer-fvu0pj > :first-child, .framer-tcyXe .framer-50vb35 > :first-child, .framer-tcyXe .framer-odtxoi > :first-child, .framer-tcyXe .framer-12ta9ui > :first-child, .framer-tcyXe .framer-nl1ju0 > :first-child, .framer-tcyXe .framer-1rjcci3 > :first-child, .framer-tcyXe .framer-1435vcj > :first-child, .framer-tcyXe .framer-1v3687l > :first-child, .framer-tcyXe .framer-g6lgn8 > :first-child, .framer-tcyXe .framer-1wwldu7 > :first-child, .framer-tcyXe .framer-nkzpe4 > :first-child { margin-top: 0px; } .framer-tcyXe .framer-v8s8wz > :last-child, .framer-tcyXe .framer-14ukad2 > :last-child, .framer-tcyXe .framer-yqelkh > :last-child, .framer-tcyXe .framer-1y016sy > :last-child, .framer-tcyXe .framer-fvu0pj > :last-child, .framer-tcyXe .framer-50vb35 > :last-child, .framer-tcyXe .framer-odtxoi > :last-child, .framer-tcyXe .framer-12ta9ui > :last-child, .framer-tcyXe .framer-nl1ju0 > :last-child, .framer-tcyXe .framer-1rjcci3 > :last-child, .framer-tcyXe .framer-1435vcj > :last-child, .framer-tcyXe .framer-1v3687l > :last-child, .framer-tcyXe .framer-g6lgn8 > :last-child, .framer-tcyXe .framer-1wwldu7 > :last-child, .framer-tcyXe .framer-nkzpe4 > :last-child { margin-bottom: 0px; } .framer-tcyXe .framer-14ukad2 > *, .framer-tcyXe .framer-50vb35 > *, .framer-tcyXe .framer-g6lgn8 > *, .framer-tcyXe .framer-nkzpe4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tcyXe .framer-1lzfnjb > *, .framer-tcyXe .framer-wd4k8d > *, .framer-tcyXe .framer-122kgld > *, .framer-tcyXe .framer-18w6az8 > *, .framer-tcyXe .framer-v9jdt0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tcyXe .framer-1lzfnjb > :first-child, .framer-tcyXe .framer-wd4k8d > :first-child, .framer-tcyXe .framer-122kgld > :first-child, .framer-tcyXe .framer-18w6az8 > :first-child, .framer-tcyXe .framer-1y7o7yh > :first-child, .framer-tcyXe .framer-1rawyfw > :first-child, .framer-tcyXe .framer-1b6x9pg > :first-child, .framer-tcyXe .framer-v9jdt0 > :first-child { margin-left: 0px; } .framer-tcyXe .framer-1lzfnjb > :last-child, .framer-tcyXe .framer-wd4k8d > :last-child, .framer-tcyXe .framer-122kgld > :last-child, .framer-tcyXe .framer-18w6az8 > :last-child, .framer-tcyXe .framer-1y7o7yh > :last-child, .framer-tcyXe .framer-1rawyfw > :last-child, .framer-tcyXe .framer-1b6x9pg > :last-child, .framer-tcyXe .framer-v9jdt0 > :last-child { margin-right: 0px; } .framer-tcyXe .framer-yqelkh > *, .framer-tcyXe .framer-1y016sy > *, .framer-tcyXe .framer-fvu0pj > *, .framer-tcyXe .framer-odtxoi > *, .framer-tcyXe .framer-1435vcj > *, .framer-tcyXe .framer-1v3687l > *, .framer-tcyXe .framer-1wwldu7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-tcyXe .framer-12ta9ui > *, .framer-tcyXe .framer-nl1ju0 > *, .framer-tcyXe .framer-1rjcci3 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-tcyXe .framer-1y7o7yh > *, .framer-tcyXe .framer-1rawyfw > *, .framer-tcyXe .framer-1b6x9pg > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7203\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eteUTl1CR\":{\"layout\":[\"fixed\",\"auto\"]},\"MSJ95oQ4C\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framerda2gTD9dV=withCSS(Component,css,\"framer-tcyXe\");export default Framerda2gTD9dV;Framerda2gTD9dV.displayName=\"Home\";Framerda2gTD9dV.defaultProps={height:7203,width:1200};addFonts(Framerda2gTD9dV,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...NavbarFonts,...ButtonFonts,...VideoFonts,...ElementsAvatarFonts,...PhosphorFonts,...TickerFonts,...CardTestimonialFonts,...Ticker1Fonts,...Phosphor1Fonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerda2gTD9dV\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eteUTl1CR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MSJ95oQ4C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"7203\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "d", "f", "l", "g", "glide", "a", "u", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "createGeneratorEasing", "e", "o", "getGenerator", "t", "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", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "t", "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", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "externalStyle", "className", "width", "height", "layoutId", "outerVariant", "xmIvQmf4p", "nk9VMvIfG", "VqLXyQmbq", "v407kujy9", "etbl5ORQn", "ApbJ0qlLr", "rxuSom06d", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "layoutDependency", "variantProps", "se", "addVariantProps", "useAddVariantProps", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "useRandomID", "pointerEvents", "style", "p", "LayoutGroup", "motion", "cx", "u", "RichText2", "Image2", "css", "FramerdSMVdIqsz", "withCSS", "dSMVdIqsz_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "contactName", "height", "id", "image", "jobTitleCompany", "olivierUZAN", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "LdPu8lXOP", "I25V5Dp21", "QQgAHaGsX", "mpYp0FmAS", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "Image2", "css", "FramerSEIeOoI9U", "withCSS", "SEIeOoI9U_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "ea6MiA2lH_default", "ButtonFonts", "CufoZIgDB_default", "VideoFonts", "Video", "ElementsAvatarFonts", "dSMVdIqsz_default", "PhosphorFonts", "Icon", "TickerFonts", "Ticker", "ImageWithFX", "withFX", "Image2", "CardTestimonialFonts", "SEIeOoI9U_default", "Ticker1Fonts", "Phosphor1Fonts", "MotionDivWithFX", "motion", "FooterFonts", "B_vNBfGcI_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "addImageAlt", "image", "alt", "transition2", "animation2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "PropertyOverrides2", "ea6MiA2lH_default", "RichText2", "x", "ResolveLinks", "resolvedLinks", "CufoZIgDB_default", "Video", "dSMVdIqsz_default", "Icon", "Ticker", "SVG", "ImageWithFX", "SEIeOoI9U_default", "MotionDivWithFX", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "B_vNBfGcI_default", "css", "Framerda2gTD9dV", "withCSS", "da2gTD9dV_default", "addFonts", "NavbarFonts", "ButtonFonts", "VideoFonts", "ElementsAvatarFonts", "PhosphorFonts", "TickerFonts", "CardTestimonialFonts", "Ticker1Fonts", "Phosphor1Fonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
