{
  "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.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framerusercontent.com/modules/FrSOWhnsn4krDYgm1nqI/7rvt6osZgZntkHF2qYTP/xddfRu6m1.js", "ssg:https://framerusercontent.com/modules/XYiarivPLZYvjnBhrXXG/Dvfx6PgeYIPtN5lCjhuV/PfvczNFMc.js", "ssg:https://framerusercontent.com/modules/AgNYbOOmRvF52wyzlIgU/VEjwDevYCCtAOgOKIzNP/AV5ir6b2e.js", "ssg:https://framerusercontent.com/modules/51KUSLoFW3i7SDTCzFBh/Zr7vEgdF34oUjWrzupu9/s7y9jZt2M.js", "ssg:https://framerusercontent.com/modules/d0ASw3GkKiPJKGeYCtgG/IbFRYd2mPG6mrU2PnRkm/bAwOOiB5q.js", "ssg:https://framerusercontent.com/modules/jfIZxQXLjIN0Bqldcrw9/HKRpDXCYUW8onQ8dJXiQ/GrMcM_j4v.js", "ssg:https://framerusercontent.com/modules/jEMFn6Ntdf3lrW6Z9mqh/DTU0LXbMWOyZ4dCpDTcM/ZXxTlwViV.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 h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){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}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t,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=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/n)/1e3;const l=calcDampingRatio(e,s,n);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const 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));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { Children, useEffect, useState, useRef, useMemo, createRef, useCallback, cloneElement } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport { useAnimationFrame, useReducedMotion, LayoutGroup, useInView, useMotionValue, useTransform, motion, wrap, frame } from \"framer-motion\";\nimport { resize } from \"@motionone/dom\";\nconst MAX_DUPLICATED_ITEMS = 100;\nconst directionTransformers = {\n  left: offset => `translateX(-${offset}px)`,\n  right: offset => `translateX(${offset}px)`,\n  top: offset => `translateY(-${offset}px)`,\n  bottom: offset => `translateY(${offset}px)`\n};\nconst supportsAcceleratedAnimations = typeof Animation !== \"undefined\" && typeof Animation.prototype.updatePlaybackRate === \"function\"; /**\n                                                                                                                                        *\n                                                                                                                                        * @framerIntrinsicWidth 400\n                                                                                                                                        * @framerIntrinsicHeight 200\n                                                                                                                                        *\n                                                                                                                                        * @framerDisableUnlink\n                                                                                                                                        *\n                                                                                                                                        * @framerSupportedLayoutWidth fixed\n                                                                                                                                        * @framerSupportedLayoutHeight fixed\n                                                                                                                                        */\nexport default function Ticker(props) {\n  /* Props */let {\n    slots,\n    gap,\n    padding,\n    paddingPerSide,\n    paddingTop,\n    paddingRight,\n    paddingBottom,\n    paddingLeft,\n    speed,\n    hoverFactor,\n    direction,\n    alignment,\n    sizingOptions,\n    fadeOptions,\n    style\n  } = props;\n  const {\n    fadeContent,\n    overflow,\n    fadeWidth,\n    fadeInset,\n    fadeAlpha\n  } = fadeOptions;\n  const {\n    widthType,\n    heightType\n  } = sizingOptions;\n  const paddingValue = paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : `${padding}px`; /* Checks */\n  const isCanvas = RenderTarget.current() === RenderTarget.canvas;\n  const numChildren = Children.count(slots);\n  const hasChildren = numChildren > 0;\n  if (direction === true) {\n    direction = \"left\";\n  }\n  const isHorizontal = direction === \"left\" || direction === \"right\";\n  const offset = useMotionValue(0);\n  const transformer = directionTransformers[direction];\n  const transform = useTransform(offset, transformer); /* Refs and State */\n  const parentRef = useRef(null);\n  const childrenRef = useMemo(() => {\n    return [/*#__PURE__*/createRef(), /*#__PURE__*/createRef()];\n  }, []);\n  const [size, setSize] = useState({\n    parent: null,\n    children: null\n  }); /* Arrays */\n  let clonedChildren = [];\n  let dupedChildren = []; /* Duplicate value */\n  let duplicateBy = 0;\n  let opacity = 0;\n  if (isCanvas) {\n    duplicateBy = numChildren ? Math.floor(10 / numChildren) : 0;\n    opacity = 1;\n  }\n  if (!isCanvas && hasChildren && size.parent) {\n    duplicateBy = Math.round(size.parent / size.children * 2) + 1;\n    duplicateBy = Math.min(duplicateBy, MAX_DUPLICATED_ITEMS);\n    opacity = 1;\n  } /* Measure parent and child */\n  const measure = useCallback(() => {\n    if (hasChildren && parentRef.current) {\n      const parentLength = isHorizontal ? parentRef.current.offsetWidth : parentRef.current.offsetHeight;\n      const start = childrenRef[0].current ? isHorizontal ? childrenRef[0].current.offsetLeft : childrenRef[0].current.offsetTop : 0;\n      const end = childrenRef[1].current ? isHorizontal ? childrenRef[1].current.offsetLeft + childrenRef[1].current.offsetWidth : childrenRef[1].current.offsetTop + childrenRef[1].current.offsetHeight : 0;\n      const childrenLength = end - start + gap;\n      setSize({\n        parent: parentLength,\n        children: childrenLength\n      });\n    }\n  }, []);\n  const childrenStyles = isCanvas ? {\n    contentVisibility: \"auto\"\n  } : {}; /* Add refs to first and last child */\n  if (hasChildren) {\n    // TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\n    if (!isCanvas) {\n      /**\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      */\n      let initialResize = useRef(true);\n      useEffect(() => {\n        frame.read(measure);\n        return resize(parentRef.current, ({\n          contentSize\n        }) => {\n          if (!initialResize.current && (contentSize.width || contentSize.height)) {\n            frame.read(measure);\n          }\n          initialResize.current = false;\n        });\n      }, []);\n    }\n    clonedChildren = Children.map(slots, (child, index) => {\n      var _child_props, _child_props1, _child_props2, _child_props3;\n      let ref;\n      if (index === 0) {\n        ref = childrenRef[0];\n      }\n      if (index === slots.length - 1) {\n        ref = childrenRef[1];\n      }\n      const size = {\n        width: widthType ? (_child_props = child.props) === null || _child_props === void 0 ? void 0 : _child_props.width : \"100%\",\n        height: heightType ? (_child_props1 = child.props) === null || _child_props1 === void 0 ? void 0 : _child_props1.height : \"100%\"\n      };\n      return /*#__PURE__*/_jsx(LayoutGroup, {\n        inherit: \"id\",\n        children: /*#__PURE__*/_jsx(\"li\", {\n          ref: ref,\n          style: size,\n          children: /*#__PURE__*/cloneElement(child, {\n            style: {\n              ...((_child_props2 = child.props) === null || _child_props2 === void 0 ? void 0 : _child_props2.style),\n              ...size,\n              flexShrink: 0,\n              ...childrenStyles\n            },\n            layoutId: child.props.layoutId ? child.props.layoutId + \"-original-\" + index : undefined\n          }, (_child_props3 = child.props) === null || _child_props3 === void 0 ? void 0 : _child_props3.children)\n        })\n      });\n    });\n  }\n  if (!isCanvas) {\n    for (let i = 0; i < duplicateBy; i++) {\n      dupedChildren = [...dupedChildren, ...Children.map(slots, (child, childIndex) => {\n        var _child_props, _child_props1, _child_props2, _child_props3, _child_props4, _child_props5;\n        const size = {\n          width: widthType ? (_child_props = child.props) === null || _child_props === void 0 ? void 0 : _child_props.width : \"100%\",\n          height: heightType ? (_child_props1 = child.props) === null || _child_props1 === void 0 ? void 0 : _child_props1.height : \"100%\"\n        };\n        return /*#__PURE__*/_jsx(LayoutGroup, {\n          inherit: \"id\",\n          children: /*#__PURE__*/_jsx(\"li\", {\n            style: size,\n            \"aria-hidden\": true,\n            children: /*#__PURE__*/cloneElement(child, {\n              key: i + \" \" + childIndex,\n              style: {\n                ...((_child_props2 = child.props) === null || _child_props2 === void 0 ? void 0 : _child_props2.style),\n                width: widthType ? (_child_props3 = child.props) === null || _child_props3 === void 0 ? void 0 : _child_props3.width : \"100%\",\n                height: heightType ? (_child_props4 = child.props) === null || _child_props4 === void 0 ? void 0 : _child_props4.height : \"100%\",\n                flexShrink: 0,\n                ...childrenStyles\n              },\n              layoutId: child.props.layoutId ? child.props.layoutId + \"-dupe-\" + i : undefined\n            }, (_child_props5 = child.props) === null || _child_props5 === void 0 ? void 0 : _child_props5.children)\n          }, i + \"li\" + childIndex)\n        }, i + \"lg\" + childIndex);\n      })];\n    }\n  }\n  const animateToValue = size.children + size.children * Math.round(size.parent / size.children);\n  const initialTime = useRef(null);\n  const prevTime = useRef(null);\n  const xOrY = useRef(0);\n  const isHover = useRef(false);\n  const isReducedMotion = useReducedMotion();\n  const listRef = useRef(null);\n  const animationRef = useRef(null); /**\n                                     * Setup animations\n                                     */\n  if (!isCanvas) {\n    const isInView = useInView(parentRef); /**\n                                           * If this is an animation we can hardware accelerate, animate with WAAPI\n                                           */\n    if (supportsAcceleratedAnimations) {\n      useEffect(() => {\n        if (isReducedMotion || !animateToValue || !speed) {\n          return;\n        }\n        animationRef.current = listRef.current.animate({\n          transform: [transformer(0), transformer(animateToValue)]\n        }, {\n          duration: Math.abs(animateToValue) / speed * 1e3,\n          iterations: Infinity,\n          easing: \"linear\"\n        });\n        return () => animationRef.current.cancel();\n      }, [hoverFactor, animateToValue, speed]);\n    } else {\n      /**\n      * If we can't accelerate this animation because we have a hoverFactor defined\n      * animate with a rAF loop.\n      */\n      useAnimationFrame(t => {\n        if (!animateToValue || isReducedMotion || supportsAcceleratedAnimations) {\n          return;\n        } /**\n          * In case this animation is delayed from starting because we're running a bunch\n          * of other work, we want to set an initial time rather than counting from 0.\n          * That ensures that if the animation is delayed, it starts from the first frame\n          * rather than jumping.\n          */\n        if (initialTime.current === null) {\n          initialTime.current = t;\n        }\n        t = t - initialTime.current;\n        const timeSince = prevTime.current === null ? 0 : t - prevTime.current;\n        let delta = timeSince * (speed / 1e3);\n        if (isHover.current) {\n          delta *= hoverFactor;\n        }\n        xOrY.current += delta;\n        xOrY.current = wrap(0, animateToValue, xOrY.current);\n        prevTime.current = t;\n        if (!isInView) return;\n        offset.set(xOrY.current);\n      });\n    }\n  } /* Fades */\n  const fadeDirection = isHorizontal ? \"to right\" : \"to bottom\";\n  const fadeWidthStart = fadeWidth / 2;\n  const fadeWidthEnd = 100 - fadeWidth / 2;\n  const fadeInsetStart = clamp(fadeInset, 0, fadeWidthStart);\n  const fadeInsetEnd = 100 - fadeInset;\n  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 */\n  if (!hasChildren) {\n    return /*#__PURE__*/_jsxs(\"section\", {\n      style: placeholderStyles,\n      children: [/*#__PURE__*/_jsx(\"div\", {\n        style: emojiStyles,\n        children: \"\u2728\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: titleStyles,\n        children: \"Connect to Content\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: subtitleStyles,\n        children: \"Add layers or components to infinitely loop on your page.\"\n      })]\n    });\n  }\n  return /*#__PURE__*/_jsx(\"section\", {\n    style: {\n      ...containerStyle,\n      opacity: opacity,\n      WebkitMaskImage: fadeContent ? fadeMask : undefined,\n      MozMaskImage: fadeContent ? fadeMask : undefined,\n      maskImage: fadeContent ? fadeMask : undefined,\n      overflow: overflow ? \"visible\" : \"hidden\",\n      padding: paddingValue\n    },\n    ref: parentRef,\n    children: /*#__PURE__*/_jsxs(motion.ul, {\n      ref: listRef,\n      style: {\n        ...containerStyle,\n        gap: gap,\n        top: direction === \"bottom\" && isValidNumber(animateToValue) ? -animateToValue : undefined,\n        left: direction === \"right\" && isValidNumber(animateToValue) ? -animateToValue : undefined,\n        placeItems: alignment,\n        position: \"relative\",\n        flexDirection: isHorizontal ? \"row\" : \"column\",\n        ...style,\n        transform: supportsAcceleratedAnimations ? undefined : transform,\n        willChange: isCanvas ? \"auto\" : \"transform\"\n      },\n      onMouseEnter: () => {\n        isHover.current = true;\n        if (animationRef.current) {\n          animationRef.current.updatePlaybackRate(hoverFactor);\n        }\n      },\n      onMouseLeave: () => {\n        isHover.current = false;\n        if (animationRef.current) {\n          animationRef.current.updatePlaybackRate(1);\n        }\n      },\n      children: [clonedChildren, dupedChildren]\n    })\n  });\n} /* Default Properties */\nTicker.defaultProps = {\n  gap: 10,\n  padding: 10,\n  sizingOptions: {\n    widthType: true,\n    heightType: true\n  },\n  fadeOptions: {\n    fadeContent: true,\n    overflow: false,\n    fadeWidth: 25,\n    fadeAlpha: 0,\n    fadeInset: 0\n  },\n  direction: true\n}; /* Property Controls */\naddPropertyControls(Ticker, {\n  slots: {\n    type: ControlType.Array,\n    title: \"Children\",\n    control: {\n      type: ControlType.ComponentInstance\n    }\n  },\n  speed: {\n    type: ControlType.Number,\n    title: \"Speed\",\n    min: 0,\n    max: 1e3,\n    defaultValue: 100,\n    unit: \"%\",\n    displayStepper: true,\n    step: 5\n  },\n  direction: {\n    type: ControlType.Enum,\n    title: \"Direction\",\n    options: [\"left\", \"right\", \"top\", \"bottom\"],\n    optionIcons: [\"direction-left\", \"direction-right\", \"direction-up\", \"direction-down\"],\n    optionTitles: [\"Left\", \"Right\", \"Top\", \"Bottom\"],\n    defaultValue: \"left\",\n    displaySegmentedControl: true\n  },\n  alignment: {\n    type: ControlType.Enum,\n    title: \"Align\",\n    options: [\"flex-start\", \"center\", \"flex-end\"],\n    optionIcons: {\n      direction: {\n        right: [\"align-top\", \"align-middle\", \"align-bottom\"],\n        left: [\"align-top\", \"align-middle\", \"align-bottom\"],\n        top: [\"align-left\", \"align-center\", \"align-right\"],\n        bottom: [\"align-left\", \"align-center\", \"align-right\"]\n      }\n    },\n    defaultValue: \"center\",\n    displaySegmentedControl: true\n  },\n  gap: {\n    type: ControlType.Number,\n    title: \"Gap\"\n  },\n  padding: {\n    title: \"Padding\",\n    type: ControlType.FusedNumber,\n    toggleKey: \"paddingPerSide\",\n    toggleTitles: [\"Padding\", \"Padding per side\"],\n    valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n    valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n    min: 0\n  },\n  sizingOptions: {\n    type: ControlType.Object,\n    title: \"Sizing\",\n    controls: {\n      widthType: {\n        type: ControlType.Boolean,\n        title: \"Width\",\n        enabledTitle: \"Auto\",\n        disabledTitle: \"Stretch\",\n        defaultValue: true\n      },\n      heightType: {\n        type: ControlType.Boolean,\n        title: \"Height\",\n        enabledTitle: \"Auto\",\n        disabledTitle: \"Stretch\",\n        defaultValue: true\n      }\n    }\n  },\n  fadeOptions: {\n    type: ControlType.Object,\n    title: \"Clipping\",\n    controls: {\n      fadeContent: {\n        type: ControlType.Boolean,\n        title: \"Fade\",\n        defaultValue: true\n      },\n      overflow: {\n        type: ControlType.Boolean,\n        title: \"Overflow\",\n        enabledTitle: \"Show\",\n        disabledTitle: \"Hide\",\n        defaultValue: false,\n        hidden(props) {\n          return props.fadeContent === true;\n        }\n      },\n      fadeWidth: {\n        type: ControlType.Number,\n        title: \"Width\",\n        defaultValue: 25,\n        min: 0,\n        max: 100,\n        unit: \"%\",\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      },\n      fadeInset: {\n        type: ControlType.Number,\n        title: \"Inset\",\n        defaultValue: 0,\n        min: 0,\n        max: 100,\n        unit: \"%\",\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      },\n      fadeAlpha: {\n        type: ControlType.Number,\n        title: \"Opacity\",\n        defaultValue: 0,\n        min: 0,\n        max: 1,\n        step: .05,\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      }\n    }\n  },\n  hoverFactor: {\n    type: ControlType.Number,\n    title: \"Hover\",\n    min: 0,\n    max: 1,\n    unit: \"x\",\n    defaultValue: 1,\n    step: .1,\n    displayStepper: true,\n    description: \"Slows down the speed while you are hovering.\"\n  }\n}); /* Placeholder Styles */\nconst containerStyle = {\n  display: \"flex\",\n  width: \"100%\",\n  height: \"100%\",\n  maxWidth: \"100%\",\n  maxHeight: \"100%\",\n  placeItems: \"center\",\n  margin: 0,\n  padding: 0,\n  listStyleType: \"none\",\n  textIndent: \"none\"\n}; /* Styles */\nconst placeholderStyles = {\n  display: \"flex\",\n  width: \"100%\",\n  height: \"100%\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  flexDirection: \"column\",\n  color: \"#96F\",\n  background: \"rgba(136, 85, 255, 0.1)\",\n  fontSize: 11,\n  overflow: \"hidden\",\n  padding: \"20px 20px 30px 20px\"\n};\nconst emojiStyles = {\n  fontSize: 32,\n  marginBottom: 10\n};\nconst titleStyles = {\n  margin: 0,\n  marginBottom: 10,\n  fontWeight: 600,\n  textAlign: \"center\"\n};\nconst subtitleStyles = {\n  margin: 0,\n  opacity: .7,\n  maxWidth: 150,\n  lineHeight: 1.5,\n  textAlign: \"center\"\n}; /* Clamp function, used for fadeInset */\nconst clamp = (num, min, max) => Math.min(Math.max(num, min), max);\nconst isValidNumber = value => typeof value === \"number\" && !isNaN(value);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Ticker\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"200\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerDisableUnlink\": \"*\",\n        \"framerIntrinsicWidth\": \"400\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (89324c0)\nimport { jsx as a, jsxs as t } from \"react/jsx-runtime\";\nimport { addFonts as e, addPropertyControls as r, ControlType as l, cx as C, SVG as o, useLocaleInfo as n, useVariantState as i, withCSS as f } from \"framer\";\nimport { LayoutGroup as p, motion as s, MotionConfigContext as m } from \"framer-motion\";\nimport * as d from \"react\";\nlet h = [\"yyUWDMnYc\", \"BgQOUJEIT\", \"QqB51Z_YZ\", \"v6vcQTVc1\", \"GyQN9IXzj\", \"VEDYF8bfZ\", \"OjfGZYUYt\", \"FtxLv1xbm\", \"MNoId4Qn1\", \"IuNSryqff\"],\n  L = \"framer-DEhma\",\n  w = {\n    BgQOUJEIT: \"framer-v-3akhgd\",\n    FtxLv1xbm: \"framer-v-xww3eq\",\n    GyQN9IXzj: \"framer-v-xi7p4v\",\n    IuNSryqff: \"framer-v-1rjjmx5\",\n    MNoId4Qn1: \"framer-v-drwd98\",\n    OjfGZYUYt: \"framer-v-z4rk8n\",\n    QqB51Z_YZ: \"framer-v-1dx77eh\",\n    v6vcQTVc1: \"framer-v-12ncmyo\",\n    VEDYF8bfZ: \"framer-v-f6tkl9\",\n    yyUWDMnYc: \"framer-v-b56wmz\"\n  };\nfunction g(a, ...t) {\n  let e = {};\n  return null == t || t.forEach(t => t && Object.assign(e, a[t])), e;\n}\nlet c = {\n    default: {\n      damping: 60,\n      delay: 0,\n      mass: 1,\n      stiffness: 500,\n      type: \"spring\"\n    }\n  },\n  v = ({\n    value: t,\n    children: e\n  }) => {\n    let r = d.useContext(m),\n      l = null != t ? t : r.transition,\n      C = d.useMemo(() => ({\n        ...r,\n        transition: l\n      }), [JSON.stringify(l)]);\n    return /*#__PURE__*/a(m.Provider, {\n      value: C,\n      children: e\n    });\n  },\n  x = {\n    Dropbox: \"GyQN9IXzj\",\n    Figma: \"yyUWDMnYc\",\n    Framer: \"MNoId4Qn1\",\n    Github: \"QqB51Z_YZ\",\n    Gitlab: \"OjfGZYUYt\",\n    Gmail: \"v6vcQTVc1\",\n    Notion: \"IuNSryqff\",\n    Slack: \"BgQOUJEIT\",\n    Vimeo: \"VEDYF8bfZ\",\n    Zoom: \"FtxLv1xbm\"\n  },\n  y = ({\n    height: a,\n    id: t,\n    width: e,\n    ...r\n  }) => {\n    var l, C;\n    return {\n      ...r,\n      variant: null !== (C = null !== (l = x[r.variant]) && void 0 !== l ? l : r.variant) && void 0 !== C ? C : \"yyUWDMnYc\"\n    };\n  },\n  Z = (a, t) => t.join(\"-\") + a.layoutDependency,\n  u = /*#__PURE__*/d.forwardRef(function (e, r) {\n    let {\n        activeLocale: l\n      } = n(),\n      {\n        style: f,\n        className: m,\n        layoutId: L,\n        variant: x,\n        ...u\n      } = y(e),\n      {\n        baseVariant: M,\n        classNames: b,\n        gestureVariant: I,\n        setGestureState: D,\n        setVariant: E,\n        transition: k,\n        variants: N\n      } = i({\n        cycleOrder: h,\n        defaultVariant: \"yyUWDMnYc\",\n        transitions: c,\n        variant: x,\n        variantClassNames: w\n      }),\n      Q = Z(e, N),\n      Y = d.useRef(null),\n      _ = d.useId();\n    return /*#__PURE__*/a(p, {\n      id: null != L ? L : _,\n      children: /*#__PURE__*/a(s.div, {\n        initial: x,\n        animate: N,\n        onHoverStart: () => D({\n          isHovered: !0\n        }),\n        onHoverEnd: () => D({\n          isHovered: !1\n        }),\n        onTapStart: () => D({\n          isPressed: !0\n        }),\n        onTap: () => D({\n          isPressed: !1\n        }),\n        onTapCancel: () => D({\n          isPressed: !1\n        }),\n        className: C(\"framer-DEhma\", ...[], b),\n        style: {\n          display: \"contents\"\n        },\n        children: /*#__PURE__*/a(v, {\n          value: k,\n          children: /*#__PURE__*/t(s.div, {\n            ...u,\n            className: C(\"framer-b56wmz\", m),\n            \"data-framer-name\": \"Figma\",\n            layoutDependency: Q,\n            layoutId: \"yyUWDMnYc\",\n            ref: null != r ? r : Y,\n            style: {\n              ...f\n            },\n            ...g({\n              BgQOUJEIT: {\n                \"data-framer-name\": \"Slack\"\n              },\n              FtxLv1xbm: {\n                \"data-framer-name\": \"Zoom\"\n              },\n              GyQN9IXzj: {\n                \"data-framer-name\": \"Dropbox\"\n              },\n              IuNSryqff: {\n                \"data-framer-name\": \"Notion\"\n              },\n              MNoId4Qn1: {\n                \"data-framer-name\": \"Framer\"\n              },\n              OjfGZYUYt: {\n                \"data-framer-name\": \"Gitlab\"\n              },\n              QqB51Z_YZ: {\n                \"data-framer-name\": \"Github\"\n              },\n              v6vcQTVc1: {\n                \"data-framer-name\": \"Gmail\"\n              },\n              VEDYF8bfZ: {\n                \"data-framer-name\": \"Vimeo\"\n              }\n            }, M, I),\n            children: [![\"BgQOUJEIT\", \"QqB51Z_YZ\", \"v6vcQTVc1\", \"GyQN9IXzj\", \"VEDYF8bfZ\", \"OjfGZYUYt\", \"FtxLv1xbm\", \"MNoId4Qn1\", \"IuNSryqff\"].includes(M) && /*#__PURE__*/a(o, {\n              className: \"framer-1sdonvg\",\n              \"data-framer-name\": \"figma_5\",\n              layout: \"position\",\n              layoutDependency: Q,\n              layoutId: \"JnSPG0Y97\",\n              opacity: 1,\n              svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46 46\"><path d=\"M 0 0.3 L 46 0.3 L 46 46.3 L 0 46.3 Z\" fill=\"transparent\"></path><path d=\"M 22.993 23.007 C 22.993 19.837 25.564 17.254 28.747 17.254 C 31.917 17.254 34.5 19.824 34.5 23.007 C 34.5 26.176 31.93 28.759 28.747 28.759 C 25.577 28.759 22.993 26.176 22.993 23.007 Z\" fill=\"#1abcfe\"></path><path d=\"M 11.5 34.498 C 11.5 31.328 14.07 28.746 17.253 28.746 L 23.007 28.746 L 23.007 34.498 C 23.007 37.667 20.436 40.25 17.253 40.25 C 14.07 40.25 11.5 37.68 11.5 34.498 Z\" fill=\"#0ecf82\"></path><path d=\"M 22.993 5.763 L 22.993 17.254 L 28.747 17.254 C 31.917 17.254 34.5 14.685 34.5 11.502 C 34.5 8.333 31.93 5.75 28.747 5.75 L 22.993 5.75 Z\" fill=\"#ff7262\"></path><path d=\"M 11.5 11.515 C 11.5 14.685 14.07 17.267 17.253 17.267 L 23.007 17.267 L 23.007 5.763 L 17.253 5.763 C 14.07 5.763 11.5 8.333 11.5 11.515 Z\" fill=\"#f24d1d\"></path><path d=\"M 11.5 23.007 C 11.5 26.176 14.07 28.759 17.253 28.759 L 23.007 28.759 L 23.007 17.254 L 17.253 17.254 C 14.07 17.254 11.5 19.837 11.5 23.007 Z\" fill=\"#a259ff\"></path></svg>',\n              svgContentId: 1484465495,\n              withExternalLayout: !0\n            }), \"BgQOUJEIT\" === M && /*#__PURE__*/a(o, {\n              className: \"framer-94eir4\",\n              \"data-framer-name\": \"slack_new_logo\",\n              layout: \"position\",\n              layoutDependency: Q,\n              layoutId: \"blRhglJYg\",\n              opacity: 1,\n              svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 36 36\"><g transform=\"translate(-0 0)\" id=\"ss158517387_1\"><path d=\"M 13.197 0 C 11.207 0.001 9.597 1.613 9.599 3.599 C 9.597 5.584 11.209 7.196 13.199 7.197 L 16.799 7.197 L 16.799 3.6 C 16.8 1.614 15.188 0.003 13.197 0 C 13.199 0 13.199 0 13.197 0 M 13.197 9.598 L 3.6 9.598 C 1.61 9.6 -0.001 11.211 0 13.197 C -0.003 15.182 1.609 16.794 3.599 16.797 L 13.197 16.797 C 15.187 16.795 16.799 15.184 16.797 13.198 C 16.799 11.211 15.187 9.6 13.197 9.598 Z\" fill=\"#37c5f0\"></path><path d=\"M 35.994 13.197 C 35.996 11.211 34.384 9.6 32.394 9.598 C 30.404 9.6 28.793 11.211 28.794 13.197 L 28.794 16.797 L 32.394 16.797 C 34.384 16.795 35.996 15.184 35.994 13.197 Z M 26.396 13.197 L 26.396 3.599 C 26.397 1.614 24.787 0.003 22.797 0 C 20.807 0.001 19.196 1.613 19.197 3.599 L 19.197 13.197 C 19.194 15.182 20.806 16.794 22.796 16.797 C 24.785 16.795 26.397 15.184 26.396 13.197 Z\" fill=\"#2db67d\"></path><path d=\"M 22.796 35.993 C 24.785 35.991 26.397 34.38 26.396 32.394 C 26.397 30.408 24.785 28.797 22.796 28.796 L 19.196 28.796 L 19.196 32.394 C 19.194 34.378 20.806 35.99 22.796 35.993 Z M 22.796 26.393 L 32.394 26.393 C 34.384 26.392 35.996 24.78 35.994 22.795 C 35.997 20.809 34.385 19.198 32.396 19.195 L 22.797 19.195 C 20.807 19.196 19.196 20.808 19.197 22.793 C 19.196 24.78 20.806 26.392 22.796 26.393 Z\" fill=\"#ecb22f\"></path><path d=\"M 0 22.795 C -0.001 24.78 1.61 26.392 3.6 26.393 C 5.59 26.392 7.201 24.78 7.2 22.795 L 7.2 19.196 L 3.6 19.196 C 1.61 19.198 -0.001 20.809 0 22.795 Z M 9.599 22.795 L 9.599 32.393 C 9.596 34.378 11.207 35.99 13.197 35.993 C 15.187 35.991 16.799 34.38 16.797 32.394 L 16.797 22.798 C 16.8 20.812 15.188 19.2 13.199 19.198 C 11.207 19.198 9.597 20.809 9.599 22.795 C 9.599 22.795 9.599 22.796 9.599 22.795\" fill=\"#e01d5a\"></path></g></svg>',\n              svgContentId: 158517387,\n              withExternalLayout: !0,\n              ...g({\n                BgQOUJEIT: {\n                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 36 36\"><g transform=\"translate(-0 0)\" id=\"ss2377004945_1\"><path d=\"M 13.197 0 C 11.207 0.001 9.597 1.613 9.599 3.599 C 9.597 5.584 11.209 7.196 13.199 7.197 L 16.799 7.197 L 16.799 3.6 C 16.8 1.614 15.188 0.003 13.197 0 C 13.199 0 13.199 0 13.197 0 M 13.197 9.598 L 3.6 9.598 C 1.61 9.6 -0.001 11.211 0 13.197 C -0.003 15.182 1.609 16.794 3.599 16.797 L 13.197 16.797 C 15.187 16.795 16.799 15.184 16.797 13.198 C 16.799 11.211 15.187 9.6 13.197 9.598 Z\" fill=\"#37c5f0\"></path><path d=\"M 35.994 13.197 C 35.996 11.211 34.384 9.6 32.394 9.598 C 30.404 9.6 28.793 11.211 28.794 13.197 L 28.794 16.797 L 32.394 16.797 C 34.384 16.795 35.996 15.184 35.994 13.197 Z M 26.396 13.197 L 26.396 3.599 C 26.397 1.614 24.787 0.003 22.797 0 C 20.807 0.001 19.196 1.613 19.197 3.599 L 19.197 13.197 C 19.194 15.182 20.806 16.794 22.796 16.797 C 24.785 16.795 26.397 15.184 26.396 13.197 Z\" fill=\"#2db67d\"></path><path d=\"M 22.796 35.993 C 24.785 35.991 26.397 34.38 26.396 32.394 C 26.397 30.408 24.785 28.797 22.796 28.796 L 19.196 28.796 L 19.196 32.394 C 19.194 34.378 20.806 35.99 22.796 35.993 Z M 22.796 26.393 L 32.394 26.393 C 34.384 26.392 35.996 24.78 35.994 22.795 C 35.997 20.809 34.385 19.198 32.396 19.195 L 22.797 19.195 C 20.807 19.196 19.196 20.808 19.197 22.793 C 19.196 24.78 20.806 26.392 22.796 26.393 Z\" fill=\"#ecb22f\"></path><path d=\"M 0 22.795 C -0.001 24.78 1.61 26.392 3.6 26.393 C 5.59 26.392 7.201 24.78 7.2 22.795 L 7.2 19.196 L 3.6 19.196 C 1.61 19.198 -0.001 20.809 0 22.795 Z M 9.599 22.795 L 9.599 32.393 C 9.596 34.378 11.207 35.99 13.197 35.993 C 15.187 35.991 16.799 34.38 16.797 32.394 L 16.797 22.798 C 16.8 20.812 15.188 19.2 13.199 19.198 C 11.207 19.198 9.597 20.809 9.599 22.795 C 9.599 22.795 9.599 22.796 9.599 22.795\" fill=\"#e01d5a\"></path></g></svg>',\n                  svgContentId: 2377004945\n                }\n              }, M, I)\n            }), \"QqB51Z_YZ\" === M && /*#__PURE__*/a(o, {\n              className: \"framer-l6nc25\",\n              \"data-framer-name\": \"github_icon_1_1\",\n              layout: \"position\",\n              layoutDependency: Q,\n              layoutId: \"qJUIBvjEj\",\n              opacity: 1,\n              svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 38\"><g id=\"ss2141116412_1\"><path d=\"M 0 0 L 39 0 L 39 38 L 0 38 Z\" fill=\"transparent\"></path><path d=\"M 19.425 0 C 8.698 0 0 8.711 0 19.456 C 0 28.052 5.566 35.345 13.284 37.917 C 14.255 38.097 14.611 37.495 14.611 36.981 C 14.611 36.518 14.593 34.985 14.585 33.359 C 9.18 34.536 8.04 31.064 8.04 31.064 C 7.157 28.815 5.884 28.217 5.884 28.217 C 4.121 27.009 6.016 27.034 6.016 27.034 C 7.967 27.171 8.994 29.039 8.994 29.039 C 10.726 32.013 13.538 31.153 14.647 30.656 C 14.821 29.399 15.324 28.541 15.88 28.055 C 11.565 27.563 7.03 25.894 7.03 18.44 C 7.03 16.316 7.789 14.58 9.031 13.217 C 8.83 12.727 8.165 10.749 9.219 8.069 C 9.219 8.069 10.851 7.546 14.563 10.063 C 16.112 9.632 17.774 9.416 19.425 9.408 C 21.075 9.416 22.738 9.632 24.291 10.063 C 27.998 7.546 29.627 8.069 29.627 8.069 C 30.684 10.749 30.019 12.727 29.818 13.218 C 31.063 14.58 31.817 16.316 31.817 18.44 C 31.817 25.912 27.273 27.558 22.947 28.039 C 23.644 28.643 24.265 29.827 24.265 31.642 C 24.265 34.245 24.242 36.341 24.242 36.981 C 24.242 37.499 24.592 38.106 25.577 37.915 C 33.29 35.339 38.849 28.049 38.849 19.456 C 38.849 8.711 30.152 0 19.425 0 Z\" fill=\"var(--token-8d9d35c1-9ee2-4668-8f5c-c4808f04c88d, rgb(18, 18, 18))\"></path><path d=\"M 7.275 27.715 C 7.232 27.812 7.08 27.841 6.942 27.775 C 6.801 27.711 6.722 27.579 6.768 27.482 C 6.81 27.383 6.962 27.355 7.103 27.422 C 7.244 27.485 7.324 27.618 7.275 27.715 Z M 8.231 28.569 C 8.138 28.655 7.957 28.615 7.834 28.479 C 7.707 28.343 7.683 28.162 7.777 28.075 C 7.873 27.989 8.048 28.029 8.176 28.165 C 8.303 28.302 8.327 28.482 8.23 28.569 M 8.886 29.662 C 8.767 29.745 8.572 29.667 8.452 29.494 C 8.333 29.321 8.333 29.113 8.455 29.03 C 8.575 28.947 8.767 29.022 8.889 29.194 C 9.008 29.369 9.008 29.577 8.886 29.662 M 9.995 30.927 C 9.888 31.045 9.662 31.013 9.495 30.853 C 9.326 30.696 9.278 30.473 9.385 30.356 C 9.493 30.238 9.721 30.271 9.888 30.43 C 10.057 30.586 10.108 30.811 9.995 30.927 Z M 11.427 31.354 C 11.381 31.507 11.162 31.576 10.942 31.511 C 10.722 31.445 10.579 31.266 10.623 31.112 C 10.669 30.959 10.888 30.886 11.11 30.956 C 11.329 31.022 11.473 31.199 11.427 31.354 Z M 13.058 31.535 C 13.064 31.696 12.877 31.829 12.646 31.832 C 12.414 31.837 12.226 31.707 12.223 31.549 C 12.223 31.387 12.406 31.255 12.638 31.252 C 12.869 31.247 13.058 31.376 13.058 31.535 Z M 14.66 31.474 C 14.688 31.63 14.527 31.791 14.298 31.834 C 14.072 31.875 13.864 31.779 13.835 31.623 C 13.807 31.463 13.97 31.302 14.195 31.261 C 14.425 31.221 14.63 31.315 14.66 31.474 Z\" fill=\"rgb(22,22,20)\"></path></g></svg>',\n              svgContentId: 2141116412,\n              withExternalLayout: !0,\n              ...g({\n                QqB51Z_YZ: {\n                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 38\"><g id=\"ss3254850283_1\"><path d=\"M 0 0 L 39 0 L 39 38 L 0 38 Z\" fill=\"transparent\"></path><path d=\"M 19.425 0 C 8.698 0 0 8.711 0 19.456 C 0 28.052 5.566 35.345 13.284 37.917 C 14.255 38.097 14.611 37.495 14.611 36.981 C 14.611 36.518 14.593 34.985 14.585 33.359 C 9.18 34.536 8.04 31.064 8.04 31.064 C 7.157 28.815 5.884 28.217 5.884 28.217 C 4.121 27.009 6.016 27.034 6.016 27.034 C 7.967 27.171 8.994 29.039 8.994 29.039 C 10.726 32.013 13.538 31.153 14.647 30.656 C 14.821 29.399 15.324 28.541 15.88 28.055 C 11.565 27.563 7.03 25.894 7.03 18.44 C 7.03 16.316 7.789 14.58 9.031 13.217 C 8.83 12.727 8.165 10.749 9.219 8.069 C 9.219 8.069 10.851 7.546 14.563 10.063 C 16.112 9.632 17.774 9.416 19.425 9.408 C 21.075 9.416 22.738 9.632 24.291 10.063 C 27.998 7.546 29.627 8.069 29.627 8.069 C 30.684 10.749 30.019 12.727 29.818 13.218 C 31.063 14.58 31.817 16.316 31.817 18.44 C 31.817 25.912 27.273 27.558 22.947 28.039 C 23.644 28.643 24.265 29.827 24.265 31.642 C 24.265 34.245 24.242 36.341 24.242 36.981 C 24.242 37.499 24.592 38.106 25.577 37.915 C 33.29 35.339 38.849 28.049 38.849 19.456 C 38.849 8.711 30.152 0 19.425 0 Z\" fill=\"var(--token-8d9d35c1-9ee2-4668-8f5c-c4808f04c88d, rgb(18, 18, 18))\"></path><path d=\"M 7.275 27.715 C 7.232 27.812 7.08 27.841 6.942 27.775 C 6.801 27.711 6.722 27.579 6.768 27.482 C 6.81 27.383 6.962 27.355 7.103 27.422 C 7.244 27.485 7.324 27.618 7.275 27.715 Z M 8.231 28.569 C 8.138 28.655 7.957 28.615 7.834 28.479 C 7.707 28.343 7.683 28.162 7.777 28.075 C 7.873 27.989 8.048 28.029 8.176 28.165 C 8.303 28.302 8.327 28.482 8.23 28.569 M 8.886 29.662 C 8.767 29.745 8.572 29.667 8.452 29.494 C 8.333 29.321 8.333 29.113 8.455 29.03 C 8.575 28.947 8.767 29.022 8.889 29.194 C 9.008 29.369 9.008 29.577 8.886 29.662 M 9.995 30.927 C 9.888 31.045 9.662 31.013 9.495 30.853 C 9.326 30.696 9.278 30.473 9.385 30.356 C 9.493 30.238 9.721 30.271 9.888 30.43 C 10.057 30.586 10.108 30.811 9.995 30.927 Z M 11.427 31.354 C 11.381 31.507 11.162 31.576 10.942 31.511 C 10.722 31.445 10.579 31.266 10.623 31.112 C 10.669 30.959 10.888 30.886 11.11 30.956 C 11.329 31.022 11.473 31.199 11.427 31.354 Z M 13.058 31.535 C 13.064 31.696 12.877 31.829 12.646 31.832 C 12.414 31.837 12.226 31.707 12.223 31.549 C 12.223 31.387 12.406 31.255 12.638 31.252 C 12.869 31.247 13.058 31.376 13.058 31.535 Z M 14.66 31.474 C 14.688 31.63 14.527 31.791 14.298 31.834 C 14.072 31.875 13.864 31.779 13.835 31.623 C 13.807 31.463 13.97 31.302 14.195 31.261 C 14.425 31.221 14.63 31.315 14.66 31.474 Z\" fill=\"rgb(22,22,20)\"></path></g></svg>',\n                  svgContentId: 3254850283\n                }\n              }, M, I)\n            }), \"v6vcQTVc1\" === M && /*#__PURE__*/a(o, {\n              className: \"framer-1244wu7\",\n              \"data-framer-name\": \"official_gmail_icon_2020_\",\n              layout: \"position\",\n              layoutDependency: Q,\n              layoutId: \"wRq68PMqJ\",\n              opacity: 1,\n              svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><g transform=\"translate(0.5 5.304)\" id=\"ss1629181005_1\"><g transform=\"translate(0 0)\" id=\"ss1629181005_2\"><path d=\"M 2.659 29 L 8.864 29 L 8.864 14.064 L 0 7.475 L 0 26.364 C 0 27.82 1.19 29 2.659 29 Z\" fill=\"#4285f4\"></path><path d=\"M 30.136 29 L 36.341 29 C 37.81 29 39 27.82 39 26.364 L 39 7.475 L 30.136 14.064 Z\" fill=\"#34a853\"></path><path d=\"M 30.136 2.643 L 30.136 14.064 L 39 7.475 L 39 3.961 C 39 0.703 35.249 -1.157 32.618 0.798 Z\" fill=\"#fbbd05\"></path></g><path d=\"M 8.864 14.064 L 8.864 2.643 L 19.5 10.55 L 30.136 2.643 L 30.136 14.064 L 19.5 21.971 Z\" fill=\"#ea4336\"></path><path d=\"M 0 3.961 L 0 7.475 L 8.864 14.064 L 8.864 2.643 L 6.382 0.798 C 3.751 -1.157 0 0.703 0 3.961 Z\" fill=\"#c5221f\"></path></g></svg>',\n              svgContentId: 1629181005,\n              withExternalLayout: !0,\n              ...g({\n                v6vcQTVc1: {\n                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><g transform=\"translate(0.5 5.304)\" id=\"ss1317064620_1\"><g transform=\"translate(0 0)\" id=\"ss1317064620_2\"><path d=\"M 2.659 29 L 8.864 29 L 8.864 14.064 L 0 7.475 L 0 26.364 C 0 27.82 1.19 29 2.659 29 Z\" fill=\"#4285f4\"></path><path d=\"M 30.136 29 L 36.341 29 C 37.81 29 39 27.82 39 26.364 L 39 7.475 L 30.136 14.064 Z\" fill=\"#34a853\"></path><path d=\"M 30.136 2.643 L 30.136 14.064 L 39 7.475 L 39 3.961 C 39 0.703 35.249 -1.157 32.618 0.798 Z\" fill=\"#fbbd05\"></path></g><path d=\"M 8.864 14.064 L 8.864 2.643 L 19.5 10.55 L 30.136 2.643 L 30.136 14.064 L 19.5 21.971 Z\" fill=\"#ea4336\"></path><path d=\"M 0 3.961 L 0 7.475 L 8.864 14.064 L 8.864 2.643 L 6.382 0.798 C 3.751 -1.157 0 0.703 0 3.961 Z\" fill=\"#c5221f\"></path></g></svg>',\n                  svgContentId: 1317064620\n                }\n              }, M, I)\n            }), \"GyQN9IXzj\" === M && /*#__PURE__*/a(o, {\n              className: \"framer-sz057t\",\n              \"data-framer-name\": \"dropbox_1\",\n              layout: \"position\",\n              layoutDependency: Q,\n              layoutId: \"TkWnWFNta\",\n              opacity: 1,\n              svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 36\"><path d=\"M 9.75 1.549 L 0 7.747 L 9.75 13.853 L 19.5 7.747 Z M 29.25 1.549 L 19.5 7.747 L 29.25 13.853 L 39 7.747 Z M 0 20.051 L 9.75 26.248 L 19.5 20.051 L 9.75 13.853 Z M 29.25 13.853 L 19.5 20.051 L 29.25 26.248 L 39 20.051 Z M 9.75 28.253 L 19.5 34.451 L 29.25 28.253 L 19.5 22.147 Z\" fill=\"#0362ff\"></path></svg>',\n              svgContentId: 2522447678,\n              withExternalLayout: !0,\n              ...g({\n                GyQN9IXzj: {\n                  svgContentId: 807558620\n                }\n              }, M, I)\n            }), \"VEDYF8bfZ\" === M && /*#__PURE__*/a(o, {\n              className: \"framer-11l14d3\",\n              \"data-framer-name\": \"vimeo_icon_blue\",\n              layout: \"position\",\n              layoutDependency: Q,\n              layoutId: \"Rpbpn9iki\",\n              opacity: 1,\n              svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 33\"><path d=\"M 37.977 7.634 C 37.807 11.347 35.224 16.433 30.23 22.889 C 25.065 29.63 20.693 33.002 17.118 33.002 C 14.905 33.002 13.031 30.945 11.499 26.831 L 8.434 15.519 C 7.298 11.404 6.077 9.348 4.773 9.348 C 4.489 9.348 3.496 9.947 1.792 11.147 L 0.005 8.834 C 1.862 7.191 3.706 5.534 5.539 3.863 C 8.036 1.692 9.909 0.549 11.158 0.436 C 14.11 0.15 15.927 2.179 16.608 6.52 C 17.345 11.205 17.857 14.119 18.14 15.261 C 18.991 19.145 19.927 21.088 20.949 21.088 C 21.744 21.088 22.935 19.831 24.525 17.317 C 26.115 14.803 26.966 12.889 27.079 11.575 C 27.305 9.404 26.454 8.318 24.525 8.318 C 23.618 8.318 22.68 8.518 21.716 8.918 C 23.589 2.804 27.165 -0.165 32.444 0.006 C 36.36 0.121 38.204 2.664 37.977 7.634 Z\" fill=\"#1cb7ea\"></path></svg>',\n              svgContentId: 600662260,\n              withExternalLayout: !0,\n              ...g({\n                VEDYF8bfZ: {\n                  svgContentId: 1641822093\n                }\n              }, M, I)\n            }), \"OjfGZYUYt\" === M && /*#__PURE__*/a(o, {\n              className: \"framer-1w9zthx\",\n              \"data-framer-name\": \"gitlab\",\n              layout: \"position\",\n              layoutDependency: Q,\n              layoutId: \"Qj5y0Ej7H\",\n              opacity: 1,\n              svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 35\"><path d=\"M 19.011 35.011 L 26.003 13.511 L 12.019 13.511 L 19.011 35.011 Z\" fill=\"#e24329\"></path><path d=\"M 19.011 35.011 L 12.019 13.511 L 2.22 13.511 Z\" fill=\"#fc6d26\"></path><path d=\"M 2.22 13.511 L 0.095 20.045 C -0.099 20.641 0.114 21.294 0.621 21.662 L 19.011 35.011 L 2.22 13.511 Z\" fill=\"#fca327\"></path><path d=\"M 2.22 13.511 L 12.019 13.511 L 7.808 0.562 C 7.591 -0.104 6.648 -0.104 6.431 0.562 Z\" fill=\"#e24329\"></path><path d=\"M 19.011 35.011 L 26.003 13.511 L 35.802 13.511 L 19.011 35.011 Z\" fill=\"#fc6d26\"></path><path d=\"M 35.802 13.511 L 37.927 20.045 C 38.121 20.641 37.908 21.294 37.401 21.662 L 19.011 35.011 L 35.802 13.511 Z\" fill=\"#fca327\"></path><path d=\"M 35.802 13.511 L 26.003 13.511 L 30.214 0.562 C 30.431 -0.104 31.374 -0.104 31.591 0.562 Z\" fill=\"#e24329\"></path></svg>',\n              svgContentId: 3296049689,\n              withExternalLayout: !0,\n              ...g({\n                OjfGZYUYt: {\n                  svgContentId: 860739671\n                }\n              }, M, I)\n            }), \"FtxLv1xbm\" === M && /*#__PURE__*/a(o, {\n              className: \"framer-8yx1wm\",\n              \"data-framer-name\": \"zoom_5\",\n              layout: \"position\",\n              layoutDependency: Q,\n              layoutId: \"POic1xP7q\",\n              opacity: 1,\n              svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 36 36\"><path d=\"M 0 18 C 0 8.059 8.059 0 18 0 C 27.941 0 36 8.059 36 18 C 36 27.941 27.941 36 18 36 C 8.059 36 0 27.941 0 18 Z\" fill=\"#4a8cff\"></path><path d=\"M 6.451 12.365 L 6.451 20.823 C 6.46 22.734 8.015 24.276 9.926 24.268 L 22.256 24.268 C 22.603 24.27 22.886 23.99 22.889 23.643 L 22.889 15.184 C 22.879 13.274 21.324 11.732 19.414 11.74 L 7.087 11.74 C 6.92 11.738 6.759 11.803 6.639 11.92 C 6.52 12.037 6.452 12.197 6.451 12.365 Z M 23.674 15.664 L 28.764 11.945 C 29.206 11.579 29.549 11.671 29.549 12.334 L 29.549 23.674 C 29.549 24.428 29.13 24.337 28.764 24.061 L 23.674 20.351 Z\" fill=\"var(--token-5551b052-a34c-41c4-b470-ad604b65887a, rgb(253, 253, 251))\"></path></svg>',\n              svgContentId: 2567436601,\n              withExternalLayout: !0,\n              ...g({\n                FtxLv1xbm: {\n                  svgContentId: 3422866585\n                }\n              }, M, I)\n            }), \"MNoId4Qn1\" === M && /*#__PURE__*/a(o, {\n              className: \"framer-1pbfeii\",\n              \"data-framer-name\": \"framer_svgrepo_com_2\",\n              layout: \"position\",\n              layoutDependency: Q,\n              layoutId: \"K8HKtNwvT\",\n              opacity: 1,\n              svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 38\"><g id=\"ss1262866982_1\"><path d=\"M 0 0 L 38 0 L 38 38 L 0 38 Z\" fill=\"transparent\"></path><path d=\"M 6.333 0 L 31.667 0 L 31.667 12.667 L 19 12.667 Z M 6.333 12.667 L 19 12.667 L 31.667 25.333 L 6.333 25.333 L 6.333 12.667 Z M 6.333 25.333 L 19 25.333 L 19 38 Z\" fill=\"var(--token-8d9d35c1-9ee2-4668-8f5c-c4808f04c88d, rgb(18, 18, 18))\"></path></g></svg>',\n              svgContentId: 1262866982,\n              withExternalLayout: !0,\n              ...g({\n                MNoId4Qn1: {\n                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 38\"><g id=\"ss4172697959_1\"><path d=\"M 0 0 L 38 0 L 38 38 L 0 38 Z\" fill=\"transparent\"></path><path d=\"M 6.333 0 L 31.667 0 L 31.667 12.667 L 19 12.667 Z M 6.333 12.667 L 19 12.667 L 31.667 25.333 L 6.333 25.333 L 6.333 12.667 Z M 6.333 25.333 L 19 25.333 L 19 38 Z\" fill=\"var(--token-8d9d35c1-9ee2-4668-8f5c-c4808f04c88d, rgb(18, 18, 18))\"></path></g></svg>',\n                  svgContentId: 4172697959\n                }\n              }, M, I)\n            }), \"IuNSryqff\" === M && /*#__PURE__*/a(o, {\n              className: \"framer-uld65e\",\n              \"data-framer-name\": \"notion_2_1\",\n              layout: \"position\",\n              layoutDependency: Q,\n              layoutId: \"fDaKJMTBx\",\n              opacity: 1,\n              svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 41\"><g id=\"ss3960425772_1\"><path d=\"M 0 0 L 39 0 L 39 41 L 0 41 Z\" fill=\"transparent\"></path><path d=\"M 13.936 1.288 C 7.584 1.752 2.185 2.179 1.931 2.229 C 1.219 2.354 0.571 2.831 0.266 3.459 L 0 4.011 L 0.026 17.175 L 0.063 30.339 L 0.47 31.155 C 0.699 31.606 2.248 33.715 3.938 35.885 C 7.279 40.164 7.52 40.403 8.791 40.529 C 9.16 40.566 11.929 40.441 14.927 40.265 C 18.505 40.043 22.083 39.829 25.662 39.625 C 38.035 38.883 37.4 38.946 38.111 38.344 C 39 37.616 38.937 38.808 38.974 22.809 C 39 9.243 38.987 8.353 38.784 7.939 C 38.543 7.474 38.111 7.148 32.47 3.233 C 28.697 0.623 28.43 0.485 26.74 0.459 C 26.042 0.435 20.275 0.811 13.936 1.288 Z M 28.214 3.007 C 28.748 3.245 32.648 5.93 33.22 6.445 C 33.372 6.596 33.423 6.721 33.347 6.797 C 33.169 6.947 9.031 8.366 8.333 8.265 C 8.016 8.215 7.545 8.027 7.279 7.85 C 6.173 7.11 3.43 4.889 3.43 4.726 C 3.43 4.299 3.34 4.299 14.101 3.534 C 16.601 3.363 19.099 3.179 21.597 2.982 C 26.055 2.63 27.389 2.643 28.214 3.007 Z M 35.888 9.871 C 36.065 10.046 36.218 10.385 36.268 10.712 C 36.306 11.013 36.332 16.635 36.306 23.185 C 36.268 34.428 36.256 35.131 36.039 35.458 C 35.912 35.658 35.659 35.872 35.467 35.934 C 34.935 36.148 9.642 37.566 9.121 37.415 C 8.88 37.353 8.549 37.152 8.371 36.977 L 8.066 36.65 L 8.028 24.529 C 8.003 16.02 8.028 12.256 8.13 11.917 C 8.207 11.666 8.397 11.364 8.563 11.264 C 8.791 11.114 10.291 10.988 15.448 10.687 C 19.069 10.487 24.671 10.148 27.886 9.96 C 35.532 9.495 35.507 9.495 35.888 9.871 Z\" fill=\"var(--token-8d9d35c1-9ee2-4668-8f5c-c4808f04c88d, rgb(18, 18, 18))\"></path><path d=\"M 29.091 14.024 C 27.719 14.112 26.499 14.238 26.359 14.313 C 25.94 14.527 25.686 14.878 25.635 15.28 C 25.598 15.694 25.725 15.744 27.096 15.907 L 27.693 15.983 L 27.693 21.341 C 27.693 24.528 27.642 26.636 27.579 26.574 C 27.515 26.499 25.712 23.788 23.564 20.55 C 21.417 17.301 19.639 14.627 19.613 14.603 C 19.588 14.577 18.19 14.653 16.514 14.766 C 14.455 14.904 13.325 15.03 13.096 15.155 C 12.727 15.343 12.321 16.008 12.321 16.448 C 12.321 16.711 12.804 16.849 13.82 16.849 L 14.353 16.849 L 14.353 32.259 L 13.49 32.522 C 12.816 32.723 12.588 32.849 12.473 33.1 C 12.27 33.526 12.283 33.915 12.486 33.915 C 12.563 33.915 13.998 33.827 15.649 33.727 C 18.914 33.539 19.282 33.451 19.625 32.786 C 19.727 32.585 19.816 32.372 19.816 32.309 C 19.816 32.259 19.371 32.108 18.837 31.983 C 18.291 31.858 17.744 31.732 17.63 31.707 C 17.415 31.644 17.402 31.255 17.402 25.859 L 17.402 20.074 L 21.263 26.06 C 25.316 32.334 25.824 33.05 26.447 33.363 C 27.222 33.765 29.191 33.488 30.182 32.849 L 30.487 32.661 L 30.513 24.103 L 30.551 15.532 L 31.224 15.407 C 32.024 15.256 32.393 14.892 32.393 14.265 C 32.393 13.863 32.367 13.838 31.986 13.85 C 31.759 13.861 30.45 13.936 29.091 14.024 Z\" fill=\"var(--token-8d9d35c1-9ee2-4668-8f5c-c4808f04c88d, rgb(18, 18, 18))\"></path></g></svg>',\n              svgContentId: 3960425772,\n              withExternalLayout: !0,\n              ...g({\n                IuNSryqff: {\n                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 41\"><g id=\"ss2143019187_1\"><path d=\"M 0 0 L 39 0 L 39 41 L 0 41 Z\" fill=\"transparent\"></path><path d=\"M 13.936 1.288 C 7.584 1.752 2.185 2.179 1.931 2.229 C 1.219 2.354 0.571 2.831 0.266 3.459 L 0 4.011 L 0.026 17.175 L 0.063 30.339 L 0.47 31.155 C 0.699 31.606 2.248 33.715 3.938 35.885 C 7.279 40.164 7.52 40.403 8.791 40.529 C 9.16 40.566 11.929 40.441 14.927 40.265 C 18.505 40.043 22.083 39.829 25.662 39.625 C 38.035 38.883 37.4 38.946 38.111 38.344 C 39 37.616 38.937 38.808 38.974 22.809 C 39 9.243 38.987 8.353 38.784 7.939 C 38.543 7.474 38.111 7.148 32.47 3.233 C 28.697 0.623 28.43 0.485 26.74 0.459 C 26.042 0.435 20.275 0.811 13.936 1.288 Z M 28.214 3.007 C 28.748 3.245 32.648 5.93 33.22 6.445 C 33.372 6.596 33.423 6.721 33.347 6.797 C 33.169 6.947 9.031 8.366 8.333 8.265 C 8.016 8.215 7.545 8.027 7.279 7.85 C 6.173 7.11 3.43 4.889 3.43 4.726 C 3.43 4.299 3.34 4.299 14.101 3.534 C 16.601 3.363 19.099 3.179 21.597 2.982 C 26.055 2.63 27.389 2.643 28.214 3.007 Z M 35.888 9.871 C 36.065 10.046 36.218 10.385 36.268 10.712 C 36.306 11.013 36.332 16.635 36.306 23.185 C 36.268 34.428 36.256 35.131 36.039 35.458 C 35.912 35.658 35.659 35.872 35.467 35.934 C 34.935 36.148 9.642 37.566 9.121 37.415 C 8.88 37.353 8.549 37.152 8.371 36.977 L 8.066 36.65 L 8.028 24.529 C 8.003 16.02 8.028 12.256 8.13 11.917 C 8.207 11.666 8.397 11.364 8.563 11.264 C 8.791 11.114 10.291 10.988 15.448 10.687 C 19.069 10.487 24.671 10.148 27.886 9.96 C 35.532 9.495 35.507 9.495 35.888 9.871 Z\" fill=\"var(--token-8d9d35c1-9ee2-4668-8f5c-c4808f04c88d, rgb(18, 18, 18))\"></path><path d=\"M 29.091 14.024 C 27.719 14.112 26.499 14.238 26.359 14.313 C 25.94 14.527 25.686 14.878 25.635 15.28 C 25.598 15.694 25.725 15.744 27.096 15.907 L 27.693 15.983 L 27.693 21.341 C 27.693 24.528 27.642 26.636 27.579 26.574 C 27.515 26.499 25.712 23.788 23.564 20.55 C 21.417 17.301 19.639 14.627 19.613 14.603 C 19.588 14.577 18.19 14.653 16.514 14.766 C 14.455 14.904 13.325 15.03 13.096 15.155 C 12.727 15.343 12.321 16.008 12.321 16.448 C 12.321 16.711 12.804 16.849 13.82 16.849 L 14.353 16.849 L 14.353 32.259 L 13.49 32.522 C 12.816 32.723 12.588 32.849 12.473 33.1 C 12.27 33.526 12.283 33.915 12.486 33.915 C 12.563 33.915 13.998 33.827 15.649 33.727 C 18.914 33.539 19.282 33.451 19.625 32.786 C 19.727 32.585 19.816 32.372 19.816 32.309 C 19.816 32.259 19.371 32.108 18.837 31.983 C 18.291 31.858 17.744 31.732 17.63 31.707 C 17.415 31.644 17.402 31.255 17.402 25.859 L 17.402 20.074 L 21.263 26.06 C 25.316 32.334 25.824 33.05 26.447 33.363 C 27.222 33.765 29.191 33.488 30.182 32.849 L 30.487 32.661 L 30.513 24.103 L 30.551 15.532 L 31.224 15.407 C 32.024 15.256 32.393 14.892 32.393 14.265 C 32.393 13.863 32.367 13.838 31.986 13.85 C 31.759 13.861 30.45 13.936 29.091 14.024 Z\" fill=\"var(--token-8d9d35c1-9ee2-4668-8f5c-c4808f04c88d, rgb(18, 18, 18))\"></path></g></svg>',\n                  svgContentId: 2143019187\n                }\n              }, M, I)\n            })]\n          })\n        })\n      })\n    });\n  }),\n  M = ['.framer-DEhma [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-DEhma .framer-16i355x { display: block; }\", \".framer-DEhma .framer-b56wmz { height: 60px; overflow: hidden; position: relative; width: 60px; }\", \".framer-DEhma .framer-1sdonvg { flex: none; height: 46px; left: calc(50.00000000000002% - 46px / 2); position: absolute; top: calc(50.00000000000002% - 46px / 2); width: 46px; }\", \".framer-DEhma .framer-94eir4 { flex: none; height: 36px; left: calc(50.00000000000002% - 36px / 2); position: absolute; top: calc(50.00000000000002% - 36px / 2); width: 36px; }\", \".framer-DEhma .framer-l6nc25 { flex: none; height: 38px; left: calc(50.00000000000002% - 39px / 2); position: absolute; top: calc(50.00000000000002% - 38px / 2); width: 39px; }\", \".framer-DEhma .framer-1244wu7 { flex: none; height: 40px; left: calc(50.00000000000002% - 40px / 2); position: absolute; top: calc(48.33333333333336% - 40px / 2); width: 40px; }\", \".framer-DEhma .framer-sz057t { flex: none; height: 36px; left: calc(50.00000000000002% - 39px / 2); position: absolute; top: calc(50.00000000000002% - 36px / 2); width: 39px; }\", \".framer-DEhma .framer-11l14d3 { flex: none; height: 33px; left: calc(48.33333333333336% - 38px / 2); position: absolute; top: calc(50.00000000000002% - 33px / 2); width: 38px; }\", \".framer-DEhma .framer-1w9zthx { flex: none; height: 35px; left: calc(51.66666666666669% - 38px / 2); position: absolute; top: calc(48.33333333333336% - 35px / 2); width: 38px; }\", \".framer-DEhma .framer-8yx1wm { flex: none; height: 36px; left: calc(50.00000000000002% - 36px / 2); position: absolute; top: calc(48.33333333333336% - 36px / 2); width: 36px; }\", \".framer-DEhma .framer-1pbfeii { flex: none; height: 38px; left: calc(51.66666666666669% - 38px / 2); position: absolute; top: calc(50.00000000000002% - 38px / 2); width: 38px; }\", \".framer-DEhma .framer-uld65e { flex: none; height: 41px; left: calc(51.66666666666669% - 39px / 2); position: absolute; top: calc(50.00000000000002% - 41px / 2); width: 39px; }\", \".framer-DEhma.framer-v-3akhgd .framer-b56wmz, .framer-DEhma.framer-v-1dx77eh .framer-b56wmz, .framer-DEhma.framer-v-12ncmyo .framer-b56wmz, .framer-DEhma.framer-v-xi7p4v .framer-b56wmz, .framer-DEhma.framer-v-f6tkl9 .framer-b56wmz, .framer-DEhma.framer-v-z4rk8n .framer-b56wmz, .framer-DEhma.framer-v-xww3eq .framer-b56wmz, .framer-DEhma.framer-v-drwd98 .framer-b56wmz, .framer-DEhma.framer-v-1rjjmx5 .framer-b56wmz { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); }\"],\n  b = f(u, M, \"framer-DEhma\");\nexport default b;\nb.displayName = \"Logo/Integrations\", b.defaultProps = {\n  height: 60,\n  width: 60\n}, r(b, {\n  variant: {\n    options: [\"yyUWDMnYc\", \"BgQOUJEIT\", \"QqB51Z_YZ\", \"v6vcQTVc1\", \"GyQN9IXzj\", \"VEDYF8bfZ\", \"OjfGZYUYt\", \"FtxLv1xbm\", \"MNoId4Qn1\", \"IuNSryqff\"],\n    optionTitles: [\"Figma\", \"Slack\", \"Github\", \"Gmail\", \"Dropbox\", \"Vimeo\", \"Gitlab\", \"Zoom\", \"Framer\", \"Notion\"],\n    title: \"Variant\",\n    type: l.Enum\n  }\n}), e(b, []);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerxddfRu6m1\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"60\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BgQOUJEIT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QqB51Z_YZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v6vcQTVc1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GyQN9IXzj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VEDYF8bfZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OjfGZYUYt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FtxLv1xbm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MNoId4Qn1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IuNSryqff\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"60\",\n        \"framerContractVersion\": \"1\",\n        \"framerImmutableVariables\": \"true\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./xddfRu6m1.map", "// Generated by Framer (f4b44ab)\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport LogoIntegrations from \"https://framerusercontent.com/modules/FrSOWhnsn4krDYgm1nqI/7rvt6osZgZntkHF2qYTP/xddfRu6m1.js\";\nconst LogoIntegrationsFonts = getFonts(LogoIntegrations);\nconst cycleOrder = [\"zls0ahfS7\", \"Ov3BQzGyH\", \"eFQNx38bl\", \"Ht9f8o0Hm\", \"ETetxiCB8\", \"Y2OXPFRO5\", \"RIhfmJIfo\", \"Q_scdAiAz\", \"H53APgY6Z\", \"j6bYEQ8d2\"];\nconst serializationHash = \"framer-chkRd\";\nconst variantClassNames = {\n  eFQNx38bl: \"framer-v-1y665pi\",\n  ETetxiCB8: \"framer-v-yis9yp\",\n  H53APgY6Z: \"framer-v-15b0zl9\",\n  Ht9f8o0Hm: \"framer-v-1ooh810\",\n  j6bYEQ8d2: \"framer-v-17uow5f\",\n  Ov3BQzGyH: \"framer-v-z3w2fj\",\n  Q_scdAiAz: \"framer-v-qpgi50\",\n  RIhfmJIfo: \"framer-v-13yj36s\",\n  Y2OXPFRO5: \"framer-v-h3nv6b\",\n  zls0ahfS7: \"framer-v-xotuz1\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst humanReadableVariantMap = {\n  Dropbox: \"ETetxiCB8\",\n  Figma: \"zls0ahfS7\",\n  Framer: \"H53APgY6Z\",\n  Github: \"eFQNx38bl\",\n  Gitlub: \"RIhfmJIfo\",\n  Gmail: \"Ht9f8o0Hm\",\n  Notion: \"j6bYEQ8d2\",\n  Slack: \"Ov3BQzGyH\",\n  Vimeo: \"Y2OXPFRO5\",\n  Zoom: \"Q_scdAiAz\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"zls0ahfS7\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    JN_t9DQYH,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"zls0ahfS7\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-chkRd\", ...sharedStyleClassNames, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsx(motion.div, {\n          ...restProps,\n          className: cx(\"framer-xotuz1\", className),\n          \"data-border\": true,\n          \"data-framer-name\": \"Figma\",\n          layoutDependency: layoutDependency,\n          layoutId: \"zls0ahfS7\",\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            \"--border-bottom-width\": \"2px\",\n            \"--border-color\": \"rgb(255, 255, 255)\",\n            \"--border-left-width\": \"2px\",\n            \"--border-right-width\": \"2px\",\n            \"--border-style\": \"solid\",\n            \"--border-top-width\": \"2px\",\n            backgroundColor: \"rgb(255, 255, 255)\",\n            borderBottomLeftRadius: 20,\n            borderBottomRightRadius: 20,\n            borderTopLeftRadius: 20,\n            borderTopRightRadius: 20,\n            boxShadow: \"0px 1px 40px 0px rgba(0, 0, 0, 0.03)\",\n            ...style\n          },\n          ...addPropertyOverrides({\n            eFQNx38bl: {\n              \"data-framer-name\": \"Github\"\n            },\n            ETetxiCB8: {\n              \"data-framer-name\": \"Dropbox\"\n            },\n            H53APgY6Z: {\n              \"data-framer-name\": \"Framer\"\n            },\n            Ht9f8o0Hm: {\n              \"data-framer-name\": \"Gmail\"\n            },\n            j6bYEQ8d2: {\n              \"data-framer-name\": \"Notion\"\n            },\n            Ov3BQzGyH: {\n              \"data-framer-name\": \"Slack\"\n            },\n            Q_scdAiAz: {\n              \"data-framer-name\": \"Zoom\"\n            },\n            RIhfmJIfo: {\n              \"data-framer-name\": \"Gitlub\"\n            },\n            Y2OXPFRO5: {\n              \"data-framer-name\": \"Vimeo\"\n            }\n          }, baseVariant, gestureVariant),\n          children: /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-13gl5ni-container\",\n            layoutDependency: layoutDependency,\n            layoutId: \"KsvYtqUor-container\",\n            children: /*#__PURE__*/_jsx(LogoIntegrations, {\n              height: \"100%\",\n              id: \"KsvYtqUor\",\n              layoutId: \"KsvYtqUor\",\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              variant: JN_t9DQYH,\n              width: \"100%\",\n              ...addPropertyOverrides({\n                eFQNx38bl: {\n                  variant: \"QqB51Z_YZ\"\n                },\n                ETetxiCB8: {\n                  variant: \"GyQN9IXzj\"\n                },\n                H53APgY6Z: {\n                  variant: \"MNoId4Qn1\"\n                },\n                Ht9f8o0Hm: {\n                  variant: \"v6vcQTVc1\"\n                },\n                j6bYEQ8d2: {\n                  variant: \"IuNSryqff\"\n                },\n                Ov3BQzGyH: {\n                  variant: \"BgQOUJEIT\"\n                },\n                Q_scdAiAz: {\n                  variant: \"FtxLv1xbm\"\n                },\n                RIhfmJIfo: {\n                  variant: \"OjfGZYUYt\"\n                },\n                Y2OXPFRO5: {\n                  variant: \"VEDYF8bfZ\"\n                }\n              }, baseVariant, gestureVariant)\n            })\n          })\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-chkRd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-chkRd .framer-m20lc5 { display: block; }\", \".framer-chkRd .framer-xotuz1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 90px; justify-content: center; overflow: visible; padding: 9px 9px 9px 9px; position: relative; width: 90px; }\", \".framer-chkRd .framer-13gl5ni-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-chkRd .framer-xotuz1 { gap: 0px; } .framer-chkRd .framer-xotuz1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-chkRd .framer-xotuz1 > :first-child { margin-left: 0px; } .framer-chkRd .framer-xotuz1 > :last-child { margin-right: 0px; } }\", \".framer-chkRd.framer-v-z3w2fj .framer-xotuz1, .framer-chkRd.framer-v-1y665pi .framer-xotuz1, .framer-chkRd.framer-v-1ooh810 .framer-xotuz1, .framer-chkRd.framer-v-yis9yp .framer-xotuz1, .framer-chkRd.framer-v-h3nv6b .framer-xotuz1, .framer-chkRd.framer-v-13yj36s .framer-xotuz1, .framer-chkRd.framer-v-qpgi50 .framer-xotuz1, .framer-chkRd.framer-v-15b0zl9 .framer-xotuz1, .framer-chkRd.framer-v-17uow5f .framer-xotuz1 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 90px); }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerIntrinsicHeight 90\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerIntrinsicWidth 90\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ov3BQzGyH\":{\"layout\":[\"fixed\",\"fixed\"]},\"eFQNx38bl\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ht9f8o0Hm\":{\"layout\":[\"fixed\",\"fixed\"]},\"ETetxiCB8\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y2OXPFRO5\":{\"layout\":[\"fixed\",\"fixed\"]},\"RIhfmJIfo\":{\"layout\":[\"fixed\",\"fixed\"]},\"Q_scdAiAz\":{\"layout\":[\"fixed\",\"fixed\"]},\"H53APgY6Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"j6bYEQ8d2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          */\nconst FramerPfvczNFMc = withCSS(Component, css, \"framer-chkRd\");\nexport default FramerPfvczNFMc;\nFramerPfvczNFMc.displayName = \"Logo/Integrations + BG\";\nFramerPfvczNFMc.defaultProps = {\n  height: 90,\n  width: 90\n};\naddPropertyControls(FramerPfvczNFMc, {\n  variant: {\n    options: [\"zls0ahfS7\", \"Ov3BQzGyH\", \"eFQNx38bl\", \"Ht9f8o0Hm\", \"ETetxiCB8\", \"Y2OXPFRO5\", \"RIhfmJIfo\", \"Q_scdAiAz\", \"H53APgY6Z\", \"j6bYEQ8d2\"],\n    optionTitles: [\"Figma\", \"Slack\", \"Github\", \"Gmail\", \"Dropbox\", \"Vimeo\", \"Gitlub\", \"Zoom\", \"Framer\", \"Notion\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  }\n});\naddFonts(FramerPfvczNFMc, [...LogoIntegrationsFonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerPfvczNFMc\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"90\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicHeight\": \"90\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ov3BQzGyH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eFQNx38bl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ht9f8o0Hm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ETetxiCB8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y2OXPFRO5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RIhfmJIfo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Q_scdAiAz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"H53APgY6Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j6bYEQ8d2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./PfvczNFMc.map", "// Generated by Framer (f4b44ab)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport Ticker from \"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";\nimport LogoIntegrationsBG from \"https://framerusercontent.com/modules/XYiarivPLZYvjnBhrXXG/Dvfx6PgeYIPtN5lCjhuV/PfvczNFMc.js\";\nconst LogoIntegrationsBGFonts = getFonts(LogoIntegrationsBG);\nconst TickerFonts = getFonts(Ticker);\nconst cycleOrder = [\"Grg5thg5b\", \"sLYOWKwgk\"];\nconst serializationHash = \"framer-UkNwL\";\nconst variantClassNames = {\n  Grg5thg5b: \"framer-v-f4mrtu\",\n  sLYOWKwgk: \"framer-v-1gxc31c\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst humanReadableVariantMap = {\n  Desktop: \"Grg5thg5b\",\n  mobile: \"sLYOWKwgk\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"Grg5thg5b\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"Grg5thg5b\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-UkNwL\", ...sharedStyleClassNames, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-f4mrtu\", className),\n          \"data-framer-name\": \"Desktop\",\n          layoutDependency: layoutDependency,\n          layoutId: \"Grg5thg5b\",\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            backgroundColor: \"var(--token-2fb310bf-abfe-4bea-a1bc-90747a0a55d4, rgb(248, 248, 248))\",\n            borderBottomLeftRadius: 15,\n            borderBottomRightRadius: 15,\n            borderTopLeftRadius: 15,\n            borderTopRightRadius: 15,\n            ...style\n          },\n          ...addPropertyOverrides({\n            sLYOWKwgk: {\n              \"data-framer-name\": \"mobile\"\n            }\n          }, baseVariant, gestureVariant),\n          children: [/*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-djjw3q-container\",\n            layoutDependency: layoutDependency,\n            layoutId: \"yEAXwk1eQ-container\",\n            children: /*#__PURE__*/_jsx(Ticker, {\n              alignment: \"center\",\n              direction: \"left\",\n              fadeOptions: {\n                fadeAlpha: 0,\n                fadeContent: true,\n                fadeInset: 0,\n                fadeWidth: 25,\n                overflow: false\n              },\n              gap: 12,\n              height: \"100%\",\n              hoverFactor: 0,\n              id: \"yEAXwk1eQ\",\n              layoutId: \"yEAXwk1eQ\",\n              padding: 10,\n              paddingBottom: 10,\n              paddingLeft: 10,\n              paddingPerSide: false,\n              paddingRight: 10,\n              paddingTop: 10,\n              sizingOptions: {\n                heightType: true,\n                widthType: true\n              },\n              slots: [/*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-xtqfzk-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"KL2hDD5rn-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"KL2hDD5rn\",\n                  layoutId: \"KL2hDD5rn\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"zls0ahfS7\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-ew21da-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"haSZG9NI8-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"haSZG9NI8\",\n                  layoutId: \"haSZG9NI8\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"Ov3BQzGyH\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1s0fawz-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"FlqJ6110k-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"FlqJ6110k\",\n                  layoutId: \"FlqJ6110k\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"eFQNx38bl\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1wxd1rh-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"vZwP3olPj-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"vZwP3olPj\",\n                  layoutId: \"vZwP3olPj\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"Ht9f8o0Hm\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-141txo8-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"V_4mFxBMx-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"V_4mFxBMx\",\n                  layoutId: \"V_4mFxBMx\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"ETetxiCB8\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-2uay93-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"Ijqafcj9t-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"Ijqafcj9t\",\n                  layoutId: \"Ijqafcj9t\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"Y2OXPFRO5\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-nlz3q5-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"nrT3I7VXl-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"nrT3I7VXl\",\n                  layoutId: \"nrT3I7VXl\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"RIhfmJIfo\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1s6brdz-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"dbdQRvbEb-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"dbdQRvbEb\",\n                  layoutId: \"dbdQRvbEb\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"Q_scdAiAz\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-19ho27l-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"xCiXTMti7-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"xCiXTMti7\",\n                  layoutId: \"xCiXTMti7\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"H53APgY6Z\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-16ougg3-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"yJ4p5w9_x-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"yJ4p5w9_x\",\n                  layoutId: \"yJ4p5w9_x\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"j6bYEQ8d2\",\n                  width: \"100%\"\n                })\n              })],\n              speed: 20,\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              width: \"100%\",\n              ...addPropertyOverrides({\n                sLYOWKwgk: {\n                  gap: 8\n                }\n              }, baseVariant, gestureVariant)\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1jmcizv-container\",\n            layoutDependency: layoutDependency,\n            layoutId: \"Qemt8eAUw-container\",\n            children: /*#__PURE__*/_jsx(Ticker, {\n              alignment: \"center\",\n              direction: \"right\",\n              fadeOptions: {\n                fadeAlpha: 0,\n                fadeContent: true,\n                fadeInset: 0,\n                fadeWidth: 25,\n                overflow: false\n              },\n              gap: 12,\n              height: \"100%\",\n              hoverFactor: 0,\n              id: \"Qemt8eAUw\",\n              layoutId: \"Qemt8eAUw\",\n              padding: 10,\n              paddingBottom: 10,\n              paddingLeft: 10,\n              paddingPerSide: false,\n              paddingRight: 10,\n              paddingTop: 10,\n              sizingOptions: {\n                heightType: true,\n                widthType: true\n              },\n              slots: [/*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-xtqfzk-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"KL2hDD5rn-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"KL2hDD5rn\",\n                  layoutId: \"KL2hDD5rn\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"zls0ahfS7\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-19ho27l-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"xCiXTMti7-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"xCiXTMti7\",\n                  layoutId: \"xCiXTMti7\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"H53APgY6Z\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-141txo8-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"V_4mFxBMx-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"V_4mFxBMx\",\n                  layoutId: \"V_4mFxBMx\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"ETetxiCB8\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1s0fawz-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"FlqJ6110k-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"FlqJ6110k\",\n                  layoutId: \"FlqJ6110k\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"eFQNx38bl\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-ew21da-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"haSZG9NI8-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"haSZG9NI8\",\n                  layoutId: \"haSZG9NI8\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"Ov3BQzGyH\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-nlz3q5-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"nrT3I7VXl-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"nrT3I7VXl\",\n                  layoutId: \"nrT3I7VXl\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"RIhfmJIfo\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-2uay93-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"Ijqafcj9t-container\",\n                children: /*#__PURE__*/_jsx(LogoIntegrationsBG, {\n                  height: \"100%\",\n                  id: \"Ijqafcj9t\",\n                  layoutId: \"Ijqafcj9t\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"Y2OXPFRO5\",\n                  width: \"100%\"\n                })\n              })],\n              speed: 20,\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              width: \"100%\",\n              ...addPropertyOverrides({\n                sLYOWKwgk: {\n                  gap: 8\n                }\n              }, baseVariant, gestureVariant)\n            })\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-UkNwL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-UkNwL .framer-2mcy62 { display: block; }\", \".framer-UkNwL .framer-f4mrtu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 327px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 580px; }\", \".framer-UkNwL .framer-djjw3q-container, .framer-UkNwL .framer-1jmcizv-container { flex: none; height: 140px; position: relative; width: 100%; z-index: 2; }\", \".framer-UkNwL .framer-xtqfzk-container, .framer-UkNwL .framer-ew21da-container, .framer-UkNwL .framer-1s0fawz-container, .framer-UkNwL .framer-1wxd1rh-container, .framer-UkNwL .framer-141txo8-container, .framer-UkNwL .framer-2uay93-container, .framer-UkNwL .framer-nlz3q5-container, .framer-UkNwL .framer-1s6brdz-container, .framer-UkNwL .framer-19ho27l-container, .framer-UkNwL .framer-16ougg3-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 90px); position: relative; width: 90px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UkNwL .framer-f4mrtu { gap: 0px; } .framer-UkNwL .framer-f4mrtu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UkNwL .framer-f4mrtu > :first-child { margin-top: 0px; } .framer-UkNwL .framer-f4mrtu > :last-child { margin-bottom: 0px; } }\", \".framer-UkNwL.framer-v-1gxc31c .framer-f4mrtu { height: 266px; width: 390px; }\", \".framer-UkNwL.framer-v-1gxc31c .framer-djjw3q-container { height: 110px; order: 0; }\", \".framer-UkNwL.framer-v-1gxc31c .framer-1jmcizv-container { height: 110px; order: 1; }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerIntrinsicHeight 327\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerIntrinsicWidth 580\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sLYOWKwgk\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             */\nconst FramerAV5ir6b2e = withCSS(Component, css, \"framer-UkNwL\");\nexport default FramerAV5ir6b2e;\nFramerAV5ir6b2e.displayName = \"Integrations ticker\";\nFramerAV5ir6b2e.defaultProps = {\n  height: 327,\n  width: 580\n};\naddPropertyControls(FramerAV5ir6b2e, {\n  variant: {\n    options: [\"Grg5thg5b\", \"sLYOWKwgk\"],\n    optionTitles: [\"Desktop\", \"mobile\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  }\n});\naddFonts(FramerAV5ir6b2e, [...LogoIntegrationsBGFonts, ...TickerFonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerAV5ir6b2e\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"327\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"580\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sLYOWKwgk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerImmutableVariables\": \"true\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./AV5ir6b2e.map", "import { fontStore } from \"framer\";\nfontStore.loadFonts([\"GF;Onest-500\", \"GF;Onest-700\"]);\nexport const fonts = [{\n  family: \"Onest\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhxx-ZtxFMQWXgSQ.woff2\",\n  weight: \"500\"\n}, {\n  family: \"Onest\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhEhiZtxFMQWXgSQ.woff2\",\n  weight: \"700\"\n}];\nexport const css = ['.framer-fkqwR .framer-styles-preset-j5nuoz:not(.rich-text-wrapper), .framer-fkqwR .framer-styles-preset-j5nuoz.rich-text-wrapper h4 { --framer-font-family: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-family-bold: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.7px; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }', '@media (max-width: 1399px) and (min-width: 1200px) { .framer-fkqwR .framer-styles-preset-j5nuoz:not(.rich-text-wrapper), .framer-fkqwR .framer-styles-preset-j5nuoz.rich-text-wrapper h4 { --framer-font-family: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-family-bold: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.7px; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }', '@media (max-width: 1199px) and (min-width: 810px) { .framer-fkqwR .framer-styles-preset-j5nuoz:not(.rich-text-wrapper), .framer-fkqwR .framer-styles-preset-j5nuoz.rich-text-wrapper h4 { --framer-font-family: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-family-bold: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.7px; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }', '@media (max-width: 809px) and (min-width: 0px) { .framer-fkqwR .framer-styles-preset-j5nuoz:not(.rich-text-wrapper), .framer-fkqwR .framer-styles-preset-j5nuoz.rich-text-wrapper h4 { --framer-font-family: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-family-bold: \"Onest\", \"Onest Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.7px; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }'];\nexport const className = \"framer-fkqwR\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (f4b44ab)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, Image, RichText, useLocaleInfo, useVariantState, withCSS, withFX } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/51KUSLoFW3i7SDTCzFBh/Zr7vEgdF34oUjWrzupu9/s7y9jZt2M.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/hZYQ2LdG11sAEwCFBLYz/axKOtR2T9iYuN1QEd7Yv/ZMM4tXlam.js\";\nconst MotionDivWithFX = withFX(motion.div);\nconst cycleOrder = [\"TYOm6rN50\"];\nconst serializationHash = \"framer-0CLWW\";\nconst variantClassNames = {\n  TYOm6rN50: \"framer-v-1cccsa9\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst transformTemplate = (_, t) => `perspective(1200px) ${t}`;\nconst toResponsiveImage = value => {\n  if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {\n    return value;\n  }\n  return typeof value === \"string\" ? {\n    src: value\n  } : undefined;\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst getProps = ({\n  background,\n  bodyColor,\n  height,\n  id,\n  image,\n  radius,\n  text,\n  title,\n  titleColor,\n  width,\n  ...props\n}) => {\n  var _ref, _ref1, _ref2, _ref3, _ref4, _ref5, _ref6;\n  return {\n    ...props,\n    C7_mgzp8l: (_ref = titleColor !== null && titleColor !== void 0 ? titleColor : props.C7_mgzp8l) !== null && _ref !== void 0 ? _ref : \"var(--token-09ce4c34-4ee4-4fac-b7f5-d92c56737557, rgb(0, 0, 0))\",\n    F29beTvdU: (_ref1 = text !== null && text !== void 0 ? text : props.F29beTvdU) !== null && _ref1 !== void 0 ? _ref1 : \"Optimize outreach timing based on prospect time zones, ensuring your messages reach the right audience.\",\n    Fi2AyBtmF: (_ref2 = image !== null && image !== void 0 ? image : props.Fi2AyBtmF) !== null && _ref2 !== void 0 ? _ref2 : {\n      src: \"https://framerusercontent.com/images/C0Y5h1uH2j64rhGOITlScCsjk.webp\"\n    },\n    NnP9aRJTO: (_ref3 = radius !== null && radius !== void 0 ? radius : props.NnP9aRJTO) !== null && _ref3 !== void 0 ? _ref3 : 40,\n    pBEcAnZQi: (_ref4 = background !== null && background !== void 0 ? background : props.pBEcAnZQi) !== null && _ref4 !== void 0 ? _ref4 : 'var(--token-8774b069-3693-4bd6-ac75-4e5ee4080d5f, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n    QdeCJXu85: (_ref5 = bodyColor !== null && bodyColor !== void 0 ? bodyColor : props.QdeCJXu85) !== null && _ref5 !== void 0 ? _ref5 : \"var(--token-598ee1ba-30c3-4996-8d17-4ba979a22109, rgb(115, 117, 116))\",\n    skZWwTYYF: (_ref6 = title !== null && title !== void 0 ? title : props.skZWwTYYF) !== null && _ref6 !== void 0 ? _ref6 : \"Smart Scheduling\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    Fi2AyBtmF,\n    skZWwTYYF,\n    F29beTvdU,\n    NnP9aRJTO,\n    pBEcAnZQi,\n    C7_mgzp8l,\n    QdeCJXu85,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"TYOm6rN50\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-0CLWW\", ...sharedStyleClassNames, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsx(MotionDivWithFX, {\n          ...restProps,\n          __framer__spring: {\n            damping: 60,\n            delay: 0,\n            duration: .3,\n            ease: [.44, 0, .56, 1],\n            mass: 1,\n            stiffness: 400,\n            type: \"spring\"\n          },\n          __framer__styleTransformEffectEnabled: true,\n          __framer__transformTargets: [{\n            target: {\n              opacity: 1,\n              rotate: 0,\n              rotateX: -50,\n              rotateY: 0,\n              scale: .9,\n              x: 0,\n              y: 0\n            }\n          }, {\n            target: {\n              opacity: 1,\n              rotate: 0,\n              rotateX: 0,\n              rotateY: 0,\n              scale: 1,\n              x: 0,\n              y: 0\n            }\n          }],\n          __framer__transformTrigger: \"onInView\",\n          __perspectiveFX: false,\n          __smartComponentFX: true,\n          __targetOpacity: 1,\n          className: cx(\"framer-1cccsa9\", className),\n          \"data-framer-name\": \"Variant 1\",\n          layoutDependency: layoutDependency,\n          layoutId: \"TYOm6rN50\",\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            backgroundColor: pBEcAnZQi,\n            borderBottomLeftRadius: NnP9aRJTO,\n            borderBottomRightRadius: NnP9aRJTO,\n            borderTopLeftRadius: NnP9aRJTO,\n            borderTopRightRadius: NnP9aRJTO,\n            boxShadow: \"0px 1px 40px 0px rgba(0, 0, 0, 0.03)\",\n            ...style\n          },\n          transformTemplate: transformTemplate,\n          children: /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-1c56m49\",\n            \"data-framer-name\": \"Container\",\n            layoutDependency: layoutDependency,\n            layoutId: \"Rzhlfk2Du\",\n            children: [/*#__PURE__*/_jsx(Image, {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 430,\n                intrinsicWidth: 781,\n                pixelHeight: 860,\n                pixelWidth: 1562,\n                sizes: \"calc(min(383.5px, 100vw) - 60px)\",\n                ...toResponsiveImage(Fi2AyBtmF)\n              },\n              className: \"framer-1nqdbhu\",\n              \"data-framer-name\": \"image\",\n              layoutDependency: layoutDependency,\n              layoutId: \"IV4lICnbn\"\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-12672tf\",\n              \"data-framer-name\": \"Heading\",\n              layoutDependency: layoutDependency,\n              layoutId: \"RFeLNlm6c\",\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.h6, {\n                    className: \"framer-styles-preset-j5nuoz\",\n                    \"data-styles-preset\": \"s7y9jZt2M\",\n                    style: {\n                      \"--framer-text-color\": \"var(--extracted-1w1cjl5, var(--variable-reference-C7_mgzp8l-bAwOOiB5q))\"\n                    },\n                    children: \"Smart Scheduling\"\n                  })\n                }),\n                className: \"framer-zyihec\",\n                layoutDependency: layoutDependency,\n                layoutId: \"byiWmo350\",\n                style: {\n                  \"--extracted-1w1cjl5\": \"var(--variable-reference-C7_mgzp8l-bAwOOiB5q)\",\n                  \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                  \"--framer-link-text-decoration\": \"underline\",\n                  \"--framer-paragraph-spacing\": \"0px\",\n                  \"--variable-reference-C7_mgzp8l-bAwOOiB5q\": C7_mgzp8l\n                },\n                text: skZWwTYYF,\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    className: \"framer-styles-preset-hmeghe\",\n                    \"data-styles-preset\": \"ZMM4tXlam\",\n                    style: {\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv, var(--variable-reference-QdeCJXu85-bAwOOiB5q))\"\n                    },\n                    children: \"Optimize outreach timing based on prospect time zones, ensuring your messages reach the right audience.\"\n                  })\n                }),\n                className: \"framer-1vrxpb4\",\n                layoutDependency: layoutDependency,\n                layoutId: \"g4nq0MCKH\",\n                style: {\n                  \"--extracted-r6o4lv\": \"var(--variable-reference-QdeCJXu85-bAwOOiB5q)\",\n                  \"--framer-paragraph-spacing\": \"0px\",\n                  \"--variable-reference-QdeCJXu85-bAwOOiB5q\": QdeCJXu85\n                },\n                text: F29beTvdU,\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            })]\n          })\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-0CLWW [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-0CLWW .framer-14f6hzg { display: block; }\", \".framer-0CLWW .framer-1cccsa9 { align-content: start; align-items: start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 20px 30px 35px 30px; position: relative; width: 384px; }\", \".framer-0CLWW .framer-1c56m49 { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-0CLWW .framer-1nqdbhu { aspect-ratio: 1.8162790697674418 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 178px); overflow: visible; position: relative; width: 100%; }\", \".framer-0CLWW .framer-12672tf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-0CLWW .framer-zyihec { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-0CLWW .framer-1vrxpb4 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0CLWW .framer-1cccsa9, .framer-0CLWW .framer-1c56m49, .framer-0CLWW .framer-12672tf { gap: 0px; } .framer-0CLWW .framer-1cccsa9 > *, .framer-0CLWW .framer-12672tf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0CLWW .framer-1cccsa9 > :first-child, .framer-0CLWW .framer-1c56m49 > :first-child, .framer-0CLWW .framer-12672tf > :first-child { margin-top: 0px; } .framer-0CLWW .framer-1cccsa9 > :last-child, .framer-0CLWW .framer-1c56m49 > :last-child, .framer-0CLWW .framer-12672tf > :last-child { margin-bottom: 0px; } .framer-0CLWW .framer-1c56m49 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\", ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerIntrinsicHeight 372\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerIntrinsicWidth 383.5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerVariables {\"Fi2AyBtmF\":\"image\",\"skZWwTYYF\":\"title\",\"F29beTvdU\":\"text\",\"NnP9aRJTO\":\"radius\",\"pBEcAnZQi\":\"background\",\"C7_mgzp8l\":\"titleColor\",\"QdeCJXu85\":\"bodyColor\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           */\nconst FramerbAwOOiB5q = withCSS(Component, css, \"framer-0CLWW\");\nexport default FramerbAwOOiB5q;\nFramerbAwOOiB5q.displayName = \"Features Card Small\";\nFramerbAwOOiB5q.defaultProps = {\n  height: 372,\n  width: 383.5\n};\naddPropertyControls(FramerbAwOOiB5q, {\n  Fi2AyBtmF: {\n    __defaultAssetReference: \"data:framer/asset-reference,C0Y5h1uH2j64rhGOITlScCsjk.webp?originalFilename=XAc3hDOUYZJu6DhtkpCvctiEdzU.webp&preferredSize=auto\",\n    title: \"Image\",\n    type: ControlType.ResponsiveImage\n  },\n  skZWwTYYF: {\n    defaultValue: \"Smart Scheduling\",\n    displayTextArea: false,\n    title: \"Title\",\n    type: ControlType.String\n  },\n  F29beTvdU: {\n    defaultValue: \"Optimize outreach timing based on prospect time zones, ensuring your messages reach the right audience.\",\n    displayTextArea: false,\n    title: \"Text\",\n    type: ControlType.String\n  },\n  NnP9aRJTO: {\n    defaultValue: 40,\n    title: \"Radius\",\n    type: ControlType.Number\n  },\n  pBEcAnZQi: {\n    defaultValue: 'var(--token-8774b069-3693-4bd6-ac75-4e5ee4080d5f, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n    title: \"Background\",\n    type: ControlType.Color\n  },\n  C7_mgzp8l: {\n    defaultValue: \"var(--token-09ce4c34-4ee4-4fac-b7f5-d92c56737557, rgb(0, 0, 0))\",\n    title: \"Title Color\",\n    type: ControlType.Color\n  },\n  QdeCJXu85: {\n    defaultValue: \"var(--token-598ee1ba-30c3-4996-8d17-4ba979a22109, rgb(115, 117, 116))\",\n    title: \"Body Color\",\n    type: ControlType.Color\n  }\n});\naddFonts(FramerbAwOOiB5q, [...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerbAwOOiB5q\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicWidth\": \"383.5\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"372\",\n        \"framerVariables\": \"{\\\"Fi2AyBtmF\\\":\\\"image\\\",\\\"skZWwTYYF\\\":\\\"title\\\",\\\"F29beTvdU\\\":\\\"text\\\",\\\"NnP9aRJTO\\\":\\\"radius\\\",\\\"pBEcAnZQi\\\":\\\"background\\\",\\\"C7_mgzp8l\\\":\\\"titleColor\\\",\\\"QdeCJXu85\\\":\\\"bodyColor\\\"}\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./bAwOOiB5q.map", "// Generated by Framer (f4b44ab)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, getPropertyControls, RichText, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Icon as Phosphor } from \"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/51KUSLoFW3i7SDTCzFBh/Zr7vEgdF34oUjWrzupu9/s7y9jZt2M.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/hZYQ2LdG11sAEwCFBLYz/axKOtR2T9iYuN1QEd7Yv/ZMM4tXlam.js\";\nconst PhosphorFonts = getFonts(Phosphor);\nconst PhosphorControls = getPropertyControls(Phosphor);\nconst cycleOrder = [\"ZuH5HpD24\"];\nconst serializationHash = \"framer-kJ9lB\";\nconst variantClassNames = {\n  ZuH5HpD24: \"framer-v-co28f1\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst getProps = ({\n  color,\n  height,\n  id,\n  name1,\n  select,\n  text,\n  title,\n  width,\n  ...props\n}) => {\n  var _ref, _ref1, _ref2, _ref3, _ref4;\n  return {\n    ...props,\n    atgBN1DM2: (_ref = color !== null && color !== void 0 ? color : props.atgBN1DM2) !== null && _ref !== void 0 ? _ref : 'var(--token-a97e1860-d3d9-4504-898f-be416540006f, rgb(23, 77, 255)) /* {\"name\":\"Purple\"} */',\n    hgGbHpujQ: (_ref1 = title !== null && title !== void 0 ? title : props.hgGbHpujQ) !== null && _ref1 !== void 0 ? _ref1 : \"Define your ideal customer profile.\",\n    hP5xezD5F: (_ref2 = name1 !== null && name1 !== void 0 ? name1 : props.hP5xezD5F) !== null && _ref2 !== void 0 ? _ref2 : \"HeartBreak\",\n    jOst6uoVR: (_ref3 = select !== null && select !== void 0 ? select : props.jOst6uoVR) !== null && _ref3 !== void 0 ? _ref3 : true,\n    UeDbQEgKi: (_ref4 = text !== null && text !== void 0 ? text : props.UeDbQEgKi) !== null && _ref4 !== void 0 ? _ref4 : \"Begin by defining your ideal customer profile, including company size, type, location, and buyer persona.\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    jOst6uoVR,\n    hP5xezD5F,\n    atgBN1DM2,\n    hgGbHpujQ,\n    UeDbQEgKi,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"ZuH5HpD24\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-kJ9lB\", ...sharedStyleClassNames, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-co28f1\", className),\n          \"data-framer-name\": \"Variant 1\",\n          layoutDependency: layoutDependency,\n          layoutId: \"ZuH5HpD24\",\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-tv32iz\",\n            \"data-border\": true,\n            layoutDependency: layoutDependency,\n            layoutId: \"z8dmkuhuZ\",\n            style: {\n              \"--border-bottom-width\": \"2px\",\n              \"--border-color\": 'var(--token-a97e1860-d3d9-4504-898f-be416540006f, rgb(23, 77, 255)) /* {\"name\":\"Purple\"} */',\n              \"--border-left-width\": \"2px\",\n              \"--border-right-width\": \"2px\",\n              \"--border-style\": \"solid\",\n              \"--border-top-width\": \"2px\",\n              background: \"linear-gradient(180deg, rgb(202, 213, 250) 0%, rgb(237, 241, 255) 14.20677590032429%, rgb(255, 255, 255) 54.44349396445205%, rgb(237, 241, 255) 88.30360698640271%, rgb(202, 213, 250) 100%)\",\n              borderBottomLeftRadius: 13,\n              borderBottomRightRadius: 13,\n              borderTopLeftRadius: 13,\n              borderTopRightRadius: 13,\n              boxShadow: \"0px 1px 40px 0px rgba(0, 0, 0, 0.05)\"\n            },\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-8d3t9-container\",\n              layoutDependency: layoutDependency,\n              layoutId: \"tYzT7u_SY-container\",\n              children: /*#__PURE__*/_jsx(Phosphor, {\n                color: atgBN1DM2,\n                height: \"100%\",\n                iconSearch: \"House\",\n                iconSelection: hP5xezD5F,\n                id: \"tYzT7u_SY\",\n                layoutId: \"tYzT7u_SY\",\n                mirrored: false,\n                selectByList: jOst6uoVR,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                weight: \"regular\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-12n7a2k\",\n            layoutDependency: layoutDependency,\n            layoutId: \"l_3oLZFJi\",\n            children: [/*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.h3, {\n                  className: \"framer-styles-preset-j5nuoz\",\n                  \"data-styles-preset\": \"s7y9jZt2M\",\n                  style: {\n                    \"--framer-text-color\": \"var(--extracted-a0htzi, var(--token-09ce4c34-4ee4-4fac-b7f5-d92c56737557, rgb(0, 0, 0)))\"\n                  },\n                  children: \"Define your ideal customer profile.\"\n                })\n              }),\n              className: \"framer-1ouuoqq\",\n              layoutDependency: layoutDependency,\n              layoutId: \"aeQunGhPm\",\n              style: {\n                \"--extracted-a0htzi\": \"var(--token-09ce4c34-4ee4-4fac-b7f5-d92c56737557, rgb(0, 0, 0))\",\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\"\n              },\n              text: hgGbHpujQ,\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.p, {\n                  className: \"framer-styles-preset-hmeghe\",\n                  \"data-styles-preset\": \"ZMM4tXlam\",\n                  style: {\n                    \"--framer-text-color\": \"var(--extracted-r6o4lv, var(--token-598ee1ba-30c3-4996-8d17-4ba979a22109, rgb(115, 117, 116)))\"\n                  },\n                  children: \"Begin by defining your ideal customer profile, including company size, type, location, and buyer persona.\"\n                })\n              }),\n              className: \"framer-othi1r\",\n              layoutDependency: layoutDependency,\n              layoutId: \"oIf790iOG\",\n              style: {\n                \"--extracted-r6o4lv\": \"var(--token-598ee1ba-30c3-4996-8d17-4ba979a22109, rgb(115, 117, 116))\",\n                \"--framer-paragraph-spacing\": \"0px\"\n              },\n              text: UeDbQEgKi,\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            })]\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-kJ9lB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-kJ9lB .framer-rjoydr { display: block; }\", \".framer-kJ9lB .framer-co28f1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 377px; }\", \".framer-kJ9lB .framer-tv32iz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); overflow: hidden; position: relative; width: 63px; will-change: var(--framer-will-change-override, transform); }\", \".framer-kJ9lB .framer-8d3t9-container { flex: none; height: 40px; left: calc(49.20634920634922% - 40px / 2); position: absolute; top: calc(50.79365079365081% - 40px / 2); width: 40px; }\", \".framer-kJ9lB .framer-12n7a2k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-kJ9lB .framer-1ouuoqq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-kJ9lB .framer-othi1r { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kJ9lB .framer-co28f1, .framer-kJ9lB .framer-12n7a2k { gap: 0px; } .framer-kJ9lB .framer-co28f1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-kJ9lB .framer-co28f1 > :first-child, .framer-kJ9lB .framer-12n7a2k > :first-child { margin-top: 0px; } .framer-kJ9lB .framer-co28f1 > :last-child, .framer-kJ9lB .framer-12n7a2k > :last-child { margin-bottom: 0px; } .framer-kJ9lB .framer-12n7a2k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\", ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               * @framerIntrinsicHeight 238\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               * @framerIntrinsicWidth 376.5\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               * @framerVariables {\"jOst6uoVR\":\"select\",\"hP5xezD5F\":\"name1\",\"atgBN1DM2\":\"color\",\"hgGbHpujQ\":\"title\",\"UeDbQEgKi\":\"text\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               */\nconst FramerGrMcM_j4v = withCSS(Component, css, \"framer-kJ9lB\");\nexport default FramerGrMcM_j4v;\nFramerGrMcM_j4v.displayName = \"Benefit card\";\nFramerGrMcM_j4v.defaultProps = {\n  height: 238,\n  width: 376.5\n};\naddPropertyControls(FramerGrMcM_j4v, {\n  jOst6uoVR: {\n    defaultValue: true,\n    title: \"Select\",\n    type: ControlType.Boolean\n  },\n  hP5xezD5F: (PhosphorControls === null || PhosphorControls === void 0 ? void 0 : PhosphorControls[\"iconSelection\"]) && {\n    ...PhosphorControls[\"iconSelection\"],\n    defaultValue: \"HeartBreak\",\n    hidden: undefined,\n    title: \"Name\"\n  },\n  atgBN1DM2: {\n    defaultValue: 'var(--token-a97e1860-d3d9-4504-898f-be416540006f, rgb(23, 77, 255)) /* {\"name\":\"Purple\"} */',\n    title: \"Color\",\n    type: ControlType.Color\n  },\n  hgGbHpujQ: {\n    defaultValue: \"Define your ideal customer profile.\",\n    displayTextArea: false,\n    title: \"Title\",\n    type: ControlType.String\n  },\n  UeDbQEgKi: {\n    defaultValue: \"Begin by defining your ideal customer profile, including company size, type, location, and buyer persona.\",\n    displayTextArea: false,\n    title: \"Text\",\n    type: ControlType.String\n  }\n});\naddFonts(FramerGrMcM_j4v, [...PhosphorFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerGrMcM_j4v\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerImmutableVariables\": \"true\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"238\",\n        \"framerIntrinsicWidth\": \"376.5\",\n        \"framerContractVersion\": \"1\",\n        \"framerVariables\": \"{\\\"jOst6uoVR\\\":\\\"select\\\",\\\"hP5xezD5F\\\":\\\"name1\\\",\\\"atgBN1DM2\\\":\\\"color\\\",\\\"hgGbHpujQ\\\":\\\"title\\\",\\\"UeDbQEgKi\\\":\\\"text\\\"}\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./GrMcM_j4v.map", "// Generated by Framer (f4b44ab)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, getPropertyControls, RichText, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Icon as Phosphor } from \"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/51KUSLoFW3i7SDTCzFBh/Zr7vEgdF34oUjWrzupu9/s7y9jZt2M.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/hZYQ2LdG11sAEwCFBLYz/axKOtR2T9iYuN1QEd7Yv/ZMM4tXlam.js\";\nconst PhosphorFonts = getFonts(Phosphor);\nconst PhosphorControls = getPropertyControls(Phosphor);\nconst cycleOrder = [\"rAS2IbBDG\"];\nconst serializationHash = \"framer-MjTmb\";\nconst variantClassNames = {\n  rAS2IbBDG: \"framer-v-12v4vrh\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst getProps = ({\n  height,\n  id,\n  name1,\n  radius,\n  select,\n  text,\n  title,\n  width,\n  ...props\n}) => {\n  var _ref, _ref1, _ref2, _ref3, _ref4;\n  return {\n    ...props,\n    JgJtSkfYr: (_ref = text !== null && text !== void 0 ? text : props.JgJtSkfYr) !== null && _ref !== void 0 ? _ref : \"Begin by defining your ideal customer profile, including company size, type, location, and buyer persona.\",\n    N9exXQckC: (_ref1 = title !== null && title !== void 0 ? title : props.N9exXQckC) !== null && _ref1 !== void 0 ? _ref1 : \"Define your ideal customer profile.\",\n    NPJxt80Ov: (_ref2 = select !== null && select !== void 0 ? select : props.NPJxt80Ov) !== null && _ref2 !== void 0 ? _ref2 : true,\n    RVZk5_sIT: (_ref3 = radius !== null && radius !== void 0 ? radius : props.RVZk5_sIT) !== null && _ref3 !== void 0 ? _ref3 : 40,\n    ZOjHZTfwm: (_ref4 = name1 !== null && name1 !== void 0 ? name1 : props.ZOjHZTfwm) !== null && _ref4 !== void 0 ? _ref4 : \"HeartBreak\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    NPJxt80Ov,\n    N9exXQckC,\n    JgJtSkfYr,\n    ZOjHZTfwm,\n    RVZk5_sIT,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"rAS2IbBDG\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-MjTmb\", ...sharedStyleClassNames, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsx(motion.div, {\n          ...restProps,\n          className: cx(\"framer-12v4vrh\", className),\n          \"data-framer-name\": \"Variant 1\",\n          layoutDependency: layoutDependency,\n          layoutId: \"rAS2IbBDG\",\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            backgroundColor: \"rgb(23, 23, 23)\",\n            borderBottomLeftRadius: RVZk5_sIT,\n            borderBottomRightRadius: RVZk5_sIT,\n            borderTopLeftRadius: RVZk5_sIT,\n            borderTopRightRadius: RVZk5_sIT,\n            boxShadow: \"0px 1px 40px 0px rgba(0, 0, 0, 0.08)\",\n            ...style\n          },\n          children: /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-esnrwi\",\n            layoutDependency: layoutDependency,\n            layoutId: \"BRFC_CDBO\",\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-hds3w0\",\n              \"data-border\": true,\n              layoutDependency: layoutDependency,\n              layoutId: \"dywN6o7ph\",\n              style: {\n                \"--border-bottom-width\": \"2px\",\n                \"--border-color\": \"rgba(255, 255, 255, 0.08)\",\n                \"--border-left-width\": \"2px\",\n                \"--border-right-width\": \"2px\",\n                \"--border-style\": \"solid\",\n                \"--border-top-width\": \"2px\",\n                backgroundColor: \"rgba(255, 225, 217, 0)\",\n                borderBottomLeftRadius: 15,\n                borderBottomRightRadius: 15,\n                borderTopLeftRadius: 15,\n                borderTopRightRadius: 15,\n                boxShadow: \"0px 1px 40px 0px rgba(0, 0, 0, 0.05)\"\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1yby4w-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"SQo3JCYmS-container\",\n                children: /*#__PURE__*/_jsx(Phosphor, {\n                  color: 'var(--token-e75c4dfa-aeb9-4e6b-9ed6-346008b981c8, rgb(255, 98, 54)) /* {\"name\":\"Orange\"} */',\n                  height: \"100%\",\n                  iconSearch: \"House\",\n                  iconSelection: ZOjHZTfwm,\n                  id: \"SQo3JCYmS\",\n                  layoutId: \"SQo3JCYmS\",\n                  mirrored: false,\n                  selectByList: NPJxt80Ov,\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  weight: \"regular\",\n                  width: \"100%\"\n                })\n              })\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-gdpr0u\",\n              layoutDependency: layoutDependency,\n              layoutId: \"FHn4JNMI3\",\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.h4, {\n                    className: \"framer-styles-preset-j5nuoz\",\n                    \"data-styles-preset\": \"s7y9jZt2M\",\n                    style: {\n                      \"--framer-text-alignment\": \"left\",\n                      \"--framer-text-color\": \"var(--extracted-1eung3n, var(--token-8774b069-3693-4bd6-ac75-4e5ee4080d5f, rgb(255, 255, 255)))\"\n                    },\n                    children: \"Define your ideal customer profile.\"\n                  })\n                }),\n                className: \"framer-qzswxi\",\n                layoutDependency: layoutDependency,\n                layoutId: \"WfSwMUj7Q\",\n                style: {\n                  \"--extracted-1eung3n\": \"var(--token-8774b069-3693-4bd6-ac75-4e5ee4080d5f, rgb(255, 255, 255))\",\n                  \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                  \"--framer-link-text-decoration\": \"underline\",\n                  \"--framer-paragraph-spacing\": \"0px\"\n                },\n                text: N9exXQckC,\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    className: \"framer-styles-preset-hmeghe\",\n                    \"data-styles-preset\": \"ZMM4tXlam\",\n                    style: {\n                      \"--framer-text-alignment\": \"left\",\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv, var(--token-598ee1ba-30c3-4996-8d17-4ba979a22109, rgb(115, 117, 116)))\"\n                    },\n                    children: \"Begin by defining your ideal customer profile, including company size, type, location, and buyer persona.\"\n                  })\n                }),\n                className: \"framer-1kvg3vq\",\n                layoutDependency: layoutDependency,\n                layoutId: \"tgs1Z_ytz\",\n                style: {\n                  \"--extracted-r6o4lv\": \"var(--token-598ee1ba-30c3-4996-8d17-4ba979a22109, rgb(115, 117, 116))\",\n                  \"--framer-paragraph-spacing\": \"0px\"\n                },\n                text: JgJtSkfYr,\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            })]\n          })\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-MjTmb [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-MjTmb .framer-1z0hsd3 { display: block; }\", \".framer-MjTmb .framer-12v4vrh { align-content: start; align-items: start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 30px 30px 30px 30px; position: relative; width: 435px; }\", \".framer-MjTmb .framer-esnrwi { align-content: start; align-items: start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-MjTmb .framer-hds3w0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 64px; }\", \".framer-MjTmb .framer-1yby4w-container { flex: none; height: 40px; left: calc(50.00000000000002% - 40px / 2); position: absolute; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\", \".framer-MjTmb .framer-gdpr0u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-MjTmb .framer-qzswxi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-MjTmb .framer-1kvg3vq { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MjTmb .framer-12v4vrh, .framer-MjTmb .framer-esnrwi, .framer-MjTmb .framer-gdpr0u { gap: 0px; } .framer-MjTmb .framer-12v4vrh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MjTmb .framer-12v4vrh > :first-child { margin-left: 0px; } .framer-MjTmb .framer-12v4vrh > :last-child { margin-right: 0px; } .framer-MjTmb .framer-esnrwi > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-MjTmb .framer-esnrwi > :first-child, .framer-MjTmb .framer-gdpr0u > :first-child { margin-top: 0px; } .framer-MjTmb .framer-esnrwi > :last-child, .framer-MjTmb .framer-gdpr0u > :last-child { margin-bottom: 0px; } .framer-MjTmb .framer-gdpr0u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\", ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerIntrinsicHeight 309\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerIntrinsicWidth 435\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerVariables {\"NPJxt80Ov\":\"select\",\"N9exXQckC\":\"title\",\"JgJtSkfYr\":\"text\",\"ZOjHZTfwm\":\"name1\",\"RVZk5_sIT\":\"radius\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      */\nconst FramerZXxTlwViV = withCSS(Component, css, \"framer-MjTmb\");\nexport default FramerZXxTlwViV;\nFramerZXxTlwViV.displayName = \"How it works Card\";\nFramerZXxTlwViV.defaultProps = {\n  height: 309,\n  width: 435\n};\naddPropertyControls(FramerZXxTlwViV, {\n  NPJxt80Ov: {\n    defaultValue: true,\n    title: \"Select\",\n    type: ControlType.Boolean\n  },\n  N9exXQckC: {\n    defaultValue: \"Define your ideal customer profile.\",\n    displayTextArea: false,\n    title: \"Title\",\n    type: ControlType.String\n  },\n  JgJtSkfYr: {\n    defaultValue: \"Begin by defining your ideal customer profile, including company size, type, location, and buyer persona.\",\n    displayTextArea: false,\n    title: \"Text\",\n    type: ControlType.String\n  },\n  ZOjHZTfwm: (PhosphorControls === null || PhosphorControls === void 0 ? void 0 : PhosphorControls[\"iconSelection\"]) && {\n    ...PhosphorControls[\"iconSelection\"],\n    defaultValue: \"HeartBreak\",\n    hidden: undefined,\n    title: \"Name\"\n  },\n  RVZk5_sIT: {\n    defaultValue: 40,\n    title: \"Radius\",\n    type: ControlType.Number\n  }\n});\naddFonts(FramerZXxTlwViV, [...PhosphorFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerZXxTlwViV\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerVariables\": \"{\\\"NPJxt80Ov\\\":\\\"select\\\",\\\"N9exXQckC\\\":\\\"title\\\",\\\"JgJtSkfYr\\\":\\\"text\\\",\\\"ZOjHZTfwm\\\":\\\"name1\\\",\\\"RVZk5_sIT\\\":\\\"radius\\\"}\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicWidth\": \"435\",\n        \"framerContractVersion\": \"1\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicHeight\": \"309\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./ZXxTlwViV.map"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "l", "cubicBezier", "__rest", "r", "n", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "a", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "n", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "s", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "h", "w", "g", "a", "e", "t", "c", "v", "r", "re", "MotionConfigContext", "l", "C", "se", "p", "x", "y", "Z", "u", "Y", "useLocaleInfo", "f", "m", "L", "M", "b", "I", "D", "E", "k", "N", "useVariantState", "h", "Q", "pe", "_", "ae", "LayoutGroup", "motion", "cx", "SVG", "withCSS", "xddfRu6m1_default", "addPropertyControls", "ControlType", "addFonts", "LogoIntegrationsFonts", "getFonts", "xddfRu6m1_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "JN_t9DQYH", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "xddfRu6m1_default", "css", "FramerPfvczNFMc", "withCSS", "PfvczNFMc_default", "addPropertyControls", "ControlType", "addFonts", "LogoIntegrationsFonts", "LogoIntegrationsBGFonts", "getFonts", "PfvczNFMc_default", "TickerFonts", "Ticker", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "Ticker", "PfvczNFMc_default", "css", "FramerAV5ir6b2e", "withCSS", "AV5ir6b2e_default", "addPropertyControls", "ControlType", "addFonts", "LogoIntegrationsBGFonts", "TickerFonts", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "variantClassNames", "transitions", "transformTemplate", "_", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "background", "bodyColor", "height", "id", "image", "radius", "text", "title", "titleColor", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Fi2AyBtmF", "skZWwTYYF", "F29beTvdU", "NnP9aRJTO", "pBEcAnZQi", "C7_mgzp8l", "QdeCJXu85", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "MotionDivWithFX", "u", "Image2", "RichText", "x", "css", "FramerbAwOOiB5q", "withCSS", "bAwOOiB5q_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "color", "height", "id", "name1", "select", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "jOst6uoVR", "hP5xezD5F", "atgBN1DM2", "hgGbHpujQ", "UeDbQEgKi", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "Icon", "RichText", "x", "css", "FramerGrMcM_j4v", "withCSS", "GrMcM_j4v_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "fonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "name1", "radius", "select", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "NPJxt80Ov", "N9exXQckC", "JgJtSkfYr", "ZOjHZTfwm", "RVZk5_sIT", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "Icon", "RichText", "x", "css", "FramerZXxTlwViV", "withCSS", "ZXxTlwViV_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "fonts"]
}
