{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.18.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/types@10.17.1/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.6.3/tslib.es6.mjs", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.18.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.18.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/0EDPVQJ0gO8CCNL1JrqB/f6xTRxM55vOWBF6yIoF9/Y5tHMvYDM.js", "ssg:https://framerusercontent.com/modules/KgwrgnqWeOtnw1E0qaRp/ET0eyC4DCQkkBtv7vhA5/E7ud2_VRx.js", "ssg:https://framerusercontent.com/modules/MHi6tI3Gk0cBeG3sIkQb/aNAvW3eIoHyKLLjwhdia/I6lrpGwn9.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as o,steps as h}from\"@motionone/easing\";const l={ease:o(.25,.1,.25,1),\"ease-in\":o(.42,0,1,1),\"ease-in-out\":o(.42,0,.58,1),\"ease-out\":o(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return o(...s);const a=l[s];if(a)return a;if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return h(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:o,duration:h=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\",autoplay:d=true}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;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||s.easing;if(a(o)){const t=o.createAnimation(i);o=t.easing;i=t.keyframes||i;h=t.duration||h}this.repeat=m;this.easing=n(o)?e:getEasingFunction(o);this.updateDuration(h);const f=r(i,c,n(o)?o.map(getEasingFunction):e);this.tick=i=>{var e;l;let s=0;s=this.pauseTime!==void 0?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);this.playState===\"finished\"&&this.pauseTime===void 0&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);r===1&&n--;const o=n%2;(p===\"reverse\"||p===\"alternate\"&&o||p===\"alternate-reverse\"&&!o)&&(r=1-r);const h=s>=this.totalDuration?1:Math.min(r,1);const m=f(this.easing(h));t(m);const c=this.pauseTime===void 0&&(this.playState===\"finished\"||s>=this.totalDuration+u);if(c){this.playState=\"finished\";(e=this.resolve)===null||e===void 0?void 0:e.call(this,m)}else this.playState!==\"idle\"&&(this.frameRequestId=requestAnimationFrame(this.tick))};d&&this.play()}play(){const t=performance.now();this.playState=\"running\";this.pauseTime!==void 0?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\";this.frameRequestId!==void 0&&cancelAnimationFrame(this.frameRequestId);(t=this.reject)===null||t===void 0?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){this.pauseTime!==void 0||this.rate===0?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//# sourceMappingURL=index.es.js.map\n", "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", "class MotionValue{setAnimation(i){this.animation=i;i===null||i===void 0?void 0:i.finished.then((()=>this.clearAnimation())).catch((()=>{}))}clearAnimation(){this.animation=this.generator=void 0}}export{MotionValue};\n//# sourceMappingURL=index.es.js.map\n", "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(typeof t!==\"function\"&&t!==null)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=t===null?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(e!=null&&typeof Object.getOwnPropertySymbols===\"function\"){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:n===null?n=Object.getOwnPropertyDescriptor(t,r):n;if(typeof Reflect===\"object\"&&typeof Reflect.decorate===\"function\")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 __esDecorate(e,t,r,n,o,a){function accept(e){if(e!==void 0&&typeof e!==\"function\")throw new TypeError(\"Function expected\");return e}var i=n.kind,c=i===\"getter\"?\"get\":i===\"setter\"?\"set\":\"value\";var s=!t&&e?n.static?e:e.prototype:null;var l=t||(s?Object.getOwnPropertyDescriptor(s,n.name):{});var u,_=false;for(var f=r.length-1;f>=0;f--){var p={};for(var y in n)p[y]=y===\"access\"?{}:n[y];for(var y in n.access)p.access[y]=n.access[y];p.addInitializer=function(e){if(_)throw new TypeError(\"Cannot add initializers after decoration has completed\");a.push(accept(e||null))};var d=(0,r[f])(i===\"accessor\"?{get:l.get,set:l.set}:l[c],p);if(i===\"accessor\"){if(d===void 0)continue;if(d===null||typeof d!==\"object\")throw new TypeError(\"Object expected\");(u=accept(d.get))&&(l.get=u);(u=accept(d.set))&&(l.set=u);(u=accept(d.init))&&o.unshift(u)}else(u=accept(d))&&(i===\"field\"?o.unshift(u):l[c]=u)}s&&Object.defineProperty(s,n.name,l);_=true}function __runInitializers(e,t,r){var n=arguments.length>2;for(var o=0;o<t.length;o++)r=n?t[o].call(e,r):t[o].call(e);return n?r:void 0}function __propKey(e){return typeof e===\"symbol\"?e:\"\".concat(e)}function __setFunctionName(e,t,r){typeof t===\"symbol\"&&(t=t.description?\"[\".concat(t.description,\"]\"):\"\");return Object.defineProperty(e,\"name\",{configurable:true,value:r?\"\".concat(r,\" \",t):t})}function __metadata(e,t){if(typeof Reflect===\"object\"&&typeof Reflect.metadata===\"function\")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(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},typeof Symbol===\"function\"&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(c){if(r)throw new TypeError(\"Generator is already executing.\");while(a&&(a=0,c[0]&&(i=0)),i)try{if(r=1,n&&(o=c[0]&2?n.return:c[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,c[1])).done)return o;(n=0,o)&&(c=[c[0]&2,o.value]);switch(c[0]){case 0:case 1:o=c;break;case 4:i.label++;return{value:c[1],done:false};case 5:i.label++;n=c[1];c=[0];continue;case 7:c=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!o||c[1]>o[0]&&c[1]<o[3])){i.label=c[1];break}if(c[0]===6&&i.label<o[1]){i.label=o[1];o=c;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(c);break}o[2]&&i.ops.pop();i.trys.pop();continue}c=t.call(e,i)}catch(e){c=[6,e];n=0}finally{r=o=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){n===void 0&&(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){n===void 0&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)n===\"default\"||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=typeof Symbol===\"function\"&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&typeof e.length===\"number\")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=typeof Symbol===\"function\"&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((t===void 0||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||arguments.length===2)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\",awaitReturn),n[Symbol.asyncIterator]=function(){return this},n;function awaitReturn(e){return function(t){return Promise.resolve(t).then(e,reject)}}function verb(e,t){if(o[e]){n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))};t&&(n[e]=t(n[e]))}}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:false}: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=typeof __values===\"function\"?__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(r!=null)for(var o in r)o!==\"default\"&&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(r===\"a\"&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(typeof t===\"function\"?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return r===\"m\"?n:r===\"a\"?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(n===\"m\")throw new TypeError(\"Private method is not writable\");if(n===\"a\"&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(typeof t===\"function\"?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return n===\"a\"?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(t===null||typeof t!==\"object\"&&typeof t!==\"function\")throw new TypeError(\"Cannot use 'in' operator on non-object\");return typeof e===\"function\"?t===e:e.has(t)}function __addDisposableResource(e,t,r){if(t!==null&&t!==void 0){if(typeof t!==\"object\"&&typeof t!==\"function\")throw new TypeError(\"Object expected.\");var n,o;if(r){if(!Symbol.asyncDispose)throw new TypeError(\"Symbol.asyncDispose is not defined.\");n=t[Symbol.asyncDispose]}if(n===void 0){if(!Symbol.dispose)throw new TypeError(\"Symbol.dispose is not defined.\");n=t[Symbol.dispose];r&&(o=n)}if(typeof n!==\"function\")throw new TypeError(\"Object not disposable.\");o&&(n=function(){try{o.call(this)}catch(e){return Promise.reject(e)}});e.stack.push({value:t,dispose:n,async:r})}else r&&e.stack.push({async:true});return t}var r=typeof SuppressedError===\"function\"?SuppressedError:function(e,t,r){var n=new Error(r);return n.name=\"SuppressedError\",n.error=e,n.suppressed=t,n};function __disposeResources(e){function fail(t){e.error=e.hasError?new r(t,e.error,\"An error was suppressed during disposal.\"):t;e.hasError=true}function next(){while(e.stack.length){var t=e.stack.pop();try{var r=t.dispose&&t.dispose.call(t.value);if(t.async)return Promise.resolve(r).then(next,(function(e){fail(e);return next()}))}catch(e){fail(e)}}if(e.hasError)throw e.error}return next()}var n={__extends:__extends,__assign:__assign,__rest:__rest,__decorate:__decorate,__param:__param,__metadata:__metadata,__awaiter:__awaiter,__generator:__generator,__createBinding:e,__exportStar:__exportStar,__values:__values,__read:__read,__spread:__spread,__spreadArrays:__spreadArrays,__spreadArray:__spreadArray,__await:__await,__asyncGenerator:__asyncGenerator,__asyncDelegator:__asyncDelegator,__asyncValues:__asyncValues,__makeTemplateObject:__makeTemplateObject,__importStar:__importStar,__importDefault:__importDefault,__classPrivateFieldGet:__classPrivateFieldGet,__classPrivateFieldSet:__classPrivateFieldSet,__classPrivateFieldIn:__classPrivateFieldIn,__addDisposableResource:__addDisposableResource,__disposeResources:__disposeResources};export{__addDisposableResource,__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__disposeResources,__esDecorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__propKey,__read,__rest,__runInitializers,__setFunctionName,__spread,__spreadArray,__spreadArrays,__values,n as default};\n//# sourceMappingURL=tslib.es6.mjs.map\n", "import{velocityPerSecond as e,time as t,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.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=r.stiffness,damping:s=r.damping,mass:n=r.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i,restDistance:h}={})=>{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/n)/1e3;const l=calcDampingRatio(e,s,n);const g=Math.abs(d)<5;i||(i=g?.01:2);h||(h=g?.005:.5);let m;if(l<1){const e=f*Math.sqrt(1-l*l);m=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else m=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=m(e);const t=e===0?c:calcGeneratorVelocity(m,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=>i!==void 0&&e<i||h!==void 0&&e>h;const nearestBoundary=e=>i===void 0?h:h===void 0||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=c===void 0?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&&p===void 0){t=true;applyFriction(e);checkCatchBoundary(e)}if(p!==void 0&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));n===void 0&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;i.length===1&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(n!==null&&n!==void 0?n:h)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n//# sourceMappingURL=index.es.js.map\n", "import{getEasingFunction as e,Animation as t}from\"@motionone/animation\";import{invariant as n}from\"hey-listen\";import{MotionValue as o}from\"@motionone/types\";import{noopReturn as i,addUniqueItem as s,progress as r,isFunction as a,defaults as c,isCubicBezier as l,isString as f,isEasingGenerator as u,isEasingList as d,isNumber as g,time as m,noop as h,removeItem as p,mix as v,getEasingForSegment as y,defaultOffset as w,fillOffset as E,velocityPerSecond as b,interpolate as A}from\"@motionone/utils\";import{__rest as S}from\"tslib\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as z,glide as V}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(e,t){e.has(t)||e.set(t,new o);return e.get(t)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const M={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const B={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:i},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const N=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{N.push(e+t);k.set(asTransformCssVar(e+t),B[e])}))}));const compareTransformOrder=(e,t)=>N.indexOf(e)-N.indexOf(t);const $=new Set(N);const isTransform=e=>$.has(e);const addTransformToElement=(e,t)=>{M[t]&&(t=M[t]);const{transforms:n}=getAnimationData(e);s(n,t);e.style.transform=buildTransformTemplate(n)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const C=new Set;function registerCssVariable(e){if(!C.has(e)){C.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 testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const j={cssRegisterProperty:()=>typeof CSS!==\"undefined\"&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const P={};const R={};for(const e in j)R[e]=()=>{P[e]===void 0&&(P[e]=j[e]());return P[e]};const H=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const o=Math.round(t/H);for(let t=0;t<o;t++)n+=e(r(0,o-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>a(e)?R.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:c.easing:l(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)e[n]===null&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){M[e]&&(e=M[e]);return isTransform(e)?asTransformCssVar(e):e}const I={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&n!==0){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&&e.playState!==\"finished\")try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getUnitConverter(e,t){var n;let o=(t===null||t===void 0?void 0:t.toDefaultUnit)||i;const s=e[e.length-1];if(f(s)){const e=((n=s.match(/(-?[\\d.]+)([a-z%]*)/))===null||n===void 0?void 0:n[2])||\"\";e&&(o=t=>t+e)}return o}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={},i){const s=getDevToolsRecord();const r=o.record!==false&&s;let l;let{duration:f=c.duration,delay:p=c.delay,endDelay:v=c.endDelay,repeat:y=c.repeat,easing:w=c.easing,persist:E=false,direction:b,offset:A,allowWebkitAcceleration:S=false,autoplay:O=true}=o;const x=getAnimationData(e);const z=isTransform(t);let V=R.waapi();z&&addTransformToElement(e,t);const W=getStyleName(t);const L=getMotionValue(x.values,W);const T=k.get(W);stopAnimation(L.animation,!(u(w)&&L.generator)&&o.record!==false);return()=>{const readInitialValue=()=>{var t,n;return(n=(t=I.get(e,W))!==null&&t!==void 0?t:T===null||T===void 0?void 0:T.initialValue)!==null&&n!==void 0?n:0};let c=hydrateKeyframes(keyframesList(n),readInitialValue);const x=getUnitConverter(c,T);if(u(w)){const e=w.createAnimation(c,t!==\"opacity\",readInitialValue,W,L);w=e.easing;c=e.keyframes||c;f=e.duration||f}isCssVar(W)&&(R.cssRegisterProperty()?registerCssVariable(W):V=false);z&&!R.linearEasing()&&(a(w)||d(w)&&w.some(a))&&(V=false);if(V){T&&(c=c.map((e=>g(e)?T.toDefaultUnit(e):e)));c.length!==1||R.partialKeyframes()&&!r||c.unshift(readInitialValue());const t={delay:m.ms(p),duration:m.ms(f),endDelay:m.ms(v),easing:d(w)?void 0:convertEasing(w,f),direction:b,iterations:y+1,fill:\"both\"};l=e.animate({[W]:c,offset:A,easing:d(w)?w.map((e=>convertEasing(e,f))):void 0},t);l.finished||(l.finished=new Promise(((e,t)=>{l.onfinish=e;l.oncancel=t})));const n=c[c.length-1];l.finished.then((()=>{if(!E){I.set(e,W,n);l.cancel()}})).catch(h);S||(l.playbackRate=1.000001)}else if(i&&z){c=c.map((e=>typeof e===\"string\"?parseFloat(e):e));c.length===1&&c.unshift(parseFloat(readInitialValue()));l=new i((t=>{I.set(e,W,x?x(t):t)}),c,Object.assign(Object.assign({},o),{duration:f,easing:w}))}else{const t=c[c.length-1];I.set(e,W,T&&g(t)?T.toDefaultUnit(t):t)}r&&s(e,t,c,{duration:f,delay:p,easing:w,repeat:y,offset:A},\"motion-one\");L.setAnimation(l);l&&!O&&l.pause();return l}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(typeof e===\"string\")if(t){(n=t[e])!==null&&n!==void 0?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=c.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},U);const getActiveAnimation=e=>e.animations[0];const U={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return m.s((n===null||n===void 0?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return n===null||n===void 0?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(h));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 typeof(n===null||n===void 0?void 0:n[t])===\"undefined\"?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=m.ms(n);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(t=.1,{start:n=0,from:o=0,easing:i}={}){return(s,r)=>{const a=g(o)?o:getFromIndex(o,r);const c=Math.abs(a-s);let l=t*c;if(i){const n=r*t;const o=e(i);l=o(l/n)*n}return n+l}}function getFromIndex(e,t){if(e===\"first\")return 0;{const n=t-1;return e===\"last\"?n:n/2}}function resolveOption(e,t,n){return a(e)?e(t,n):e}function createAnimate(e){return function animate(t,o,i={}){t=resolveElements(t);const s=t.length;n(Boolean(s),\"No valid element provided.\");n(Boolean(o),\"No keyframes defined.\");const r=[];for(let n=0;n<s;n++){const a=t[n];for(const t in o){const c=getOptions(i,t);c.delay=resolveOption(c.delay,n,s);const l=animateStyle(a,t,o[t],c,e);r.push(l)}}return withControls(r,i,i.duration)}}const F=createAnimate(t);function calcNextTime(e,t,n,o){var i;return g(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):t===\"<\"?n:(i=o.get(t))!==null&&i!==void 0?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){p(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:v(i,s,o[r]),easing:y(n,r)})}function compareByTime(e,t){return e.at===t.at?e.value===null?1:-1:e.at-t.at}function timeline(e,n={}){var o;const i=createAnimationsFromTimeline(e,n);const s=i.map((e=>animateStyle(...e,t))).filter(Boolean);return withControls(s,n,(o=i[0])===null||o===void 0?void 0:o[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:o={}}=t,i=S(t,[\"defaultOptions\"]);const s=[];const a=new Map;const l={};const d=new Map;let g=0;let m=0;let h=0;for(let t=0;t<e.length;t++){const i=e[t];if(f(i)){d.set(i,m);continue}if(!Array.isArray(i)){d.set(i.name,calcNextTime(m,i.at,g,d));continue}const[s,r,p={}]=i;p.at!==void 0&&(m=calcNextTime(m,p.at,g,d));let v=0;const y=resolveElements(s,l);const b=y.length;for(let e=0;e<b;e++){const t=y[e];const i=getElementSequence(t,a);for(const t in r){const s=getValueSequence(t,i);let a=keyframesList(r[t]);const l=getOptions(p,t);let{duration:f=o.duration||c.duration,easing:d=o.easing||c.easing}=l;if(u(d)){n(t===\"opacity\"||a.length>1,\"spring must be provided 2 keyframes within timeline()\");const e=d.createAnimation(a,t!==\"opacity\",(()=>0),t);d=e.easing;a=e.keyframes||a;f=e.duration||f}const g=resolveOption(p.delay,e,b)||0;const y=m+g;const A=y+f;let{offset:S=w(a.length)}=l;S.length===1&&S[0]===0&&(S[1]=1);const O=S.length-a.length;O>0&&E(S,O);a.length===1&&a.unshift(null);addKeyframes(s,a,d,S,y,A);v=Math.max(g+f,v);h=Math.max(A,h)}}g=m;m+=v}a.forEach(((e,t)=>{for(const n in e){const a=e[n];a.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];l.push(n);f.push(r(0,h,t));u.push(o||c.easing)}if(f[0]!==0){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(f[f.length-1]!==1){f.push(1);l.push(null)}s.push([t,n,l,Object.assign(Object.assign(Object.assign({},o),{duration:h,easing:u,offset:f}),i)])}}));return s}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 canGenerate(e){return g(e)&&!isNaN(e)}function getAsNumber(e){return f(e)?parseFloat(e):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},n)));return o.get(a)};const getKeyframes=(e,n)=>{t.has(e)||t.set(e,O(e,n));return t.get(e)};return{createAnimation:(e,t=true,n,o,s)=>{let r;let a;let c;let l=0;let f=i;const u=e.length;if(t){f=getUnitConverter(e,o?k.get(getStyleName(o)):void 0);const t=e[u-1];c=getAsNumber(t);if(u>1&&e[0]!==null)a=getAsNumber(e[0]);else{const e=s===null||s===void 0?void 0:s.generator;if(e){const{animation:t,generatorStartTime:n}=s;const o=(t===null||t===void 0?void 0:t.startTime)||n||0;const i=(t===null||t===void 0?void 0:t.currentTime)||performance.now()-o;const r=e(i).current;a=r;l=x((t=>e(t).current),i,r)}else n&&(a=getAsNumber(n()))}}if(canGenerate(a)&&canGenerate(c)){const e=getGenerator(a,c,l,o===null||o===void 0?void 0:o.includes(\"scale\"));r=Object.assign(Object.assign({},getKeyframes(e,f)),{easing:\"linear\"});if(s){s.generator=e;s.generatorStartTime=performance.now()}}if(!r){const e=getKeyframes(getGenerator(0,100));r={easing:\"ease\",duration:e.overshootDuration}}return r}}}}const G=createGeneratorEasing(z);const q=createGeneratorEasing(V);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(typeof IntersectionObserver===\"undefined\")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);a(n)?r.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:typeof i===\"number\"?i:K[i]});s.forEach((e=>c.observe(e)));return()=>c.disconnect()}const _=new WeakMap;let Z;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;(o=_.get(e))===null||o===void 0?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){typeof ResizeObserver!==\"undefined\"&&(Z=new ResizeObserver(notifyAll))}function resizeElement(e,t){Z||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=_.get(e);if(!n){n=new Set;_.set(e,n)}n.add(t);Z===null||Z===void 0?void 0:Z.observe(e)}));return()=>{n.forEach((e=>{const n=_.get(e);n===null||n===void 0?void 0:n.delete(t);(n===null||n===void 0?void 0:n.size)||(Z===null||Z===void 0?void 0:Z.unobserve(e))}))}}const X=new Set;let Y;function createWindowResizeHandler(){Y=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};X.forEach((e=>e(t)))};window.addEventListener(\"resize\",Y)}function resizeWindow(e){X.add(e);Y||createWindowResizeHandler();return()=>{X.delete(e);!X.size&&Y&&(Y=void 0)}}function resize(e,t){return a(e)?resizeWindow(e):resizeElement(e,t)}const J=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 Q={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:a}=Q[t];const c=i.current;const l=n.time;i.current=e[`scroll${a}`];i.scrollLength=e[`scroll${s}`]-e[`client${s}`];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=r(0,i.scrollLength,i.current);const f=o-l;i.velocity=f>J?0:b(i.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&o.tagName!==\"svg\")o=o.parentNode}return n}const ee={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const te={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;te[e]!==void 0&&(e=te[e]);if(f(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}g(e)&&(o=t*e);return n+o}const ne=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:ne;let s=0;let r=0;if(g(e))i=[e,e];else if(f(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,te[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const oe={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=ee.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=s===\"y\"?\"height\":\"width\";const a=i!==e?calcInset(i,e):oe;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=A(w(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:a(t)?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,t){e.pause();e.forEachNative(((e,{easing:t})=>{var n,o;if(e.updateDuration){t||(e.easing=i);e.updateDuration(1)}else{const i={duration:1e3};t||(i.easing=\"linear\");(o=(n=e.effect)===null||n===void 0?void 0:n.updateTiming)===null||o===void 0?void 0:o.call(n,i)}}));return()=>{e.currentTime=t.progress}}const ie=new WeakMap;const se=new WeakMap;const re=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=re.get(n);if(!i){i=new Set;re.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!ie.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()};ie.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&se.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=ie.get(n);const c=requestAnimationFrame(a);return()=>{var t;typeof e!==\"function\"&&e.stop();cancelAnimationFrame(c);const o=re.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=ie.get(n);ie.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);(t=se.get(n))===null||t===void 0?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 typeof e===\"object\"}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ae;function processScheduledAnimations(){if(!ae)return;const e=ae.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ae=void 0}function scheduleAnimation(e){if(ae)s(ae,e);else{ae=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ae&&p(ae,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 ce={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||o.pointerType===\"mouse\"){n();dispatchPointerEvent(e,t,o)}};const le={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 fe={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 ue={inView:ce,hover:le,press:fe};const de=[\"initial\",\"animate\",...Object.keys(ue),\"exit\"];const ge=new WeakMap;function createMotionState(e={},o){let i;let s=o?o.getDepth()+1:0;const r={initial:true,animate:true};const a={};const c={};for(const t of de)c[t]=typeof e[t]===\"string\"?e[t]:o===null||o===void 0?void 0:o.getContext()[t];const l=e.initial===false?\"animate\":\"initial\";let f=resolveVariant(e[l]||c[l],e.variants)||{},u=S(f,[\"transition\"]);const d=Object.assign({},u);function*animateUpdates(){var n,o;const s=u;u={};const a={};for(const t of de){if(!r[t])continue;const i=resolveVariant(e[t]);if(i)for(const t in i)if(t!==\"transition\"){u[t]=i[t];a[t]=getOptions((o=(n=i.transition)!==null&&n!==void 0?n:e.transition)!==null&&o!==void 0?o:{},t)}}const c=new Set([...Object.keys(u),...Object.keys(s)]);const l=[];c.forEach((e=>{var n;u[e]===void 0&&(u[e]=d[e]);if(hasChanged(s[e],u[e])){(n=d[e])!==null&&n!==void 0?n:d[e]=I.get(i,e);l.push(animateStyle(i,e,u[e],a[e],t))}}));yield;const f=l.map((e=>e())).filter(Boolean);if(!f.length)return;const g=u;i.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(f.map((e=>e.finished))).then((()=>{i.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(h)}const setGesture=(e,t)=>()=>{r[e]=t;scheduleAnimation(g)};const updateGestureSubscriptions=()=>{for(const t in ue){const n=ue[t].isActive(e);const o=a[t];if(n&&!o)a[t]=ue[t].subscribe(i,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!n&&o){o();delete a[t]}}};const g={update:t=>{if(i){e=t;updateGestureSubscriptions();scheduleAnimation(g)}},setActive:(e,t)=>{if(i){r[e]=t;scheduleAnimation(g)}},animateUpdates:animateUpdates,getDepth:()=>s,getTarget:()=>u,getOptions:()=>e,getContext:()=>c,mount:e=>{n(Boolean(e),\"Animation state must be mounted with valid Element\");i=e;ge.set(i,g);updateGestureSubscriptions();return()=>{ge.delete(i);unscheduleAnimation(g);for(const e in a)a[e]()}},isMounted:()=>Boolean(i)};return g}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){M[o]&&(o=M[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=k.get(o);r&&(s=g(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{ee as ScrollOffset,F as animate,animateStyle,createAnimate,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,ge as mountedStates,resize,scroll,G as spring,stagger,I as style,timeline,withControls};\n//# sourceMappingURL=index.es.js.map\n", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/pO5iimRdaZfHsrZcIuo7/4aV1gL9wh6MH1VNLNlZr/p7_wfzq6C.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9AJ63vHZtFnAzL3oj2Lk/wAOhiATgvmVs9aOC3w5r/q4Gif4z0F.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lSF5dDpIRF2Nu8V9KwPz/43IL4txMa3TST6a5DnyS/qS1dllQox.js\";import ButtonNeutral from\"https://framerusercontent.com/modules/ClOMJ236W7wuMEHZTpeu/tFHVyRvI6Di7ngisEcjk/gp4T5SR2P.js\";const ButtonNeutralFonts=getFonts(ButtonNeutral);const serializationHash=\"framer-pKx69\";const variantClassNames={l7uZkXsye:\"framer-v-11mi576\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const 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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({detailedCaseStudy,height,id,speakerDesignation,speakerImage,speakerName,testimonialText,width,...props})=>{return{...props,ehf4SNUlW:detailedCaseStudy??props.ehf4SNUlW,fC5HkHvvu:testimonialText??props.fC5HkHvvu??\"Clueso has helped us move to high-quality video production across our team. \",LB3HHeD7q:speakerImage??props.LB3HHeD7q??{alt:\"\",pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/c6dZACpuNLC5xAjneQHXJC9IqsI.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/c6dZACpuNLC5xAjneQHXJC9IqsI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/c6dZACpuNLC5xAjneQHXJC9IqsI.jpeg 800w\"},qrXd0p74k:speakerDesignation??props.qrXd0p74k??\"VP - Scaled Customer Experience\",uC7gZSGOd:speakerName??props.uC7gZSGOd??\"Adam Avramescu\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,uC7gZSGOd,qrXd0p74k,fC5HkHvvu,ehf4SNUlW,LB3HHeD7q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"l7uZkXsye\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-11mi576\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"l7uZkXsye\",ref:refBinding,style:{backgroundColor:\"var(--token-ebcadd35-ed3c-44f0-8881-a3e78debf0bd, rgb(255, 255, 255))\",...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r4owqj\",layoutDependency:layoutDependency,layoutId:\"vDBgM2pT7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wzo1lq\",\"data-styles-preset\":\"q4Gif4z0F\",children:\"Clueso has helped us move to high-quality video production across our team. \"})}),className:\"framer-1pyzgf4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vxSdzQcvj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fC5HkHvvu,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u81hxl\",layoutDependency:layoutDependency,layoutId:\"xS9tViLOh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-115s4mn\",\"data-framer-name\":\"Blog Contributor\",layoutDependency:layoutDependency,layoutId:\"ZcR_DUJsk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+(0+101.5+((componentViewport?.height||224)-48-219.5)/1*1)+0+0),sizes:\"40px\",...toResponsiveImage(LB3HHeD7q)},className:\"framer-pqem3p\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Kw3yaZL_Q\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qjcdaa\",\"data-framer-name\":\"Contributor metadata\",layoutDependency:layoutDependency,layoutId:\"Uur1coOay\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdmbif\",\"data-styles-preset\":\"qS1dllQox\",children:\"Adam Avramescu\"})}),className:\"framer-1md32q7\",\"data-framer-name\":\"Declan Murray\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sYcn6thij\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:uC7gZSGOd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xhq9xj\",\"data-styles-preset\":\"p7_wfzq6C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4990d5a2-5156-4b1d-b305-e4263be2af68, rgb(163, 163, 163)))\"},children:\"VP - Scaled Customer Experience\"})}),className:\"framer-1yarwiv\",\"data-framer-name\":\"Video Producer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Jo8pZ0iMS\",style:{\"--extracted-r6o4lv\":\"var(--token-4990d5a2-5156-4b1d-b305-e4263be2af68, rgb(163, 163, 163))\",\"--framer-paragraph-spacing\":\"0px\"},text:qrXd0p74k,verticalAlignment:\"top\",withExternalLayout:true})]})]}),ehf4SNUlW&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+24+(0+101.5+((componentViewport?.height||224)-48-219.5)/1*1)+43,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-znmz3p-container\",layoutDependency:layoutDependency,layoutId:\"siYwS0GMB-container\",nodeId:\"siYwS0GMB\",rendersWithMotion:true,scopeId:\"Y5tHMvYDM\",children:/*#__PURE__*/_jsx(ButtonNeutral,{aTiFh5HxZ:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M8.00005 8H5.01053C3.90671 8 3.01158 8.89427 3.01053 9.99809L3.00195 18.9981C3.0009 20.1034 3.89664 21 5.00195 21H14C15.1046 21 16 20.1046 16 19V16M19 16H10C8.89548 16 8.00005 15.1046 8.00005 14V5C8.00005 3.89543 8.89548 3 10 3H19C20.1046 3 21 3.89543 21 5V14C21 15.1046 20.1046 16 19 16Z\" stroke=\"#171717\" stroke-width=\"1.5\" stroke-linecap=\"round\"/> </svg>',FD4kYvZkK:\"Read Detailed Case Study\",height:\"100%\",id:\"siYwS0GMB\",klB0OIgue:false,layoutId:\"siYwS0GMB\",nPmuLXNkI:false,variant:\"Td3Ebq7xF\",width:\"100%\",YBQ5pfZkl:0,YC57X5Dkp:true})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pKx69.framer-84ofuj, .framer-pKx69 .framer-84ofuj { display: block; }\",\".framer-pKx69.framer-11mi576 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 224px; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 445px; }\",\".framer-pKx69 .framer-1r4owqj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pKx69 .framer-1pyzgf4, .framer-pKx69 .framer-1yarwiv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pKx69 .framer-1u81hxl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pKx69 .framer-115s4mn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 4px 0px 4px; position: relative; width: 1px; }\",\".framer-pKx69 .framer-pqem3p { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pKx69 .framer-qjcdaa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-pKx69 .framer-1md32q7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pKx69 .framer-znmz3p-container { flex: none; height: auto; position: relative; width: auto; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 224\n * @framerIntrinsicWidth 445\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"uC7gZSGOd\":\"speakerName\",\"qrXd0p74k\":\"speakerDesignation\",\"fC5HkHvvu\":\"testimonialText\",\"ehf4SNUlW\":\"detailedCaseStudy\",\"LB3HHeD7q\":\"speakerImage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerY5tHMvYDM=withCSS(Component,css,\"framer-pKx69\");export default FramerY5tHMvYDM;FramerY5tHMvYDM.displayName=\"Hero Testimonial\";FramerY5tHMvYDM.defaultProps={height:224,width:445};addPropertyControls(FramerY5tHMvYDM,{uC7gZSGOd:{defaultValue:\"Adam Avramescu\",displayTextArea:false,title:\"Speaker Name\",type:ControlType.String},qrXd0p74k:{defaultValue:\"VP - Scaled Customer Experience\",displayTextArea:false,title:\"Speaker Designation\",type:ControlType.String},fC5HkHvvu:{defaultValue:\"Clueso has helped us move to high-quality video production across our team. \",displayTextArea:false,title:\"Testimonial Text\",type:ControlType.String},ehf4SNUlW:{defaultValue:false,title:\"Detailed Case Study\",type:ControlType.Boolean},LB3HHeD7q:{__defaultAssetReference:\"data:framer/asset-reference,c6dZACpuNLC5xAjneQHXJC9IqsI.jpeg?originalFilename=Adam.jpeg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,c6dZACpuNLC5xAjneQHXJC9IqsI.jpeg?originalFilename=Adam.jpeg&preferredSize=auto\"},title:\"Speaker Image\",type:ControlType.ResponsiveImage}});addFonts(FramerY5tHMvYDM,[{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\"}]},...ButtonNeutralFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerY5tHMvYDM\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"445\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"224\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"uC7gZSGOd\\\":\\\"speakerName\\\",\\\"qrXd0p74k\\\":\\\"speakerDesignation\\\",\\\"fC5HkHvvu\\\":\\\"testimonialText\\\",\\\"ehf4SNUlW\\\":\\\"detailedCaseStudy\\\",\\\"LB3HHeD7q\\\":\\\"speakerImage\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HeroTestimonial from\"https://framerusercontent.com/modules/0EDPVQJ0gO8CCNL1JrqB/f6xTRxM55vOWBF6yIoF9/Y5tHMvYDM.js\";const ImageWithFX=withFX(Image);const HeroTestimonialFonts=getFonts(HeroTestimonial);const enabledGestures={jPeJeDIH7:{hover:true}};const cycleOrder=[\"jPeJeDIH7\",\"C7VNwy2L4\",\"ay5GF2cV2\"];const serializationHash=\"framer-wGe6g\";const variantClassNames={ay5GF2cV2:\"framer-v-1sjignh\",C7VNwy2L4:\"framer-v-1fd2obv\",jPeJeDIH7:\"framer-v-b29jkh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:32,delay:0,mass:1,stiffness:300,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 transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"No testimonial phone\":\"ay5GF2cV2\",\"No testimonial\":\"C7VNwy2L4\",Testimonial:\"jPeJeDIH7\"};const getProps=({contributorDesignation,contributorName,detailedCaseStudy,height,id,mainLogoImage,speakerImage,testimonialText,width,...props})=>{return{...props,akkbpFyMf:detailedCaseStudy??props.akkbpFyMf,diIeAnYFW:contributorDesignation??props.diIeAnYFW??\"Video Producer\",EmmF_zmAF:contributorName??props.EmmF_zmAF??\"Declan Murray\",OX_a5ywYY:speakerImage??props.OX_a5ywYY??{pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/c6dZACpuNLC5xAjneQHXJC9IqsI.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/c6dZACpuNLC5xAjneQHXJC9IqsI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/c6dZACpuNLC5xAjneQHXJC9IqsI.jpeg 800w\"},Rb_aqcCYI:mainLogoImage??props.Rb_aqcCYI??{pixelHeight:128,pixelWidth:671,src:\"https://framerusercontent.com/images/MRgeW1z2QkyGgRbrZ720tsw6KGE.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MRgeW1z2QkyGgRbrZ720tsw6KGE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/MRgeW1z2QkyGgRbrZ720tsw6KGE.svg 671w\"},tOxnyOZO4:testimonialText??props.tOxnyOZO4??\"Clueso has helped us move to high-quality video production across our team. \",variant:humanReadableVariantMap[props.variant]??props.variant??\"jPeJeDIH7\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Rb_aqcCYI,EmmF_zmAF,diIeAnYFW,akkbpFyMf,tOxnyOZO4,OX_a5ywYY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jPeJeDIH7\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-b29jkh\",className,classNames),\"data-framer-name\":\"Testimonial\",layoutDependency:layoutDependency,layoutId:\"jPeJeDIH7\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({\"jPeJeDIH7-hover\":{\"data-framer-name\":undefined},ay5GF2cV2:{\"data-framer-name\":\"No testimonial phone\"},C7VNwy2L4:{\"data-framer-name\":\"No testimonial\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||224)*.5000000000000002-36)),sizes:\"172px\",...toResponsiveImage(Rb_aqcCYI),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1g8v4qx\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"QJvb_ABXp\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},transformTemplate:transformTemplate1,...addPropertyOverrides({ay5GF2cV2:{__framer__loopEffectEnabled:undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||224)*.5000000000000002-28)),sizes:\"133.7778px\",...toResponsiveImage(Rb_aqcCYI),...{positionX:\"center\",positionY:\"center\"}}},C7VNwy2L4:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+(componentViewport?.height||224)-103.5,...addPropertyOverrides({\"jPeJeDIH7-hover\":{y:(componentViewport?.y||0)+(componentViewport?.height||224)-224}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-47qb2o-container\",layoutDependency:layoutDependency,layoutId:\"TqAPqJa3l-container\",nodeId:\"TqAPqJa3l\",rendersWithMotion:true,scopeId:\"E7ud2_VRx\",style:{opacity:0},variants:{\"jPeJeDIH7-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(HeroTestimonial,{ehf4SNUlW:akkbpFyMf,fC5HkHvvu:tOxnyOZO4,height:\"100%\",id:\"TqAPqJa3l\",layoutId:\"TqAPqJa3l\",LB3HHeD7q:toResponsiveImage(OX_a5ywYY),qrXd0p74k:diIeAnYFW,style:{width:\"100%\"},uC7gZSGOd:EmmF_zmAF,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wGe6g.framer-1cpwkol, .framer-wGe6g .framer-1cpwkol { display: block; }\",\".framer-wGe6g.framer-b29jkh { cursor: pointer; height: 224px; overflow: hidden; position: relative; width: 295px; }\",\".framer-wGe6g .framer-1g8v4qx { aspect-ratio: 2.388888888888889 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 172px; }\",\".framer-wGe6g .framer-47qb2o-container { bottom: -120px; flex: none; height: auto; left: 0px; position: absolute; width: 100%; }\",\".framer-wGe6g.framer-v-1fd2obv.framer-b29jkh, .framer-wGe6g.framer-v-1sjignh.framer-b29jkh { cursor: unset; }\",\".framer-wGe6g.framer-v-1sjignh .framer-1g8v4qx { height: var(--framer-aspect-ratio-supported, 56px); width: 134px; }\",\".framer-wGe6g.framer-v-b29jkh.hover .framer-47qb2o-container { bottom: 0px; left: 0px; right: 0px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 224\n * @framerIntrinsicWidth 295\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"C7VNwy2L4\":{\"layout\":[\"fixed\",\"fixed\"]},\"ay5GF2cV2\":{\"layout\":[\"fixed\",\"fixed\"]},\"zLzf4BBWE\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Rb_aqcCYI\":\"mainLogoImage\",\"EmmF_zmAF\":\"contributorName\",\"diIeAnYFW\":\"contributorDesignation\",\"akkbpFyMf\":\"detailedCaseStudy\",\"tOxnyOZO4\":\"testimonialText\",\"OX_a5ywYY\":\"speakerImage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerE7ud2_VRx=withCSS(Component,css,\"framer-wGe6g\");export default FramerE7ud2_VRx;FramerE7ud2_VRx.displayName=\"Hero Logos\";FramerE7ud2_VRx.defaultProps={height:224,width:295};addPropertyControls(FramerE7ud2_VRx,{variant:{options:[\"jPeJeDIH7\",\"C7VNwy2L4\",\"ay5GF2cV2\"],optionTitles:[\"Testimonial\",\"No testimonial\",\"No testimonial phone\"],title:\"Variant\",type:ControlType.Enum},Rb_aqcCYI:{__defaultAssetReference:\"data:framer/asset-reference,MRgeW1z2QkyGgRbrZ720tsw6KGE.svg?originalFilename=Clueso+Logo+Gradient.svg&preferredSize=auto\",title:\"Main Logo Image\",type:ControlType.ResponsiveImage},EmmF_zmAF:{defaultValue:\"Declan Murray\",displayTextArea:false,title:\"Contributor Name\",type:ControlType.String},diIeAnYFW:{defaultValue:\"Video Producer\",displayTextArea:false,title:\"Contributor Designation\",type:ControlType.String},akkbpFyMf:{defaultValue:false,title:\"Detailed Case Study\",type:ControlType.Boolean},tOxnyOZO4:{defaultValue:\"Clueso has helped us move to high-quality video production across our team. \",displayTextArea:false,title:\"Testimonial Text\",type:ControlType.String},OX_a5ywYY:{__defaultAssetReference:\"data:framer/asset-reference,c6dZACpuNLC5xAjneQHXJC9IqsI.jpeg?originalFilename=Adam.jpeg&preferredSize=auto\",title:\"Speaker Image\",type:ControlType.ResponsiveImage}});addFonts(FramerE7ud2_VRx,[{explicitInter:true,fonts:[]},...HeroTestimonialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerE7ud2_VRx\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"295\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"224\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"C7VNwy2L4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ay5GF2cV2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zLzf4BBWE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Rb_aqcCYI\\\":\\\"mainLogoImage\\\",\\\"EmmF_zmAF\\\":\\\"contributorName\\\",\\\"diIeAnYFW\\\":\\\"contributorDesignation\\\",\\\"akkbpFyMf\\\":\\\"detailedCaseStudy\\\",\\\"tOxnyOZO4\\\":\\\"testimonialText\\\",\\\"OX_a5ywYY\\\":\\\"speakerImage\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/nLO7XyEkgCJ9miHuNk07/d4N5iKH2sTSUJaFy679x/kA5wHrjm7.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lSF5dDpIRF2Nu8V9KwPz/43IL4txMa3TST6a5DnyS/qS1dllQox.js\";import HeroLogos from\"https://framerusercontent.com/modules/KgwrgnqWeOtnw1E0qaRp/ET0eyC4DCQkkBtv7vhA5/E7ud2_VRx.js\";const HeroLogosFonts=getFonts(HeroLogos);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"idHDk_3fa\",\"PWCYwrUn0\",\"kNurqd21z\",\"GdnE2mgpa\"];const serializationHash=\"framer-Ap5dz\";const variantClassNames={GdnE2mgpa:\"framer-v-nd0xss\",idHDk_3fa:\"framer-v-sjklrm\",kNurqd21z:\"framer-v-9qftr4\",PWCYwrUn0:\"framer-v-1qrgp4p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Grid Desktop\":\"idHDk_3fa\",\"Grid Mobile\":\"PWCYwrUn0\",\"Ticker Desktop\":\"kNurqd21z\",\"Ticker Mobile\":\"GdnE2mgpa\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"idHDk_3fa\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"idHDk_3fa\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"kNurqd21z\")return false;return true;};const isDisplayed1=()=>{if([\"kNurqd21z\",\"GdnE2mgpa\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"PWCYwrUn0\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"kNurqd21z\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"GdnE2mgpa\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-sjklrm\",className,classNames),\"data-framer-name\":\"Grid Desktop\",layoutDependency:layoutDependency,layoutId:\"idHDk_3fa\",ref:refBinding,style:{backgroundColor:\"var(--token-ebcadd35-ed3c-44f0-8881-a3e78debf0bd, rgb(255, 255, 255))\",...style},...addPropertyOverrides({GdnE2mgpa:{\"data-framer-name\":\"Ticker Mobile\"},kNurqd21z:{\"data-framer-name\":\"Ticker Desktop\"},PWCYwrUn0:{\"data-framer-name\":\"Grid Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14sbdcg\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"qHiukFYDG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yo8i3h\",\"data-framer-name\":\"Frame 1430104249\",layoutDependency:layoutDependency,layoutId:\"OS4J4x7sB\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bptil1\",layoutDependency:layoutDependency,layoutId:\"olvr3Kp9E\",style:{backgroundColor:\"var(--token-eb2a3eb5-664e-456c-bead-c02945139bed, rgb(235, 235, 235))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j60x1s\",\"data-framer-name\":\"Client Logos\",layoutDependency:layoutDependency,layoutId:\"GG1Y3NDON\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdmbif\",\"data-styles-preset\":\"qS1dllQox\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d89bc9cf-16f5-4d81-83ab-6f4bf19f59f8, rgb(92, 92, 92)))\"},children:\"Backed by \"})}),className:\"framer-1p16pnv\",\"data-framer-name\":\"Backed by\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KPewkaD99\",style:{\"--extracted-r6o4lv\":\"var(--token-d89bc9cf-16f5-4d81-83ab-6f4bf19f59f8, rgb(92, 92, 92))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GdnE2mgpa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nc5o7w\",\"data-styles-preset\":\"kA5wHrjm7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d89bc9cf-16f5-4d81-83ab-6f4bf19f59f8, rgb(92, 92, 92)))\"},children:\"Backed by \"})})},PWCYwrUn0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nc5o7w\",\"data-styles-preset\":\"kA5wHrjm7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d89bc9cf-16f5-4d81-83ab-6f4bf19f59f8, rgb(92, 92, 92)))\"},children:\"Backed by \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+0+0+-3),pixelHeight:320,pixelWidth:1604,positionX:\"center\",positionY:\"center\",sizes:\"110px\",src:\"https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg\",srcSet:\"https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg 1604w\"},className:\"framer-vliwkv\",\"data-framer-name\":\"YC Logo\",layoutDependency:layoutDependency,layoutId:\"XbSrXDUe6\",...addPropertyOverrides({GdnE2mgpa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||100.5)-0-94)/2)+0+0+0+-.5),pixelHeight:320,pixelWidth:1604,positionX:\"center\",positionY:\"center\",sizes:\"89px\",src:\"https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg\",srcSet:\"https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg 1604w\"}},kNurqd21z:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||62)-0-62)/2)+21+0+-3),pixelHeight:320,pixelWidth:1604,positionX:\"center\",positionY:\"center\",sizes:\"110px\",src:\"https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg\",srcSet:\"https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg 1604w\"}},PWCYwrUn0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||623.5)-32-585)/2)+0+0+0+-.5),pixelHeight:320,pixelWidth:1604,positionX:\"center\",positionY:\"center\",sizes:\"88px\",src:\"https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg\",srcSet:\"https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vC2dKeYHODYUsZxziwWWJsUNRBk.svg 1604w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1khcbo\",\"data-framer-name\":\"Client Logos\",layoutDependency:layoutDependency,layoutId:\"Y88PIYRll\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h2dcv8\",\"data-framer-name\":\"Frame 1430104135\",layoutDependency:layoutDependency,layoutId:\"HKkoYKdQe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdmbif\",\"data-styles-preset\":\"qS1dllQox\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d89bc9cf-16f5-4d81-83ab-6f4bf19f59f8, rgb(92, 92, 92)))\"},children:\"Rated 4.9\"})}),className:\"framer-1rhglvp\",\"data-framer-name\":\"Rated 4.8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p6hiFofHo\",style:{\"--extracted-r6o4lv\":\"var(--token-d89bc9cf-16f5-4d81-83ab-6f4bf19f59f8, rgb(92, 92, 92))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GdnE2mgpa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nc5o7w\",\"data-styles-preset\":\"kA5wHrjm7\",children:\"Rated 4.9\"})})},PWCYwrUn0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nc5o7w\",\"data-styles-preset\":\"kA5wHrjm7\",children:\"Rated 4.9\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-baoc89\",\"data-framer-name\":\"Frame 1430104134\",layoutDependency:layoutDependency,layoutId:\"u_Q1eP1xu\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c1nk7d\",\"data-framer-name\":\"5 Point Star\",layoutDependency:layoutDependency,layoutId:\"hCKgw01CM\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oarzdn\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"u1GUrssBN\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 7.398 2.141 C 7.644 1.62 8.356 1.62 8.602 2.141 L 10.013 5.132 C 10.111 5.339 10.3 5.482 10.519 5.516 L 13.675 5.995 C 14.225 6.079 14.445 6.786 14.047 7.192 L 11.763 9.52 C 11.605 9.681 11.532 9.913 11.57 10.141 L 12.109 13.428 C 12.203 14.001 11.628 14.439 11.135 14.168 L 8.312 12.616 C 8.117 12.508 7.883 12.508 7.688 12.616 L 4.865 14.168 C 4.372 14.439 3.797 14.001 3.891 13.428 L 4.43 10.141 C 4.468 9.913 4.395 9.681 4.237 9.52 L 1.953 7.192 C 1.555 6.786 1.775 6.079 2.325 5.995 L 5.481 5.516 C 5.7 5.482 5.889 5.339 5.987 5.132 Z\" fill=\"rgb(255,153,1)\" stroke-width=\"1.04\" stroke=\"rgb(255,153,1)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8634982907,withExternalLayout:true,...addPropertyOverrides({GdnE2mgpa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6.473 1.874 C 6.689 1.417 7.311 1.417 7.527 1.874 L 8.762 4.49 C 8.847 4.672 9.012 4.797 9.204 4.826 L 11.965 5.246 C 12.447 5.319 12.639 5.938 12.291 6.293 L 10.292 8.33 C 10.154 8.471 10.091 8.674 10.124 8.873 L 10.595 11.75 C 10.678 12.251 10.174 12.634 9.743 12.397 L 7.273 11.039 C 7.102 10.945 6.898 10.945 6.727 11.039 L 4.257 12.397 C 3.826 12.634 3.322 12.251 3.405 11.75 L 3.876 8.873 C 3.909 8.674 3.846 8.471 3.708 8.33 L 1.709 6.293 C 1.361 5.938 1.553 5.319 2.035 5.246 L 4.796 4.826 C 4.988 4.797 5.153 4.672 5.238 4.49 Z\" fill=\"rgb(255,153,1)\" stroke-width=\"0.91\" stroke=\"rgb(255,153,1)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11409656519},PWCYwrUn0:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6.473 1.874 C 6.689 1.417 7.311 1.417 7.527 1.874 L 8.762 4.49 C 8.847 4.672 9.012 4.797 9.204 4.826 L 11.965 5.246 C 12.447 5.319 12.639 5.938 12.291 6.293 L 10.292 8.33 C 10.154 8.471 10.091 8.674 10.124 8.873 L 10.595 11.75 C 10.678 12.251 10.174 12.634 9.743 12.397 L 7.273 11.039 C 7.102 10.945 6.898 10.945 6.727 11.039 L 4.257 12.397 C 3.826 12.634 3.322 12.251 3.405 11.75 L 3.876 8.873 C 3.909 8.674 3.846 8.471 3.708 8.33 L 1.709 6.293 C 1.361 5.938 1.553 5.319 2.035 5.246 L 4.796 4.826 C 4.988 4.797 5.153 4.672 5.238 4.49 Z\" fill=\"rgb(255,153,1)\" stroke-width=\"0.91\" stroke=\"rgb(255,153,1)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11409656519}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdmbif\",\"data-styles-preset\":\"qS1dllQox\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d89bc9cf-16f5-4d81-83ab-6f4bf19f59f8, rgb(92, 92, 92)))\"},children:\"on\"})}),className:\"framer-864xx5\",\"data-framer-name\":\"on G2.com\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PKTuPlnIC\",style:{\"--extracted-r6o4lv\":\"var(--token-d89bc9cf-16f5-4d81-83ab-6f4bf19f59f8, rgb(92, 92, 92))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GdnE2mgpa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nc5o7w\",\"data-styles-preset\":\"kA5wHrjm7\",children:\"on\"})})},PWCYwrUn0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nc5o7w\",\"data-styles-preset\":\"kA5wHrjm7\",children:\"on\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r11zhx\",layoutDependency:layoutDependency,layoutId:\"CXDOpGtHA\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1fhqzix\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:34,layoutDependency:layoutDependency,layoutId:\"WIl8f4jsU\",svg:'<svg width=\"34\" height=\"34\" viewBox=\"0 0 34 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.8875 13.1092H21.0541C21.1097 12.6647 21.3875 12.387 21.943 12.1092L22.443 11.8314C23.3875 11.387 23.8875 10.8314 23.8875 9.94251C23.894 9.68837 23.8424 9.4361 23.7365 9.205C23.6305 8.9739 23.4732 8.77009 23.2764 8.60917C22.8121 8.31299 22.2715 8.15855 21.7208 8.16473C21.273 8.16198 20.8324 8.27692 20.443 8.49806C20.079 8.74144 19.775 9.06439 19.5541 9.44251L20.3875 10.2758C20.5043 10.002 20.6973 9.76747 20.9435 9.60006C21.1897 9.43265 21.4788 9.3394 21.7764 9.3314C22.3319 9.3314 22.6097 9.60917 22.6097 9.94251C22.6097 10.2758 22.443 10.5536 21.8875 10.8314L21.5541 10.9981C20.9281 11.273 20.3899 11.7151 19.9986 12.2758C19.69 12.8164 19.5362 13.4315 19.5541 14.0536V14.2758H23.8875V13.1092Z\" fill=\"#FF492C\"/>\\n<path d=\"M23.4999 15.6663H18.7777L16.4443 19.7218H21.1666L23.4999 23.7774L25.8332 19.7218L23.4999 15.6663Z\" fill=\"#FF492C\"/>\\n<path d=\"M16.833 22.4435C15.3891 22.4435 14.0042 21.8699 12.9832 20.8489C11.9622 19.8279 11.3886 18.443 11.3886 16.9991C11.3886 15.5551 11.9622 14.1703 12.9832 13.1493C14.0042 12.1282 15.3891 11.5546 16.833 11.5546L18.7219 7.66575C18.0987 7.55273 17.4664 7.49694 16.833 7.49908C14.3134 7.49908 11.8971 8.49997 10.1155 10.2816C8.3339 12.0632 7.33301 14.4795 7.33301 16.9991C7.33301 19.5186 8.3339 21.935 10.1155 23.7166C11.8971 25.4982 14.3134 26.4991 16.833 26.4991C18.8433 26.5079 20.8057 25.8861 22.4441 24.7213L20.3886 21.1102C19.4044 21.9713 18.1407 22.4452 16.833 22.4435Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wdmbif\",\"data-styles-preset\":\"qS1dllQox\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 73, 44))\"},children:\"G2.com\"})}),className:\"framer-jmg76y\",\"data-framer-name\":\"on G2.com\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g1ltqV_HH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 73, 44)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GdnE2mgpa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nc5o7w\",\"data-styles-preset\":\"kA5wHrjm7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 73, 44))\"},children:\"G2.com\"})})},PWCYwrUn0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nc5o7w\",\"data-styles-preset\":\"kA5wHrjm7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 73, 44))\"},children:\"G2.com\"})})}},baseVariant,gestureVariant)})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1blrye5\",layoutDependency:layoutDependency,layoutId:\"AAdo8cSz4\",style:{backgroundColor:\"var(--token-eb2a3eb5-664e-456c-bead-c02945139bed, rgb(235, 235, 235))\"}})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t4vkxb\",layoutDependency:layoutDependency,layoutId:\"WlmYMsUuk\",style:{backgroundColor:\"var(--token-eb2a3eb5-664e-456c-bead-c02945139bed, rgb(235, 235, 235))\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+0,...addPropertyOverrides({PWCYwrUn0:{height:132,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 1px) / 2, 120px)`,y:(componentViewport?.y||0)+(16+((componentViewport?.height||623.5)-32-585)/2)+0+54+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ugkoxn-container\",layoutDependency:layoutDependency,layoutId:\"eGA5P0oqq-container\",nodeId:\"eGA5P0oqq\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"Director of Product Management\",EmmF_zmAF:\"Sean O\u2019Donnell\",height:\"100%\",id:\"eGA5P0oqq\",layoutId:\"eGA5P0oqq\",OX_a5ywYY:addImageAlt({pixelHeight:646,pixelWidth:481,src:\"https://framerusercontent.com/images/ckyTrNByklvxz4YU4jjfqe1WpRA.png\",srcSet:\"https://framerusercontent.com/images/ckyTrNByklvxz4YU4jjfqe1WpRA.png 481w\"},\"\"),Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/RefCSwvoRZRsLIZDPw6pIJkGxeE.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"Clueso has empowered our product team to create high-quality videos and training content 20x faster.\",variant:\"jPeJeDIH7\",width:\"100%\",...addPropertyOverrides({PWCYwrUn0:{variant:\"ay5GF2cV2\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+0,...addPropertyOverrides({PWCYwrUn0:{height:132,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 1px) / 2, 120px)`,y:(componentViewport?.y||0)+(16+((componentViewport?.height||623.5)-32-585)/2)+0+54+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3tb4sf-container\",layoutDependency:layoutDependency,layoutId:\"u8YIHsBc9-container\",nodeId:\"u8YIHsBc9\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"Director of Learning & Development\",EmmF_zmAF:\"Daniel Wood\",height:\"100%\",id:\"u8YIHsBc9\",layoutId:\"u8YIHsBc9\",OX_a5ywYY:addImageAlt({pixelHeight:800,pixelWidth:533,src:\"https://framerusercontent.com/images/czArdLqlHAV0VYA9RgkxSERT2M.jpeg\",srcSet:\"https://framerusercontent.com/images/czArdLqlHAV0VYA9RgkxSERT2M.jpeg 533w\"},\"\"),Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/uIMZkkkJcLSgKzIW5yOwvMCS3h8.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"Clueso's AI helps us quickly deliver clear, targeted training content. It has been a game-changer for supporting our frontline and office teams.\",variant:\"jPeJeDIH7\",width:\"100%\",...addPropertyOverrides({PWCYwrUn0:{variant:\"ay5GF2cV2\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6w9krk-container\",layoutDependency:layoutDependency,layoutId:\"G7lyvnt6I-container\",nodeId:\"G7lyvnt6I\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"Video Producer\",EmmF_zmAF:\"Declan Murray\",height:\"100%\",id:\"G7lyvnt6I\",layoutId:\"G7lyvnt6I\",Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/rQQIU9uM43Iygg7iZaUlSZDxro.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"Clueso has helped us move to high-quality video production across our team. \",variant:\"C7VNwy2L4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+0,...addPropertyOverrides({PWCYwrUn0:{height:132,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 1px) / 2, 120px)`,y:(componentViewport?.y||0)+(16+((componentViewport?.height||623.5)-32-585)/2)+0+54+0+133}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vn3ipm-container\",layoutDependency:layoutDependency,layoutId:\"pV26oXz1H-container\",nodeId:\"pV26oXz1H\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"VP - Scaled Customer Experience\",EmmF_zmAF:\"Adam Avramescu\",height:\"100%\",id:\"pV26oXz1H\",layoutId:\"pV26oXz1H\",Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/hREg4z1o0bK9pf1gHSBAuCG5JM.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"Clueso transformed video creation\u2014freeing up our experts and enabling high-quality production across the team.\",variant:\"jPeJeDIH7\",width:\"100%\",...addPropertyOverrides({PWCYwrUn0:{variant:\"ay5GF2cV2\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+225,...addPropertyOverrides({PWCYwrUn0:{height:132,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 1px) / 2, 120px)`,y:(componentViewport?.y||0)+(16+((componentViewport?.height||623.5)-32-585)/2)+0+54+0+133}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-190ojk9-container\",layoutDependency:layoutDependency,layoutId:\"w5Jmp2vmU-container\",nodeId:\"w5Jmp2vmU\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"Video Producer\",EmmF_zmAF:\"Declan Murray\",height:\"100%\",id:\"w5Jmp2vmU\",layoutId:\"w5Jmp2vmU\",Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/PreiPcJSPrPqLpQQcQi2VDLsNto.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"Clueso has helped us move to high-quality video production across our team. \",variant:\"C7VNwy2L4\",width:\"100%\",...addPropertyOverrides({PWCYwrUn0:{variant:\"ay5GF2cV2\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+225,...addPropertyOverrides({PWCYwrUn0:{height:132,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 1px) / 2, 120px)`,y:(componentViewport?.y||0)+(16+((componentViewport?.height||623.5)-32-585)/2)+0+54+0+266}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ihxz26-container\",layoutDependency:layoutDependency,layoutId:\"cpifedAbV-container\",nodeId:\"cpifedAbV\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"VP of Customer Success\",EmmF_zmAF:\"Cyrus Dorosti\",height:\"100%\",id:\"cpifedAbV\",layoutId:\"cpifedAbV\",OX_a5ywYY:addImageAlt({pixelHeight:336,pixelWidth:336,src:\"https://framerusercontent.com/images/rIRcUvkCv1qvPVRs6aIlO2MZZw.jpeg\"},\"\"),Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/ynuGxxKUM2Lbi8W7idQsymxOxLo.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"With Clueso, we created and launched 8 training courses for Duda\u2019s new editor in just one quarter.\",variant:\"jPeJeDIH7\",width:\"100%\",...addPropertyOverrides({PWCYwrUn0:{variant:\"ay5GF2cV2\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+225,...addPropertyOverrides({PWCYwrUn0:{height:132,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 1px) / 2, 120px)`,y:(componentViewport?.y||0)+(16+((componentViewport?.height||623.5)-32-585)/2)+0+54+0+266}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-larjyx-container\",layoutDependency:layoutDependency,layoutId:\"USLMALctF-container\",nodeId:\"USLMALctF\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"Video Producer\",EmmF_zmAF:\"Declan Murray\",height:\"100%\",id:\"USLMALctF\",layoutId:\"USLMALctF\",Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/pIfeZhS6zoJzPS2iYgltKr66oc.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"Clueso has helped us move to high-quality video production across our team. \",variant:\"C7VNwy2L4\",width:\"100%\",...addPropertyOverrides({PWCYwrUn0:{variant:\"ay5GF2cV2\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+225,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ksg2rv-container\",layoutDependency:layoutDependency,layoutId:\"tJlbmztwa-container\",nodeId:\"tJlbmztwa\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"Video Producer\",EmmF_zmAF:\"Declan Murray\",height:\"100%\",id:\"tJlbmztwa\",layoutId:\"tJlbmztwa\",Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/WEJ9KG2rCZOyCwut6IcXkRbKQLw.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"Clueso has helped us move to high-quality video production across our team. \",variant:\"C7VNwy2L4\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+450,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17979qw-container\",layoutDependency:layoutDependency,layoutId:\"TC25XCZOC-container\",nodeId:\"TC25XCZOC\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"Director of Product Training and Enablement\",EmmF_zmAF:\"Hillary Deal\",height:\"100%\",id:\"TC25XCZOC\",layoutId:\"TC25XCZOC\",OX_a5ywYY:addImageAlt({pixelHeight:506,pixelWidth:506,src:\"https://framerusercontent.com/images/vnyOS5Z0xfulMjdjOMpgPqvJc.jpeg\"},\"\"),Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/fPxF23Q4MSswc6pn3weaxKo5eo.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"We got Clueso for customer training videos\u2014soon saw it scale beautifully for internal employee training & workflows too.\",variant:\"jPeJeDIH7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+450,...addPropertyOverrides({PWCYwrUn0:{height:132,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 1px) / 2, 120px)`,y:(componentViewport?.y||0)+(16+((componentViewport?.height||623.5)-32-585)/2)+0+54+0+399}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m074ps-container\",layoutDependency:layoutDependency,layoutId:\"ZQF2WBlVJ-container\",nodeId:\"ZQF2WBlVJ\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"Senior Product Manager\",EmmF_zmAF:\"Pushpak Teja\",height:\"100%\",id:\"ZQF2WBlVJ\",layoutId:\"ZQF2WBlVJ\",OX_a5ywYY:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/XIpDfSeKx3LfWDv6Xpf7ZwajxI.jpeg\"},\"\"),Rb_aqcCYI:addImageAlt({pixelHeight:132,pixelWidth:345,src:\"https://framerusercontent.com/images/rpClTIkj1irpyhp0BJphNABTOsY.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"Clueso is my go-to tool for creating fast and professional videos, both internal training and external product demos.\",variant:\"jPeJeDIH7\",width:\"100%\",...addPropertyOverrides({PWCYwrUn0:{variant:\"ay5GF2cV2\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+450,...addPropertyOverrides({PWCYwrUn0:{height:132,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 1px) / 2, 120px)`,y:(componentViewport?.y||0)+(16+((componentViewport?.height||623.5)-32-585)/2)+0+54+0+399}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15bxstj-container\",layoutDependency:layoutDependency,layoutId:\"Uy_qecXmC-container\",nodeId:\"Uy_qecXmC\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"Co-founder & CEO\",EmmF_zmAF:\"Krish Ramineni\",height:\"100%\",id:\"Uy_qecXmC\",layoutId:\"Uy_qecXmC\",OX_a5ywYY:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/YfzMTYOnaoLwMSbt8Ez8eAY1vg.png\"},\"\"),Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/YQlv1GP5rHPPLtTBB0FfWXAtCLs.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"We're now producing 30+ professional-grade product videos every month. What used to take hours can now be done in just 15 minutes with Clueso.\",variant:\"jPeJeDIH7\",width:\"100%\",...addPropertyOverrides({PWCYwrUn0:{variant:\"ay5GF2cV2\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 3px) / 4, 120px)`,y:(componentViewport?.y||0)+(24+((componentViewport?.height||790.5)-48-736)/2)+0+62+0+450,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-23b57q-container\",layoutDependency:layoutDependency,layoutId:\"C_1NzRfah-container\",nodeId:\"C_1NzRfah\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},children:/*#__PURE__*/_jsx(HeroLogos,{akkbpFyMf:false,diIeAnYFW:\"Video Producer\",EmmF_zmAF:\"Declan Murray\",height:\"100%\",id:\"C_1NzRfah\",layoutId:\"C_1NzRfah\",Rb_aqcCYI:addImageAlt({pixelHeight:144,pixelWidth:345,src:\"https://framerusercontent.com/images/nABqmriDXNt3hmXFXchJmWLLQc8.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},tOxnyOZO4:\"Clueso has helped us move to high-quality video production across our team. \",variant:\"C7VNwy2L4\",width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wm0xgz-container\",\"data-framer-name\":\"Ticker Desktop\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"e9nn_wW5Z-container\",name:\"Ticker Desktop\",nodeId:\"e9nn_wW5Z\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"e9nn_wW5Z\",layoutId:\"e9nn_wW5Z\",name:\"Ticker Desktop\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-60m6ku\",\"data-framer-name\":\"Phenom\",layoutDependency:layoutDependency,layoutId:\"wR4Zxwg5L\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:200,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/a7msPokx5ZJ5CH9JAw1vk6JW6nA.png\"},className:\"framer-73avsr\",\"data-framer-name\":\"Phenom_Logo_Black 1\",layoutDependency:layoutDependency,layoutId:\"vW_VvxH1c\",style:{opacity:.72}})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vkj609\",\"data-framer-name\":\"Smartsheet\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AC7kNLpVA\",opacity:.72,style:{opacity:.72},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 63\"><g transform=\"translate(4.326 20.125)\"><path d=\"M 0.034 22.75 L 0.034 0 L 141.313 0 L 141.313 22.75 Z\" fill=\"transparent\"></path><path d=\"M 31.269 10.107 C 30.992 9.765 30.645 9.491 30.263 9.251 C 29.847 9.011 29.361 8.908 28.806 8.908 C 28.25 8.908 27.799 9.011 27.383 9.251 C 26.966 9.491 26.793 9.799 26.793 10.244 C 26.793 10.587 26.897 10.895 27.14 11.101 C 27.383 11.306 27.626 11.512 27.973 11.615 C 28.285 11.752 28.632 11.855 28.979 11.923 C 29.326 11.992 29.638 12.06 29.916 12.095 C 30.402 12.197 30.888 12.369 31.304 12.54 C 31.755 12.711 32.102 12.917 32.415 13.191 C 32.727 13.465 32.97 13.773 33.144 14.185 C 33.317 14.561 33.421 15.041 33.421 15.589 C 33.421 16.274 33.282 16.823 32.97 17.302 C 32.692 17.816 32.311 18.227 31.859 18.502 C 31.408 18.81 30.888 19.015 30.298 19.153 C 29.708 19.29 29.118 19.358 28.528 19.358 C 27.521 19.358 26.654 19.221 25.89 18.913 C 25.127 18.604 24.468 18.056 23.843 17.234 L 25.578 15.829 C 25.96 16.206 26.376 16.514 26.827 16.823 C 27.279 17.131 27.834 17.268 28.528 17.268 C 28.806 17.268 29.118 17.234 29.396 17.165 C 29.708 17.097 29.951 17.028 30.194 16.891 C 30.437 16.754 30.61 16.617 30.749 16.411 C 30.888 16.206 30.957 16 30.957 15.726 C 30.957 15.384 30.853 15.11 30.645 14.904 C 30.437 14.698 30.159 14.527 29.881 14.39 C 29.569 14.253 29.257 14.15 28.944 14.082 C 28.597 14.013 28.32 13.945 28.077 13.876 C 27.591 13.773 27.105 13.636 26.689 13.465 C 26.237 13.328 25.856 13.122 25.509 12.848 C 25.162 12.608 24.884 12.266 24.676 11.889 C 24.468 11.512 24.363 11.032 24.363 10.45 C 24.363 9.833 24.502 9.285 24.745 8.84 C 25.023 8.36 25.37 7.983 25.786 7.675 C 26.237 7.366 26.723 7.161 27.279 6.989 C 27.834 6.852 28.389 6.75 28.944 6.75 C 29.777 6.75 30.541 6.887 31.304 7.195 C 32.068 7.503 32.658 8.017 33.109 8.703 Z\" fill=\"rgb(87, 87, 87)\"></path><path d=\"M 34.465 7.126 L 36.616 7.126 L 36.616 8.977 L 36.651 8.977 C 36.686 8.805 36.825 8.6 37.033 8.36 C 37.241 8.12 37.519 7.88 37.866 7.64 C 38.213 7.4 38.594 7.229 39.046 7.058 C 39.497 6.887 39.983 6.818 40.538 6.818 C 41.44 6.818 42.204 6.989 42.828 7.366 C 43.453 7.743 43.939 8.291 44.321 9.045 C 44.702 8.291 45.258 7.743 45.986 7.366 C 46.715 6.989 47.409 6.818 48.173 6.818 C 49.11 6.818 49.873 6.955 50.463 7.263 C 51.053 7.572 51.539 7.949 51.851 8.463 C 52.198 8.942 52.441 9.525 52.545 10.141 C 52.684 10.758 52.754 11.409 52.754 12.094 L 52.754 19.05 L 50.463 19.05 L 50.463 12.403 C 50.463 11.957 50.428 11.512 50.359 11.101 C 50.29 10.69 50.186 10.313 49.977 10.004 C 49.804 9.696 49.526 9.422 49.179 9.251 C 48.832 9.045 48.381 8.977 47.826 8.977 C 46.715 8.977 45.917 9.319 45.466 9.97 C 44.98 10.655 44.737 11.512 44.737 12.574 L 44.737 19.118 L 42.447 19.118 L 42.447 12.848 C 42.447 12.266 42.412 11.752 42.342 11.272 C 42.273 10.792 42.169 10.381 41.995 10.039 C 41.822 9.696 41.544 9.422 41.232 9.216 C 40.885 9.011 40.468 8.942 39.879 8.942 C 39.462 8.942 39.08 9.011 38.699 9.182 C 38.317 9.353 37.97 9.593 37.692 9.902 C 37.415 10.21 37.172 10.621 36.998 11.135 C 36.825 11.615 36.755 12.231 36.755 12.882 L 36.755 19.084 L 34.465 19.084 Z\" fill=\"rgb(87, 87, 87)\"></path><path d=\"M 54.487 8.565 C 55.146 7.983 55.875 7.538 56.742 7.229 C 57.61 6.921 58.443 6.784 59.31 6.784 C 60.213 6.784 60.942 6.887 61.601 7.126 C 62.226 7.332 62.781 7.64 63.163 8.017 C 63.579 8.394 63.857 8.805 64.065 9.285 C 64.273 9.765 64.342 10.279 64.342 10.793 L 64.342 16.891 C 64.342 17.302 64.342 17.713 64.377 18.056 C 64.377 18.399 64.412 18.741 64.447 19.05 L 62.399 19.05 C 62.364 18.433 62.33 17.85 62.33 17.234 L 62.295 17.234 C 61.774 18.022 61.184 18.57 60.49 18.878 C 59.796 19.187 58.998 19.358 58.061 19.358 C 57.506 19.358 56.951 19.289 56.465 19.118 C 55.979 18.947 55.493 18.741 55.111 18.433 C 54.73 18.125 54.417 17.748 54.209 17.302 C 54.001 16.857 53.862 16.343 53.862 15.761 C 53.862 14.972 54.035 14.356 54.383 13.808 C 54.73 13.294 55.215 12.848 55.805 12.54 C 56.395 12.197 57.124 11.992 57.922 11.82 C 58.721 11.683 59.588 11.615 60.525 11.615 L 62.226 11.615 L 62.226 11.101 C 62.226 10.793 62.156 10.484 62.052 10.176 C 61.948 9.867 61.74 9.593 61.532 9.353 C 61.289 9.114 61.011 8.908 60.629 8.771 C 60.282 8.634 59.831 8.565 59.345 8.565 C 58.894 8.565 58.512 8.6 58.2 8.702 C 57.853 8.771 57.575 8.908 57.298 9.011 C 57.02 9.148 56.777 9.285 56.569 9.456 C 56.361 9.628 56.118 9.799 55.944 9.936 Z M 60.976 13.328 C 60.421 13.328 59.866 13.362 59.31 13.431 C 58.755 13.499 58.235 13.602 57.749 13.773 C 57.263 13.945 56.881 14.184 56.604 14.493 C 56.291 14.801 56.152 15.178 56.152 15.658 C 56.152 16.343 56.395 16.857 56.846 17.131 C 57.298 17.439 57.957 17.576 58.755 17.576 C 59.38 17.576 59.935 17.474 60.352 17.268 C 60.803 17.062 61.15 16.788 61.427 16.446 C 61.705 16.103 61.879 15.726 62.017 15.315 C 62.121 14.904 62.191 14.493 62.191 14.082 L 62.191 13.328 Z\" fill=\"rgb(87, 87, 87)\"></path><path d=\"M 91.686 10.107 C 91.408 9.765 91.061 9.491 90.679 9.251 C 90.263 9.011 89.777 8.908 89.222 8.908 C 88.667 8.908 88.216 9.011 87.799 9.251 C 87.383 9.491 87.209 9.799 87.209 10.244 C 87.209 10.587 87.313 10.895 87.556 11.101 C 87.799 11.307 88.042 11.512 88.389 11.615 C 88.702 11.752 89.049 11.855 89.396 11.923 C 89.743 11.992 90.055 12.06 90.332 12.095 C 90.818 12.197 91.304 12.369 91.721 12.54 C 92.172 12.711 92.519 12.917 92.831 13.191 C 93.143 13.465 93.386 13.773 93.56 14.185 C 93.733 14.561 93.837 15.041 93.837 15.589 C 93.837 16.275 93.699 16.823 93.386 17.302 C 93.109 17.782 92.727 18.159 92.275 18.467 C 91.824 18.776 91.304 18.981 90.714 19.118 C 90.124 19.255 89.534 19.324 88.944 19.324 C 87.938 19.324 87.07 19.187 86.307 18.878 C 85.543 18.57 84.883 18.022 84.259 17.2 L 85.995 15.795 C 86.377 16.172 86.792 16.48 87.243 16.789 C 87.695 17.063 88.25 17.234 88.944 17.234 C 89.222 17.234 89.534 17.2 89.812 17.131 C 90.124 17.063 90.367 16.994 90.61 16.857 C 90.853 16.72 91.027 16.583 91.165 16.377 C 91.304 16.172 91.374 15.966 91.374 15.692 C 91.374 15.35 91.269 15.075 91.061 14.87 C 90.853 14.664 90.61 14.493 90.297 14.356 C 89.985 14.219 89.673 14.116 89.361 14.048 C 89.014 13.979 88.736 13.91 88.493 13.842 C 88.007 13.739 87.522 13.602 87.07 13.431 C 86.619 13.294 86.237 13.088 85.89 12.814 C 85.543 12.574 85.265 12.232 85.057 11.855 C 84.849 11.478 84.745 10.998 84.745 10.416 C 84.745 9.799 84.883 9.251 85.127 8.805 C 85.404 8.326 85.751 7.949 86.168 7.64 C 86.619 7.332 87.105 7.127 87.66 6.955 C 88.216 6.818 88.77 6.715 89.326 6.715 C 90.159 6.715 90.923 6.852 91.686 7.161 C 92.449 7.469 93.039 7.983 93.49 8.668 Z\" fill=\"rgb(87, 87, 87)\"></path><path d=\"M 94.95 0 L 97.241 0 L 97.241 8.942 L 97.276 8.942 C 97.553 8.291 98.074 7.778 98.768 7.401 C 99.496 6.989 100.295 6.818 101.232 6.818 C 101.822 6.818 102.377 6.921 102.897 7.092 C 103.418 7.264 103.904 7.538 104.286 7.915 C 104.702 8.291 105.015 8.771 105.257 9.354 C 105.501 9.936 105.604 10.621 105.604 11.409 L 105.604 19.118 L 103.314 19.118 L 103.314 11.992 C 103.314 11.444 103.245 10.964 103.071 10.553 C 102.932 10.142 102.724 9.833 102.447 9.593 C 102.203 9.354 101.891 9.182 101.579 9.079 C 101.232 8.977 100.885 8.908 100.538 8.908 C 100.052 8.908 99.601 8.977 99.219 9.148 C 98.802 9.285 98.456 9.525 98.143 9.867 C 97.831 10.21 97.588 10.621 97.415 11.101 C 97.241 11.615 97.171 12.197 97.171 12.883 L 97.171 19.05 L 94.881 19.05 Z\" fill=\"rgb(87, 87, 87)\"></path><path d=\"M 109.321 13.91 C 109.321 14.424 109.426 14.904 109.668 15.349 C 109.912 15.795 110.189 16.137 110.571 16.446 C 110.953 16.754 111.369 16.994 111.89 17.165 C 112.375 17.337 112.896 17.405 113.417 17.405 C 114.146 17.405 114.77 17.234 115.291 16.925 C 115.811 16.583 116.297 16.172 116.748 15.623 L 118.483 16.925 C 117.199 18.57 115.429 19.358 113.104 19.358 C 112.167 19.358 111.3 19.187 110.501 18.878 C 109.738 18.57 109.079 18.125 108.523 17.542 C 108.003 16.994 107.587 16.309 107.274 15.555 C 106.996 14.801 106.823 13.979 106.823 13.054 C 106.823 12.163 106.996 11.341 107.308 10.553 C 107.621 9.799 108.072 9.114 108.627 8.566 C 109.183 8.017 109.842 7.572 110.606 7.229 C 111.369 6.921 112.202 6.75 113.104 6.75 C 114.18 6.75 115.082 6.921 115.811 7.298 C 116.54 7.675 117.165 8.154 117.651 8.737 C 118.136 9.319 118.483 10.004 118.692 10.758 C 118.899 11.512 119.004 12.266 119.004 13.054 L 119.004 13.876 Z M 116.574 12.095 C 116.574 11.581 116.471 11.135 116.332 10.724 C 116.193 10.313 115.985 9.936 115.673 9.628 C 115.395 9.319 115.013 9.079 114.597 8.908 C 114.146 8.737 113.66 8.634 113.07 8.634 C 112.514 8.634 111.993 8.737 111.508 8.942 C 111.022 9.148 110.64 9.422 110.328 9.765 C 110.015 10.107 109.738 10.484 109.565 10.895 C 109.391 11.306 109.287 11.718 109.287 12.129 Z\" fill=\"rgb(87, 87, 87)\"></path><path d=\"M 122.749 13.91 C 122.749 14.424 122.853 14.904 123.096 15.349 C 123.338 15.795 123.617 16.137 123.998 16.446 C 124.38 16.754 124.797 16.994 125.317 17.165 C 125.803 17.337 126.324 17.405 126.843 17.405 C 127.572 17.405 128.197 17.234 128.718 16.925 C 129.238 16.583 129.724 16.172 130.176 15.623 L 131.91 16.925 C 130.627 18.57 128.856 19.358 126.531 19.358 C 125.595 19.358 124.727 19.187 123.929 18.878 C 123.165 18.57 122.506 18.125 121.951 17.542 C 121.43 16.994 121.013 16.309 120.701 15.555 C 120.424 14.801 120.25 13.979 120.25 13.054 C 120.25 12.163 120.424 11.341 120.736 10.553 C 121.048 9.799 121.499 9.114 122.055 8.566 C 122.61 8.017 123.27 7.572 124.033 7.229 C 124.797 6.921 125.629 6.75 126.531 6.75 C 127.607 6.75 128.51 6.921 129.238 7.298 C 129.967 7.675 130.592 8.154 131.077 8.737 C 131.563 9.319 131.91 10.004 132.119 10.758 C 132.327 11.512 132.431 12.266 132.431 13.054 L 132.431 13.876 Z M 130.002 12.095 C 130.002 11.581 129.897 11.135 129.759 10.724 C 129.62 10.313 129.412 9.936 129.099 9.628 C 128.822 9.319 128.44 9.079 128.023 8.908 C 127.572 8.737 127.087 8.634 126.497 8.634 C 125.942 8.634 125.421 8.737 124.935 8.942 C 124.483 9.148 124.068 9.422 123.755 9.765 C 123.443 10.107 123.165 10.484 122.991 10.895 C 122.818 11.306 122.714 11.718 122.714 12.129 Z\" fill=\"rgb(87, 87, 87)\"></path><path d=\"M 73.301 7.16 C 73.301 7.16 71.948 6.989 71.219 7.023 C 70.351 7.092 70.039 7.229 69.553 7.469 C 69.241 7.64 68.963 7.88 68.686 8.154 C 68.443 8.428 68.234 8.702 68.061 9.01 L 68.026 9.01 L 68.026 7.16 L 65.736 7.16 L 65.736 19.118 L 68.026 19.118 C 68.026 19.118 67.957 14.184 68.026 12.985 C 68.096 11.786 68.304 10.518 68.928 9.936 C 69.588 9.353 69.865 9.216 70.664 9.113 C 71.392 9.01 72.399 9.113 72.399 9.113 Z\" fill=\"rgb(87, 87, 87)\"></path><path d=\"M 81.757 17.166 C 81.48 17.2 81.202 17.234 80.925 17.234 C 80.473 17.234 80.161 17.166 79.918 16.994 C 79.675 16.823 79.502 16.617 79.398 16.378 C 79.293 16.104 79.224 15.829 79.189 15.487 C 79.189 15.144 79.155 14.836 79.155 14.493 L 79.155 9.08 L 82.451 9.08 L 82.451 7.127 L 79.155 7.127 L 79.155 3.769 L 76.864 3.769 L 76.864 7.127 L 74.539 7.127 L 73.671 9.08 L 76.864 9.08 L 76.864 15.315 C 76.864 15.795 76.899 16.275 76.934 16.755 C 76.968 17.234 77.107 17.68 77.35 18.056 C 77.593 18.433 77.94 18.776 78.426 19.016 C 78.912 19.256 79.606 19.393 80.473 19.393 C 80.716 19.393 81.063 19.358 81.48 19.29 C 81.931 19.221 82.278 19.119 82.556 18.982 L 82.556 16.926 C 82.313 17.029 82.07 17.131 81.757 17.166 Z\" fill=\"rgb(87, 87, 87)\"></path><path d=\"M 140.554 17.165 C 140.276 17.199 139.999 17.233 139.721 17.233 C 139.27 17.233 138.958 17.165 138.714 16.993 C 138.472 16.822 138.298 16.617 138.194 16.377 C 138.09 16.103 138.02 15.829 137.986 15.486 C 137.986 15.143 137.951 14.835 137.951 14.492 L 137.951 9.079 L 141.248 9.079 L 141.248 7.126 L 137.951 7.126 L 137.951 3.768 L 135.66 3.768 L 135.66 7.126 L 133.335 7.126 L 132.467 9.079 L 135.66 9.079 L 135.66 15.315 C 135.66 15.794 135.695 16.274 135.73 16.754 C 135.765 17.233 135.904 17.679 136.147 18.056 C 136.389 18.432 136.736 18.775 137.222 19.015 C 137.708 19.255 138.402 19.392 139.27 19.392 C 139.513 19.392 139.859 19.358 140.276 19.289 C 140.727 19.221 141.074 19.118 141.352 18.981 L 141.352 16.925 C 141.074 17.028 140.832 17.13 140.554 17.165 Z\" fill=\"rgb(87, 87, 87)\"></path><path d=\"M 2.95 11.512 C 2.95 11.512 3.783 10.382 4.859 10.347 C 6.559 10.313 7.912 13.294 8.121 13.739 C 9.995 9.628 13.083 6.133 15.582 3.803 L 0.208 3.803 C 0.208 5.242 0.208 19.632 0.208 20.832 C 0.208 21.757 0.069 22.442 0 22.716 C 0.694 22.613 3.262 22.168 5.9 21.243 C 10.585 19.598 12.389 17.816 12.424 17.816 L 12.528 17.714 L 12.597 17.851 C 12.597 17.851 13.187 19.118 13.777 19.804 C 14.437 20.558 14.784 20.626 14.992 20.592 C 15.27 20.523 15.443 20.078 15.513 19.393 C 15.582 18.707 15.651 17.166 15.651 15.281 C 15.651 11.889 15.651 7.401 15.651 5.14 C 11.105 10.621 7.774 18.844 7.774 18.844 C 7.774 18.844 5.587 11.478 2.95 11.512 Z\" fill=\"rgb(87, 87, 87)\"></path></g></svg>',svgContentId:11854871345,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1i3cj1n\",\"data-framer-name\":\"Personio\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"uOz1hl462\",opacity:.72,style:{opacity:.72},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 104 55\"><g transform=\"translate(4.622 18.265)\"><path d=\"M 0 18.471 L 0 0 L 93.985 0 L 93.985 18.471 Z\" fill=\"transparent\"></path><path d=\"M 0 0.97 L 0.374 0.97 C 2.502 0.97 4.63 0.967 6.758 0.971 C 7.677 0.973 8.566 1.127 9.409 1.516 C 10.653 2.091 11.499 3.02 11.902 4.327 C 12.323 5.693 12.324 7.062 11.734 8.38 C 10.982 10.062 9.593 10.954 7.837 11.261 C 7.014 11.405 6.159 11.38 5.318 11.408 C 4.69 11.429 4.06 11.412 3.389 11.412 L 3.389 17.793 L 0 17.793 Z M 3.411 8.36 C 4.6 8.36 5.77 8.39 6.936 8.347 C 7.553 8.325 8.123 8.071 8.543 7.591 C 9.158 6.889 9.263 6.08 8.91 5.233 C 8.547 4.364 7.825 3.961 6.92 3.914 C 6.136 3.873 5.346 3.904 4.559 3.903 C 4.181 3.903 3.802 3.903 3.411 3.903 Z\" fill=\"rgb(107, 107, 107)\"></path><path d=\"M 25.181 12.426 C 23.575 12.426 22.011 12.426 20.447 12.426 C 18.883 12.426 17.344 12.426 15.793 12.426 C 15.758 13.58 16.633 14.666 17.866 14.99 C 19.385 15.389 20.687 15.029 21.734 13.832 C 21.764 13.798 21.793 13.763 21.825 13.732 C 21.84 13.717 21.863 13.709 21.916 13.678 C 22.685 14.225 23.467 14.782 24.274 15.356 C 23.546 16.333 22.671 17.084 21.58 17.568 C 17.552 19.355 13.025 16.795 12.475 12.419 C 12.204 10.264 12.697 8.318 14.177 6.698 C 15.665 5.072 17.557 4.466 19.727 4.691 C 21.518 4.877 22.99 5.654 24.046 7.132 C 25.178 8.717 25.467 10.495 25.181 12.425 Z M 22.143 10.009 C 21.773 8.334 20.477 7.399 18.703 7.486 C 17.314 7.554 16.044 8.685 15.891 10.009 Z\" fill=\"rgb(107, 107, 107)\"></path><path d=\"M 87.16 18.12 C 83.221 18.118 80.398 15.29 80.401 11.349 C 80.404 7.516 83.33 4.644 87.227 4.649 C 91.096 4.654 93.991 7.59 93.985 11.503 C 93.98 15.292 91.061 18.123 87.16 18.12 Z M 87.149 15.14 C 89.223 15.146 90.783 13.569 90.801 11.449 C 90.82 9.284 89.269 7.635 87.203 7.626 C 85.104 7.616 83.56 9.2 83.54 11.379 C 83.522 13.525 85.065 15.134 87.15 15.14 Z\" fill=\"rgb(107, 107, 107)\"></path><path d=\"M 53.544 18.12 C 49.612 18.116 46.751 15.275 46.765 11.39 C 46.78 7.496 49.664 4.644 53.585 4.649 C 57.45 4.654 60.318 7.554 60.31 11.45 C 60.302 15.297 57.433 18.125 53.544 18.12 Z M 53.517 15.14 C 55.642 15.142 57.153 13.602 57.157 11.432 C 57.161 9.263 55.606 7.626 53.543 7.626 C 51.487 7.626 49.924 9.248 49.918 11.389 C 49.912 13.571 51.416 15.138 53.517 15.14 Z\" fill=\"rgb(107, 107, 107)\"></path><path d=\"M 72.832 17.845 L 69.693 17.845 L 69.693 17.4 C 69.693 14.663 69.693 11.926 69.693 9.189 C 69.693 8.01 69.423 7.741 68.243 7.741 C 67.489 7.741 66.734 7.738 65.98 7.741 C 65.136 7.745 64.788 8.088 64.787 8.928 C 64.785 11.756 64.786 14.583 64.786 17.41 L 64.786 17.837 L 61.633 17.837 C 61.633 17.701 61.633 17.581 61.633 17.46 C 61.633 14.498 61.631 11.535 61.634 8.573 C 61.637 6.413 63.253 4.799 65.413 4.796 C 66.607 4.794 67.8 4.795 68.994 4.796 C 71.244 4.797 72.832 6.389 72.832 8.645 C 72.832 11.574 72.832 14.502 72.832 17.431 Z\" fill=\"rgb(107, 107, 107)\"></path><path d=\"M 34.596 13.87 L 37.779 13.87 C 38.121 15.127 38.681 15.589 39.989 15.6 C 40.52 15.604 41.066 15.536 41.578 15.398 C 42.168 15.24 42.458 14.765 42.455 14.182 C 42.453 13.614 42.2 13.202 41.598 13.031 C 40.878 12.825 40.134 12.699 39.395 12.565 C 38.43 12.39 37.487 12.165 36.61 11.699 C 34.524 10.59 34.519 7.999 35.584 6.596 C 36.407 5.512 37.553 4.982 38.855 4.759 C 40.465 4.483 42.024 4.654 43.453 5.488 C 44.671 6.198 45.352 7.268 45.432 8.728 L 42.322 8.728 C 42.094 7.503 41.347 7.188 40.303 7.162 C 39.86 7.151 39.403 7.201 38.971 7.301 C 38.428 7.428 38.133 7.811 38.096 8.29 C 38.049 8.904 38.233 9.343 38.789 9.543 C 39.384 9.758 40.02 9.877 40.647 9.985 C 41.765 10.178 42.889 10.335 43.906 10.892 C 45.288 11.649 45.754 12.913 45.56 14.363 C 45.307 16.259 44.095 17.327 42.352 17.822 C 40.368 18.385 38.428 18.25 36.631 17.149 C 35.509 16.461 34.826 15.449 34.598 14.143 C 34.585 14.067 34.596 13.987 34.596 13.87 Z\" fill=\"rgb(107, 107, 107)\"></path><path d=\"M 33.956 4.81 L 33.956 7.74 C 33.768 7.74 33.581 7.74 33.394 7.74 C 32.64 7.74 31.885 7.738 31.131 7.741 C 30.281 7.744 29.923 8.101 29.922 8.957 C 29.919 11.785 29.921 14.611 29.921 17.439 C 29.921 17.561 29.921 17.684 29.921 17.835 L 26.794 17.835 L 26.794 17.483 C 26.794 14.498 26.79 11.513 26.796 8.529 C 26.799 6.403 28.405 4.803 30.535 4.796 C 31.571 4.792 32.607 4.795 33.643 4.796 C 33.742 4.796 33.84 4.805 33.956 4.81 Z\" fill=\"rgb(107, 107, 107)\"></path><path d=\"M 78.503 17.845 L 75.298 17.845 L 75.298 6.489 L 78.503 6.489 Z\" fill=\"rgb(107, 107, 107)\"></path><path d=\"M 76.895 4.522 C 75.7 4.527 74.791 3.627 74.797 2.444 C 74.802 1.277 75.742 0.323 76.884 0.324 C 78.049 0.325 79.005 1.283 79.008 2.45 C 79.011 3.613 78.089 4.517 76.895 4.522 Z\" fill=\"rgb(107, 107, 107)\"></path></g></svg>',svgContentId:11575271530,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wlvb1m\",layoutDependency:layoutDependency,layoutId:\"PP2_unPKA\",style:{opacity:.72},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7tecgj\",\"data-framer-name\":\"UI Path\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:72,intrinsicWidth:117,layoutDependency:layoutDependency,layoutId:\"wzvVMeQ_0\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},svg:'<svg width=\"117\" height=\"72\" viewBox=\"0 0 117 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.66016 17.4453H43.7564V54.5416H6.66016V17.4453ZM10.5 50.7017H39.9169V21.285H10.5V50.7017ZM25.3321 27.0135H29.172V38.2539C29.172 43.3319 26.2922 46.3977 21.4306 46.3977C16.6618 46.3977 13.844 43.3939 13.844 38.2539V27.0135H17.6838V38.2539C17.6838 41.0717 18.8604 42.7747 21.5234 42.7747C24.0936 42.7747 25.3321 41.1645 25.3321 38.2539V27.0135ZM36.4795 27.0135C36.4795 28.376 35.4886 29.3049 34.1264 29.3049C32.7639 29.3049 31.773 28.376 31.773 27.0135C31.773 25.6202 32.7639 24.6603 34.1264 24.6603C35.4886 24.6603 36.4795 25.6202 36.4795 27.0135ZM32.2063 31.1319H36.0462V46.2118H32.2063V31.1319ZM61.8091 33.4543C61.8091 37.5726 59.0841 40.0188 54.9038 40.0188H51.4358V46.2118H47.596V27.0135H54.9038C59.1461 27.0135 61.8091 29.4907 61.8091 33.4543ZM57.9076 33.4543C57.9076 31.3487 56.6999 30.11 54.5013 30.11H51.4358V36.9533H54.5013C56.6999 36.9533 57.9076 35.7148 57.9076 33.4543ZM74.7214 31.1319H78.5613V46.2118H74.7214V44.5088C73.6997 45.7165 72.0896 46.3977 69.829 46.3977C65.7415 46.3977 62.862 43.1771 62.862 38.6875C62.862 34.2285 65.6798 30.9461 69.829 30.9461C72.0276 30.9461 73.6997 31.7203 74.7214 33.0208V31.1319ZM74.7214 38.6875C74.7214 36.0863 73.1733 34.2903 70.7271 34.2903C68.2808 34.2903 66.7635 35.9935 66.7635 38.6875C66.7635 41.1954 68.126 43.0223 70.7271 43.0223C73.0804 43.0223 74.7214 41.3193 74.7214 38.6875ZM87.9437 42.9295H89.461V46.2118H87.4481C83.7942 46.2118 82.2149 44.4779 82.2149 40.9169V34.3833H80.4191V31.1319H82.2149V27.0135H86.0547V31.1319H89.4299V34.3833H86.0547V40.9477C86.0547 42.2794 86.4572 42.9295 87.9437 42.9295ZM106.027 37.4486V46.2118H102.188V37.8822C102.188 35.5908 101.011 34.1045 98.7503 34.1045C96.49 34.1045 95.1275 35.6528 95.1275 38.2227V46.2118H91.288V26.0846H95.1275V32.6802C96.0873 31.5345 97.6046 30.9152 99.6795 30.9152C103.24 30.9152 106.027 33.4852 106.027 37.4486Z\" fill=\"#FA4616\"/>\\n<path d=\"M107.71 29.9815C106.227 29.9815 105.213 28.9475 105.213 27.5058C105.213 26.0166 106.262 25.0439 107.71 25.0439C109.179 25.0439 110.192 26.037 110.192 27.5058C110.192 28.968 109.172 29.9815 107.71 29.9815ZM107.71 25.4853C106.468 25.4853 105.682 26.265 105.682 27.5058C105.682 28.7473 106.51 29.5131 107.71 29.5131C108.958 29.5131 109.73 28.7056 109.73 27.5058C109.73 26.2716 108.944 25.4853 107.71 25.4853ZM108.275 27.8924L108.799 28.8715H108.178L107.682 27.9749H107.289V28.8715H106.731V26.0852H107.799C108.406 26.0852 108.854 26.444 108.854 27.0162C108.854 27.4436 108.627 27.7477 108.275 27.8924ZM107.289 27.527H107.73C108.055 27.527 108.275 27.3472 108.275 27.0162C108.275 26.7129 108.055 26.5339 107.73 26.5339H107.289V27.527Z\" fill=\"#FA4616\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13pguat\",\"data-framer-name\":\"Global Partners\",layoutDependency:layoutDependency,layoutId:\"xJ5XLri19\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:370,pixelWidth:1080,sizes:\"93px\",src:\"https://framerusercontent.com/images/0y2Zjz25J8ZTNrgq54S7YGSkwM.png\",srcSet:\"https://framerusercontent.com/images/0y2Zjz25J8ZTNrgq54S7YGSkwM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0y2Zjz25J8ZTNrgq54S7YGSkwM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0y2Zjz25J8ZTNrgq54S7YGSkwM.png 1080w\"},className:\"framer-19g13qj\",\"data-framer-name\":\"image 382\",layoutDependency:layoutDependency,layoutId:\"cvvpbKCAH\",style:{opacity:.72}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uzdcku\",layoutDependency:layoutDependency,layoutId:\"WplL6Zb3N\",style:{opacity:.72},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t5q6c9\",\"data-framer-name\":\"Duda\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:72,intrinsicWidth:91,layoutDependency:layoutDependency,layoutId:\"tCvc1q9DY\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},svg:'<svg width=\"91\" height=\"72\" viewBox=\"0 0 91 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M84.0225 17C86.4947 17 88.4999 18.9574 88.5 21.3711V50.6289C88.4999 53.0426 86.4947 55 84.0225 55H5.97754C3.50526 55 1.50014 53.0426 1.5 50.6289V21.3711C1.50014 18.9574 3.50526 17 5.97754 17H84.0225ZM72.291 31.3262C68.8676 31.3296 66.7762 32.869 65.7617 33.6338L67.1807 36.3477C68.8253 35.2679 70.3815 34.6544 72.1943 34.6543C75.8222 34.6543 75.8584 37.3848 75.8584 37.3848C75.8584 37.3848 73.8602 37.2797 72.2783 37.3096C70.1577 37.3544 65.5762 38.045 65.5762 42.3965C65.5762 45.3376 67.9277 47.1678 71.1543 47.168C74.444 47.168 75.7188 45.9959 76.0264 45.4717L76.042 46.8789H79.9922V37.9238C79.9922 34.9676 77.9477 31.3262 72.291 31.3262ZM22.666 32.9121C21.3305 31.955 19.8591 31.3896 18.0801 31.3896C13.6332 31.3897 10.0156 34.9212 10.0156 39.2627C10.0156 43.6042 13.6332 47.1357 18.0801 47.1357C19.859 47.1357 21.3305 46.5687 22.666 45.6133V46.8262H26.7256V24.8281H22.666V32.9121ZM59.0117 32.9121C57.6762 31.955 56.2048 31.3896 54.4258 31.3896C49.9789 31.3897 46.3613 34.9212 46.3613 39.2627C46.3613 43.6042 49.9789 47.1357 54.4258 47.1357C56.2048 47.1357 57.6762 46.5687 59.0117 45.6133V46.8262H63.0713V24.8281H59.0117V32.9121ZM39.8682 32.3281C39.8682 32.3281 39.8682 37.9417 39.8682 39.8945C39.8682 41.5983 38.4541 42.9785 36.709 42.9785H36.5352C34.7903 42.9783 33.377 41.5981 33.377 39.8945L33.373 32.3301H29.3223V39.7969C29.3223 41.9485 29.8324 43.6096 30.835 44.7344C31.8444 45.8656 33.7921 46.793 35.6406 46.793C38.3364 46.7928 39.5835 45.5822 40.0137 44.9766L40.0186 46.8359H43.9473V32.3281H39.8682ZM72.2646 40.2959C73.8993 40.2662 75.8377 40.2955 75.8613 40.2959C75.8596 43.0265 73.5233 44.168 71.6797 44.168C70.7571 44.168 69.2209 43.9425 69.2207 42.2324C69.2207 40.9865 70.7421 40.3258 72.2646 40.2959ZM18.4424 35.0918C20.7973 35.092 22.7139 36.9635 22.7139 39.2627C22.7122 41.5619 20.7973 43.4334 18.4424 43.4336C16.0873 43.4336 14.1699 41.562 14.1699 39.2627C14.1699 36.9634 16.0873 35.0918 18.4424 35.0918ZM54.7881 35.0918C57.1431 35.092 59.0596 36.9635 59.0596 39.2627C59.0596 41.5619 57.143 43.4334 54.7881 43.4336C52.433 43.4336 50.5156 41.562 50.5156 39.2627C50.5156 36.9634 52.433 35.0918 54.7881 35.0918Z\" fill=\"#F36239\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12yawp2\",\"data-framer-name\":\"Darwinbox\",layoutDependency:layoutDependency,layoutId:\"zk935Biku\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:232,pixelWidth:696,positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/qK98o8vboRaUbooOXqgdO2ah4.png\",srcSet:\"https://framerusercontent.com/images/qK98o8vboRaUbooOXqgdO2ah4.png?scale-down-to=512 512w,https://framerusercontent.com/images/qK98o8vboRaUbooOXqgdO2ah4.png 696w\"},className:\"framer-pu9dl1\",\"data-framer-name\":\"Darwinbox Horizontal Logo_Colour 1\",layoutDependency:layoutDependency,layoutId:\"Jiw9Dyoi1\",style:{opacity:.72}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s34hie\",\"data-framer-name\":\"Movable ink\",layoutDependency:layoutDependency,layoutId:\"GKXxjWrO7\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:65,pixelWidth:300,src:\"https://framerusercontent.com/images/irCtrPZx3920FCxQDgtzxGLaKjI.png\"},className:\"framer-ervthg\",\"data-framer-name\":\"image 383\",layoutDependency:layoutDependency,layoutId:\"iuPcgGGum\",style:{opacity:.72}})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3hqjsv\",\"data-framer-name\":\"Keyfactor\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GffG9AqQq\",opacity:.72,style:{opacity:.72},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 124 56\"><g transform=\"translate(5.069 20.094)\"><path d=\"M 0 15.812 L 0 0 L 113.862 0 L 113.862 15.812 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0.001)\"><path d=\"M 11.134 1.531 L 8.365 1.531 L 1.907 8.249 L 1.641 7.991 C 1.791 7.659 1.894 7.26 1.948 6.794 C 2.016 6.316 2.051 5.665 2.051 4.841 L 2.051 1.531 L 0 1.531 L 0 15.484 L 2.051 15.484 L 2.051 10.609 L 3.978 8.698 L 9.474 15.484 L 12.161 15.484 L 5.386 7.286 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 13.383 4.696 L 13.383 15.485 L 23.533 15.485 L 23.533 13.651 L 15.433 13.651 L 15.433 9.167 L 21.42 9.167 L 21.42 7.353 L 15.433 7.353 L 15.433 3.367 L 23.533 3.367 L 23.533 1.534 L 16.637 1.534 C 14.84 1.534 13.383 2.95 13.383 4.697 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 31.848 5.579 C 31.712 5.831 31.582 6.071 31.459 6.297 C 31.35 6.523 31.253 6.741 31.173 6.955 C 31.09 7.155 31.016 7.347 30.946 7.533 C 30.877 7.719 30.823 7.892 30.782 8.052 L 30.413 8.052 C 30.331 7.693 30.201 7.313 30.024 6.915 C 29.847 6.517 29.614 6.078 29.326 5.6 L 26.804 1.534 L 24.344 1.534 L 29.552 9.647 L 29.552 15.486 L 31.603 15.486 L 31.603 9.567 L 36.647 1.534 L 34.207 1.534 L 31.85 5.58 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 39.647 3.367 L 48.035 3.367 L 48.035 1.534 L 40.852 1.534 C 39.054 1.534 37.597 2.95 37.597 4.697 L 37.597 15.486 L 39.647 15.486 L 39.647 9.606 L 46.25 9.606 L 46.25 7.793 L 39.647 7.793 L 39.647 3.368 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 52.276 1.531 L 46.884 15.484 L 49.099 15.484 L 50.455 11.796 L 56.76 11.796 L 58.1 15.484 L 60.397 15.484 L 55.107 1.531 L 52.278 1.531 Z M 51.129 9.963 L 52.523 6.176 C 52.646 5.858 52.755 5.558 52.85 5.279 C 52.947 4.987 53.035 4.715 53.116 4.463 C 53.184 4.211 53.246 3.971 53.301 3.744 C 53.357 3.518 53.404 3.292 53.445 3.066 L 53.814 3.066 C 53.841 3.278 53.876 3.491 53.917 3.704 C 53.972 3.904 54.032 4.11 54.102 4.323 C 54.184 4.589 54.273 4.875 54.368 5.179 C 54.463 5.486 54.58 5.818 54.716 6.176 L 56.092 9.963 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 70.227 13.094 C 69.57 13.666 68.621 13.95 67.378 13.95 C 66.42 13.95 65.573 13.718 64.834 13.252 C 64.11 12.774 63.544 12.115 63.132 11.279 C 62.735 10.428 62.537 9.458 62.537 8.369 C 62.537 7.28 62.735 6.336 63.132 5.539 C 63.542 4.742 64.11 4.13 64.834 3.706 C 65.573 3.281 66.42 3.067 67.378 3.067 C 68.225 3.067 68.942 3.227 69.531 3.546 C 70.119 3.852 70.57 4.23 70.883 4.682 C 71.211 5.134 71.458 5.605 71.62 6.097 L 73.672 5.379 C 73.453 4.675 73.077 4.01 72.543 3.386 C 72.01 2.761 71.306 2.249 70.431 1.851 C 69.556 1.452 68.537 1.253 67.376 1.253 C 66.009 1.253 64.792 1.565 63.725 2.189 C 62.659 2.8 61.825 3.65 61.224 4.741 C 60.635 5.83 60.343 7.046 60.343 8.389 C 60.343 9.732 60.617 11.02 61.162 12.135 C 61.722 13.252 62.536 14.135 63.602 14.787 C 64.669 15.438 65.926 15.764 67.376 15.764 C 68.51 15.764 69.508 15.577 70.369 15.205 C 71.23 14.819 71.934 14.309 72.481 13.67 C 73.041 13.032 73.445 12.315 73.692 11.517 L 71.682 10.76 C 71.368 11.731 70.883 12.508 70.227 13.092 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 74.026 3.366 L 79.11 3.366 L 79.11 15.484 L 81.162 15.484 L 81.162 3.366 L 86.391 3.366 L 86.391 1.531 L 74.026 1.531 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 97.688 2.17 C 96.608 1.559 95.384 1.253 94.018 1.253 C 92.651 1.253 91.421 1.559 90.327 2.17 C 89.232 2.781 88.371 3.639 87.743 4.741 C 87.114 5.83 86.799 7.087 86.799 8.508 C 86.799 9.929 87.106 11.192 87.722 12.295 C 88.35 13.397 89.212 14.254 90.306 14.866 C 91.413 15.464 92.651 15.763 94.018 15.763 C 95.384 15.763 96.608 15.464 97.688 14.866 C 98.781 14.256 99.635 13.397 100.251 12.295 C 100.867 11.192 101.174 9.929 101.174 8.508 C 101.174 7.087 100.867 5.83 100.251 4.741 C 99.635 3.639 98.781 2.782 97.688 2.17 Z M 98.386 11.299 C 97.989 12.124 97.416 12.774 96.662 13.253 C 95.911 13.717 95.022 13.951 93.997 13.951 C 92.971 13.951 92.082 13.719 91.33 13.253 C 90.579 12.774 89.998 12.124 89.586 11.299 C 89.19 10.475 88.992 9.546 88.992 8.51 C 88.992 7.473 89.19 6.543 89.586 5.72 C 89.997 4.895 90.578 4.251 91.33 3.786 C 92.082 3.308 92.971 3.068 93.997 3.068 C 95.022 3.068 95.91 3.308 96.662 3.786 C 97.415 4.251 97.989 4.895 98.386 5.72 C 98.795 6.544 99.001 7.473 99.001 8.51 C 99.001 9.546 98.795 10.477 98.386 11.299 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 113.143 11.977 C 113.02 11.366 112.843 10.868 112.611 10.482 C 112.378 10.096 112.057 9.797 111.647 9.585 C 111.25 9.359 110.717 9.219 110.047 9.167 L 110.047 8.808 C 110.704 8.728 111.299 8.556 111.832 8.29 C 112.365 8.012 112.789 7.626 113.102 7.133 C 113.43 6.641 113.595 6.037 113.595 5.32 C 113.595 4.603 113.409 3.957 113.041 3.387 C 112.685 2.815 112.159 2.364 111.462 2.032 C 110.765 1.7 109.93 1.534 108.96 1.534 L 102.83 1.534 L 102.83 15.486 L 104.88 15.486 L 104.88 9.727 L 107.853 9.727 C 108.509 9.727 109.049 9.806 109.473 9.966 C 109.91 10.126 110.252 10.385 110.499 10.743 C 110.758 11.089 110.943 11.56 111.053 12.158 L 111.627 15.486 L 113.862 15.486 L 113.143 11.978 Z M 108.654 7.93 L 104.88 7.93 L 104.88 3.365 L 108.654 3.365 C 109.501 3.365 110.177 3.558 110.684 3.944 C 111.19 4.316 111.443 4.88 111.443 5.639 C 111.443 6.397 111.184 6.967 110.663 7.353 C 110.156 7.739 109.487 7.932 108.654 7.932 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 32.419 0 L 28.636 0 L 30.527 3.047 Z\" fill=\"rgb(26,26,26)\"></path></g></g></svg>',svgContentId:12138695208,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3t9ee0\",layoutDependency:layoutDependency,layoutId:\"Nqin2VpEK\",style:{opacity:.72},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uz56dy\",\"data-framer-name\":\"Moengage\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"c5vbMDE_r\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},svg:'<svg width=\"165\" height=\"66\" viewBox=\"0 0 165 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1974_7484)\">\\n<path d=\"M22.3601 22.0406C20.1143 22.0406 18.3017 22.7823 16.9621 24.8064C16.0975 23.0028 14.2213 22.0406 11.894 22.0406C10.0187 22.0406 7.83448 22.9226 6.90732 24.5462V22.8026C6.90732 22.6431 6.76322 22.5029 6.59826 22.5029H2.8071C2.64214 22.5009 2.49805 22.6411 2.49805 22.8007V38.8014C2.49805 38.9619 2.64214 39.1011 2.8071 39.1011H6.80397C6.96893 39.1011 7.11302 38.9619 7.11302 38.8014V29.3785C7.11302 27.5537 8.28763 26.1099 10.3069 26.1099C12.3878 26.1099 13.315 27.4541 13.315 29.2383V38.782C13.315 38.9425 13.4591 39.0818 13.6241 39.0818H17.5792C17.7452 39.0818 17.8892 38.9425 17.8892 38.782V29.3582C17.8892 27.574 19.0639 26.0896 21.0414 26.0896C23.1641 26.0896 24.0495 27.4338 24.0495 29.218V38.7627C24.0495 38.9222 24.1936 39.0625 24.3586 39.0625H28.2113C28.3763 39.0625 28.5205 38.9222 28.5205 38.7627V28.3351C28.5413 23.8838 25.5123 22.0396 22.3601 22.0396V22.0406ZM39.9972 36.0153C37.7513 36.0153 35.6078 36.8973 34.8456 38.1206C36.2885 39.0828 38.0395 39.604 39.9972 39.604C41.934 39.604 43.7059 39.0625 45.1478 38.1206C44.3856 36.8973 42.1606 36.0153 39.9972 36.0153ZM59.4678 22C55.1002 22 51.0825 25.4485 51.0825 30.742C51.0825 36.3354 55.2026 39.604 59.8802 39.604C63.8154 39.604 66.4528 37.4784 67.4625 34.852C67.5241 34.6914 67.4416 34.5116 67.2558 34.4516L63.9188 33.589C63.7737 33.5494 63.6306 33.6083 63.568 33.7495C62.9498 34.9525 61.7961 35.7745 59.901 35.7745C57.6134 35.7745 55.6975 34.1905 55.5941 32.005H67.5032C67.6682 32.005 67.7914 31.8851 67.8123 31.7246C67.8321 31.4635 67.854 31.0225 67.854 30.6221C67.8947 25.2686 64.7426 22 59.4678 22ZM55.7183 28.9172C55.8207 27.3932 57.1394 25.6486 59.5294 25.6486C61.7961 25.6486 63.2798 27.2733 63.3414 28.9172H55.7183Z\" fill=\"#00237C\"/>\\n<path d=\"M39.9994 22C34.9104 22 31.0566 25.669 31.0566 30.802C31.0566 33.0272 31.799 35.0125 33.0551 36.5162C34.0856 35.614 35.6309 34.7717 37.4445 34.4313C36.4348 33.6693 35.7551 32.4063 35.7551 30.6415C35.7551 27.574 37.7734 26.1902 39.9785 26.1902C42.1827 26.1902 44.202 27.5943 44.202 30.6415C44.202 32.4063 43.5222 33.6683 42.5325 34.4313C44.3461 34.7717 45.8913 35.614 46.9219 36.4959C48.179 34.9922 48.9204 33.0272 48.9204 30.7817C48.9412 25.669 45.1083 22 39.9994 22ZM153.073 22C148.706 22 144.688 25.4485 144.688 30.742C144.688 36.3354 148.808 39.604 153.486 39.604C157.442 39.604 160.058 37.4784 161.068 34.852C161.13 34.6914 161.026 34.5116 160.861 34.4516L157.523 33.589C157.379 33.5494 157.235 33.6083 157.173 33.7495C156.555 34.9525 155.402 35.7745 153.506 35.7745C151.219 35.7745 149.303 34.1905 149.2 32.005H161.15C161.314 32.005 161.439 31.8851 161.459 31.7246C161.479 31.4635 161.5 31.0225 161.5 30.6221C161.5 25.2686 158.348 22 153.073 22ZM149.344 28.9172C149.447 27.3932 150.766 25.6486 153.156 25.6486C155.422 25.6486 156.905 27.2733 156.968 28.9172H149.344ZM142.05 22.5009H138.218C138.053 22.5009 137.909 22.6411 137.909 22.8017V24.466C137.331 23.3442 135.786 22.2002 133.067 22.2002C128.389 22.2002 125.134 25.9097 125.134 30.3011C125.134 34.9525 128.534 38.3604 133.067 38.3604C135.519 38.3604 137.126 37.3179 137.826 36.2358V37.4581C137.826 40.6668 136.198 42.0709 133.294 42.0709C131.233 42.0709 129.791 40.8873 129.378 39.223C129.338 39.0625 129.173 38.9619 129.008 39.0025L125.423 39.9251C125.258 39.9647 125.176 40.1252 125.196 40.2655C125.814 43.3136 128.884 46 133.438 46C139.845 46 142.379 41.8495 142.379 37.2986V22.8026C142.359 22.6411 142.235 22.5009 142.05 22.5009ZM133.87 34.5116C131.48 34.5116 129.77 32.8869 129.77 30.3011C129.77 27.7345 131.563 26.1099 133.87 26.1099C136.095 26.1099 137.888 27.7345 137.888 30.3011C137.888 32.8676 136.219 34.5116 133.87 34.5116ZM79.4145 22.06C77.58 22.06 75.5409 22.8423 74.4895 24.5665V22.8017C74.4895 22.6421 74.3454 22.5019 74.1814 22.5019H70.3277C70.1627 22.5019 70.0196 22.6421 70.0196 22.8017V38.8023C70.0196 38.9628 70.1627 39.1021 70.3277 39.1021H74.3255C74.4895 39.1021 74.6336 38.9628 74.6336 38.8023V29.5594C74.6336 27.6349 75.8082 26.1099 77.8275 26.1099C80.0535 26.1099 80.9797 27.5537 80.9797 29.4182V38.8023C80.9797 38.9628 81.1248 39.1021 81.2887 39.1021H85.2866C85.4515 39.1021 85.5946 38.9628 85.5946 38.8023V28.6368C85.5946 25.0075 83.6588 22.0609 79.4135 22.0609L79.4145 22.06ZM115.368 22C110.877 22 108.425 24.7667 108.074 27.3332C108.053 27.4135 108.116 27.4734 108.198 27.4938L111.99 28.2761C112.072 28.2954 112.154 28.2355 112.174 28.1552C112.38 26.7723 113.472 25.609 115.409 25.609C117.346 25.609 118.294 26.5915 118.294 27.7752C118.294 28.3554 117.985 28.8167 117.017 28.9579L112.813 29.5594C109.97 29.9597 107.724 31.624 107.724 34.5918C107.724 37.198 109.949 39.5837 113.576 39.5837C116.09 39.5837 117.697 38.4619 118.582 37.1584V38.8023C118.582 38.9628 118.726 39.1021 118.891 39.1021H122.498C122.662 39.1021 122.807 38.9628 122.807 38.8023V28.3148C122.786 24.9678 120.787 22 115.368 22ZM118.294 32.386C118.294 35.3132 116.501 36.2348 114.545 36.2348C113.061 36.2348 112.319 35.2929 112.319 34.3104C112.319 33.0272 113.246 32.386 114.441 32.2255L118.294 31.6443V32.386ZM104.964 22.5009H101.131C100.966 22.5009 100.823 22.6411 100.823 22.8017V24.466C100.245 23.3442 98.6783 22.2002 95.9793 22.2002C91.3017 22.2002 88.0462 25.9097 88.0462 30.3011C88.0462 34.9525 91.4468 38.3604 95.9793 38.3604C98.4309 38.3604 100.038 37.3179 100.739 36.2358V37.4581C100.739 40.6668 99.1106 42.0709 96.2059 42.0709C94.1459 42.0709 92.7029 40.8873 92.2905 39.223C92.2508 39.0625 92.0848 38.9619 91.9199 39.0025L88.3354 39.9251C88.1704 39.9647 88.087 40.1252 88.1088 40.2655C88.7269 43.3136 91.7956 46 96.35 46C102.758 46 105.292 41.8495 105.292 37.2986V22.8026C105.272 22.6411 105.128 22.5009 104.963 22.5009H104.964ZM96.7833 34.5116C94.3933 34.5116 92.6831 32.8869 92.6831 30.3011C92.6831 27.7345 94.4758 26.1099 96.7833 26.1099C99.0093 26.1099 100.801 27.7345 100.801 30.3011C100.801 32.8676 99.1325 34.5116 96.7833 34.5116Z\" fill=\"#00237C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1974_7484\">\\n<rect width=\"159\" height=\"24\" fill=\"white\" transform=\"translate(2.5 22)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9cx1ys\",\"data-framer-name\":\"PLEO\",layoutDependency:layoutDependency,layoutId:\"IDyMANAhv\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:66,pixelWidth:69,src:\"https://framerusercontent.com/images/WpT7Hj7s9oEUw1sJsAoUeO5jqoQ.png\"},className:\"framer-nca173\",\"data-framer-name\":\"image 384\",layoutDependency:layoutDependency,layoutId:\"kLt4kuzR2\",style:{opacity:.72}})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16r6wvf-container\",\"data-framer-name\":\"Ticker Mobile\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WJ_aWMR3A-container\",name:\"Ticker Mobile\",nodeId:\"WJ_aWMR3A\",rendersWithMotion:true,scopeId:\"I6lrpGwn9\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"WJ_aWMR3A\",layoutId:\"WJ_aWMR3A\",name:\"Ticker Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o3jmee\",\"data-framer-name\":\"Global Partners\",layoutDependency:layoutDependency,layoutId:\"UOWJVNf8I\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:370,pixelWidth:1080,sizes:\"74px\",src:\"https://framerusercontent.com/images/0y2Zjz25J8ZTNrgq54S7YGSkwM.png\",srcSet:\"https://framerusercontent.com/images/0y2Zjz25J8ZTNrgq54S7YGSkwM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0y2Zjz25J8ZTNrgq54S7YGSkwM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0y2Zjz25J8ZTNrgq54S7YGSkwM.png 1080w\"},className:\"framer-16dq2hw\",\"data-framer-name\":\"image 382\",layoutDependency:layoutDependency,layoutId:\"pHGJvg1S_\",style:{opacity:.72}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9zjy3a\",\"data-framer-name\":\"Phenom\",layoutDependency:layoutDependency,layoutId:\"W4GcbSYMN\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:200,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/a7msPokx5ZJ5CH9JAw1vk6JW6nA.png\"},className:\"framer-1r8c5oe\",\"data-framer-name\":\"Phenom_Logo_Black 1\",layoutDependency:layoutDependency,layoutId:\"K6o5bnldr\",style:{opacity:.72}})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-184rgis\",\"data-framer-name\":\"Smartsheet\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RV9xdSxpF\",opacity:.72,style:{opacity:.72},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 109 46\"><g transform=\"translate(3.144 14.694)\"><path d=\"M 0.025 16.611 L 0.025 0 L 102.688 0 L 102.688 16.611 Z\" fill=\"transparent\"></path><path d=\"M 22.722 7.38 C 22.521 7.13 22.269 6.93 21.991 6.755 C 21.689 6.579 21.336 6.504 20.932 6.504 C 20.529 6.504 20.201 6.579 19.898 6.755 C 19.595 6.93 19.469 7.155 19.469 7.48 C 19.469 7.73 19.545 7.955 19.722 8.105 C 19.898 8.256 20.075 8.406 20.327 8.481 C 20.554 8.581 20.806 8.656 21.058 8.706 C 21.31 8.756 21.537 8.806 21.739 8.831 C 22.092 8.906 22.445 9.031 22.748 9.156 C 23.076 9.281 23.328 9.431 23.555 9.631 C 23.782 9.832 23.958 10.057 24.084 10.357 C 24.21 10.632 24.286 10.982 24.286 11.383 C 24.286 11.883 24.185 12.283 23.958 12.633 C 23.756 13.009 23.479 13.309 23.151 13.509 C 22.823 13.734 22.445 13.884 22.016 13.984 C 21.588 14.084 21.159 14.134 20.73 14.134 C 19.999 14.134 19.369 14.034 18.814 13.809 C 18.259 13.584 17.78 13.184 17.326 12.583 L 18.587 11.558 C 18.864 11.833 19.167 12.058 19.495 12.283 C 19.822 12.508 20.226 12.608 20.73 12.608 C 20.932 12.608 21.159 12.583 21.361 12.533 C 21.588 12.483 21.764 12.433 21.941 12.333 C 22.117 12.233 22.243 12.133 22.344 11.983 C 22.445 11.833 22.496 11.683 22.496 11.483 C 22.496 11.232 22.42 11.032 22.269 10.882 C 22.117 10.732 21.916 10.607 21.714 10.507 C 21.487 10.407 21.26 10.332 21.033 10.282 C 20.781 10.232 20.579 10.182 20.402 10.132 C 20.049 10.057 19.696 9.957 19.394 9.832 C 19.066 9.731 18.788 9.581 18.536 9.381 C 18.284 9.206 18.082 8.956 17.931 8.681 C 17.78 8.406 17.704 8.055 17.704 7.63 C 17.704 7.18 17.805 6.78 17.981 6.454 C 18.183 6.104 18.435 5.829 18.738 5.604 C 19.066 5.379 19.419 5.228 19.822 5.103 C 20.226 5.003 20.629 4.928 21.033 4.928 C 21.638 4.928 22.193 5.028 22.748 5.254 C 23.303 5.479 23.731 5.854 24.059 6.354 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 25.044 5.203 L 26.608 5.203 L 26.608 6.554 L 26.633 6.554 C 26.658 6.429 26.759 6.279 26.91 6.104 C 27.062 5.929 27.264 5.754 27.516 5.579 C 27.768 5.404 28.045 5.278 28.373 5.153 C 28.701 5.028 29.054 4.978 29.458 4.978 C 30.113 4.978 30.668 5.103 31.122 5.378 C 31.576 5.654 31.929 6.054 32.206 6.604 C 32.484 6.054 32.887 5.654 33.417 5.378 C 33.946 5.103 34.451 4.978 35.006 4.978 C 35.686 4.978 36.241 5.078 36.67 5.303 C 37.099 5.529 37.452 5.804 37.679 6.179 C 37.931 6.529 38.107 6.955 38.183 7.405 C 38.284 7.855 38.334 8.33 38.334 8.831 L 38.334 13.909 L 36.67 13.909 L 36.67 9.056 C 36.67 8.731 36.645 8.406 36.594 8.105 C 36.544 7.805 36.468 7.53 36.317 7.305 C 36.191 7.08 35.989 6.879 35.737 6.754 C 35.485 6.604 35.157 6.554 34.753 6.554 C 33.946 6.554 33.366 6.804 33.039 7.28 C 32.685 7.78 32.509 8.406 32.509 9.181 L 32.509 13.959 L 30.845 13.959 L 30.845 9.381 C 30.845 8.956 30.819 8.581 30.769 8.23 C 30.718 7.88 30.643 7.58 30.517 7.33 C 30.391 7.08 30.189 6.879 29.962 6.729 C 29.71 6.579 29.407 6.529 28.978 6.529 C 28.676 6.529 28.398 6.579 28.121 6.704 C 27.844 6.829 27.591 7.005 27.39 7.23 C 27.188 7.455 27.011 7.755 26.885 8.13 C 26.759 8.481 26.709 8.931 26.709 9.406 L 26.709 13.934 L 25.044 13.934 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 39.594 6.254 C 40.073 5.829 40.602 5.504 41.233 5.279 C 41.863 5.053 42.468 4.953 43.099 4.953 C 43.755 4.953 44.284 5.028 44.763 5.203 C 45.217 5.354 45.621 5.579 45.898 5.854 C 46.201 6.129 46.402 6.429 46.554 6.78 C 46.705 7.13 46.756 7.505 46.756 7.88 L 46.756 12.333 C 46.756 12.633 46.756 12.934 46.781 13.184 C 46.781 13.434 46.806 13.684 46.831 13.909 L 45.343 13.909 C 45.318 13.459 45.293 13.034 45.293 12.583 L 45.268 12.583 C 44.889 13.159 44.461 13.559 43.956 13.784 C 43.452 14.009 42.872 14.134 42.191 14.134 C 41.788 14.134 41.384 14.084 41.031 13.959 C 40.678 13.834 40.325 13.684 40.048 13.459 C 39.77 13.234 39.543 12.959 39.392 12.633 C 39.241 12.308 39.14 11.933 39.14 11.508 C 39.14 10.932 39.266 10.482 39.518 10.082 C 39.77 9.706 40.123 9.381 40.552 9.156 C 40.981 8.906 41.51 8.756 42.09 8.631 C 42.67 8.531 43.301 8.481 43.982 8.481 L 45.217 8.481 L 45.217 8.105 C 45.217 7.88 45.167 7.655 45.091 7.43 C 45.016 7.205 44.864 7.005 44.713 6.83 C 44.536 6.654 44.335 6.504 44.057 6.404 C 43.805 6.304 43.477 6.254 43.124 6.254 C 42.796 6.254 42.519 6.279 42.292 6.354 C 42.04 6.404 41.838 6.504 41.636 6.579 C 41.435 6.679 41.258 6.78 41.107 6.905 C 40.955 7.03 40.779 7.155 40.653 7.255 Z M 44.309 9.731 C 43.906 9.731 43.502 9.756 43.099 9.806 C 42.695 9.857 42.317 9.932 41.964 10.057 C 41.611 10.182 41.334 10.357 41.132 10.582 C 40.905 10.807 40.804 11.082 40.804 11.433 C 40.804 11.933 40.981 12.308 41.308 12.508 C 41.636 12.733 42.115 12.834 42.695 12.834 C 43.149 12.834 43.553 12.758 43.855 12.608 C 44.183 12.458 44.435 12.258 44.637 12.008 C 44.839 11.758 44.965 11.483 45.066 11.182 C 45.142 10.882 45.192 10.582 45.192 10.282 L 45.192 9.731 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 66.625 7.38 C 66.423 7.13 66.171 6.93 65.894 6.755 C 65.591 6.579 65.238 6.504 64.835 6.504 C 64.431 6.504 64.103 6.579 63.801 6.755 C 63.498 6.93 63.372 7.155 63.372 7.48 C 63.372 7.73 63.448 7.955 63.624 8.106 C 63.801 8.256 63.977 8.406 64.23 8.481 C 64.456 8.581 64.709 8.656 64.961 8.706 C 65.213 8.756 65.44 8.806 65.641 8.831 C 65.994 8.906 66.347 9.031 66.65 9.156 C 66.978 9.281 67.23 9.431 67.457 9.632 C 67.684 9.832 67.861 10.057 67.987 10.357 C 68.113 10.632 68.188 10.982 68.188 11.383 C 68.188 11.883 68.088 12.283 67.861 12.634 C 67.659 12.984 67.382 13.259 67.053 13.484 C 66.726 13.709 66.347 13.859 65.919 13.959 C 65.49 14.059 65.062 14.109 64.633 14.109 C 63.901 14.109 63.271 14.009 62.716 13.784 C 62.161 13.559 61.682 13.159 61.228 12.558 L 62.489 11.533 C 62.767 11.808 63.069 12.033 63.397 12.258 C 63.725 12.458 64.128 12.583 64.633 12.583 C 64.835 12.583 65.062 12.558 65.263 12.508 C 65.49 12.458 65.667 12.408 65.843 12.308 C 66.02 12.208 66.146 12.108 66.247 11.958 C 66.347 11.808 66.398 11.658 66.398 11.458 C 66.398 11.208 66.322 11.007 66.171 10.857 C 66.02 10.707 65.843 10.582 65.616 10.482 C 65.389 10.382 65.162 10.307 64.936 10.257 C 64.683 10.207 64.482 10.157 64.305 10.107 C 63.952 10.032 63.599 9.932 63.271 9.807 C 62.943 9.707 62.666 9.556 62.413 9.356 C 62.161 9.181 61.96 8.931 61.808 8.656 C 61.657 8.381 61.581 8.03 61.581 7.605 C 61.581 7.155 61.682 6.755 61.859 6.429 C 62.06 6.079 62.313 5.804 62.615 5.579 C 62.943 5.354 63.296 5.204 63.7 5.078 C 64.103 4.978 64.506 4.903 64.91 4.903 C 65.515 4.903 66.071 5.003 66.625 5.229 C 67.18 5.454 67.609 5.829 67.936 6.329 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 68.997 0 L 70.662 0 L 70.662 6.529 L 70.687 6.529 C 70.889 6.054 71.267 5.679 71.771 5.404 C 72.301 5.103 72.881 4.978 73.562 4.978 C 73.991 4.978 74.394 5.053 74.772 5.178 C 75.15 5.304 75.503 5.504 75.781 5.779 C 76.083 6.054 76.311 6.404 76.487 6.83 C 76.664 7.255 76.739 7.755 76.739 8.331 L 76.739 13.959 L 75.075 13.959 L 75.075 8.756 C 75.075 8.356 75.024 8.005 74.898 7.705 C 74.797 7.405 74.646 7.18 74.445 7.005 C 74.268 6.83 74.041 6.704 73.814 6.629 C 73.562 6.554 73.31 6.504 73.057 6.504 C 72.704 6.504 72.377 6.554 72.099 6.679 C 71.796 6.78 71.545 6.955 71.317 7.205 C 71.09 7.455 70.914 7.755 70.788 8.105 C 70.662 8.481 70.611 8.906 70.611 9.406 L 70.611 13.909 L 68.947 13.909 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 79.44 10.157 C 79.44 10.532 79.516 10.882 79.692 11.208 C 79.869 11.533 80.071 11.783 80.348 12.008 C 80.626 12.233 80.928 12.408 81.306 12.533 C 81.659 12.658 82.038 12.709 82.416 12.709 C 82.946 12.709 83.4 12.583 83.778 12.358 C 84.156 12.108 84.509 11.808 84.837 11.408 L 86.098 12.358 C 85.165 13.559 83.879 14.134 82.189 14.134 C 81.508 14.134 80.878 14.009 80.298 13.784 C 79.743 13.559 79.264 13.234 78.86 12.809 C 78.482 12.408 78.18 11.908 77.952 11.358 C 77.751 10.807 77.625 10.207 77.625 9.531 C 77.625 8.881 77.751 8.281 77.978 7.705 C 78.204 7.155 78.533 6.654 78.936 6.254 C 79.339 5.854 79.818 5.529 80.374 5.279 C 80.928 5.053 81.533 4.928 82.189 4.928 C 82.971 4.928 83.626 5.053 84.156 5.329 C 84.685 5.604 85.14 5.954 85.493 6.379 C 85.846 6.805 86.098 7.305 86.249 7.855 C 86.4 8.406 86.476 8.956 86.476 9.531 L 86.476 10.132 Z M 84.711 8.831 C 84.711 8.456 84.635 8.13 84.535 7.83 C 84.433 7.53 84.282 7.255 84.056 7.03 C 83.853 6.805 83.576 6.629 83.274 6.504 C 82.946 6.379 82.593 6.304 82.164 6.304 C 81.76 6.304 81.382 6.379 81.029 6.529 C 80.676 6.679 80.398 6.88 80.171 7.13 C 79.945 7.38 79.743 7.655 79.617 7.955 C 79.491 8.256 79.415 8.556 79.415 8.856 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 89.198 10.157 C 89.198 10.532 89.273 10.882 89.45 11.208 C 89.626 11.533 89.828 11.783 90.105 12.008 C 90.383 12.233 90.686 12.408 91.064 12.533 C 91.417 12.658 91.795 12.709 92.173 12.709 C 92.703 12.709 93.156 12.583 93.535 12.358 C 93.913 12.108 94.266 11.808 94.594 11.408 L 95.855 12.358 C 94.922 13.559 93.635 14.134 91.946 14.134 C 91.265 14.134 90.635 14.009 90.055 13.784 C 89.5 13.559 89.021 13.234 88.618 12.809 C 88.239 12.408 87.936 11.908 87.71 11.358 C 87.508 10.807 87.382 10.207 87.382 9.531 C 87.382 8.881 87.508 8.281 87.735 7.705 C 87.962 7.155 88.289 6.654 88.693 6.254 C 89.097 5.854 89.576 5.529 90.13 5.279 C 90.686 5.053 91.291 4.928 91.946 4.928 C 92.728 4.928 93.384 5.053 93.913 5.329 C 94.443 5.604 94.897 5.954 95.25 6.379 C 95.603 6.805 95.855 7.305 96.006 7.855 C 96.158 8.406 96.233 8.956 96.233 9.531 L 96.233 10.132 Z M 94.468 8.831 C 94.468 8.456 94.392 8.13 94.291 7.83 C 94.191 7.53 94.039 7.255 93.812 7.03 C 93.611 6.805 93.333 6.629 93.03 6.504 C 92.703 6.379 92.35 6.304 91.921 6.304 C 91.518 6.304 91.139 6.379 90.786 6.529 C 90.458 6.679 90.156 6.88 89.929 7.13 C 89.702 7.38 89.5 7.655 89.374 7.955 C 89.248 8.256 89.172 8.556 89.172 8.856 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 53.265 5.228 C 53.265 5.228 52.282 5.103 51.752 5.128 C 51.122 5.178 50.895 5.278 50.542 5.453 C 50.315 5.578 50.113 5.754 49.912 5.954 C 49.735 6.154 49.584 6.354 49.458 6.579 L 49.432 6.579 L 49.432 5.228 L 47.768 5.228 L 47.768 13.959 L 49.432 13.959 C 49.432 13.959 49.382 10.357 49.432 9.481 C 49.483 8.605 49.634 7.68 50.088 7.255 C 50.567 6.829 50.769 6.729 51.349 6.654 C 51.879 6.579 52.61 6.654 52.61 6.654 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 59.41 12.534 C 59.209 12.559 59.007 12.584 58.805 12.584 C 58.477 12.584 58.25 12.534 58.074 12.409 C 57.897 12.283 57.771 12.133 57.696 11.958 C 57.62 11.758 57.569 11.558 57.544 11.308 C 57.544 11.058 57.519 10.832 57.519 10.582 L 57.519 6.63 L 59.915 6.63 L 59.915 5.204 L 57.519 5.204 L 57.519 2.752 L 55.855 2.752 L 55.855 5.204 L 54.165 5.204 L 53.535 6.63 L 55.855 6.63 L 55.855 11.183 C 55.855 11.533 55.88 11.883 55.905 12.233 C 55.93 12.584 56.031 12.909 56.208 13.184 C 56.384 13.459 56.636 13.709 56.989 13.885 C 57.342 14.06 57.847 14.16 58.477 14.16 C 58.654 14.16 58.906 14.135 59.209 14.085 C 59.536 14.035 59.789 13.96 59.99 13.86 L 59.99 12.359 C 59.814 12.434 59.637 12.509 59.41 12.534 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 102.136 12.533 C 101.934 12.558 101.733 12.583 101.53 12.583 C 101.203 12.583 100.976 12.533 100.799 12.408 C 100.623 12.283 100.497 12.133 100.421 11.958 C 100.345 11.757 100.295 11.557 100.27 11.307 C 100.27 11.057 100.245 10.832 100.245 10.582 L 100.245 6.629 L 102.64 6.629 L 102.64 5.203 L 100.245 5.203 L 100.245 2.751 L 98.58 2.751 L 98.58 5.203 L 96.89 5.203 L 96.26 6.629 L 98.58 6.629 L 98.58 11.182 C 98.58 11.532 98.605 11.883 98.63 12.233 C 98.656 12.583 98.757 12.908 98.933 13.183 C 99.11 13.459 99.362 13.709 99.715 13.884 C 100.068 14.059 100.572 14.159 101.203 14.159 C 101.38 14.159 101.631 14.134 101.934 14.084 C 102.262 14.034 102.514 13.959 102.716 13.859 L 102.716 12.358 C 102.514 12.433 102.338 12.508 102.136 12.533 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 2.144 8.406 C 2.144 8.406 2.749 7.58 3.531 7.555 C 4.766 7.53 5.75 9.707 5.901 10.032 C 7.263 7.03 9.507 4.478 11.323 2.777 L 0.151 2.777 C 0.151 3.828 0.151 14.335 0.151 15.21 C 0.151 15.886 0.05 16.386 0 16.586 C 0.504 16.511 2.37 16.186 4.287 15.511 C 7.692 14.31 9.003 13.009 9.028 13.009 L 9.104 12.934 L 9.154 13.034 C 9.154 13.034 9.583 13.96 10.012 14.46 C 10.491 15.01 10.743 15.06 10.894 15.035 C 11.096 14.985 11.222 14.66 11.272 14.16 C 11.323 13.659 11.373 12.534 11.373 11.158 C 11.373 8.681 11.373 5.404 11.373 3.753 C 8.07 7.755 5.649 13.759 5.649 13.759 C 5.649 13.759 4.06 8.381 2.144 8.406 Z\" fill=\"rgb(77, 77, 77)\"></path></g></svg>',svgContentId:8926264053,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l93ol\",\"data-framer-name\":\"Personio\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"COM4HPvyI\",opacity:.72,style:{opacity:.72},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81 43\"><g transform=\"translate(3.6 14.28)\"><path d=\"M 0 14.441 L 0 0 L 73.2 0 L 73.2 14.441 Z\" fill=\"transparent\"></path><path d=\"M 0 0.758 L 0.292 0.758 C 1.949 0.758 3.606 0.756 5.263 0.759 C 5.979 0.761 6.671 0.881 7.328 1.185 C 8.297 1.634 8.956 2.361 9.27 3.383 C 9.597 4.451 9.599 5.521 9.139 6.552 C 8.553 7.867 7.472 8.564 6.104 8.804 C 5.463 8.917 4.797 8.897 4.142 8.919 C 3.652 8.935 3.162 8.922 2.64 8.922 L 2.64 13.911 L 0 13.911 Z M 2.656 6.536 C 3.583 6.536 4.494 6.559 5.402 6.526 C 5.883 6.508 6.327 6.31 6.654 5.934 C 7.133 5.386 7.215 4.753 6.939 4.091 C 6.657 3.412 6.095 3.097 5.39 3.06 C 4.779 3.028 4.164 3.052 3.551 3.052 C 3.256 3.052 2.961 3.052 2.656 3.052 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 19.612 9.715 C 18.361 9.715 17.143 9.715 15.925 9.715 C 14.707 9.715 13.508 9.715 12.3 9.715 C 12.273 10.617 12.954 11.466 13.915 11.719 C 15.098 12.031 16.112 11.75 16.928 10.814 C 16.951 10.788 16.973 10.76 16.998 10.736 C 17.01 10.724 17.028 10.718 17.069 10.694 C 17.668 11.122 18.277 11.557 18.906 12.006 C 18.339 12.77 17.657 13.356 16.808 13.735 C 13.671 15.132 10.145 13.131 9.716 9.709 C 9.505 8.024 9.889 6.503 11.042 5.237 C 12.201 3.965 13.674 3.492 15.364 3.668 C 16.759 3.813 17.906 4.42 18.728 5.576 C 19.61 6.815 19.835 8.205 19.612 9.714 Z M 17.246 7.825 C 16.957 6.516 15.948 5.785 14.567 5.853 C 13.485 5.906 12.496 6.79 12.377 7.825 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 67.884 14.167 C 64.816 14.165 62.618 11.954 62.62 8.873 C 62.622 5.876 64.901 3.63 67.937 3.635 C 70.949 3.639 73.204 5.934 73.2 8.993 C 73.196 11.956 70.922 14.169 67.884 14.167 Z M 67.876 11.837 C 69.491 11.841 70.706 10.609 70.72 8.951 C 70.735 7.258 69.527 5.97 67.918 5.962 C 66.283 5.955 65.08 7.193 65.065 8.896 C 65.051 10.574 66.253 11.832 67.876 11.837 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 41.702 14.167 C 38.64 14.163 36.412 11.943 36.423 8.905 C 36.434 5.86 38.681 3.631 41.735 3.635 C 44.745 3.638 46.979 5.906 46.972 8.952 C 46.966 11.959 44.732 14.17 41.702 14.167 Z M 41.682 11.837 C 43.337 11.838 44.514 10.634 44.517 8.937 C 44.52 7.242 43.309 5.962 41.702 5.962 C 40.101 5.962 38.883 7.23 38.879 8.904 C 38.874 10.61 40.045 11.835 41.682 11.837 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 56.725 13.951 L 54.28 13.951 L 54.28 13.604 C 54.28 11.464 54.28 9.324 54.28 7.184 C 54.28 6.262 54.07 6.052 53.151 6.052 C 52.563 6.052 51.976 6.05 51.388 6.052 C 50.731 6.055 50.46 6.324 50.459 6.98 C 50.458 9.191 50.459 11.401 50.459 13.611 L 50.459 13.945 L 48.003 13.945 C 48.003 13.839 48.003 13.745 48.003 13.651 C 48.003 11.335 48.001 9.018 48.004 6.702 C 48.005 5.014 49.265 3.752 50.947 3.75 C 51.876 3.748 52.806 3.749 53.735 3.75 C 55.488 3.75 56.725 4.995 56.725 6.759 C 56.725 9.049 56.725 11.338 56.725 13.628 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 26.945 10.844 L 29.424 10.844 C 29.69 11.827 30.126 12.188 31.146 12.196 C 31.559 12.199 31.984 12.146 32.383 12.039 C 32.843 11.915 33.068 11.544 33.066 11.088 C 33.064 10.644 32.867 10.322 32.398 10.188 C 31.837 10.027 31.258 9.928 30.683 9.823 C 29.931 9.687 29.197 9.511 28.513 9.146 C 26.889 8.279 26.885 6.254 27.715 5.157 C 28.355 4.309 29.248 3.895 30.262 3.721 C 31.516 3.505 32.73 3.639 33.843 4.291 C 34.792 4.846 35.322 5.682 35.385 6.824 L 32.962 6.824 C 32.785 5.866 32.203 5.62 31.39 5.599 C 31.045 5.591 30.689 5.63 30.352 5.708 C 29.93 5.807 29.699 6.107 29.671 6.482 C 29.634 6.961 29.778 7.304 30.211 7.461 C 30.674 7.629 31.169 7.722 31.657 7.806 C 32.528 7.958 33.404 8.08 34.196 8.516 C 35.272 9.108 35.636 10.096 35.484 11.229 C 35.287 12.711 34.343 13.547 32.986 13.933 C 31.441 14.374 29.929 14.268 28.53 13.407 C 27.656 12.869 27.124 12.078 26.946 11.057 C 26.936 10.998 26.945 10.936 26.945 10.844 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 26.447 3.761 L 26.447 6.051 C 26.3 6.051 26.155 6.051 26.009 6.051 C 25.421 6.051 24.834 6.05 24.246 6.052 C 23.584 6.055 23.305 6.333 23.304 7.003 C 23.302 9.213 23.304 11.423 23.304 13.634 C 23.304 13.73 23.304 13.825 23.304 13.944 L 20.869 13.944 L 20.869 13.669 C 20.869 11.335 20.866 9.001 20.87 6.668 C 20.872 5.006 22.123 3.755 23.782 3.749 C 24.589 3.746 25.396 3.748 26.203 3.749 C 26.28 3.749 26.356 3.757 26.447 3.761 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 61.142 13.951 L 58.645 13.951 L 58.645 5.073 L 61.142 5.073 Z\" fill=\"rgb(77, 77, 77)\"></path><path d=\"M 59.889 3.535 C 58.958 3.539 58.251 2.836 58.255 1.91 C 58.259 0.998 58.991 0.252 59.881 0.253 C 60.788 0.254 61.533 1.003 61.535 1.916 C 61.538 2.825 60.82 3.532 59.889 3.535 Z\" fill=\"rgb(77, 77, 77)\"></path></g></svg>',svgContentId:11398746952,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1zdggn\",layoutDependency:layoutDependency,layoutId:\"QX_uLE8uQ\",style:{opacity:.72},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pnr9da\",\"data-framer-name\":\"UI Path\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:72,intrinsicWidth:117,layoutDependency:layoutDependency,layoutId:\"QUn2wyo_A\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},svg:'<svg width=\"117\" height=\"72\" viewBox=\"0 0 117 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.66016 17.4453H43.7564V54.5416H6.66016V17.4453ZM10.5 50.7017H39.9169V21.285H10.5V50.7017ZM25.3321 27.0135H29.172V38.2539C29.172 43.3319 26.2922 46.3977 21.4306 46.3977C16.6618 46.3977 13.844 43.3939 13.844 38.2539V27.0135H17.6838V38.2539C17.6838 41.0717 18.8604 42.7747 21.5234 42.7747C24.0936 42.7747 25.3321 41.1645 25.3321 38.2539V27.0135ZM36.4795 27.0135C36.4795 28.376 35.4886 29.3049 34.1264 29.3049C32.7639 29.3049 31.773 28.376 31.773 27.0135C31.773 25.6202 32.7639 24.6603 34.1264 24.6603C35.4886 24.6603 36.4795 25.6202 36.4795 27.0135ZM32.2063 31.1319H36.0462V46.2118H32.2063V31.1319ZM61.8091 33.4543C61.8091 37.5726 59.0841 40.0188 54.9038 40.0188H51.4358V46.2118H47.596V27.0135H54.9038C59.1461 27.0135 61.8091 29.4907 61.8091 33.4543ZM57.9076 33.4543C57.9076 31.3487 56.6999 30.11 54.5013 30.11H51.4358V36.9533H54.5013C56.6999 36.9533 57.9076 35.7148 57.9076 33.4543ZM74.7214 31.1319H78.5613V46.2118H74.7214V44.5088C73.6997 45.7165 72.0896 46.3977 69.829 46.3977C65.7415 46.3977 62.862 43.1771 62.862 38.6875C62.862 34.2285 65.6798 30.9461 69.829 30.9461C72.0276 30.9461 73.6997 31.7203 74.7214 33.0208V31.1319ZM74.7214 38.6875C74.7214 36.0863 73.1733 34.2903 70.7271 34.2903C68.2808 34.2903 66.7635 35.9935 66.7635 38.6875C66.7635 41.1954 68.126 43.0223 70.7271 43.0223C73.0804 43.0223 74.7214 41.3193 74.7214 38.6875ZM87.9437 42.9295H89.461V46.2118H87.4481C83.7942 46.2118 82.2149 44.4779 82.2149 40.9169V34.3833H80.4191V31.1319H82.2149V27.0135H86.0547V31.1319H89.4299V34.3833H86.0547V40.9477C86.0547 42.2794 86.4572 42.9295 87.9437 42.9295ZM106.027 37.4486V46.2118H102.188V37.8822C102.188 35.5908 101.011 34.1045 98.7503 34.1045C96.49 34.1045 95.1275 35.6528 95.1275 38.2227V46.2118H91.288V26.0846H95.1275V32.6802C96.0873 31.5345 97.6046 30.9152 99.6795 30.9152C103.24 30.9152 106.027 33.4852 106.027 37.4486Z\" fill=\"#FA4616\"/>\\n<path d=\"M107.71 29.9815C106.227 29.9815 105.213 28.9475 105.213 27.5058C105.213 26.0166 106.262 25.0439 107.71 25.0439C109.179 25.0439 110.192 26.037 110.192 27.5058C110.192 28.968 109.172 29.9815 107.71 29.9815ZM107.71 25.4853C106.468 25.4853 105.682 26.265 105.682 27.5058C105.682 28.7473 106.51 29.5131 107.71 29.5131C108.958 29.5131 109.73 28.7056 109.73 27.5058C109.73 26.2716 108.944 25.4853 107.71 25.4853ZM108.275 27.8924L108.799 28.8715H108.178L107.682 27.9749H107.289V28.8715H106.731V26.0852H107.799C108.406 26.0852 108.854 26.444 108.854 27.0162C108.854 27.4436 108.627 27.7477 108.275 27.8924ZM107.289 27.527H107.73C108.055 27.527 108.275 27.3472 108.275 27.0162C108.275 26.7129 108.055 26.5339 107.73 26.5339H107.289V27.527Z\" fill=\"#FA4616\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fc3t84\",layoutDependency:layoutDependency,layoutId:\"Rg87DQ9X5\",style:{opacity:.72},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-a4tiw0\",\"data-framer-name\":\"Duda\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:72,intrinsicWidth:91,layoutDependency:layoutDependency,layoutId:\"cJtTGO42X\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},svg:'<svg width=\"91\" height=\"72\" viewBox=\"0 0 91 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M84.0225 17C86.4947 17 88.4999 18.9574 88.5 21.3711V50.6289C88.4999 53.0426 86.4947 55 84.0225 55H5.97754C3.50526 55 1.50014 53.0426 1.5 50.6289V21.3711C1.50014 18.9574 3.50526 17 5.97754 17H84.0225ZM72.291 31.3262C68.8676 31.3296 66.7762 32.869 65.7617 33.6338L67.1807 36.3477C68.8253 35.2679 70.3815 34.6544 72.1943 34.6543C75.8222 34.6543 75.8584 37.3848 75.8584 37.3848C75.8584 37.3848 73.8602 37.2797 72.2783 37.3096C70.1577 37.3544 65.5762 38.045 65.5762 42.3965C65.5762 45.3376 67.9277 47.1678 71.1543 47.168C74.444 47.168 75.7188 45.9959 76.0264 45.4717L76.042 46.8789H79.9922V37.9238C79.9922 34.9676 77.9477 31.3262 72.291 31.3262ZM22.666 32.9121C21.3305 31.955 19.8591 31.3896 18.0801 31.3896C13.6332 31.3897 10.0156 34.9212 10.0156 39.2627C10.0156 43.6042 13.6332 47.1357 18.0801 47.1357C19.859 47.1357 21.3305 46.5687 22.666 45.6133V46.8262H26.7256V24.8281H22.666V32.9121ZM59.0117 32.9121C57.6762 31.955 56.2048 31.3896 54.4258 31.3896C49.9789 31.3897 46.3613 34.9212 46.3613 39.2627C46.3613 43.6042 49.9789 47.1357 54.4258 47.1357C56.2048 47.1357 57.6762 46.5687 59.0117 45.6133V46.8262H63.0713V24.8281H59.0117V32.9121ZM39.8682 32.3281C39.8682 32.3281 39.8682 37.9417 39.8682 39.8945C39.8682 41.5983 38.4541 42.9785 36.709 42.9785H36.5352C34.7903 42.9783 33.377 41.5981 33.377 39.8945L33.373 32.3301H29.3223V39.7969C29.3223 41.9485 29.8324 43.6096 30.835 44.7344C31.8444 45.8656 33.7921 46.793 35.6406 46.793C38.3364 46.7928 39.5835 45.5822 40.0137 44.9766L40.0186 46.8359H43.9473V32.3281H39.8682ZM72.2646 40.2959C73.8993 40.2662 75.8377 40.2955 75.8613 40.2959C75.8596 43.0265 73.5233 44.168 71.6797 44.168C70.7571 44.168 69.2209 43.9425 69.2207 42.2324C69.2207 40.9865 70.7421 40.3258 72.2646 40.2959ZM18.4424 35.0918C20.7973 35.092 22.7139 36.9635 22.7139 39.2627C22.7122 41.5619 20.7973 43.4334 18.4424 43.4336C16.0873 43.4336 14.1699 41.562 14.1699 39.2627C14.1699 36.9634 16.0873 35.0918 18.4424 35.0918ZM54.7881 35.0918C57.1431 35.092 59.0596 36.9635 59.0596 39.2627C59.0596 41.5619 57.143 43.4334 54.7881 43.4336C52.433 43.4336 50.5156 41.562 50.5156 39.2627C50.5156 36.9634 52.433 35.0918 54.7881 35.0918Z\" fill=\"#F36239\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xwhb0z\",\"data-framer-name\":\"Darwinbox\",layoutDependency:layoutDependency,layoutId:\"cW47nQvyu\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:232,pixelWidth:696,positionX:\"center\",positionY:\"center\",sizes:\"116px\",src:\"https://framerusercontent.com/images/qK98o8vboRaUbooOXqgdO2ah4.png\",srcSet:\"https://framerusercontent.com/images/qK98o8vboRaUbooOXqgdO2ah4.png?scale-down-to=512 512w,https://framerusercontent.com/images/qK98o8vboRaUbooOXqgdO2ah4.png 696w\"},className:\"framer-1jfdwmv\",\"data-framer-name\":\"Darwinbox Horizontal Logo_Colour 1\",layoutDependency:layoutDependency,layoutId:\"w6GGvJ4N9\",style:{opacity:.72}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-943zxj\",\"data-framer-name\":\"Movable ink\",layoutDependency:layoutDependency,layoutId:\"iBT4iMF92\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:65,pixelWidth:300,src:\"https://framerusercontent.com/images/irCtrPZx3920FCxQDgtzxGLaKjI.png\"},className:\"framer-frvgwv\",\"data-framer-name\":\"image 383\",layoutDependency:layoutDependency,layoutId:\"UK7d6ppI5\",style:{opacity:.72}})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17cowxw\",\"data-framer-name\":\"Keyfactor\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"bJKYhA0s3\",opacity:.72,style:{opacity:.72},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 91 40\"><g transform=\"translate(3.72 14.353)\"><path d=\"M 0 11.294 L 0 0 L 83.56 0 L 83.56 11.294 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\"><path d=\"M 8.171 1.094 L 6.139 1.094 L 1.399 5.892 L 1.204 5.708 C 1.314 5.47 1.39 5.186 1.429 4.853 C 1.479 4.511 1.505 4.047 1.505 3.458 L 1.505 1.094 L 0 1.094 L 0 11.06 L 1.505 11.06 L 1.505 7.578 L 2.919 6.213 L 6.953 11.06 L 8.924 11.06 L 3.952 5.205 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 9.821 3.354 L 9.821 11.061 L 17.27 11.061 L 17.27 9.751 L 11.326 9.751 L 11.326 6.548 L 15.72 6.548 L 15.72 5.252 L 11.326 5.252 L 11.326 2.405 L 17.27 2.405 L 17.27 1.095 L 12.21 1.095 C 10.891 1.095 9.821 2.107 9.821 3.355 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 23.372 3.985 C 23.273 4.165 23.177 4.336 23.087 4.498 C 23.007 4.659 22.936 4.815 22.877 4.968 C 22.816 5.111 22.762 5.248 22.711 5.381 C 22.659 5.514 22.62 5.637 22.59 5.751 L 22.319 5.751 C 22.259 5.495 22.164 5.224 22.034 4.939 C 21.904 4.655 21.733 4.342 21.522 4 L 19.671 1.095 L 17.865 1.095 L 21.688 6.89 L 21.688 11.062 L 23.192 11.062 L 23.192 6.833 L 26.894 1.095 L 25.104 1.095 L 23.374 3.986 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 29.096 2.405 L 35.251 2.405 L 35.251 1.095 L 29.98 1.095 C 28.661 1.095 27.591 2.107 27.591 3.355 L 27.591 11.062 L 29.096 11.062 L 29.096 6.862 L 33.942 6.862 L 33.942 5.567 L 29.096 5.567 L 29.096 2.406 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 38.364 1.094 L 34.407 11.06 L 36.032 11.06 L 37.027 8.426 L 41.654 8.426 L 42.638 11.06 L 44.324 11.06 L 40.441 1.094 L 38.365 1.094 Z M 37.522 7.116 L 38.545 4.412 C 38.636 4.184 38.716 3.97 38.785 3.771 C 38.856 3.562 38.921 3.368 38.98 3.188 C 39.03 3.008 39.076 2.836 39.116 2.675 C 39.157 2.513 39.192 2.352 39.222 2.19 L 39.492 2.19 C 39.512 2.342 39.538 2.493 39.568 2.646 C 39.609 2.789 39.653 2.936 39.704 3.088 C 39.764 3.278 39.829 3.482 39.899 3.7 C 39.969 3.918 40.054 4.156 40.154 4.412 L 41.165 7.116 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 51.537 9.353 C 51.056 9.761 50.359 9.964 49.446 9.964 C 48.743 9.964 48.122 9.799 47.58 9.466 C 47.048 9.124 46.633 8.654 46.331 8.056 C 46.039 7.449 45.894 6.756 45.894 5.978 C 45.894 5.2 46.039 4.525 46.331 3.956 C 46.632 3.387 47.048 2.95 47.58 2.647 C 48.122 2.344 48.743 2.191 49.446 2.191 C 50.069 2.191 50.595 2.305 51.027 2.533 C 51.458 2.751 51.789 3.021 52.019 3.344 C 52.259 3.667 52.441 4.004 52.56 4.355 L 54.065 3.842 C 53.905 3.339 53.629 2.864 53.237 2.418 C 52.846 1.972 52.329 1.607 51.687 1.322 C 51.045 1.037 50.297 0.895 49.445 0.895 C 48.442 0.895 47.549 1.118 46.766 1.564 C 45.984 2 45.372 2.607 44.931 3.386 C 44.499 4.164 44.284 5.033 44.284 5.992 C 44.284 6.951 44.485 7.872 44.885 8.668 C 45.296 9.466 45.893 10.096 46.676 10.562 C 47.458 11.027 48.381 11.26 49.445 11.26 C 50.277 11.26 51.01 11.127 51.642 10.861 C 52.274 10.585 52.79 10.22 53.192 9.765 C 53.603 9.309 53.899 8.797 54.08 8.226 L 52.606 7.686 C 52.375 8.379 52.019 8.934 51.537 9.351 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 54.325 2.404 L 58.057 2.404 L 58.057 11.06 L 59.562 11.06 L 59.562 2.404 L 63.4 2.404 L 63.4 1.094 L 54.325 1.094 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 71.69 1.55 C 70.898 1.114 70 0.895 68.997 0.895 C 67.994 0.895 67.091 1.114 66.288 1.55 C 65.485 1.986 64.853 2.599 64.392 3.387 C 63.931 4.165 63.699 5.062 63.699 6.077 C 63.699 7.092 63.925 7.994 64.376 8.782 C 64.837 9.57 65.47 10.181 66.273 10.619 C 67.085 11.046 67.994 11.259 68.997 11.259 C 70 11.259 70.898 11.046 71.69 10.619 C 72.493 10.183 73.119 9.57 73.571 8.782 C 74.023 7.994 74.249 7.092 74.249 6.077 C 74.249 5.062 74.023 4.165 73.571 3.387 C 73.119 2.599 72.493 1.987 71.69 1.55 Z M 72.202 8.071 C 71.911 8.66 71.491 9.125 70.938 9.466 C 70.386 9.798 69.734 9.965 68.981 9.965 C 68.229 9.965 67.576 9.799 67.025 9.466 C 66.473 9.125 66.047 8.66 65.745 8.071 C 65.454 7.482 65.309 6.819 65.309 6.078 C 65.309 5.338 65.454 4.673 65.745 4.085 C 66.046 3.497 66.472 3.036 67.025 2.705 C 67.576 2.363 68.229 2.191 68.981 2.191 C 69.734 2.191 70.385 2.363 70.938 2.705 C 71.49 3.036 71.911 3.497 72.202 4.085 C 72.503 4.674 72.654 5.338 72.654 6.078 C 72.654 6.819 72.503 7.483 72.202 8.071 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 83.033 8.555 C 82.942 8.119 82.812 7.763 82.642 7.487 C 82.471 7.211 82.235 6.998 81.934 6.846 C 81.643 6.685 81.252 6.585 80.761 6.548 L 80.761 6.292 C 81.242 6.235 81.679 6.112 82.071 5.921 C 82.461 5.723 82.773 5.447 83.002 5.095 C 83.243 4.744 83.364 4.312 83.364 3.8 C 83.364 3.288 83.228 2.827 82.958 2.419 C 82.696 2.011 82.31 1.689 81.799 1.451 C 81.287 1.214 80.675 1.095 79.963 1.095 L 75.464 1.095 L 75.464 11.062 L 76.968 11.062 L 76.968 6.948 L 79.15 6.948 C 79.632 6.948 80.028 7.005 80.339 7.119 C 80.66 7.233 80.91 7.418 81.092 7.674 C 81.282 7.921 81.418 8.257 81.498 8.684 L 81.919 11.062 L 83.56 11.062 L 83.033 8.556 Z M 79.738 5.664 L 76.968 5.664 L 76.968 2.404 L 79.738 2.404 C 80.36 2.404 80.856 2.541 81.228 2.817 C 81.599 3.083 81.785 3.486 81.785 4.028 C 81.785 4.569 81.594 4.977 81.213 5.252 C 80.841 5.528 80.35 5.665 79.738 5.665 Z\" fill=\"rgb(26,26,26)\"></path><path d=\"M 23.791 0 L 21.015 0 L 22.403 2.176 Z\" fill=\"rgb(26,26,26)\"></path></g></g></svg>',svgContentId:8885505497,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ppjd9w\",layoutDependency:layoutDependency,layoutId:\"aaQgcwufM\",style:{opacity:.72},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b0hrxn\",\"data-framer-name\":\"Fireflies AI\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:72,intrinsicWidth:155,layoutDependency:layoutDependency,layoutId:\"eOpbuU3LV\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},svg:'<svg width=\"155\" height=\"72\" viewBox=\"0 0 155 72\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.6524 21.2402H2.69336V31.2011H12.6524V21.2402Z\" fill=\"url(#paint0_linear_1974_7492)\"/>\\n<path d=\"M24.4524 33.2666H14.4902V43.2259H24.4524V33.2666Z\" fill=\"url(#paint1_linear_1974_7492)\"/>\\n<path d=\"M24.4524 21.2402H14.4902V31.2011H32.9933V29.7772C32.9928 28.6544 32.7716 27.5427 32.3422 26.5065C31.9129 25.4703 31.2839 24.53 30.4917 23.74C28.885 22.1376 26.7135 21.2392 24.4524 21.2402Z\" fill=\"url(#paint2_linear_1974_7492)\"/>\\n<path d=\"M2.68555 33.2666V43.2259C2.68555 45.4906 3.58555 47.6622 5.18555 49.2631C6.79304 50.8663 8.9643 51.7647 11.2265 51.7629H12.6492V33.2666H2.68555Z\" fill=\"url(#paint3_linear_1974_7492)\"/>\\n<path opacity=\"0.18\" d=\"M2.68555 21.2402L12.6462 31.2011H2.68555V21.2402Z\" fill=\"url(#paint4_linear_1974_7492)\"/>\\n<path opacity=\"0.18\" d=\"M14.4902 33.2666L24.4524 43.2259H14.4902V33.2666Z\" fill=\"url(#paint5_linear_1974_7492)\"/>\\n<path opacity=\"0.18\" d=\"M2.68555 43.2259C2.68555 45.4906 3.58555 47.6622 5.18555 49.2631C6.79304 50.8663 8.9643 51.7647 11.2265 51.7629H12.6492V33.2666L2.68555 43.2259Z\" fill=\"url(#paint6_linear_1974_7492)\"/>\\n<path opacity=\"0.18\" d=\"M24.4567 21.2402C26.7203 21.2402 28.8931 22.1406 30.4946 23.74C31.2865 24.5301 31.9151 25.4705 32.3442 26.5067C32.7733 27.5429 32.9944 28.6545 32.9946 29.7772V31.2011H14.4961L24.4567 21.2402Z\" fill=\"url(#paint7_linear_1974_7492)\"/>\\n<mask id=\"mask0_1974_7492\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"45\" y=\"18\" width=\"106\" height=\"37\">\\n<path d=\"M45.1167 18.1885H150.312V54.8147H45.1152L45.1167 18.1885Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_1974_7492)\">\\n<path d=\"M51.6819 34.7081H49.3077V45.4473H46.6304V34.7081H45.1152V32.5258H46.6304V31.6117C46.6304 30.1263 47.0183 29.0478 47.794 28.3764C48.5849 27.6896 49.8188 27.3457 51.4955 27.3447V29.5728C50.6875 29.5728 50.1208 29.729 49.7955 30.0413C49.4703 30.3384 49.3077 30.8624 49.3077 31.6132V32.5273H51.6819V34.7081ZM54.9183 30.8151C54.4364 30.8151 54.0324 30.6508 53.7061 30.3221C53.5468 30.1629 53.4214 29.9727 53.3375 29.7631C53.2537 29.5534 53.2131 29.3288 53.2183 29.1028C53.2183 28.6195 53.3814 28.2131 53.7077 27.8834C54.0329 27.5558 54.4364 27.392 54.9183 27.392C55.3829 27.392 55.7784 27.5558 56.1046 27.8834C56.4309 28.2131 56.594 28.62 56.594 29.1043C56.594 29.5886 56.4314 29.9945 56.1061 30.3221C55.9519 30.4815 55.767 30.6074 55.5627 30.6922C55.3585 30.7769 55.1392 30.8188 54.9183 30.8151ZM56.2213 32.5273V45.4473H53.5683V32.5273H56.2213ZM61.8955 34.4029C62.2626 33.7657 62.7927 33.2392 63.4304 32.8783C64.0829 32.5029 64.8516 32.3152 65.7364 32.3152V35.082H65.0607C64.0203 35.082 63.2289 35.3481 62.6864 35.8802C62.1582 36.4123 61.894 37.3345 61.894 38.647V45.4473H59.241V32.5273H61.894L61.8955 34.4029ZM79.4668 38.6699C79.4668 39.1552 79.4354 39.5927 79.3728 39.9823H69.5713C69.6501 41.015 70.0304 41.8441 70.7122 42.4698C71.395 43.0945 72.2334 43.4069 73.2274 43.4069C74.6546 43.4069 75.6632 42.8051 76.2531 41.6015H79.1168C78.7358 42.7791 77.9943 43.8049 76.9986 44.5316C75.9895 45.2824 74.7319 45.6579 73.2258 45.6579C72.0006 45.6579 70.8991 45.3842 69.9213 44.8368C68.9625 44.28 68.1733 43.4693 67.6395 42.4927C67.0971 41.4764 66.8253 40.3038 66.8243 38.9751C66.8243 37.6464 67.0885 36.4815 67.6168 35.4803C68.1308 34.4973 68.9144 33.6837 69.8743 33.1363C70.8531 32.5889 71.9708 32.3152 73.2274 32.3152C74.4375 32.3152 75.5162 32.5813 76.4637 33.1134C77.4082 33.6444 78.1455 34.3948 78.6758 35.3644C79.2021 36.3187 79.4657 37.4205 79.4668 38.6699ZM76.6955 37.8259C76.6804 36.8421 76.3314 36.0526 75.6486 35.4574C74.9657 34.8633 74.1198 34.5662 73.1107 34.5662C72.1945 34.5662 71.4107 34.8633 70.7592 35.4574C70.1077 36.0363 69.7198 36.8258 69.5955 37.8259H76.6955ZM86.9895 34.7081H84.6152V45.4473H81.938V34.7081H80.4258V32.5258H81.938V31.6117C81.938 30.1263 82.3258 29.0478 83.1016 28.3764C83.8935 27.6896 85.1279 27.3457 86.8046 27.3447V29.5728C85.9986 29.5728 85.4324 29.729 85.1061 30.0413C84.7799 30.3384 84.6168 30.8624 84.6168 31.6132V32.5273H86.991L86.9895 34.7081ZM91.5304 28.0956V45.4473H88.8758V28.0956H91.5304ZM95.9001 30.8151C95.4183 30.8151 95.0142 30.6508 94.688 30.3221C94.5287 30.1629 94.4032 29.9727 94.3194 29.7631C94.2355 29.5534 94.1949 29.3288 94.2001 29.1028C94.2001 28.6195 94.3632 28.2131 94.6895 27.8834C95.0147 27.5558 95.4183 27.392 95.9001 27.392C96.3647 27.392 96.7602 27.5558 97.0864 27.8834C97.4127 28.2131 97.5758 28.62 97.5758 29.1043C97.5758 29.5886 97.4127 29.9945 97.0864 30.3221C96.9324 30.4813 96.7478 30.6071 96.5438 30.6919C96.3398 30.7766 96.1207 30.8186 95.9001 30.8151ZM97.2031 32.5273V45.4473H94.5486V32.5273H97.2031ZM111.979 38.6699C111.979 39.1552 111.948 39.5927 111.885 39.9823H102.085C102.162 41.015 102.542 41.8441 103.224 42.4698C103.907 43.0945 104.746 43.4069 105.739 43.4069C107.167 43.4069 108.175 42.8051 108.765 41.6015H111.629C111.248 42.7791 110.506 43.8049 109.511 44.5316C108.502 45.2824 107.244 45.6579 105.738 45.6579C104.513 45.6579 103.412 45.3842 102.435 44.8368C101.476 44.2802 100.686 43.4695 100.152 42.4927C99.6092 41.4764 99.338 40.3038 99.338 38.9751C99.338 37.6464 99.6016 36.4815 100.129 35.4803C100.643 34.4973 101.427 33.6837 102.386 33.1363C103.365 32.5889 104.483 32.3152 105.739 32.3152C106.95 32.3152 108.028 32.5813 108.976 33.1134C109.921 33.6444 110.659 34.3948 111.188 35.3644C111.714 36.3187 111.978 37.4205 111.979 38.6699ZM109.208 37.8259C109.193 36.8421 108.844 36.0526 108.161 35.4574C107.478 34.8633 106.632 34.5662 105.623 34.5662C104.708 34.5662 103.924 34.8633 103.271 35.4574C102.62 36.0363 102.232 36.8258 102.108 37.8259H109.208ZM118.78 45.6579C117.771 45.6579 116.863 45.4783 116.056 45.1191C115.265 44.7437 114.637 44.2432 114.171 43.6175C113.714 42.9985 113.455 42.2547 113.426 41.484H116.173C116.22 42.0313 116.476 42.4927 116.941 42.8682C117.423 43.2273 118.02 43.4069 118.733 43.4069C119.479 43.4069 120.053 43.266 120.456 42.9841C120.875 42.6881 121.085 42.3132 121.085 41.8594C121.085 41.3751 120.853 41.0155 120.388 40.7805C119.937 40.5454 119.215 40.2875 118.221 40.0067C117.424 39.7951 116.639 39.5367 115.871 39.233C115.262 38.9791 114.72 38.5856 114.288 38.0839C113.854 37.568 113.636 36.8879 113.636 36.0435C113.636 35.3567 113.838 34.7315 114.241 34.1679C114.644 33.589 115.218 33.1357 115.964 32.8081C116.725 32.4795 117.594 32.3152 118.57 32.3152C120.03 32.3152 121.202 32.6906 122.085 33.4415C122.986 34.176 123.468 35.1843 123.53 36.4662H120.876C120.862 36.199 120.793 35.9378 120.673 35.6993C120.552 35.4608 120.384 35.2505 120.177 35.082C119.758 34.7381 119.192 34.5662 118.477 34.5662C117.78 34.5662 117.245 34.6995 116.871 34.966C116.697 35.0798 116.555 35.2363 116.457 35.4207C116.359 35.6051 116.309 35.8115 116.312 36.0206C116.312 36.3645 116.436 36.6539 116.685 36.8889C116.933 37.1239 117.236 37.3111 117.594 37.4505C117.951 37.5757 118.478 37.74 119.176 37.9435C120.107 38.1937 120.868 38.4516 121.458 38.7172C122.064 38.9675 122.584 39.3429 123.018 39.8434C123.453 40.343 123.677 41.0073 123.693 41.8365C123.693 42.5701 123.49 43.2263 123.086 43.8052C122.682 44.3841 122.109 44.8373 121.365 45.1649C120.636 45.4935 119.774 45.6579 118.78 45.6579ZM127.165 45.6121C126.684 45.6121 126.281 45.4478 125.955 45.1191C125.795 44.9598 125.67 44.7693 125.586 44.5594C125.502 44.3495 125.461 44.1245 125.467 43.8983C125.467 43.415 125.629 43.0091 125.955 42.6804C126.281 42.3518 126.685 42.1875 127.167 42.1875C127.631 42.1875 128.027 42.3518 128.353 42.6804C128.679 43.008 128.843 43.4145 128.843 43.8998C128.843 44.3841 128.679 44.7905 128.353 45.1191C128.199 45.2782 128.014 45.4039 127.81 45.4884C127.605 45.5729 127.386 45.616 127.165 45.6121ZM130.361 38.9278C130.361 37.6306 130.624 36.482 131.152 35.4819C131.657 34.52 132.415 33.7163 133.342 33.1579C134.27 32.5996 135.332 32.3082 136.412 32.3152C137.421 32.3152 138.299 32.5187 139.044 32.9257C139.804 33.3163 140.409 33.8088 140.859 34.4029V32.5258H143.536V45.4473H140.859V43.5244C140.409 44.1348 139.796 44.643 139.02 45.0489C138.244 45.4549 137.36 45.6579 136.367 45.6579C135.299 45.6678 134.25 45.3754 133.339 44.8139C132.414 44.225 131.659 43.4 131.152 42.4225C130.623 41.3909 130.361 40.226 130.361 38.9278ZM140.859 38.9751C140.859 38.0849 140.672 37.3111 140.299 36.6539C139.972 36.0315 139.48 35.5123 138.879 35.1538C138.3 34.8121 137.641 34.6334 136.97 34.6364C136.288 34.6364 135.652 34.8083 135.061 35.1522C134.471 35.4808 133.99 35.9738 133.618 36.631C133.261 37.272 133.082 38.0376 133.082 38.9278C133.082 39.819 133.261 40.6009 133.618 41.2734C133.99 41.9449 134.471 42.4607 135.061 42.8208C135.667 43.1647 136.303 43.3367 136.97 43.3367C137.652 43.3367 138.288 43.1647 138.879 42.8208C139.47 42.477 139.943 41.9769 140.299 41.3207C140.672 40.6482 140.859 39.8663 140.859 38.9751ZM147.908 30.8151C147.426 30.8151 147.022 30.6508 146.696 30.3221C146.536 30.1629 146.411 29.9727 146.327 29.7631C146.243 29.5534 146.202 29.3288 146.208 29.1028C146.208 28.6195 146.371 28.2131 146.697 27.8834C147.022 27.5558 147.426 27.392 147.908 27.392C148.372 27.392 148.768 27.5558 149.094 27.8834C149.42 28.2131 149.583 28.62 149.583 29.1043C149.583 29.5886 149.42 29.9945 149.094 30.3221C148.94 30.4815 148.755 30.6074 148.551 30.6922C148.346 30.7769 148.127 30.8188 147.906 30.8151M149.209 32.5273V45.4473H146.555V32.5273H149.209Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_1974_7492\" x1=\"27.0585\" y1=\"46.4391\" x2=\"-15.1336\" y2=\"2.42764\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#E82A73\"/>\\n<stop offset=\"0.113\" stop-color=\"#DE2D7A\"/>\\n<stop offset=\"0.3\" stop-color=\"#C5388F\"/>\\n<stop offset=\"0.54\" stop-color=\"#9B4AB0\"/>\\n<stop offset=\"0.818\" stop-color=\"#6262DE\"/>\\n<stop offset=\"0.994\" stop-color=\"#3B73FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_1974_7492\" x1=\"27.2024\" y1=\"46.304\" x2=\"-14.9897\" y2=\"2.29103\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF3C82\"/>\\n<stop offset=\"0.103\" stop-color=\"#F53E88\"/>\\n<stop offset=\"0.274\" stop-color=\"#DC4598\"/>\\n<stop offset=\"0.492\" stop-color=\"#B251B2\"/>\\n<stop offset=\"0.745\" stop-color=\"#7961D7\"/>\\n<stop offset=\"0.994\" stop-color=\"#3B73FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_1974_7492\" x1=\"34.1584\" y1=\"39.6373\" x2=\"19.7781\" y2=\"-12.1007\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#E82A73\"/>\\n<stop offset=\"0.113\" stop-color=\"#DE2D7A\"/>\\n<stop offset=\"0.3\" stop-color=\"#C5388F\"/>\\n<stop offset=\"0.54\" stop-color=\"#9B4AB0\"/>\\n<stop offset=\"0.818\" stop-color=\"#6262DE\"/>\\n<stop offset=\"0.994\" stop-color=\"#3B73FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_1974_7492\" x1=\"20.1886\" y1=\"53.0204\" x2=\"-30.6686\" y2=\"37.6384\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#E82A73\"/>\\n<stop offset=\"0.113\" stop-color=\"#DE2D7A\"/>\\n<stop offset=\"0.3\" stop-color=\"#C5388F\"/>\\n<stop offset=\"0.54\" stop-color=\"#9B4AB0\"/>\\n<stop offset=\"0.818\" stop-color=\"#6262DE\"/>\\n<stop offset=\"0.994\" stop-color=\"#3B73FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_1974_7492\" x1=\"-2.18567\" y1=\"8.79951\" x2=\"12.2145\" y2=\"41.5605\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#E82A73\"/>\\n<stop offset=\"0.114\" stop-color=\"#DE286E\"/>\\n<stop offset=\"0.303\" stop-color=\"#C52361\"/>\\n<stop offset=\"0.544\" stop-color=\"#9B1A4D\"/>\\n<stop offset=\"0.825\" stop-color=\"#620F30\"/>\\n<stop offset=\"0.994\" stop-color=\"#3D081E\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_1974_7492\" x1=\"9.61902\" y1=\"20.8244\" x2=\"24.0191\" y2=\"53.5869\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#E82A73\"/>\\n<stop offset=\"0.114\" stop-color=\"#DE286E\"/>\\n<stop offset=\"0.303\" stop-color=\"#C52361\"/>\\n<stop offset=\"0.544\" stop-color=\"#9B1A4D\"/>\\n<stop offset=\"0.825\" stop-color=\"#620F30\"/>\\n<stop offset=\"0.994\" stop-color=\"#3D081E\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_1974_7492\" x1=\"-0.622029\" y1=\"20.2994\" x2=\"31.7423\" y2=\"41.6453\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#E82A73\"/>\\n<stop offset=\"0.114\" stop-color=\"#DE286E\"/>\\n<stop offset=\"0.303\" stop-color=\"#C52361\"/>\\n<stop offset=\"0.544\" stop-color=\"#9B1A4D\"/>\\n<stop offset=\"0.825\" stop-color=\"#620F30\"/>\\n<stop offset=\"0.994\" stop-color=\"#3D081E\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_1974_7492\" x1=\"-702.693\" y1=\"721.98\" x2=\"-697.093\" y2=\"765.879\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#E82A73\"/>\\n<stop offset=\"0.114\" stop-color=\"#DE286E\"/>\\n<stop offset=\"0.303\" stop-color=\"#C52361\"/>\\n<stop offset=\"0.544\" stop-color=\"#9B1A4D\"/>\\n<stop offset=\"0.825\" stop-color=\"#620F30\"/>\\n<stop offset=\"0.994\" stop-color=\"#3D081E\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y04kok\",\"data-framer-name\":\"PLEO\",layoutDependency:layoutDependency,layoutId:\"yJ3lWNr3H\",style:{filter:\"grayscale(1)\",opacity:.72,WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:66,pixelWidth:69,src:\"https://framerusercontent.com/images/WpT7Hj7s9oEUw1sJsAoUeO5jqoQ.png\"},className:\"framer-kcuvfy\",\"data-framer-name\":\"image 384\",layoutDependency:layoutDependency,layoutId:\"fzx55brLW\",style:{opacity:.72}})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({GdnE2mgpa:{gap:32}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ap5dz.framer-18v0sye, .framer-Ap5dz .framer-18v0sye { display: block; }\",\".framer-Ap5dz.framer-sjklrm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; width: 1184px; }\",\".framer-Ap5dz .framer-14sbdcg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Ap5dz .framer-1yo8i3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ap5dz .framer-1bptil1, .framer-Ap5dz .framer-1blrye5 { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-Ap5dz .framer-j60x1s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 20px; justify-content: flex-start; overflow: visible; padding: 13.333333015441895px 0px 13.333333015441895px 0px; position: relative; width: min-content; }\",\".framer-Ap5dz .framer-1p16pnv, .framer-Ap5dz .framer-1rhglvp, .framer-Ap5dz .framer-864xx5, .framer-Ap5dz .framer-jmg76y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ap5dz .framer-vliwkv { align-content: center; align-items: center; aspect-ratio: 4.230769230769231 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6.666666507720947px; height: var(--framer-aspect-ratio-supported, 26px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 110px; }\",\".framer-Ap5dz .framer-1khcbo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 20px; justify-content: center; overflow: visible; padding: 13.333333015441895px 0px 13.333333015441895px 0px; position: relative; width: min-content; }\",\".framer-Ap5dz .framer-h2dcv8 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6.666666507720947px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Ap5dz .framer-baoc89 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3.472222089767456px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Ap5dz .framer-1c1nk7d, .framer-Ap5dz .framer-r11zhx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Ap5dz .framer-oarzdn { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-Ap5dz .framer-1fhqzix { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 44px; }\",\".framer-Ap5dz .framer-1t4vkxb { display: grid; flex: none; gap: 1px 1px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(120px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ap5dz .framer-ugkoxn-container, .framer-Ap5dz .framer-3tb4sf-container, .framer-Ap5dz .framer-6w9krk-container, .framer-Ap5dz .framer-1vn3ipm-container, .framer-Ap5dz .framer-190ojk9-container, .framer-Ap5dz .framer-ihxz26-container, .framer-Ap5dz .framer-larjyx-container, .framer-Ap5dz .framer-1ksg2rv-container, .framer-Ap5dz .framer-17979qw-container, .framer-Ap5dz .framer-m074ps-container, .framer-Ap5dz .framer-15bxstj-container, .framer-Ap5dz .framer-23b57q-container { align-self: start; flex: none; height: 224px; justify-self: start; position: relative; width: 100%; }\",\".framer-Ap5dz .framer-1wm0xgz-container, .framer-Ap5dz .framer-16r6wvf-container { flex: none; height: 62px; position: relative; width: 100%; }\",\".framer-Ap5dz .framer-60m6ku { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 113px; }\",\".framer-Ap5dz .framer-73avsr { aspect-ratio: 2.5833334691241547 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 100%; }\",\".framer-Ap5dz .framer-1vkj609 { height: 63px; position: relative; width: 150px; }\",\".framer-Ap5dz .framer-1i3cj1n { height: 55px; position: relative; width: 104px; }\",\".framer-Ap5dz .framer-1wlvb1m { height: 50px; overflow: hidden; position: relative; width: 81px; }\",\".framer-Ap5dz .framer-7tecgj, .framer-Ap5dz .framer-t5q6c9, .framer-Ap5dz .framer-1uz56dy, .framer-Ap5dz .framer-pnr9da, .framer-Ap5dz .framer-a4tiw0, .framer-Ap5dz .framer-b0hrxn { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Ap5dz .framer-13pguat { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 93px; }\",\".framer-Ap5dz .framer-19g13qj { aspect-ratio: 2.9189191818237306 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 100%; }\",\".framer-Ap5dz .framer-1uzdcku { height: 45px; overflow: hidden; position: relative; width: 58px; }\",\".framer-Ap5dz .framer-12yawp2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 129px; }\",\".framer-Ap5dz .framer-pu9dl1 { aspect-ratio: 3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 100%; }\",\".framer-Ap5dz .framer-s34hie { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 118px; }\",\".framer-Ap5dz .framer-ervthg { aspect-ratio: 4.6153845017956145 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 100%; }\",\".framer-Ap5dz .framer-3hqjsv { height: 56px; position: relative; width: 124px; }\",\".framer-Ap5dz .framer-3t9ee0 { height: 47px; overflow: hidden; position: relative; width: 117px; }\",\".framer-Ap5dz .framer-9cx1ys { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; }\",\".framer-Ap5dz .framer-nca173 { aspect-ratio: 1.0454545395078372 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 100%; }\",\".framer-Ap5dz .framer-1o3jmee { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 74px; }\",\".framer-Ap5dz .framer-16dq2hw { aspect-ratio: 2.9189191818237306 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 100%; }\",\".framer-Ap5dz .framer-9zjy3a { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 79px; }\",\".framer-Ap5dz .framer-1r8c5oe { aspect-ratio: 2.5833334691241547 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 100%; }\",\".framer-Ap5dz .framer-184rgis { height: 46px; position: relative; width: 109px; }\",\".framer-Ap5dz .framer-l93ol { height: 43px; position: relative; width: 81px; }\",\".framer-Ap5dz .framer-1zdggn { height: 38px; overflow: hidden; position: relative; width: 63px; }\",\".framer-Ap5dz .framer-1fc3t84 { height: 38px; overflow: hidden; position: relative; width: 49px; }\",\".framer-Ap5dz .framer-1xwhb0z { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 116px; }\",\".framer-Ap5dz .framer-1jfdwmv { aspect-ratio: 3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); position: relative; width: 100%; }\",\".framer-Ap5dz .framer-943zxj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 107px; }\",\".framer-Ap5dz .framer-frvgwv { aspect-ratio: 4.6153845017956145 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 100%; }\",\".framer-Ap5dz .framer-17cowxw { height: 40px; position: relative; width: 91px; }\",\".framer-Ap5dz .framer-ppjd9w { height: 41px; overflow: hidden; position: relative; width: 91px; }\",\".framer-Ap5dz .framer-y04kok { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 33px; }\",\".framer-Ap5dz .framer-kcuvfy { aspect-ratio: 1.0454545395078372 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 100%; }\",\".framer-Ap5dz.framer-v-1qrgp4p.framer-sjklrm { overflow: visible; padding: 16px 0px 16px 0px; width: 480px; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-14sbdcg { align-content: flex-start; align-items: flex-start; gap: 34px; justify-content: flex-start; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-1yo8i3h, .framer-Ap5dz.framer-v-nd0xss .framer-1yo8i3h { gap: 24px; justify-content: center; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-vliwkv { height: var(--framer-aspect-ratio-supported, 21px); width: 88px; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-oarzdn, .framer-Ap5dz.framer-v-nd0xss .framer-oarzdn { height: 14px; width: 14px; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-1fhqzix, .framer-Ap5dz.framer-v-nd0xss .framer-1fhqzix { height: var(--framer-aspect-ratio-supported, 30px); width: 30px; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-1t4vkxb { grid-template-columns: repeat(2, minmax(120px, 1fr)); }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-ugkoxn-container { height: 132px; order: 0; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-3tb4sf-container { height: 132px; order: 1; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-1vn3ipm-container { height: 132px; order: 3; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-190ojk9-container { height: 132px; order: 4; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-ihxz26-container { height: 132px; order: 5; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-larjyx-container { height: 132px; order: 6; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-m074ps-container { height: 132px; order: 9; }\",\".framer-Ap5dz.framer-v-1qrgp4p .framer-15bxstj-container { height: 132px; order: 10; }\",\".framer-Ap5dz.framer-v-9qftr4.framer-sjklrm { padding: 0px 0px 0px 2px; }\",\".framer-Ap5dz.framer-v-9qftr4 .framer-14sbdcg { flex-direction: row; justify-content: flex-start; max-width: 1224px; }\",\".framer-Ap5dz.framer-v-9qftr4 .framer-1yo8i3h { width: min-content; }\",\".framer-Ap5dz.framer-v-9qftr4 .framer-1wm0xgz-container { flex: 1 0 0px; width: 1px; }\",\".framer-Ap5dz.framer-v-nd0xss.framer-sjklrm { overflow: visible; padding: 0px; width: 480px; }\",\".framer-Ap5dz.framer-v-nd0xss .framer-14sbdcg { align-content: flex-start; align-items: flex-start; gap: 12px; justify-content: flex-start; }\",\".framer-Ap5dz.framer-v-nd0xss .framer-vliwkv { height: var(--framer-aspect-ratio-supported, 21px); width: 89px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 790.5\n * @framerIntrinsicWidth 1184\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PWCYwrUn0\":{\"layout\":[\"fixed\",\"auto\"]},\"kNurqd21z\":{\"layout\":[\"fixed\",\"auto\"]},\"GdnE2mgpa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerI6lrpGwn9=withCSS(Component,css,\"framer-Ap5dz\");export default FramerI6lrpGwn9;FramerI6lrpGwn9.displayName=\"Trustmarkers\";FramerI6lrpGwn9.defaultProps={height:790.5,width:1184};addPropertyControls(FramerI6lrpGwn9,{variant:{options:[\"idHDk_3fa\",\"PWCYwrUn0\",\"kNurqd21z\",\"GdnE2mgpa\"],optionTitles:[\"Grid Desktop\",\"Grid Mobile\",\"Ticker Desktop\",\"Ticker Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerI6lrpGwn9,[{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\"}]},...HeroLogosFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI6lrpGwn9\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"790.5\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PWCYwrUn0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kNurqd21z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GdnE2mgpa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1184\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["addUniqueItem", "t", "e", "clamp", "t", "e", "n", "isNumber", "isEasingList", "wrap", "o", "getEasingForSegment", "mix", "noop", "noopReturn", "progress", "fillOffset", "s", "defaultOffset", "interpolate", "f", "r", "isCubicBezier", "isEasingGenerator", "isFunction", "isString", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "steps", "clamp", "l", "cubicBezier", "u", "getEasingFunction", "s", "isFunction", "isCubicBezier", "a", "t", "i", "steps", "noopReturn", "Animation", "o", "h", "m", "c", "d", "isEasingGenerator", "isEasingList", "f", "interpolate", "e", "n", "r", "n", "e", "t", "r", "MotionValue", "i", "__rest", "n", "o", "n", "calcGeneratorVelocity", "t", "s", "velocityPerSecond", "r", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "u", "d", "f", "l", "g", "m", "glide", "a", "isOutOfBounds", "nearestBoundary", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "getAnimationData", "getMotionValue", "MotionValue", "L", "T", "M", "D", "B", "noopReturn", "k", "asTransformCssVar", "N", "compareTransformOrder", "$", "isTransform", "addTransformToElement", "n", "addUniqueItem", "buildTransformTemplate", "transformListToString", "isCssVar", "C", "registerCssVariable", "testAnimation", "j", "P", "R", "H", "generateLinearEasingPoints", "o", "t", "progress", "convertEasing", "isFunction", "isCubicBezier", "cubicBezierAsString", "hydrateKeyframes", "keyframesList", "getStyleName", "I", "e", "stopAnimation", "getUnitConverter", "s", "isString", "getDevToolsRecord", "window", "animateStyle", "r", "l", "f", "v", "y", "w", "E", "b", "A", "S", "O", "x", "z", "isEasingGenerator", "readInitialValue", "c", "isEasingList", "isNumber", "noop", "getOptions", "resolveElements", "createAnimation", "withControls", "U", "getActiveAnimation", "selectFinished", "resolveOption", "n", "isFunction", "createAnimate", "t", "o", "resolveElements", "r", "a", "c", "getOptions", "l", "animateStyle", "withControls", "F", "Animation", "canGenerate", "isNumber", "getAsNumber", "isString", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "l", "f", "noopReturn", "u", "getUnitConverter", "k", "getStyleName", "calcGeneratorVelocity", "G", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "_", "Z", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "X", "Y", "createWindowResizeHandler", "window", "resizeWindow", "resize", "J", "createAxisInfo", "createScrollInfo", "Q", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "ee", "te", "resolveEdge", "ne", "resolveOffset", "oe", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "ie", "se", "re", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "n", "dispatchViewEvent", "ce", "o", "__rest", "inView$1", "t", "mouseEvent", "le", "fe", "onPointerUp", "window", "onPointerDown", "ue", "de", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "ButtonNeutralFonts", "getFonts", "gp4T5SR2P_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "detailedCaseStudy", "height", "id", "speakerDesignation", "speakerImage", "speakerName", "testimonialText", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "uC7gZSGOd", "qrXd0p74k", "fC5HkHvvu", "ehf4SNUlW", "LB3HHeD7q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "gp4T5SR2P_default", "css", "FramerY5tHMvYDM", "withCSS", "Y5tHMvYDM_default", "addPropertyControls", "ControlType", "addFonts", "ButtonNeutralFonts", "getFontsFromSharedStyle", "fonts", "ImageWithFX", "withFX", "Image2", "HeroTestimonialFonts", "getFonts", "Y5tHMvYDM_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "transformTemplate1", "_", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "contributorDesignation", "contributorName", "detailedCaseStudy", "height", "id", "mainLogoImage", "speakerImage", "testimonialText", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Rb_aqcCYI", "EmmF_zmAF", "diIeAnYFW", "akkbpFyMf", "tOxnyOZO4", "OX_a5ywYY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerE7ud2_VRx", "withCSS", "E7ud2_VRx_default", "addPropertyControls", "ControlType", "addFonts", "HeroLogosFonts", "getFonts", "E7ud2_VRx_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "u", "RichText", "Image2", "getLoadingLazyAtYPosition", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerI6lrpGwn9", "withCSS", "I6lrpGwn9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
