{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framer.com/m/framer/useConstant.js@^1.0.0", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js", "ssg:https://framerusercontent.com/modules/fjy2WboilrxKDtZbARpS/D1kpUTCIAeNc7sFjWdHn/cfeaZYvSQ.js", "ssg:https://framerusercontent.com/modules/bz3mDPT3YTxKUmxy32yA/qevYma6zVaSe11O7k9EF/gJmXwhk86.js", "ssg:https://framerusercontent.com/modules/t8ruSRb6XA7IQOGSS0MK/xa9sjwa9E2BnFbpASSf8/jwr3vfbVq.js", "ssg:https://framerusercontent.com/modules/sf92e7fsTzzflc8VggRW/q6SLuHwvHqZsvZaF2FRu/ZpgQ2GL3x.js", "ssg:https://framerusercontent.com/modules/sbiz7tWa0gJkRVemGN6T/iz8lMYqQw3ecBbJsAiX2/LZwV8Q4hm.js", "ssg:https://framerusercontent.com/modules/9SCA1dAYXhGuN6uvaWuI/RBMW1lg8ISEriTvv0pTE/elT85au5Z.js", "ssg:https://framerusercontent.com/modules/nfvfuOm2sTLwpI88yfDB/C2BrC7zJudz52wQ1OWmY/lUAhPfAzN.js", "ssg:https://framerusercontent.com/modules/5oFUVu8XohlqVOtVcjX2/SYqKOxHMlXTGwqypWk5w/cfeaZYvSQ.js", "ssg:https://framerusercontent.com/modules/xjlRMO8GxWf3wnoXn7FQ/Z5JBqeY1UhPewIijeEmT/NA9kjVHnT.js", "ssg:https://framerusercontent.com/modules/4VkIVbuNLKM2kUndCK7q/Rr1O9UD1H3ckdEA91GK4/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on.\n * By using `useConstant` you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "import { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// Generated by Framer (12cfc32)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{Image as Image1,addFonts,withCSS,addPropertyControls,ControlType,cx,useAddVariantProps,useVariantState,Stack}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"AD1uRb789\",\"t6uYX0tBZ\",\"AnI2DvQZf\",\"JG7MxGgTY\",\"snFARdAmz\",\"Nz_Z2NTH0\",\"cHv8JY9g7\",\"tR7FlThNE\",\"bg0lLngd2\",\"FKNQjSL73\",\"UozSdcuUY\",\"EgLxQrxHD\",\"vol5AdrV3\",\"rbMcqs1eA\",\"OY_j7HdJV\",\"mcvPgNUgN\",\"Jj_gJ6raO\",\"UYFenO8zH\",\"RpMB9X2cU\",\"tExww8aRk\",\"anaA6RL0b\",\"y8osi5SA0\",\"v2n6jd8d8\",\"vrPxXX3Sq\",\"YC5psLXzO\",\"wQ9whLvFH\",\"hUi9TraZo\",\"ji0e3Gqv5\",\"nMHdUM1t6\",\"Stnp3oRU4\",\"TxmZTsvXB\",\"bNhqIdQoj\",\"OYkCSZPL0\",\"bOMpuyzc_\",\"NqCoJY2pH\"];const variantClassNames={\"AD1uRb789\":\"framer-v-rqhbs3\",\"t6uYX0tBZ\":\"framer-v-ina8tq\",\"AnI2DvQZf\":\"framer-v-lwbc2o\",\"JG7MxGgTY\":\"framer-v-vqryag\",\"snFARdAmz\":\"framer-v-kwp1i3\",\"Nz_Z2NTH0\":\"framer-v-1h8ejmh\",\"cHv8JY9g7\":\"framer-v-c75qsa\",\"tR7FlThNE\":\"framer-v-1ftwjq5\",\"bg0lLngd2\":\"framer-v-osfy8l\",\"FKNQjSL73\":\"framer-v-5qhg5s\",\"UozSdcuUY\":\"framer-v-5ats54\",\"EgLxQrxHD\":\"framer-v-z5mnn6\",\"vol5AdrV3\":\"framer-v-6xnqop\",\"rbMcqs1eA\":\"framer-v-xmx6ye\",\"OY_j7HdJV\":\"framer-v-a1v8wx\",\"mcvPgNUgN\":\"framer-v-1oj0oue\",\"Jj_gJ6raO\":\"framer-v-19e1lqz\",\"UYFenO8zH\":\"framer-v-16en86l\",\"RpMB9X2cU\":\"framer-v-1vzsblg\",\"tExww8aRk\":\"framer-v-1kgllbw\",\"anaA6RL0b\":\"framer-v-zia1yx\",\"y8osi5SA0\":\"framer-v-9mi1m7\",\"v2n6jd8d8\":\"framer-v-zgdwlg\",\"vrPxXX3Sq\":\"framer-v-1dgnypb\",\"YC5psLXzO\":\"framer-v-rum36c\",\"wQ9whLvFH\":\"framer-v-1u5c2u8\",\"hUi9TraZo\":\"framer-v-1dt8e1w\",\"ji0e3Gqv5\":\"framer-v-1rkl824\",\"nMHdUM1t6\":\"framer-v-17d51pb\",\"Stnp3oRU4\":\"framer-v-158neyh\",\"TxmZTsvXB\":\"framer-v-1atb71u\",\"bNhqIdQoj\":\"framer-v-1x8h963\",\"OYkCSZPL0\":\"framer-v-hblyuj\",\"bOMpuyzc_\":\"framer-v-cra8ie\",\"NqCoJY2pH\":\"framer-v-1sz721s\"};const humanReadableVariantMap={\"Jason\":\"AD1uRb789\",\"Jess\":\"t6uYX0tBZ\",\"Olli\":\"AnI2DvQZf\",\"Myah\":\"JG7MxGgTY\",\"Ammaar\":\"snFARdAmz\",\"Siena\":\"Nz_Z2NTH0\",\"Cheryl\":\"cHv8JY9g7\",\"Aleeza\":\"tR7FlThNE\",\"Elli\":\"bg0lLngd2\",\"Piotr\":\"FKNQjSL73\",\"Ayisha\":\"UozSdcuUY\",\"Nataniel\":\"EgLxQrxHD\",\"Nikita\":\"vol5AdrV3\",\"Tim\":\"rbMcqs1eA\",\"Carley\":\"OY_j7HdJV\",\"Arda\":\"mcvPgNUgN\",\"Lacey-Mae\":\"Jj_gJ6raO\",\"Bo\":\"UYFenO8zH\",\"Shelbie\":\"RpMB9X2cU\",\"Dillon\":\"tExww8aRk\",\"Selin\":\"OYkCSZPL0\",\"Rhian\":\"y8osi5SA0\",\"Ada\":\"v2n6jd8d8\",\"Lois\":\"vrPxXX3Sq\",\"Maisie\":\"YC5psLXzO\",\"Lori\":\"wQ9whLvFH\",\"Jardel\":\"hUi9TraZo\",\"Jethro\":\"ji0e3Gqv5\",\"Carmen\":\"nMHdUM1t6\",\"Patrik\":\"Stnp3oRU4\",\"Barry\":\"TxmZTsvXB\",\"Alejandro\":\"bNhqIdQoj\",\"Denny\":\"bOMpuyzc_\",\"Becca\":\"NqCoJY2pH\"};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":0.3,\"delay\":0,\"stiffness\":500,\"damping\":60,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({style,className,layoutId,width,height,variant:outerVariant=\"AD1uRb789\",background:VurELiPqN=\"rgb(255, 219, 222)\",radius:Z2NuoQS1k=60,rotation:tc_6nmlts=0,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"AD1uRb789\",variant,transitions,variantClassNames,cycleOrder});const variantProps=React.useMemo(()=>({\"t6uYX0tBZ\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jess\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/XfjXHJ2H7SzzlzPr1bGFm1T9BpI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"AnI2DvQZf\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Olli\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/qCpU7HJtiveCC9wTFuh7L4wc8YM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"JG7MxGgTY\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Myah\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Q8IGGb6PvVKrjNuovM2HijDWFU.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"snFARdAmz\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ammaar\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/iGk4x1NJSVgWzFvuQQADJp9I.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Nz_Z2NTH0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Siena\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ikD34vgzaLM6N50MKdcR9HVBnk.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"cHv8JY9g7\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Cheryl\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/mUVPNgOqhd1MFYjLtFtiBwvxfY.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"tR7FlThNE\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Aleeza\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/62fnqd1V6QN3j0vPr4hlpB3HnQ.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bg0lLngd2\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Elli\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Vu8TxX7VMCMZDjoliFK7D0nOyX0.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"FKNQjSL73\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Piotr\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ofIUD8MCjke7Xz8jkh29AWqajJo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"UozSdcuUY\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ayisha\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/5nnqp2inSINDktAAWpI7gxJei0w.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"EgLxQrxHD\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Nataniel\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/lKaaStgbmdIe8TfrIkFlKzHazV0.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"vol5AdrV3\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Nikita\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/bpeWvtoxuajqEtlukZhUFt9KM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"rbMcqs1eA\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Tim\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GoWNvgKZvVTzmZQKHoh2Ccnk4E.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"OY_j7HdJV\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Carley\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/40ioqcNOrsoBIVnpfGVsXh9jpM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"mcvPgNUgN\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Arda\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/U8RU6HcYtcK32VUY2uTSF9QTqo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Jj_gJ6raO\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lacey-Mae\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/1OwzdZHx9ElDw1ZAavs6WGWBSw.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"UYFenO8zH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Bo\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Tlwk5hINm0ferm6DGDyUoqL6pc.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"RpMB9X2cU\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Shelbie\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Pm9TTOkN341IYtePLdPGmhG0E.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"tExww8aRk\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Dillon\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GOsVbTpzcPHfZ9EMcOSPddNS6go.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"anaA6RL0b\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Selin\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GaxkgrTkzKlxI7B3EJtZp4dabI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"y8osi5SA0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Rhian\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/LEd8c4Zf28fU29XZ4c04ImOzs.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"v2n6jd8d8\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ada\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/3oPVBjvZEnTN9DZf7tUMW54TS2k.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"vrPxXX3Sq\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lois\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/99qcDQP7xzsxlgXsq47uID7sAm4.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"YC5psLXzO\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Maisie\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/BRu6MhHhp9NjldqU9TTCEAEoGKg.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"wQ9whLvFH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lori\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ebCaegtDakUaQGRtXSYmPR43Q.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"hUi9TraZo\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jardel\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/B8580pOtLEBrg7wIFp62oXfFQ.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"ji0e3Gqv5\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jethro\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/szTmT1K4f8nn5CutvLWFlBdt8k.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"nMHdUM1t6\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Carmen\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/e6GZhp0s96FXaIiLYSRyZYZYypo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Stnp3oRU4\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Patrik\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/6xGPl1j87mG8XoUzCwRYzEohM8.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"TxmZTsvXB\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Barry\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/mhC7dhzvLcqmUofPcC2BW8vh4.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bNhqIdQoj\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Alejandro\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/YynUn6LSLWVQia4pOtIxhY77SSA.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"OYkCSZPL0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Selin\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/u2K6WSbQVKHiOUvOF3auFya79y8.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bOMpuyzc_\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Denny\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/BJytCbStiWSy9rxpQ0wU6I3SNiI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"NqCoJY2pH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Becca\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/xyIaIR0LhPm1PVVUVrQ7TDGTyA.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}}}),[]);const addVariantProps=useAddVariantProps(baseVariant,gestureVariant,variantProps);const defaultLayoutId=useRandomID();return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,className:cx(\"framer-47hmZ\",classNames),style:{\"display\":\"contents\"},onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),children:/*#__PURE__*/ _jsx(Stack,{...restProps,layoutId:\"AD1uRb789\",className:cx(\"framer-rqhbs3\",className),style:{\"borderBottomLeftRadius\":Z2NuoQS1k,\"borderBottomRightRadius\":Z2NuoQS1k,\"borderTopRightRadius\":Z2NuoQS1k,\"borderTopLeftRadius\":Z2NuoQS1k,\"backgroundColor\":VurELiPqN,...style},direction:\"horizontal\",distribution:\"center\",alignment:\"center\",gap:10,__fromCanvasComponent:true,__contentWrapperStyle:{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"},center:false,\"data-framer-name\":\"Jason\",transition:transition,ref:ref,...addVariantProps(\"AD1uRb789\"),children:/*#__PURE__*/ _jsx(Image1,{layoutId:\"XGgsiaAin\",className:\"framer-kj56m6\",style:{\"borderBottomLeftRadius\":60,\"borderBottomRightRadius\":60,\"borderTopRightRadius\":60,\"borderTopLeftRadius\":60,\"rotate\":tc_6nmlts},background:{\"src\":new URL(\"assets/CPGgYEBeFy4gDXe5dDzh1qjQG1w.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"data-framer-name\":\"Avatar\",variants:{\"t6uYX0tBZ\":{\"borderBottomLeftRadius\":60,\"borderBottomRightRadius\":60,\"borderTopRightRadius\":60,\"borderTopLeftRadius\":60}},transition:transition,...addVariantProps(\"XGgsiaAin\")})})})}));});const css=[\".framer-47hmZ [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;}\",\".framer-47hmZ .framer-rqhbs3 { position: relative; overflow: hidden; width: 100px; height: 100px; }\",\".framer-47hmZ .framer-kj56m6 { position: relative; overflow: visible; width: 1px; height: 100%; flex: 1 0 0px; }\",\".framer-47hmZ.framer-v-ina8tq .framer-rqhbs3, .framer-47hmZ.framer-v-lwbc2o .framer-rqhbs3, .framer-47hmZ.framer-v-vqryag .framer-rqhbs3, .framer-47hmZ.framer-v-kwp1i3 .framer-rqhbs3, .framer-47hmZ.framer-v-1h8ejmh .framer-rqhbs3, .framer-47hmZ.framer-v-c75qsa .framer-rqhbs3, .framer-47hmZ.framer-v-1ftwjq5 .framer-rqhbs3, .framer-47hmZ.framer-v-osfy8l .framer-rqhbs3, .framer-47hmZ.framer-v-5qhg5s .framer-rqhbs3, .framer-47hmZ.framer-v-5ats54 .framer-rqhbs3, .framer-47hmZ.framer-v-z5mnn6 .framer-rqhbs3, .framer-47hmZ.framer-v-6xnqop .framer-rqhbs3, .framer-47hmZ.framer-v-xmx6ye .framer-rqhbs3, .framer-47hmZ.framer-v-a1v8wx .framer-rqhbs3, .framer-47hmZ.framer-v-1oj0oue .framer-rqhbs3, .framer-47hmZ.framer-v-19e1lqz .framer-rqhbs3, .framer-47hmZ.framer-v-16en86l .framer-rqhbs3, .framer-47hmZ.framer-v-1vzsblg .framer-rqhbs3, .framer-47hmZ.framer-v-1kgllbw .framer-rqhbs3, .framer-47hmZ.framer-v-zia1yx .framer-rqhbs3, .framer-47hmZ.framer-v-9mi1m7 .framer-rqhbs3, .framer-47hmZ.framer-v-zgdwlg .framer-rqhbs3, .framer-47hmZ.framer-v-1dgnypb .framer-rqhbs3, .framer-47hmZ.framer-v-rum36c .framer-rqhbs3, .framer-47hmZ.framer-v-1u5c2u8 .framer-rqhbs3, .framer-47hmZ.framer-v-1dt8e1w .framer-rqhbs3, .framer-47hmZ.framer-v-1rkl824 .framer-rqhbs3, .framer-47hmZ.framer-v-17d51pb .framer-rqhbs3, .framer-47hmZ.framer-v-158neyh .framer-rqhbs3, .framer-47hmZ.framer-v-1atb71u .framer-rqhbs3, .framer-47hmZ.framer-v-1x8h963 .framer-rqhbs3, .framer-47hmZ.framer-v-hblyuj .framer-rqhbs3, .framer-47hmZ.framer-v-cra8ie .framer-rqhbs3, .framer-47hmZ.framer-v-1sz721s .framer-rqhbs3 { width: 100px; height: 100px; }\",\".framer-47hmZ.framer-v-1ftwjq5 .framer-kj56m6, .framer-47hmZ.framer-v-osfy8l .framer-kj56m6 { width: 1px; height: 100%; right: auto; bottom: auto; left: auto; top: auto; flex: 1 0 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}, \"t6uYX0tBZ\": {\"layout\": [\"fixed\", \"fixed\"]}, \"AnI2DvQZf\": {\"layout\": [\"fixed\", \"fixed\"]}, \"JG7MxGgTY\": {\"layout\": [\"fixed\", \"fixed\"]}, \"snFARdAmz\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Nz_Z2NTH0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"cHv8JY9g7\": {\"layout\": [\"fixed\", \"fixed\"]}, \"tR7FlThNE\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bg0lLngd2\": {\"layout\": [\"fixed\", \"fixed\"]}, \"FKNQjSL73\": {\"layout\": [\"fixed\", \"fixed\"]}, \"UozSdcuUY\": {\"layout\": [\"fixed\", \"fixed\"]}, \"EgLxQrxHD\": {\"layout\": [\"fixed\", \"fixed\"]}, \"vol5AdrV3\": {\"layout\": [\"fixed\", \"fixed\"]}, \"rbMcqs1eA\": {\"layout\": [\"fixed\", \"fixed\"]}, \"OY_j7HdJV\": {\"layout\": [\"fixed\", \"fixed\"]}, \"mcvPgNUgN\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Jj_gJ6raO\": {\"layout\": [\"fixed\", \"fixed\"]}, \"UYFenO8zH\": {\"layout\": [\"fixed\", \"fixed\"]}, \"RpMB9X2cU\": {\"layout\": [\"fixed\", \"fixed\"]}, \"tExww8aRk\": {\"layout\": [\"fixed\", \"fixed\"]}, \"anaA6RL0b\": {\"layout\": [\"fixed\", \"fixed\"]}, \"y8osi5SA0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"v2n6jd8d8\": {\"layout\": [\"fixed\", \"fixed\"]}, \"vrPxXX3Sq\": {\"layout\": [\"fixed\", \"fixed\"]}, \"YC5psLXzO\": {\"layout\": [\"fixed\", \"fixed\"]}, \"wQ9whLvFH\": {\"layout\": [\"fixed\", \"fixed\"]}, \"hUi9TraZo\": {\"layout\": [\"fixed\", \"fixed\"]}, \"ji0e3Gqv5\": {\"layout\": [\"fixed\", \"fixed\"]}, \"nMHdUM1t6\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Stnp3oRU4\": {\"layout\": [\"fixed\", \"fixed\"]}, \"TxmZTsvXB\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bNhqIdQoj\": {\"layout\": [\"fixed\", \"fixed\"]}, \"OYkCSZPL0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bOMpuyzc_\": {\"layout\": [\"fixed\", \"fixed\"]}, \"NqCoJY2pH\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"VurELiPqN\": \"background\", \"Z2NuoQS1k\": \"radius\", \"tc_6nmlts\": \"rotation\"}\n */ const FramerdkRfXNUhM=withCSS(Component,css);export default FramerdkRfXNUhM;FramerdkRfXNUhM.displayName=\"Memoji\";FramerdkRfXNUhM.defaultProps={\"width\":100,\"height\":100};addPropertyControls(FramerdkRfXNUhM,{\"variant\":{\"type\":ControlType.Enum,\"title\":\"Variant\",\"options\":[\"AD1uRb789\",\"t6uYX0tBZ\",\"AnI2DvQZf\",\"JG7MxGgTY\",\"snFARdAmz\",\"Nz_Z2NTH0\",\"cHv8JY9g7\",\"tR7FlThNE\",\"bg0lLngd2\",\"FKNQjSL73\",\"UozSdcuUY\",\"EgLxQrxHD\",\"vol5AdrV3\",\"rbMcqs1eA\",\"OY_j7HdJV\",\"mcvPgNUgN\",\"Jj_gJ6raO\",\"UYFenO8zH\",\"RpMB9X2cU\",\"tExww8aRk\",\"anaA6RL0b\",\"y8osi5SA0\",\"v2n6jd8d8\",\"vrPxXX3Sq\",\"YC5psLXzO\",\"wQ9whLvFH\",\"hUi9TraZo\",\"ji0e3Gqv5\",\"nMHdUM1t6\",\"Stnp3oRU4\",\"TxmZTsvXB\",\"bNhqIdQoj\",\"OYkCSZPL0\",\"bOMpuyzc_\",\"NqCoJY2pH\"],\"optionTitles\":[\"Jason\",\"Jess\",\"Olli\",\"Myah\",\"Ammaar\",\"Siena\",\"Cheryl\",\"Aleeza\",\"Elli\",\"Piotr\",\"Ayisha\",\"Nataniel\",\"Nikita\",\"Tim\",\"Carley\",\"Arda\",\"Lacey-Mae\",\"Bo\",\"Shelbie\",\"Dillon\",\"Selin\",\"Rhian\",\"Ada\",\"Lois\",\"Maisie\",\"Lori\",\"Jardel\",\"Jethro\",\"Carmen\",\"Patrik\",\"Barry\",\"Alejandro\",\"Selin\",\"Denny\",\"Becca\"]},\"VurELiPqN\":{\"type\":ControlType.Color,\"title\":\"Background\",\"defaultValue\":\"rgb(255, 219, 222)\"},\"Z2NuoQS1k\":{\"type\":ControlType.Number,\"title\":\"Radius\",\"defaultValue\":60,\"min\":0},\"tc_6nmlts\":{\"type\":ControlType.Number,\"title\":\"Rotation\",\"defaultValue\":0,\"min\":-180,\"max\":180,\"unit\":\"\u00B0\"}});addFonts(FramerdkRfXNUhM,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdkRfXNUhM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"t6uYX0tBZ\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"AnI2DvQZf\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"JG7MxGgTY\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"snFARdAmz\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Nz_Z2NTH0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"cHv8JY9g7\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"tR7FlThNE\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bg0lLngd2\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"FKNQjSL73\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"UozSdcuUY\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"EgLxQrxHD\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"vol5AdrV3\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"rbMcqs1eA\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"OY_j7HdJV\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"mcvPgNUgN\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Jj_gJ6raO\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"UYFenO8zH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"RpMB9X2cU\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"tExww8aRk\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"anaA6RL0b\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"y8osi5SA0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"v2n6jd8d8\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"vrPxXX3Sq\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"YC5psLXzO\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"wQ9whLvFH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"hUi9TraZo\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"ji0e3Gqv5\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"nMHdUM1t6\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Stnp3oRU4\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"TxmZTsvXB\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bNhqIdQoj\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"OYkCSZPL0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bOMpuyzc_\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"NqCoJY2pH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"100\",\"framerIntrinsicHeight\":\"100\",\"framerVariables\":\"{\\\"VurELiPqN\\\": \\\"background\\\", \\\"Z2NuoQS1k\\\": \\\"radius\\\", \\\"tc_6nmlts\\\": \\\"rotation\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./dkRfXNUhM.map", "// Generated by Framer (d275c2b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Memoji from\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\";const MemojiFonts=getFonts(Memoji);const MemojiControls=getPropertyControls(Memoji);const cycleOrder=[\"sWSxijNe_\"];const serializationHash=\"framer-6WMis\";const variantClassNames={sWSxijNe_:\"framer-v-q1xtm4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"Lacey-Mae\":\"Jj_gJ6raO\",Ada:\"v2n6jd8d8\",Aleeza:\"tR7FlThNE\",Alejandro:\"bNhqIdQoj\",Ammaar:\"snFARdAmz\",Arda:\"mcvPgNUgN\",Ayisha:\"UozSdcuUY\",Barry:\"TxmZTsvXB\",Becca:\"NqCoJY2pH\",Bo:\"UYFenO8zH\",Carley:\"OY_j7HdJV\",Carmen:\"nMHdUM1t6\",Cheryl:\"cHv8JY9g7\",Denny:\"bOMpuyzc_\",Dillon:\"tExww8aRk\",Elli:\"bg0lLngd2\",Jardel:\"hUi9TraZo\",Jason:\"AD1uRb789\",Jess:\"t6uYX0tBZ\",Jethro:\"ji0e3Gqv5\",Lois:\"vrPxXX3Sq\",Lori:\"wQ9whLvFH\",Maisie:\"YC5psLXzO\",Myah:\"JG7MxGgTY\",Nataniel:\"EgLxQrxHD\",Nikita:\"vol5AdrV3\",Olli:\"AnI2DvQZf\",Patrik:\"Stnp3oRU4\",Piotr:\"FKNQjSL73\",Rhian:\"y8osi5SA0\",Selin:\"OYkCSZPL0\",Shelbie:\"RpMB9X2cU\",Siena:\"Nz_Z2NTH0\",Tim:\"rbMcqs1eA\"};const getProps=({avatar,avatarBackground,background,height,id,width,...props})=>{var _ref,_ref1,_humanReadableEnumMap_avatar,_ref2,_ref3;return{...props,F0usfKMv0:(_ref=background!==null&&background!==void 0?background:props.F0usfKMv0)!==null&&_ref!==void 0?_ref:\"var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(239, 237, 255))\",QBnwHXXyd:(_ref1=avatarBackground!==null&&avatarBackground!==void 0?avatarBackground:props.QBnwHXXyd)!==null&&_ref1!==void 0?_ref1:\"rgb(255, 219, 222)\",trm_lMoZe:(_ref3=(_ref2=(_humanReadableEnumMap_avatar=humanReadableEnumMap[avatar])!==null&&_humanReadableEnumMap_avatar!==void 0?_humanReadableEnumMap_avatar:avatar)!==null&&_ref2!==void 0?_ref2:props.trm_lMoZe)!==null&&_ref3!==void 0?_ref3:\"AD1uRb789\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,F0usfKMv0,trm_lMoZe,QBnwHXXyd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sWSxijNe_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-q1xtm4\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"sWSxijNe_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:F0usfKMv0,borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jo0w1v-container\",layoutDependency:layoutDependency,layoutId:\"L1ScKZrZn-container\",children:/*#__PURE__*/_jsx(Memoji,{background:QBnwHXXyd,height:\"100%\",id:\"L1ScKZrZn\",layoutId:\"L1ScKZrZn\",radius:60,rotation:0,style:{height:\"100%\",width:\"100%\"},variant:trm_lMoZe,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6WMis.framer-1pdgjna, .framer-6WMis .framer-1pdgjna { display: block; }\",\".framer-6WMis.framer-q1xtm4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6WMis .framer-jo0w1v-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6WMis.framer-q1xtm4 { gap: 0px; } .framer-6WMis.framer-q1xtm4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-6WMis.framer-q1xtm4 > :first-child { margin-left: 0px; } .framer-6WMis.framer-q1xtm4 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"F0usfKMv0\":\"background\",\"trm_lMoZe\":\"avatar\",\"QBnwHXXyd\":\"avatarBackground\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercfeaZYvSQ=withCSS(Component,css,\"framer-6WMis\");export default FramercfeaZYvSQ;FramercfeaZYvSQ.displayName=\"Elements/Avatar circle\";FramercfeaZYvSQ.defaultProps={height:48,width:48};addPropertyControls(FramercfeaZYvSQ,{F0usfKMv0:{defaultValue:'var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(239, 237, 255)) /* {\"name\":\"Purple-1\"} */',title:\"Background\",type:ControlType.Color},trm_lMoZe:(MemojiControls===null||MemojiControls===void 0?void 0:MemojiControls[\"variant\"])&&{...MemojiControls[\"variant\"],defaultValue:\"AD1uRb789\",description:undefined,hidden:undefined,title:\"Avatar\"},QBnwHXXyd:{defaultValue:\"rgb(255, 219, 222)\",title:\"Avatar background\",type:ControlType.Color}});addFonts(FramercfeaZYvSQ,[{explicitInter:true,fonts:[]},...MemojiFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercfeaZYvSQ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\",\"framerVariables\":\"{\\\"F0usfKMv0\\\":\\\"background\\\",\\\"trm_lMoZe\\\":\\\"avatar\\\",\\\"QBnwHXXyd\\\":\\\"avatarBackground\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"48\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cfeaZYvSQ.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/7s1srbBlTCDwgN7J6uDG/LlbswazL7MqgMDsCiWdm/ARDZyocPI.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/yhI8peIPGn0pzGNODxcV/9zHsIVwKlfGqCaIO6XnF/jwr3vfbVq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hdbDPJ45aSbfxoOiDBVh/iWrYhvd4fjBMEqk9mscH/ZpgQ2GL3x.js\";import ElementsButton from\"https://framerusercontent.com/modules/nLG0wHMoiQqKrPyjVBBx/nyx1m5Qlycno9YT3kzVT/lYlPcNMOf.js\";import ElementsBadge from\"https://framerusercontent.com/modules/gOjJ4Ym1YE2SiayKUhQF/QdBE6Ir3Kc90699tYDpW/RfUDaPlwf.js\";const ElementsBadgeFonts=getFonts(ElementsBadge);const ElementsButtonFonts=getFonts(ElementsButton);const ElementsButtonControls=getPropertyControls(ElementsButton);const cycleOrder=[\"Xn6V9nS9R\",\"Sa37TnkBO\"];const serializationHash=\"framer-f45AD\";const variantClassNames={Sa37TnkBO:\"framer-v-j9hczk\",Xn6V9nS9R:\"framer-v-1uc2bgu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Blur + Right icon\":\"HAT8JAxXn\",\"Link button\":\"yGt6zadqD\",\"Primary sm\":\"n_tMISzOs\",Brand:\"QpvUKJ_wL\",Inverse:\"v45Y7pl3i\",Outline:\"zRvLXrMsx\",Primary:\"t6omkvp5i\",Secondary:\"uyEmKODAI\"};const humanReadableVariantMap={Basic:\"Xn6V9nS9R\",Popular:\"Sa37TnkBO\"};const getProps=({badge,badgeLabel,buttonLabel,buttonVariant,height,id,link,list1,list2,list3,list4,list5,pricing,title,width,...props})=>{return{...props,as36dU6CS:list1??props.as36dU6CS??\"List item\",AuYDQ0G3K:badgeLabel??props.AuYDQ0G3K??\"Simple Pricing\",CpUbyqeIo:badge??props.CpUbyqeIo??true,GqchEW_nF:list2??props.GqchEW_nF??\"List item\",Hbt_sQjdK:link??props.Hbt_sQjdK,ioEZ_Cwjt:humanReadableEnumMap[buttonVariant]??buttonVariant??props.ioEZ_Cwjt??\"t6omkvp5i\",Kmc2u1xbf:list3??props.Kmc2u1xbf??\"List item\",msezJg2QQ:pricing??props.msezJg2QQ??\"$20.00\",QFU8l7pAN:list5??props.QFU8l7pAN??\"List item\",U2omjG7xn:buttonLabel??props.U2omjG7xn??\"Remix template\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Xn6V9nS9R\",zdKms9Jcq:title??props.zdKms9Jcq??\"Part-time\",zoz0b_aXz:list4??props.zoz0b_aXz??\"List item\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,zdKms9Jcq,CpUbyqeIo,AuYDQ0G3K,as36dU6CS,GqchEW_nF,Kmc2u1xbf,zoz0b_aXz,QFU8l7pAN,msezJg2QQ,ioEZ_Cwjt,U2omjG7xn,Hbt_sQjdK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Xn6V9nS9R\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1uc2bgu\",className,classNames),\"data-framer-name\":\"Basic\",layoutDependency:layoutDependency,layoutId:\"Xn6V9nS9R\",ref:ref??ref1,style:{backgroundColor:\"var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{Sa37TnkBO:{backgroundColor:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"}},...addPropertyOverrides({Sa37TnkBO:{\"data-framer-name\":\"Popular\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u97zjx\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Q7iLVeqGE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-729sfx\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"QPmCXOUvr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1i7za5w\",\"data-styles-preset\":\"jwr3vfbVq\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Part-time\"})}),className:\"framer-1gr0yea\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b2kkJhrny\",style:{\"--extracted-a0htzi\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},text:zdKms9Jcq,variants:{Sa37TnkBO:{\"--extracted-a0htzi\":\"var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Sa37TnkBO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1i7za5w\",\"data-styles-preset\":\"jwr3vfbVq\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255)))\"},children:\"Part-time\"})})}},baseVariant,gestureVariant)}),CpUbyqeIo&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+32+0+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m7ynj9-container\",layoutDependency:layoutDependency,layoutId:\"oNWlKpvGM-container\",children:/*#__PURE__*/_jsx(ElementsBadge,{height:\"100%\",id:\"oNWlKpvGM\",layoutId:\"oNWlKpvGM\",UealQPH5o:{borderColor:\"var(--token-98ea2f69-4c41-4e53-9c8c-7a98946cba16, rgb(230, 230, 230))\",borderStyle:\"solid\",borderWidth:1},variant:\"NOOnvaZw5\",VchKknZOt:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\",VT_9_Tgiy:\"var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255))\",width:\"100%\",YxFiDAtHJ:AuYDQ0G3K,...addPropertyOverrides({Sa37TnkBO:{UealQPH5o:{borderColor:'var(--token-e0c554e9-50e7-471e-b6bb-5654e9ea519a, rgb(177, 252, 3)) /* {\"name\":\"Primary-4\"} */',borderStyle:\"solid\",borderWidth:1},VchKknZOt:\"var(--token-4555773c-dd4c-45d7-85ca-8c2c8e06a22b, rgb(255, 133, 50))\",VT_9_Tgiy:\"rgba(255, 255, 255, 0)\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16h4tr7\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"uMsuAjGNq\",style:{backgroundColor:\"var(--token-98ea2f69-4c41-4e53-9c8c-7a98946cba16, rgb(230, 230, 230))\"},variants:{Sa37TnkBO:{backgroundColor:\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"}}}),/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-1gqqiz0\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"TevgjQ0t2\",children:[/*#__PURE__*/_jsxs(motion.li,{className:\"framer-1ly1qdf\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"agUiqDqG5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12js1vr\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"BW0IND7D4\",style:{backgroundColor:\"var(--token-2c541943-a99a-4ecb-bbe1-39c81e32ad57, rgb(142, 142, 142))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56)))\"},children:\"List item\"})}),className:\"framer-1xwfjfx\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BhAJ0sbrQ\",style:{\"--extracted-r6o4lv\":\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"},text:as36dU6CS,variants:{Sa37TnkBO:{\"--extracted-r6o4lv\":\"var(--token-c2b1b237-371e-4c2e-9610-06fd0ec7117a, rgb(167, 167, 167))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Sa37TnkBO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2b1b237-371e-4c2e-9610-06fd0ec7117a, rgb(167, 167, 167)))\"},children:\"List item\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.li,{className:\"framer-1895az4\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"Qfph7axIp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15k5ppb\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"A0bCV9WA5\",style:{backgroundColor:\"var(--token-2c541943-a99a-4ecb-bbe1-39c81e32ad57, rgb(142, 142, 142))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56)))\"},children:\"List item\"})}),className:\"framer-t3v4vn\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UX_1tb2nn\",style:{\"--extracted-r6o4lv\":\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"},text:GqchEW_nF,variants:{Sa37TnkBO:{\"--extracted-r6o4lv\":\"var(--token-c2b1b237-371e-4c2e-9610-06fd0ec7117a, rgb(167, 167, 167))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Sa37TnkBO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2b1b237-371e-4c2e-9610-06fd0ec7117a, rgb(167, 167, 167)))\"},children:\"List item\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.li,{className:\"framer-1l2xm7x\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"CVRzPfbiC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k3sp6e\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"iPPt2EJLk\",style:{backgroundColor:\"var(--token-2c541943-a99a-4ecb-bbe1-39c81e32ad57, rgb(142, 142, 142))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56)))\"},children:\"List item\"})}),className:\"framer-j7eh6b\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zG5OV4lqr\",style:{\"--extracted-r6o4lv\":\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"},text:Kmc2u1xbf,variants:{Sa37TnkBO:{\"--extracted-r6o4lv\":\"var(--token-c2b1b237-371e-4c2e-9610-06fd0ec7117a, rgb(167, 167, 167))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Sa37TnkBO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2b1b237-371e-4c2e-9610-06fd0ec7117a, rgb(167, 167, 167)))\"},children:\"List item\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.li,{className:\"framer-4x9mfr\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"XzrqzS3it\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dcmei9\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"yBlHVyp93\",style:{backgroundColor:\"var(--token-2c541943-a99a-4ecb-bbe1-39c81e32ad57, rgb(142, 142, 142))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56)))\"},children:\"List item\"})}),className:\"framer-1vzalbc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fB7Hk80Hn\",style:{\"--extracted-r6o4lv\":\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"},text:zoz0b_aXz,variants:{Sa37TnkBO:{\"--extracted-r6o4lv\":\"var(--token-c2b1b237-371e-4c2e-9610-06fd0ec7117a, rgb(167, 167, 167))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Sa37TnkBO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2b1b237-371e-4c2e-9610-06fd0ec7117a, rgb(167, 167, 167)))\"},children:\"List item\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.li,{className:\"framer-1rn1aug\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"gRQU8BhKj\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-123syhj\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"gxm_jM1tg\",style:{backgroundColor:\"var(--token-2c541943-a99a-4ecb-bbe1-39c81e32ad57, rgb(142, 142, 142))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56)))\"},children:\"List item\"})}),className:\"framer-1qsxosd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tKfjP3b9K\",style:{\"--extracted-r6o4lv\":\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"},text:QFU8l7pAN,variants:{Sa37TnkBO:{\"--extracted-r6o4lv\":\"var(--token-c2b1b237-371e-4c2e-9610-06fd0ec7117a, rgb(167, 167, 167))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Sa37TnkBO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2b1b237-371e-4c2e-9610-06fd0ec7117a, rgb(167, 167, 167)))\"},children:\"List item\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qwgqyn\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Wnz2v4WUD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-148x6tq\",\"data-styles-preset\":\"ARDZyocPI\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"$20.00\"})}),className:\"framer-oas7i5\",\"data-framer-name\":\"Pricing\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zU8_sC7DB\",style:{\"--extracted-1of0zx5\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},text:msezJg2QQ,variants:{Sa37TnkBO:{\"--extracted-1of0zx5\":\"var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Sa37TnkBO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-148x6tq\",\"data-styles-preset\":\"ARDZyocPI\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255)))\"},children:\"$20.00\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4t3h2q\",\"data-framer-name\":\"month\",layoutDependency:layoutDependency,layoutId:\"nO1u6AAqV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2c541943-a99a-4ecb-bbe1-39c81e32ad57, rgb(142, 142, 142)))\"},children:\"/ za hodinu\"})}),className:\"framer-1mfrztr\",\"data-framer-name\":\"month\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"whkFJe8U6\",style:{\"--extracted-r6o4lv\":\"var(--token-2c541943-a99a-4ecb-bbe1-39c81e32ad57, rgb(142, 142, 142))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Sa37TnkBO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2c541943-a99a-4ecb-bbe1-39c81e32ad57, rgb(142, 142, 142)))\"}})})}},baseVariant,gestureVariant)})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+32+829,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jcazs-container\",layoutDependency:layoutDependency,layoutId:\"jjgtli1ZI-container\",children:/*#__PURE__*/_jsx(ElementsButton,{bitLCgREi:false,CTiwKmXt9:false,gKom6Q6pS:\"regular\",height:\"100%\",id:\"jjgtli1ZI\",layoutId:\"jjgtli1ZI\",lgqRfcS3a:\"House\",QH0duFZ1f:U2omjG7xn,style:{width:\"100%\"},ugfoEa0Di:Hbt_sQjdK,variant:ioEZ_Cwjt,width:\"100%\",...addPropertyOverrides({Sa37TnkBO:{variant:\"QpvUKJ_wL\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f45AD.framer-qvovo8, .framer-f45AD .framer-qvovo8 { display: block; }\",\".framer-f45AD.framer-1uc2bgu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 411px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f45AD .framer-1u97zjx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f45AD .framer-729sfx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f45AD .framer-1gr0yea, .framer-f45AD .framer-oas7i5, .framer-f45AD .framer-1mfrztr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-f45AD .framer-1m7ynj9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-f45AD .framer-16h4tr7 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-f45AD .framer-1gqqiz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; list-style: none; margin: 0px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f45AD .framer-1ly1qdf, .framer-f45AD .framer-1895az4, .framer-f45AD .framer-1l2xm7x, .framer-f45AD .framer-4x9mfr, .framer-f45AD .framer-1rn1aug { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f45AD .framer-12js1vr, .framer-f45AD .framer-15k5ppb, .framer-f45AD .framer-1k3sp6e, .framer-f45AD .framer-1dcmei9, .framer-f45AD .framer-123syhj { flex: none; height: 4px; overflow: hidden; position: relative; width: 4px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f45AD .framer-1xwfjfx, .framer-f45AD .framer-t3v4vn, .framer-f45AD .framer-j7eh6b, .framer-f45AD .framer-1vzalbc, .framer-f45AD .framer-1qsxosd { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-f45AD .framer-1qwgqyn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f45AD .framer-4t3h2q { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 4px 0px; position: relative; width: 1px; }\",\".framer-f45AD .framer-jcazs-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f45AD.framer-1uc2bgu, .framer-f45AD .framer-1u97zjx, .framer-f45AD .framer-1gqqiz0, .framer-f45AD .framer-1ly1qdf, .framer-f45AD .framer-1895az4, .framer-f45AD .framer-1l2xm7x, .framer-f45AD .framer-4x9mfr, .framer-f45AD .framer-1rn1aug, .framer-f45AD .framer-1qwgqyn, .framer-f45AD .framer-4t3h2q { gap: 0px; } .framer-f45AD.framer-1uc2bgu > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-f45AD.framer-1uc2bgu > :first-child, .framer-f45AD .framer-1u97zjx > :first-child, .framer-f45AD .framer-1gqqiz0 > :first-child { margin-top: 0px; } .framer-f45AD.framer-1uc2bgu > :last-child, .framer-f45AD .framer-1u97zjx > :last-child, .framer-f45AD .framer-1gqqiz0 > :last-child { margin-bottom: 0px; } .framer-f45AD .framer-1u97zjx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-f45AD .framer-1gqqiz0 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-f45AD .framer-1ly1qdf > *, .framer-f45AD .framer-1895az4 > *, .framer-f45AD .framer-1l2xm7x > *, .framer-f45AD .framer-4x9mfr > *, .framer-f45AD .framer-1rn1aug > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-f45AD .framer-1ly1qdf > :first-child, .framer-f45AD .framer-1895az4 > :first-child, .framer-f45AD .framer-1l2xm7x > :first-child, .framer-f45AD .framer-4x9mfr > :first-child, .framer-f45AD .framer-1rn1aug > :first-child, .framer-f45AD .framer-1qwgqyn > :first-child, .framer-f45AD .framer-4t3h2q > :first-child { margin-left: 0px; } .framer-f45AD .framer-1ly1qdf > :last-child, .framer-f45AD .framer-1895az4 > :last-child, .framer-f45AD .framer-1l2xm7x > :last-child, .framer-f45AD .framer-4x9mfr > :last-child, .framer-f45AD .framer-1rn1aug > :last-child, .framer-f45AD .framer-1qwgqyn > :last-child, .framer-f45AD .framer-4t3h2q > :last-child { margin-right: 0px; } .framer-f45AD .framer-1qwgqyn > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-f45AD .framer-4t3h2q > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 461\n * @framerIntrinsicWidth 411\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Sa37TnkBO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zdKms9Jcq\":\"title\",\"CpUbyqeIo\":\"badge\",\"AuYDQ0G3K\":\"badgeLabel\",\"as36dU6CS\":\"list1\",\"GqchEW_nF\":\"list2\",\"Kmc2u1xbf\":\"list3\",\"zoz0b_aXz\":\"list4\",\"QFU8l7pAN\":\"list5\",\"msezJg2QQ\":\"pricing\",\"ioEZ_Cwjt\":\"buttonVariant\",\"U2omjG7xn\":\"buttonLabel\",\"Hbt_sQjdK\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergJmXwhk86=withCSS(Component,css,\"framer-f45AD\");export default FramergJmXwhk86;FramergJmXwhk86.displayName=\"Cards/Pricing card\";FramergJmXwhk86.defaultProps={height:461,width:411};addPropertyControls(FramergJmXwhk86,{variant:{options:[\"Xn6V9nS9R\",\"Sa37TnkBO\"],optionTitles:[\"Basic\",\"Popular\"],title:\"Variant\",type:ControlType.Enum},zdKms9Jcq:{defaultValue:\"Part-time\",displayTextArea:false,title:\"Title\",type:ControlType.String},CpUbyqeIo:{defaultValue:true,title:\"Badge\",type:ControlType.Boolean},AuYDQ0G3K:{defaultValue:\"Simple Pricing\",displayTextArea:false,title:\"Badge label\",type:ControlType.String},as36dU6CS:{defaultValue:\"List item\",displayTextArea:false,title:\"List 1\",type:ControlType.String},GqchEW_nF:{defaultValue:\"List item\",displayTextArea:false,title:\"List 2\",type:ControlType.String},Kmc2u1xbf:{defaultValue:\"List item\",displayTextArea:false,title:\"List 3\",type:ControlType.String},zoz0b_aXz:{defaultValue:\"List item\",displayTextArea:false,title:\"List 4\",type:ControlType.String},QFU8l7pAN:{defaultValue:\"List item\",displayTextArea:false,title:\"List 5\",type:ControlType.String},msezJg2QQ:{defaultValue:\"$20.00\",displayTextArea:false,title:\"Pricing\",type:ControlType.String},ioEZ_Cwjt:ElementsButtonControls?.[\"variant\"]&&{...ElementsButtonControls[\"variant\"],defaultValue:\"t6omkvp5i\",description:undefined,hidden:undefined,title:\"Button variant\"},U2omjG7xn:{defaultValue:\"Remix template\",displayTextArea:false,title:\"Button label\",type:ControlType.String},Hbt_sQjdK:{title:\"Link\",type:ControlType.Link}});addFonts(FramergJmXwhk86,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ElementsBadgeFonts,...ElementsButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergJmXwhk86\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"411\",\"framerVariables\":\"{\\\"zdKms9Jcq\\\":\\\"title\\\",\\\"CpUbyqeIo\\\":\\\"badge\\\",\\\"AuYDQ0G3K\\\":\\\"badgeLabel\\\",\\\"as36dU6CS\\\":\\\"list1\\\",\\\"GqchEW_nF\\\":\\\"list2\\\",\\\"Kmc2u1xbf\\\":\\\"list3\\\",\\\"zoz0b_aXz\\\":\\\"list4\\\",\\\"QFU8l7pAN\\\":\\\"list5\\\",\\\"msezJg2QQ\\\":\\\"pricing\\\",\\\"ioEZ_Cwjt\\\":\\\"buttonVariant\\\",\\\"U2omjG7xn\\\":\\\"buttonLabel\\\",\\\"Hbt_sQjdK\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"461\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Sa37TnkBO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gJmXwhk86.map", "// Generated by Framer (abcfa95)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-semibold\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-wb5hO .framer-styles-preset-1i7za5w:not(.rich-text-wrapper), .framer-wb5hO .framer-styles-preset-1i7za5w.rich-text-wrapper h3 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, #1a1a1a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-wb5hO\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (abcfa95)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-regular\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-zJRLA .framer-styles-preset-hqiu1z:not(.rich-text-wrapper), .framer-zJRLA .framer-styles-preset-hqiu1z.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, #1a1a1a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-zJRLA\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5053712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/t8ruSRb6XA7IQOGSS0MK/xa9sjwa9E2BnFbpASSf8/jwr3vfbVq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sf92e7fsTzzflc8VggRW/q6SLuHwvHqZsvZaF2FRu/ZpgQ2GL3x.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"NN7qMq1Do\"];const serializationHash=\"framer-ABts8\";const variantClassNames={NN7qMq1Do:\"framer-v-nkn5kv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({description,height,icon,id,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,c3uYh5VfY:(_ref=icon!==null&&icon!==void 0?icon:props.c3uYh5VfY)!==null&&_ref!==void 0?_ref:\"Rocket\",tzxEal8xe:(_ref1=title!==null&&title!==void 0?title:props.tzxEal8xe)!==null&&_ref1!==void 0?_ref1:\"Expertise in Specialized B2B Design\",VcNysyoVK:(_ref2=description!==null&&description!==void 0?description:props.VcNysyoVK)!==null&&_ref2!==void 0?_ref2:\"Elevate your B2B brand with specialized design expertise, enhancing industry presence.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,c3uYh5VfY,tzxEal8xe,VcNysyoVK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NN7qMq1Do\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-nkn5kv\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"NN7qMq1Do\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ygccso-container\",layoutDependency:layoutDependency,layoutId:\"EiNQdzi5F-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2c541943-a99a-4ecb-bbe1-39c81e32ad57, rgb(142, 142, 142))\",height:\"100%\",iconSearch:c3uYh5VfY,iconSelection:\"House\",id:\"EiNQdzi5F\",layoutId:\"EiNQdzi5F\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a2n1yl\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"pwnaxUETZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1i7za5w\",\"data-styles-preset\":\"jwr3vfbVq\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Expertise in Specialized B2B Design\"})}),className:\"framer-1twxvot\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nzaUP6U3W\",style:{\"--extracted-a0htzi\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},text:tzxEal8xe,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56)))\"},children:\"Elevate your B2B brand with specialized design expertise, enhancing industry presence.\"})}),className:\"framer-1eh8464\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QnHOWZjTz\",style:{\"--extracted-r6o4lv\":\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"},text:VcNysyoVK,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ABts8.framer-z37if6, .framer-ABts8 .framer-z37if6 { display: block; }\",\".framer-ABts8.framer-nkn5kv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 432px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ABts8 .framer-1ygccso-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-ABts8 .framer-1a2n1yl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ABts8 .framer-1twxvot, .framer-ABts8 .framer-1eh8464 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ABts8.framer-nkn5kv, .framer-ABts8 .framer-1a2n1yl { gap: 0px; } .framer-ABts8.framer-nkn5kv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-ABts8.framer-nkn5kv > :first-child, .framer-ABts8 .framer-1a2n1yl > :first-child { margin-top: 0px; } .framer-ABts8.framer-nkn5kv > :last-child, .framer-ABts8 .framer-1a2n1yl > :last-child { margin-bottom: 0px; } .framer-ABts8 .framer-1a2n1yl > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 268\n * @framerIntrinsicWidth 432\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"c3uYh5VfY\":\"icon\",\"tzxEal8xe\":\"title\",\"VcNysyoVK\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLZwV8Q4hm=withCSS(Component,css,\"framer-ABts8\");export default FramerLZwV8Q4hm;FramerLZwV8Q4hm.displayName=\"Cards/Card 1\";FramerLZwV8Q4hm.defaultProps={height:268,width:432};addPropertyControls(FramerLZwV8Q4hm,{c3uYh5VfY:{defaultValue:\"Rocket\",placeholder:\"Menu, Wifi, Box\u2026\",title:\"Icon\",type:ControlType.String},tzxEal8xe:{defaultValue:\"Expertise in Specialized B2B Design\",displayTextArea:false,title:\"Title\",type:ControlType.String},VcNysyoVK:{defaultValue:\"Elevate your B2B brand with specialized design expertise, enhancing industry presence.\",displayTextArea:true,title:\"Description\",type:ControlType.String}});addFonts(FramerLZwV8Q4hm,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLZwV8Q4hm\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"268\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"c3uYh5VfY\\\":\\\"icon\\\",\\\"tzxEal8xe\\\":\\\"title\\\",\\\"VcNysyoVK\\\":\\\"description\\\"}\",\"framerIntrinsicWidth\":\"432\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d275c2b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-semibold\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-nqEJK .framer-styles-preset-1q8n56o:not(.rich-text-wrapper), .framer-nqEJK .framer-styles-preset-1q8n56o.rich-text-wrapper h5 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, #1a1a1a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-nqEJK\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (abcfa95)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-regular\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-c8Yk5 .framer-styles-preset-1f6llgt:not(.rich-text-wrapper), .framer-c8Yk5 .framer-styles-preset-1f6llgt.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, #1a1a1a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-c8Yk5\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d275c2b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Memoji from\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\";const MemojiFonts=getFonts(Memoji);const MemojiControls=getPropertyControls(Memoji);const cycleOrder=[\"sWSxijNe_\"];const serializationHash=\"framer-6WMis\";const variantClassNames={sWSxijNe_:\"framer-v-q1xtm4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"Lacey-Mae\":\"Jj_gJ6raO\",Ada:\"v2n6jd8d8\",Aleeza:\"tR7FlThNE\",Alejandro:\"bNhqIdQoj\",Ammaar:\"snFARdAmz\",Arda:\"mcvPgNUgN\",Ayisha:\"UozSdcuUY\",Barry:\"TxmZTsvXB\",Becca:\"NqCoJY2pH\",Bo:\"UYFenO8zH\",Carley:\"OY_j7HdJV\",Carmen:\"nMHdUM1t6\",Cheryl:\"cHv8JY9g7\",Denny:\"bOMpuyzc_\",Dillon:\"tExww8aRk\",Elli:\"bg0lLngd2\",Jardel:\"hUi9TraZo\",Jason:\"AD1uRb789\",Jess:\"t6uYX0tBZ\",Jethro:\"ji0e3Gqv5\",Lois:\"vrPxXX3Sq\",Lori:\"wQ9whLvFH\",Maisie:\"YC5psLXzO\",Myah:\"JG7MxGgTY\",Nataniel:\"EgLxQrxHD\",Nikita:\"vol5AdrV3\",Olli:\"AnI2DvQZf\",Patrik:\"Stnp3oRU4\",Piotr:\"FKNQjSL73\",Rhian:\"y8osi5SA0\",Selin:\"OYkCSZPL0\",Shelbie:\"RpMB9X2cU\",Siena:\"Nz_Z2NTH0\",Tim:\"rbMcqs1eA\"};const getProps=({avatar,avatarBackground,background,height,id,width,...props})=>{var _ref,_ref1,_humanReadableEnumMap_avatar,_ref2,_ref3;return{...props,F0usfKMv0:(_ref=background!==null&&background!==void 0?background:props.F0usfKMv0)!==null&&_ref!==void 0?_ref:\"var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(239, 237, 255))\",QBnwHXXyd:(_ref1=avatarBackground!==null&&avatarBackground!==void 0?avatarBackground:props.QBnwHXXyd)!==null&&_ref1!==void 0?_ref1:\"rgb(255, 219, 222)\",trm_lMoZe:(_ref3=(_ref2=(_humanReadableEnumMap_avatar=humanReadableEnumMap[avatar])!==null&&_humanReadableEnumMap_avatar!==void 0?_humanReadableEnumMap_avatar:avatar)!==null&&_ref2!==void 0?_ref2:props.trm_lMoZe)!==null&&_ref3!==void 0?_ref3:\"AD1uRb789\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,F0usfKMv0,trm_lMoZe,QBnwHXXyd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sWSxijNe_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-q1xtm4\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"sWSxijNe_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:F0usfKMv0,borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jo0w1v-container\",layoutDependency:layoutDependency,layoutId:\"L1ScKZrZn-container\",children:/*#__PURE__*/_jsx(Memoji,{background:QBnwHXXyd,height:\"100%\",id:\"L1ScKZrZn\",layoutId:\"L1ScKZrZn\",radius:60,rotation:0,style:{height:\"100%\",width:\"100%\"},variant:trm_lMoZe,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6WMis.framer-1pdgjna, .framer-6WMis .framer-1pdgjna { display: block; }\",\".framer-6WMis.framer-q1xtm4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6WMis .framer-jo0w1v-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6WMis.framer-q1xtm4 { gap: 0px; } .framer-6WMis.framer-q1xtm4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-6WMis.framer-q1xtm4 > :first-child { margin-left: 0px; } .framer-6WMis.framer-q1xtm4 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"F0usfKMv0\":\"background\",\"trm_lMoZe\":\"avatar\",\"QBnwHXXyd\":\"avatarBackground\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercfeaZYvSQ=withCSS(Component,css,\"framer-6WMis\");export default FramercfeaZYvSQ;FramercfeaZYvSQ.displayName=\"Elements/Avatar circle\";FramercfeaZYvSQ.defaultProps={height:48,width:48};addPropertyControls(FramercfeaZYvSQ,{F0usfKMv0:{defaultValue:'var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(239, 237, 255)) /* {\"name\":\"Purple-1\"} */',title:\"Background\",type:ControlType.Color},trm_lMoZe:(MemojiControls===null||MemojiControls===void 0?void 0:MemojiControls[\"variant\"])&&{...MemojiControls[\"variant\"],defaultValue:\"AD1uRb789\",description:undefined,hidden:undefined,title:\"Avatar\"},QBnwHXXyd:{defaultValue:\"rgb(255, 219, 222)\",title:\"Avatar background\",type:ControlType.Color}});addFonts(FramercfeaZYvSQ,[{explicitInter:true,fonts:[]},...MemojiFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercfeaZYvSQ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\",\"framerVariables\":\"{\\\"F0usfKMv0\\\":\\\"background\\\",\\\"trm_lMoZe\\\":\\\"avatar\\\",\\\"QBnwHXXyd\\\":\\\"avatarBackground\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"48\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cfeaZYvSQ.map", "// Generated by Framer (5053712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/9SCA1dAYXhGuN6uvaWuI/RBMW1lg8ISEriTvv0pTE/elT85au5Z.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/t8ruSRb6XA7IQOGSS0MK/xa9sjwa9E2BnFbpASSf8/jwr3vfbVq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/nfvfuOm2sTLwpI88yfDB/C2BrC7zJudz52wQ1OWmY/lUAhPfAzN.js\";import ElementsAvatarCircle from\"https://framerusercontent.com/modules/5oFUVu8XohlqVOtVcjX2/SYqKOxHMlXTGwqypWk5w/cfeaZYvSQ.js\";const ElementsAvatarCircleFonts=getFonts(ElementsAvatarCircle);const ElementsAvatarCircleControls=getPropertyControls(ElementsAvatarCircle);const cycleOrder=[\"IoDqD8gtR\"];const serializationHash=\"framer-S44aN\";const variantClassNames={IoDqD8gtR:\"framer-v-x1vda6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"Lacey-Mae\":\"Jj_gJ6raO\",Ada:\"v2n6jd8d8\",Aleeza:\"tR7FlThNE\",Alejandro:\"bNhqIdQoj\",Ammaar:\"snFARdAmz\",Arda:\"mcvPgNUgN\",Ayisha:\"UozSdcuUY\",Barry:\"TxmZTsvXB\",Becca:\"NqCoJY2pH\",Bo:\"UYFenO8zH\",Carley:\"OY_j7HdJV\",Carmen:\"nMHdUM1t6\",Cheryl:\"cHv8JY9g7\",Denny:\"bOMpuyzc_\",Dillon:\"tExww8aRk\",Elli:\"bg0lLngd2\",Jardel:\"hUi9TraZo\",Jason:\"AD1uRb789\",Jess:\"t6uYX0tBZ\",Jethro:\"ji0e3Gqv5\",Lois:\"vrPxXX3Sq\",Lori:\"wQ9whLvFH\",Maisie:\"YC5psLXzO\",Myah:\"JG7MxGgTY\",Nataniel:\"EgLxQrxHD\",Nikita:\"vol5AdrV3\",Olli:\"AnI2DvQZf\",Patrik:\"Stnp3oRU4\",Piotr:\"FKNQjSL73\",Rhian:\"y8osi5SA0\",Selin:\"OYkCSZPL0\",Shelbie:\"RpMB9X2cU\",Siena:\"Nz_Z2NTH0\",Tim:\"rbMcqs1eA\"};const getProps=({avatar,avatarBackground,background,fullName,height,id,review,role,width,...props})=>{var _ref,_humanReadableEnumMap_avatar,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6;return{...props,ajkPmSN2I:(_ref=avatarBackground!==null&&avatarBackground!==void 0?avatarBackground:props.ajkPmSN2I)!==null&&_ref!==void 0?_ref:\"rgb(255, 219, 222)\",aWNQwOUgW:(_ref2=(_ref1=(_humanReadableEnumMap_avatar=humanReadableEnumMap[avatar])!==null&&_humanReadableEnumMap_avatar!==void 0?_humanReadableEnumMap_avatar:avatar)!==null&&_ref1!==void 0?_ref1:props.aWNQwOUgW)!==null&&_ref2!==void 0?_ref2:\"AD1uRb789\",NKd2VB0Rt:(_ref3=review!==null&&review!==void 0?review:props.NKd2VB0Rt)!==null&&_ref3!==void 0?_ref3:\"Our team well-being is enhanced significantly!\",VhWLBmEP5:(_ref4=role!==null&&role!==void 0?role:props.VhWLBmEP5)!==null&&_ref4!==void 0?_ref4:\"Saas company\",XDtae_p3N:(_ref5=fullName!==null&&fullName!==void 0?fullName:props.XDtae_p3N)!==null&&_ref5!==void 0?_ref5:\"David Johnson\",XWbdou1CX:(_ref6=background!==null&&background!==void 0?background:props.XWbdou1CX)!==null&&_ref6!==void 0?_ref6:\"var(--token-c7296255-ae5e-4cec-8116-ad2cebcb1ccb, rgb(225, 245, 254))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,aWNQwOUgW,XDtae_p3N,VhWLBmEP5,NKd2VB0Rt,XWbdou1CX,ajkPmSN2I,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IoDqD8gtR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-x1vda6\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"IoDqD8gtR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:XWbdou1CX,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17vdk3z\",\"data-framer-name\":\"Avatar group\",layoutDependency:layoutDependency,layoutId:\"KPO7f8GJB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"48px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6l6apc-container\",layoutDependency:layoutDependency,layoutId:\"FzGLE6_ns-container\",children:/*#__PURE__*/_jsx(ElementsAvatarCircle,{F0usfKMv0:\"var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255))\",height:\"100%\",id:\"FzGLE6_ns\",layoutId:\"FzGLE6_ns\",QBnwHXXyd:ajkPmSN2I,style:{height:\"100%\",width:\"100%\"},trm_lMoZe:aWNQwOUgW,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ysl01u\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"hgfQfw2PY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1q8n56o\",\"data-styles-preset\":\"elT85au5Z\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"David Johnson\"})}),className:\"framer-1y0xpo1\",\"data-framer-name\":\"Full name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eZJB_FrwX\",style:{\"--extracted-1lwpl3i\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},text:XDtae_p3N,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f6llgt\",\"data-styles-preset\":\"lUAhPfAzN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Saas company\"})}),className:\"framer-1ofj87r\",\"data-framer-name\":\"Role & Company\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cAmk1_2Ld\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},text:VhWLBmEP5,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1i7za5w\",\"data-styles-preset\":\"jwr3vfbVq\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Our team well-being is enhanced significantly!\"})}),className:\"framer-17e3jwb\",\"data-framer-name\":\"Review\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OwbiXa8Z3\",style:{\"--extracted-a0htzi\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},text:NKd2VB0Rt,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-S44aN.framer-1yula2n, .framer-S44aN .framer-1yula2n { display: block; }\",\".framer-S44aN.framer-x1vda6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 411px; will-change: var(--framer-will-change-override, transform); }\",\".framer-S44aN .framer-17vdk3z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-S44aN .framer-6l6apc-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-S44aN .framer-ysl01u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-S44aN .framer-1y0xpo1, .framer-S44aN .framer-1ofj87r, .framer-S44aN .framer-17e3jwb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-S44aN.framer-x1vda6, .framer-S44aN .framer-17vdk3z, .framer-S44aN .framer-ysl01u { gap: 0px; } .framer-S44aN.framer-x1vda6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-S44aN.framer-x1vda6 > :first-child, .framer-S44aN .framer-ysl01u > :first-child { margin-top: 0px; } .framer-S44aN.framer-x1vda6 > :last-child, .framer-S44aN .framer-ysl01u > :last-child { margin-bottom: 0px; } .framer-S44aN .framer-17vdk3z > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-S44aN .framer-17vdk3z > :first-child { margin-left: 0px; } .framer-S44aN .framer-17vdk3z > :last-child { margin-right: 0px; } .framer-S44aN .framer-ysl01u > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 411\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"aWNQwOUgW\":\"avatar\",\"XDtae_p3N\":\"fullName\",\"VhWLBmEP5\":\"role\",\"NKd2VB0Rt\":\"review\",\"XWbdou1CX\":\"background\",\"ajkPmSN2I\":\"avatarBackground\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNA9kjVHnT=withCSS(Component,css,\"framer-S44aN\");export default FramerNA9kjVHnT;FramerNA9kjVHnT.displayName=\"Cards/Testimonials card\";FramerNA9kjVHnT.defaultProps={height:200,width:411};addPropertyControls(FramerNA9kjVHnT,{aWNQwOUgW:(ElementsAvatarCircleControls===null||ElementsAvatarCircleControls===void 0?void 0:ElementsAvatarCircleControls[\"trm_lMoZe\"])&&{...ElementsAvatarCircleControls[\"trm_lMoZe\"],defaultValue:\"AD1uRb789\",description:undefined,hidden:undefined,title:\"Avatar\"},XDtae_p3N:{defaultValue:\"David Johnson\",displayTextArea:false,title:\"Full name\",type:ControlType.String},VhWLBmEP5:{defaultValue:\"Saas company\",displayTextArea:false,title:\"Role\",type:ControlType.String},NKd2VB0Rt:{defaultValue:\"Our team well-being is enhanced significantly!\",displayTextArea:true,title:\"Review\",type:ControlType.String},XWbdou1CX:{defaultValue:'var(--token-c7296255-ae5e-4cec-8116-ad2cebcb1ccb, rgb(225, 245, 254)) /* {\"name\":\"Blue-1\"} */',title:\"Background\",type:ControlType.Color},ajkPmSN2I:{defaultValue:\"rgb(255, 219, 222)\",title:\"Avatar Background\",type:ControlType.Color}});addFonts(FramerNA9kjVHnT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ElementsAvatarCircleFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNA9kjVHnT\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"411\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"aWNQwOUgW\\\":\\\"avatar\\\",\\\"XDtae_p3N\\\":\\\"fullName\\\",\\\"VhWLBmEP5\\\":\\\"role\\\",\\\"NKd2VB0Rt\\\":\\\"review\\\",\\\"XWbdou1CX\\\":\\\"background\\\",\\\"ajkPmSN2I\\\":\\\"avatarBackground\\\"}\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import ElementsAvatarCircle from\"#framer/local/canvasComponent/cfeaZYvSQ/cfeaZYvSQ.js\";import CardsPricingCard from\"#framer/local/canvasComponent/gJmXwhk86/gJmXwhk86.js\";import CardsWorkCard from\"#framer/local/canvasComponent/hhOAbU_QF/hhOAbU_QF.js\";import SectionsFooter from\"#framer/local/canvasComponent/JJmgABkgm/JJmgABkgm.js\";import ElementsNavigation from\"#framer/local/canvasComponent/kuQZwkMm1/kuQZwkMm1.js\";import ElementsButton from\"#framer/local/canvasComponent/lYlPcNMOf/lYlPcNMOf.js\";import CardsCard1 from\"#framer/local/canvasComponent/LZwV8Q4hm/LZwV8Q4hm.js\";import ElementsNavLinks from\"#framer/local/canvasComponent/mTy1Dc98z/mTy1Dc98z.js\";import CardsTestimonialsCard from\"#framer/local/canvasComponent/NA9kjVHnT/NA9kjVHnT.js\";import ElementsBadge from\"#framer/local/canvasComponent/RfUDaPlwf/RfUDaPlwf.js\";import Ourworks,{enumToDisplayNameFunctions}from\"#framer/local/collection/mD0yv0kks/mD0yv0kks.js\";import*as sharedStyle3 from\"#framer/local/css/ARDZyocPI/ARDZyocPI.js\";import*as sharedStyle5 from\"#framer/local/css/elT85au5Z/elT85au5Z.js\";import*as sharedStyle4 from\"#framer/local/css/jwr3vfbVq/jwr3vfbVq.js\";import*as sharedStyle2 from\"#framer/local/css/kKFOnFSJ0/kKFOnFSJ0.js\";import*as sharedStyle6 from\"#framer/local/css/lUAhPfAzN/lUAhPfAzN.js\";import*as sharedStyle from\"#framer/local/css/vrXQodaMH/vrXQodaMH.js\";import*as sharedStyle1 from\"#framer/local/css/WXrEOepWs/WXrEOepWs.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ElementsNavigationFonts=getFonts(ElementsNavigation);const ElementsNavigationWithVariantAppearEffect=withVariantAppearEffect(ElementsNavigation);const ElementsNavLinksFonts=getFonts(ElementsNavLinks);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ElementsButtonFonts=getFonts(ElementsButton);const CardsCard1Fonts=getFonts(CardsCard1);const ElementsBadgeFonts=getFonts(ElementsBadge);const MotionDivWithFX=withFX(motion.div);const ElementsAvatarCircleFonts=getFonts(ElementsAvatarCircle);const CardsWorkCardFonts=getFonts(CardsWorkCard);const ContainerWithFX=withFX(Container);const CardsTestimonialsCardFonts=getFonts(CardsTestimonialsCard);const TickerFonts=getFonts(Ticker);const CardsPricingCardFonts=getFonts(CardsPricingCard);const SectionsFooterFonts=getFonts(SectionsFooter);const breakpoints={mVIL4xheu:\"(min-width: 810px) and (max-width: 1279px)\",qq5Dlu4rN:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-CEI0a\";const variantClassNames={mVIL4xheu:\"framer-v-1qcy58p\",qq5Dlu4rN:\"framer-v-1vaxquu\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition2={delay:0,duration:3.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-32};const inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const animation3={cursor:\"grabbing\"};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:32};const transition3={damping:30,delay:.1,mass:1,stiffness:300,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:96};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:64};const animation11={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition4={damping:40,delay:.03,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation11,tokenization:\"character\",transition:transition4,trigger:\"onInView\",type:\"appear\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"qq5Dlu4rN\",Tablet:\"mVIL4xheu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,dsL5yhyYVvEXjrxcU_,PU8bteqhKvEXjrxcU_,tA_HdJAhAvEXjrxcU_,LtwPhsbXHvEXjrxcU_,BcM9GNX1kvEXjrxcU_,u8GCKzMS9vEXjrxcU_,idvEXjrxcU_,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const beH8dcv7J3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"neIUUFtyl\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"d1Ubf8xxf\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"NDmxJGu1g\");const ref4=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z91rkh\",\"data-framer-name\":\"Navigation scroll\",id:elementId,ref:ref2}),/*#__PURE__*/_jsx(\"nav\",{className:\"framer-1ypw34m\",\"data-framer-name\":\"Navigation\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 1px)`},qq5Dlu4rN:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+0+14,children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-i9d5tu-container\",\"data-framer-appear-id\":\"i9d5tu\",id:\"i9d5tu\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{__framer__targets:[{offset:0,ref:ref2,target:\"S5We1NmZ_\"}],style:{width:\"100%\"},variant:\"GjpstXt8G\"},qq5Dlu4rN:{__framer__targets:[{offset:0,ref:ref2,target:\"AGludps7r\"}],style:{width:\"100%\"},variant:\"dqiqoTkxj\"}},children:/*#__PURE__*/_jsx(ElementsNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref2,target:\"gRhiSpVPj\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,beH8dcv7J:beH8dcv7J3bnx0g({overlay}),C4IHdRDKt:\"gmSNsAsp8\",height:\"100%\",id:\"sWOAXYegl\",layoutId:\"sWOAXYegl\",lO1DIjJFY:\"gmSNsAsp8\",MMSnH93gt:\"gmSNsAsp8\",RelfXi6av:\"gmSNsAsp8\",variant:\"L8YoD_url\",w41Ne4oRx:\"FrVxQxMtF\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1jw4q1q\"),\"data-framer-portal-id\":\"i9d5tu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"gPwciI3Id\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-1e1l57c\"),\"data-framer-name\":\"Container\",\"data-framer-portal-id\":\"i9d5tu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qq5Dlu4rN:{width:\"max(100vw - 32px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max(100vw - 48px, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ji1v0v-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qq5Dlu4rN:{variant:\"CVSqdAKCu\"}},children:/*#__PURE__*/_jsx(ElementsNavLinks,{height:\"100%\",HKAIlNllb:\"l3GDzBpHK\",id:\"nug7b2J5C\",lA7mzBgj8:\"l3GDzBpHK\",layoutId:\"nug7b2J5C\",NJnHWv_BL:\"l3GDzBpHK\",qPXTwIDvU:\"l3GDzBpHK\",style:{width:\"100%\"},TDq2xfFAu:\"wqf5GSWMc\",variant:\"z3Vn5KIDM\",width:\"100%\"})})})})})})]}),getContainer())})})]})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-jpm87x\",\"data-framer-name\":\"Hero seciton\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14mocnn\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-63ebyq\",\"data-framer-appear-id\":\"63ebyq\",\"data-framer-name\":\"Content\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{background:{alt:\"Created by Dmytri Ivanov\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1275,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0+24+0+150),pixelHeight:3e3,pixelWidth:3e3,sizes:\"203px\",src:\"https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=512 512w,https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png 3000w\"}},qq5Dlu4rN:{background:{alt:\"Created by Dmytri Ivanov\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1275,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0+16+0+29),pixelHeight:3e3,pixelWidth:3e3,sizes:\"96px\",src:\"https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=512 512w,https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png 3000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,animate:animation,as:\"figure\",background:{alt:\"Created by Dmytri Ivanov\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1275,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0+24+0+135),pixelHeight:3e3,pixelWidth:3e3,sizes:\"313px\",src:\"https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=512 512w,https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6pGERJAchCfSt2LPMYA2e4sEyI.png 3000w\"},className:\"framer-1hevfp7\",\"data-framer-appear-id\":\"1hevfp7\",\"data-framer-name\":\"Shape 3\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,initial:animation4,onMouseDown:preventDefault,optimized:true,whileTap:animation3})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1qesurz\",\"data-framer-appear-id\":\"1qesurz\",\"data-framer-name\":\"Header\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-fgh8u2\",\"data-styles-preset\":\"vrXQodaMH\",style:{\"--framer-text-color\":\"var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255))\"},children:[\"Ka\u017Ed\\xe1 zna\u010Dka \",/*#__PURE__*/_jsx(\"br\",{}),\"m\\xe1 svoj pr\\xedbeh\"]})}),className:\"framer-vl98ry\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i7497s\",\"data-styles-preset\":\"WXrEOepWs\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-98ea2f69-4c41-4e53-9c8c-7a98946cba16, rgb(230, 230, 230))\"},children:\"Nau\u010D sa praktick\\xe9 kroky na tvorbu vizu\\xe1lov, ktor\\xe9 bud\\xfa profesion\\xe1lne a efekt\\xedvne. Stiahni si eBook zdarma a za\u010Dni budova\u0165 siln\\xfa vizu\\xe1lnu identitu u\u017E dnes!\"})}),className:\"framer-1s5r6v8\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qq5Dlu4rN:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 96px)`,y:(componentViewport?.y||0)+0+84+0+16+0+96+268}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+84+0+24+0+160+268,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-od6sgz-container\",\"data-framer-appear-id\":\"od6sgz\",initial:animation8,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qq5Dlu4rN:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ElementsButton,{bitLCgREi:false,CTiwKmXt9:false,gKom6Q6pS:\"regular\",height:\"100%\",id:\"RmhCFluLl\",layoutId:\"RmhCFluLl\",lgqRfcS3a:\"House\",QH0duFZ1f:\"Z\\xedska\u0165 eBook zdarma\",variant:\"HAT8JAxXn\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-16wsyre\",\"data-framer-name\":\"Feature 1\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-f9oymx\",\"data-framer-appear-id\":\"f9oymx\",\"data-framer-name\":\"Container\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-sf7zix\",\"data-framer-appear-id\":\"sf7zix\",\"data-framer-name\":\"Header\",initial:animation8,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qq5Dlu4rN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-148x6tq\",\"data-styles-preset\":\"ARDZyocPI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Dizajn, ktor\\xfd podporuje tvoje podnikanie a pr\\xedbeh\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1dp0y4t\",\"data-styles-preset\":\"kKFOnFSJ0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Dizajn, ktor\\xfd podporuje tvoje podnikanie a pr\\xedbeh\"})}),className:\"framer-1aw7oqb\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i7497s\",\"data-styles-preset\":\"WXrEOepWs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"},children:\"Pom\\xf4\u017Eem ti vytvori\u0165 vizu\\xe1lnu identitu, ktor\\xe1 bude autentick\\xe1, \\xfa\u010Dinn\\xe1 a zostane v srdciach tvojich z\\xe1kazn\\xedkov.\"})}),className:\"framer-c0gz73\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-se3ybe\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+728+80+0+0+276+0+0},qq5Dlu4rN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px)`,y:(componentViewport?.y||0)+0+592+48+0+0+248+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:268,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+744+96+0+0+276+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-z69a2n-container\",\"data-framer-appear-id\":\"z69a2n\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsx(CardsCard1,{c3uYh5VfY:\"star\",height:\"100%\",id:\"R3atELKG0\",layoutId:\"R3atELKG0\",style:{width:\"100%\"},tzxEal8xe:\"Spokojn\\xe9 klientky\",VcNysyoVK:\"Skuto\u010Dn\\xe9 pr\\xedbehy podnikateliek, ktor\\xe9 si splnili sen o kr\\xe1snej a profesion\\xe1lnej vizu\\xe1lnej identite.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+728+80+0+0+276+0+284},qq5Dlu4rN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px)`,y:(componentViewport?.y||0)+0+592+48+0+0+248+0+284}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:268,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+744+96+0+0+276+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-16wizn8-container\",\"data-framer-appear-id\":\"16wizn8\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsx(CardsCard1,{c3uYh5VfY:\"palette\",height:\"100%\",id:\"bMzY39qhF\",layoutId:\"bMzY39qhF\",style:{width:\"100%\"},tzxEal8xe:\" Portf\\xf3lio projektov\",VcNysyoVK:\"Ka\u017Ed\\xe1 zna\u010Dka m\\xe1 svoj pr\\xedbeh \u2013 pozri si moju pr\\xe1cu a predstav si, ako m\\xf4\u017Ee vyzera\u0165 aj tvoja vizu\\xe1lna identita.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+728+80+0+0+276+0+568},qq5Dlu4rN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px)`,y:(componentViewport?.y||0)+0+592+48+0+0+248+0+568}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:268,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+744+96+0+0+276+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-od6k5h-container\",\"data-framer-appear-id\":\"od6k5h\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsx(CardsCard1,{c3uYh5VfY:\"spark\",height:\"100%\",id:\"r0tjfuv0O\",layoutId:\"r0tjfuv0O\",style:{width:\"100%\"},tzxEal8xe:\"Preh\u013Ead slu\u017Eieb\",VcNysyoVK:\"Od prv\\xe9ho n\\xe1padu a\u017E po profesion\\xe1lny dizajn \u2013 v\u0161etko, \u010Do potrebuje\u0161 na vizu\\xe1lnu identitu, ktor\\xe1 vystihne tvoje hodnoty.\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-uoemmp\",\"data-framer-name\":\"Feature 2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k215pa\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mne2lg\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-15ln6lx\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10kc877\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{y:(componentViewport?.y||0)+0+2e3+80+0+0+0+64+0+0+52+0+0},qq5Dlu4rN:{y:(componentViewport?.y||0)+0+1772+48+0+0+0+32+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+1480+96+0+0+0+64+0+0+52+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-smb9xa-container\",children:/*#__PURE__*/_jsx(ElementsBadge,{height:\"100%\",id:\"OZho1RFHG\",layoutId:\"OZho1RFHG\",UealQPH5o:{borderColor:\"var(--token-98ea2f69-4c41-4e53-9c8c-7a98946cba16, rgb(230, 230, 230))\",borderStyle:\"solid\",borderWidth:1},variant:\"SBD4P9y4R\",VchKknZOt:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\",VT_9_Tgiy:\"var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255))\",width:\"100%\",YxFiDAtHJ:\"Slu\u017Eby\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qq5Dlu4rN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i7za5w\",\"data-styles-preset\":\"jwr3vfbVq\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Tvoj sen, m\\xf4j dizajn: Spolu vytvor\\xedme vizu\\xe1l, ktor\\xfd vystihne tvoje podnikanie.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-148x6tq\",\"data-styles-preset\":\"ARDZyocPI\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Tvoj sen, m\\xf4j dizajn: Spolu vytvor\\xedme vizu\\xe1l, ktor\\xfd vystihne tvoje podnikanie.\"})}),className:\"framer-huxwe3\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i7497s\",\"data-styles-preset\":\"WXrEOepWs\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"},children:\"Dizajn, ktor\\xfd hovor\\xed tvoj\\xedm pr\\xedbehom \u2013 tu n\\xe1jde\u0161 slu\u017Eby, ktor\\xe9 ti pom\\xf4\u017Eu vytvori\u0165 vizu\\xe1lnu identitu, ktor\\xe1 skuto\u010Dne odr\\xe1\u017Ea tvoje hodnoty a poslanie.\"})}),className:\"framer-1v1st4e\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e3ciu3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bh1lpy\",\"data-framer-name\":\"Col 1\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lt0bn2\",\"data-framer-name\":\"Cards/Card 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2e3+80+0+0+0+64+204+0+0+0+0+24+0),pixelHeight:420,pixelWidth:687,sizes:\"282px\",src:\"https://framerusercontent.com/images/tOMIvFza3ZIcNneCr1q2ranxD8.jpg\",srcSet:\"https://framerusercontent.com/images/tOMIvFza3ZIcNneCr1q2ranxD8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tOMIvFza3ZIcNneCr1q2ranxD8.jpg 687w\"}},qq5Dlu4rN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1772+48+0+0+0+32+264+0+0+0+0+24+0),pixelHeight:420,pixelWidth:687,sizes:\"282px\",src:\"https://framerusercontent.com/images/tOMIvFza3ZIcNneCr1q2ranxD8.jpg\",srcSet:\"https://framerusercontent.com/images/tOMIvFza3ZIcNneCr1q2ranxD8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tOMIvFza3ZIcNneCr1q2ranxD8.jpg 687w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1480+96+0+0+0+64+204+0+0+0+24+0),pixelHeight:420,pixelWidth:687,sizes:\"282px\",src:\"https://framerusercontent.com/images/tOMIvFza3ZIcNneCr1q2ranxD8.jpg\",srcSet:\"https://framerusercontent.com/images/tOMIvFza3ZIcNneCr1q2ranxD8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tOMIvFza3ZIcNneCr1q2ranxD8.jpg 687w\"},className:\"framer-15rx5jf\",\"data-framer-name\":\"Image (Replace here)\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k06uaf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1q8n56o\",\"data-styles-preset\":\"elT85au5Z\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Tvorba webstr\\xe1nok\"})}),className:\"framer-i2uw75\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f6llgt\",\"data-styles-preset\":\"lUAhPfAzN\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Vytvor\\xedm web, ktor\\xfd bude presne odr\\xe1\u017Ea\u0165 tvoje hodnoty a poslanie.\"})}),className:\"framer-chjygk\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pzm4ta\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-knu6ru\",\"data-framer-name\":\"Logo wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-w7hy1x\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tkj5dm\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M14.787.198v14.616h7.345c4.047 0 7.345-3.268 7.345-7.316 0-4.031-3.282-7.316-7.345-7.316h-7.345v.016Z\" fill=\"#FF7262\"/><path d=\"M15.136 22.15c0-4.031 3.281-7.316 7.345-7.316 4.047 0 7.345 3.268 7.345 7.316 0 4.032-3.28 7.317-7.345 7.317-4.047 0-7.345-3.285-7.345-7.317Z\" fill=\"#1ABCFE\"/><path d=\"M.463 36.766c0-4.032 3.281-7.316 7.345-7.316h7.345v7.316c0 4.031-3.281 7.316-7.345 7.316S.463 40.814.463 36.766Z\" fill=\"#0ACF83\"/><path d=\"M.463 7.535c0 4.031 3.281 7.316 7.345 7.316h7.345V.219H7.808C3.744.219.463 3.487.463 7.535Z\" fill=\"#F24E1E\"/><path d=\"M.463 22.15c0 4.032 3.281 7.317 7.345 7.317h7.345V14.834H7.808c-4.064 0-7.345 3.285-7.345 7.316Z\" fill=\"#A259FF\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.463 .182)\" d=\"M0 0h29.014v43.636H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gadotx\",\"data-framer-name\":\"Logo wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b36xwj\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-naw3pn\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.671 14.508h14.331l14.66 14.655h-14.66v14.655L.672 29.163V14.508Z\" fill=\"#fff\"/><path d=\"M.671.182h28.991v14.326h-14.66L.672.182Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-7m8hx1\",\"data-framer-name\":\"Cards/Card 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1q8n56o\",\"data-styles-preset\":\"elT85au5Z\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Redizajn webstr\\xe1nok\"})}),className:\"framer-zkyris\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f6llgt\",\"data-styles-preset\":\"lUAhPfAzN\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Pom\\xf4\u017Eem ti o\u017Eivi\u0165 tvoj web a urobi\u0165 ho jednoduch\\xfdm a pr\\xedjemn\\xfdm pre tvojich n\\xe1v\u0161tevn\\xedkov.\"})}),className:\"framer-1w86js6\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v6ilwi\",\"data-framer-name\":\"Col 2\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-d79bfa\",\"data-framer-name\":\"Cards/Card 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mau6oc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1q8n56o\",\"data-styles-preset\":\"elT85au5Z\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Konzult\\xe1cie\"})}),className:\"framer-alwxi1\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f6llgt\",\"data-styles-preset\":\"lUAhPfAzN\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Ak nevie\u0161, \u010Do na tvojom logu, webe alebo knihe vylep\u0161i\u0165, pon\\xfakam konzult\\xe1cie, kde ti porad\\xedm, \u010Do zlep\u0161i\u0165, aby tvoj dizajn bol efekt\\xedvnej\u0161\\xed a profesion\\xe1lnej\u0161\\xed.\"})}),className:\"framer-1mmgj2g\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-349zsd\",\"data-framer-name\":\"Avatar group\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{y:(componentViewport?.y||0)+0+2e3+80+0+0+0+64+204+0+648+0+0+24+154+0},qq5Dlu4rN:{y:(componentViewport?.y||0)+0+1772+48+0+0+0+32+264+0+648+0+0+24+154+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+0+1480+96+0+0+0+64+204+0+0+0+24+154+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uvzq7w-container\",children:/*#__PURE__*/_jsx(ElementsAvatarCircle,{F0usfKMv0:\"var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(239, 237, 255))\",height:\"100%\",id:\"vW17fQcEe\",layoutId:\"vW17fQcEe\",QBnwHXXyd:\"rgb(224, 172, 144)\",style:{height:\"100%\",width:\"100%\"},trm_lMoZe:\"AD1uRb789\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{y:(componentViewport?.y||0)+0+2e3+80+0+0+0+64+204+0+648+0+0+24+154+0},qq5Dlu4rN:{y:(componentViewport?.y||0)+0+1772+48+0+0+0+32+264+0+648+0+0+24+154+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+0+1480+96+0+0+0+64+204+0+0+0+24+154+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k2pgv3-container\",children:/*#__PURE__*/_jsx(ElementsAvatarCircle,{F0usfKMv0:\"var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(239, 237, 255))\",height:\"100%\",id:\"biC2B3H6B\",layoutId:\"biC2B3H6B\",QBnwHXXyd:\"rgb(175, 220, 237)\",style:{height:\"100%\",width:\"100%\"},trm_lMoZe:\"AnI2DvQZf\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{y:(componentViewport?.y||0)+0+2e3+80+0+0+0+64+204+0+648+0+0+24+154+0},qq5Dlu4rN:{y:(componentViewport?.y||0)+0+1772+48+0+0+0+32+264+0+648+0+0+24+154+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+0+1480+96+0+0+0+64+204+0+0+0+24+154+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2rxp7y-container\",children:/*#__PURE__*/_jsx(ElementsAvatarCircle,{F0usfKMv0:\"var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(239, 237, 255))\",height:\"100%\",id:\"s1nnXaVkQ\",layoutId:\"s1nnXaVkQ\",QBnwHXXyd:\"rgb(198, 208, 247)\",style:{height:\"100%\",width:\"100%\"},trm_lMoZe:\"RpMB9X2cU\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-18efkjt\",\"data-framer-name\":\"Cards/Card 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17f0lzw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1q8n56o\",\"data-styles-preset\":\"elT85au5Z\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Marketingov\\xe9 materi\\xe1ly\"})}),className:\"framer-ayudoh\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f6llgt\",\"data-styles-preset\":\"lUAhPfAzN\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Pom\\xf4\u017Eem ti vytvori\u0165 materi\\xe1ly, ktor\\xe9 podporia tvoje podnikanie a pritiahnu viac z\\xe1kazn\\xedkov.\"})}),className:\"framer-lyep6l\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2e3+80+0+0+0+64+204+0+648+0+266+24+154),pixelHeight:1900,pixelWidth:2800,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 224px)`,src:\"https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg\",srcSet:\"https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg 2800w\"}},qq5Dlu4rN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1772+48+0+0+0+32+264+0+648+0+266+24+154),pixelHeight:1900,pixelWidth:2800,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 144px)`,src:\"https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg\",srcSet:\"https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg 2800w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1480+96+0+0+0+64+204+0+0+266+24+154),pixelHeight:1900,pixelWidth:2800,sizes:`calc(max(((min(${componentViewport?.width||\"100vw\"}, 1200px) - 176px) * 0.675 - 32px) / 2, 1px) - 48px)`,src:\"https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg\",srcSet:\"https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Lk8bryD99CmBUZfyNXCaiSGNA.jpg 2800w\"},className:\"framer-4os0ll\",\"data-framer-name\":\"Image (Replace here)\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tvcvv8\",\"data-framer-name\":\"Col 3\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-sudldl\",\"data-framer-name\":\"Cards/Card 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2e3+80+0+0+0+64+204+0+1108+0+0+21+0),pixelHeight:1812,pixelWidth:2417,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 224px)`,src:\"https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png\",srcSet:\"https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png 2417w\"}},qq5Dlu4rN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1772+48+0+0+0+32+264+0+1268+0+0+21+0),pixelHeight:1812,pixelWidth:2417,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 144px)`,src:\"https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png\",srcSet:\"https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png 2417w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1480+96+0+0+0+64+204+0+0+0+21+0),pixelHeight:1812,pixelWidth:2417,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 176px) * 0.325 - 48px)`,src:\"https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png\",srcSet:\"https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AqfUcDzKyJ9nuBlLjaa550Rzo.png 2417w\"},className:\"framer-1qm7ql2\",\"data-framer-name\":\"Image (Replace here)\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1emodas\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1q8n56o\",\"data-styles-preset\":\"elT85au5Z\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Grafick\\xfd dizajn, tvorba kn\\xedh a branding\"})}),className:\"framer-14jtpdy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f6llgt\",\"data-styles-preset\":\"lUAhPfAzN\",style:{\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Kreat\\xedvne dizajny, ktor\\xe9 ti pom\\xf4\u017Eu oslovi\u0165 tvoje z\\xe1kazn\\xed\u010Dky a vytvori\u0165 vizu\\xe1lnu identitu tvojej zna\u010Dky. Postar\\xe1m sa o profesion\\xe1lny dizajn tvojej knihy, loga a vizu\\xe1lnych materi\\xe1lov, ktor\\xe9 presne vystihn\\xfa tvoje hodnoty a poslanie. Ka\u017Ed\\xfd projekt navrhnem s l\\xe1skou, d\\xf4razom na detail a s cie\u013Eom, aby mal tvoj biznis siln\\xfd a autentick\\xfd vizu\\xe1lny vzh\u013Ead.\"})}),className:\"framer-ie57br\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z6an5t\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vdvs4c\",\"data-framer-name\":\"Logo wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11yleja\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-js1vdk\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M14.787.198v14.616h7.345c4.047 0 7.345-3.268 7.345-7.316 0-4.031-3.282-7.316-7.345-7.316h-7.345v.016Z\" fill=\"#FF7262\"/><path d=\"M15.136 22.15c0-4.031 3.281-7.316 7.345-7.316 4.047 0 7.345 3.268 7.345 7.316 0 4.032-3.28 7.317-7.345 7.317-4.047 0-7.345-3.285-7.345-7.317Z\" fill=\"#1ABCFE\"/><path d=\"M.463 36.766c0-4.032 3.281-7.316 7.345-7.316h7.345v7.316c0 4.031-3.281 7.316-7.345 7.316S.463 40.814.463 36.766Z\" fill=\"#0ACF83\"/><path d=\"M.463 7.535c0 4.031 3.281 7.316 7.345 7.316h7.345V.219H7.808C3.744.219.463 3.487.463 7.535Z\" fill=\"#F24E1E\"/><path d=\"M.463 22.15c0 4.032 3.281 7.317 7.345 7.317h7.345V14.834H7.808c-4.064 0-7.345 3.285-7.345 7.316Z\" fill=\"#A259FF\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.463 .182)\" d=\"M0 0h29.014v43.636H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ih2xeb\",\"data-framer-name\":\"Logo wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vw267w\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1msm1q8\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.671 14.508h14.331l14.66 14.655h-14.66v14.655L.672 29.163V14.508Z\" fill=\"#fff\"/><path d=\"M.671.182h28.991v14.326h-14.66L.672.182Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})]})]})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-icdf6b\",\"data-framer-name\":\"About\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-i9a4by\",\"data-framer-appear-id\":\"i9a4by\",\"data-framer-name\":\"Container\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-okh01b\",\"data-framer-name\":\"we offer\",id:elementId2,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-axlhyz\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-182u07m\",\"data-framer-name\":\"social proof\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-148x6tq\",\"data-styles-preset\":\"ARDZyocPI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Dizajn nie je len o estetike \u2013 je to sp\\xf4sob, ako vyjadri\u0165 hodnoty, pr\\xedbeh a poslanie, ktor\\xe9 oslovia t\\xfdch spr\\xe1vnych z\\xe1kazn\\xedkov.\"})}),className:\"framer-h3m7r3\",\"data-framer-name\":\"Heading\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gw8ydz\",\"data-framer-name\":\"bg gradient\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k98zqk\",\"data-framer-name\":\"color\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jszuok\",\"data-framer-name\":\"color\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iltiqg\",\"data-framer-name\":\"color\"})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-j14mb9\",\"data-framer-name\":\"Cases\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-110uktp\",\"data-framer-appear-id\":\"110uktp\",\"data-framer-name\":\"Container\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-vkffru\",\"data-framer-name\":\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qq5Dlu4rN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i7za5w\",\"data-styles-preset\":\"jwr3vfbVq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Tvoj dizajn, ktor\\xfd \u0165a odl\\xed\u0161i a pom\\xf4\u017Ee ti r\\xe1s\u0165\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1dp0y4t\",\"data-styles-preset\":\"kKFOnFSJ0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Tvoj dizajn, ktor\\xfd \u0165a odl\\xed\u0161i a pom\\xf4\u017Ee ti r\\xe1s\u0165\"})}),className:\"framer-hibh7k\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i7497s\",\"data-styles-preset\":\"WXrEOepWs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"},children:\"Spolo\u010Dne vytvor\\xedme dizajn, ktor\\xfd presne vystihne tvoje hodnoty a pom\\xf4\u017Ee ti vy\u010Dnieva\u0165 medzi ostatn\\xfdmi. S na\u0161ou pomocou zaujme\u0161, porastie\u0161 a vytvor\\xed\u0161 siln\\xfa online identitu.\"})}),className:\"framer-fjsz8p\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yf4axx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vEXjrxcU_\",data:Ourworks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"vEXjrxcU_\",name:\"dsL5yhyYV\",type:\"Identifier\"},{collection:\"vEXjrxcU_\",name:\"PU8bteqhK\",type:\"Identifier\"},{collection:\"vEXjrxcU_\",name:\"tA_HdJAhA\",type:\"Identifier\"},{collection:\"vEXjrxcU_\",name:\"LtwPhsbXH\",type:\"Identifier\"},{collection:\"vEXjrxcU_\",name:\"BcM9GNX1k\",type:\"Identifier\"},{collection:\"vEXjrxcU_\",name:\"u8GCKzMS9\",type:\"Identifier\"},{collection:\"vEXjrxcU_\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({BcM9GNX1k:BcM9GNX1kvEXjrxcU_,dsL5yhyYV:dsL5yhyYVvEXjrxcU_,id:idvEXjrxcU_,LtwPhsbXH:LtwPhsbXHvEXjrxcU_,PU8bteqhK:PU8bteqhKvEXjrxcU_,tA_HdJAhA:tA_HdJAhAvEXjrxcU_,u8GCKzMS9:u8GCKzMS9vEXjrxcU_},index)=>{PU8bteqhKvEXjrxcU_??=\"\";u8GCKzMS9vEXjrxcU_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vEXjrxcU_-${idvEXjrxcU_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{u8GCKzMS9:u8GCKzMS9vEXjrxcU_},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{y:(componentViewport?.y||0)+0+4360+160+0+0+276+0+0},qq5Dlu4rN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px)`,y:(componentViewport?.y||0)+0+4224+96+0+0+236+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:497,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2868+192+0+0+276+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-13073g2-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qq5Dlu4rN:{variant:\"nup9xDl1E\"}},children:/*#__PURE__*/_jsx(CardsWorkCard,{e4cBMwgSW:enumToDisplayNameFunctions[\"tA_HdJAhA\"]?.(tA_HdJAhAvEXjrxcU_,activeLocale),height:\"100%\",id:\"VPGybXzuh\",iq4Yh0St3:PU8bteqhKvEXjrxcU_,jhXCWSSzt:enumToDisplayNameFunctions[\"BcM9GNX1k\"]?.(BcM9GNX1kvEXjrxcU_,activeLocale),JQov4y5Qh:enumToDisplayNameFunctions[\"LtwPhsbXH\"]?.(LtwPhsbXHvEXjrxcU_,activeLocale),layoutId:\"VPGybXzuh\",OjXtCvjP3:toResponsiveImage(dsL5yhyYVvEXjrxcU_),style:{width:\"100%\"},variant:\"kIhRg7DNS\",width:\"100%\"})})})})})})},idvEXjrxcU_);})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1blgy70\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-ivxj2f\",\"data-framer-appear-id\":\"ivxj2f\",\"data-framer-name\":\"Container\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12twrjm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oy03ko\",\"data-framer-name\":\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{y:(componentViewport?.y||0)+0+5894+80+0+0+0+0+0+0+0},qq5Dlu4rN:{y:(componentViewport?.y||0)+0+5101+48+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+4450+96+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p1u7x2-container\",children:/*#__PURE__*/_jsx(ElementsBadge,{height:\"100%\",id:\"PP9QSIHMt\",layoutId:\"PP9QSIHMt\",UealQPH5o:{borderColor:\"var(--token-98ea2f69-4c41-4e53-9c8c-7a98946cba16, rgb(230, 230, 230))\",borderStyle:\"solid\",borderWidth:1},variant:\"SBD4P9y4R\",VchKknZOt:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\",VT_9_Tgiy:\"var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255))\",width:\"100%\",YxFiDAtHJ:\"Referencie\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qq5Dlu4rN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1i7za5w\",\"data-styles-preset\":\"jwr3vfbVq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"\u010Co hovoria moji klienti\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1dp0y4t\",\"data-styles-preset\":\"kKFOnFSJ0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"\u010Co hovoria moji klienti\"})}),className:\"framer-10r6vcf\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i7497s\",\"data-styles-preset\":\"WXrEOepWs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3512c40d-aef5-4d88-8464-e100a1cdd59e, rgb(56, 56, 56))\"},children:\"Pre\u010D\\xedtajte si, \u010Do o mne hovoria moji klienti. Tak najlep\u0161ie a najr\\xfdchlej\u0161ie zist\\xedte, \u010Di som pre v\\xe1s t\\xe1 prav\\xe1.\"})}),className:\"framer-1do64bh\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qqi3vz\",\"data-framer-name\":\"Reviews\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+5894+80+0+0+0+0+324+0+0},qq5Dlu4rN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px)`,y:(componentViewport?.y||0)+0+5101+48+0+0+0+0+284+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4450+96+0+0+0+0+324+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-b2wk1y-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonialsCard,{ajkPmSN2I:\"var(--token-6aac10a8-f6d9-4581-95dd-2f8033451189, rgb(208, 223, 230))\",aWNQwOUgW:\"UozSdcuUY\",height:\"100%\",id:\"kh7jS0rWq\",layoutId:\"kh7jS0rWq\",NKd2VB0Rt:\"Siska.studio vytvorilo \\xfa\u017Easn\\xfd dizajn knihy a webu, dpor\\xfa\u010Dam!\",style:{width:\"100%\"},VhWLBmEP5:\"Essential oils\",width:\"100%\",XDtae_p3N:\"Lenka Capo\",XWbdou1CX:\"var(--token-bc47f47b-f750-4602-97a5-1c9767dc6b73, rgb(236, 240, 243))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+5894+80+0+0+0+0+324+0+216},qq5Dlu4rN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px)`,y:(componentViewport?.y||0)+0+5101+48+0+0+0+0+284+0+216}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4450+96+0+0+0+0+324+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-kqd1x3-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonialsCard,{ajkPmSN2I:\"var(--token-38b01850-b922-4d5d-8416-0f5bff51f8cb, rgb(235, 238, 88))\",aWNQwOUgW:\"vrPxXX3Sq\",height:\"100%\",id:\"GcTwTIBR_\",layoutId:\"GcTwTIBR_\",NKd2VB0Rt:\"Logo, branding a web \u2013 v\u0161etko od Siska.studio. Nesmierna spokojnos\u0165!\",style:{width:\"100%\"},VhWLBmEP5:\"Hypnobirthing\",width:\"100%\",XDtae_p3N:\"Michaela Novenkova\",XWbdou1CX:\"var(--token-6b25373e-7d02-4ef6-81b5-76bf19c10375, rgb(249, 251, 231))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+5894+80+0+0+0+0+324+0+432},qq5Dlu4rN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px)`,y:(componentViewport?.y||0)+0+5101+48+0+0+0+0+284+0+432}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4450+96+0+0+0+0+324+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-712o4e-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonialsCard,{ajkPmSN2I:\"var(--token-117a663d-fd84-431e-9e30-8537eb1fe954, rgb(212, 226, 232))\",aWNQwOUgW:\"YC5psLXzO\",height:\"100%\",id:\"CpbXnaBd5\",layoutId:\"CpbXnaBd5\",NKd2VB0Rt:\"Siska.studio nastavilo reklamu a v\\xfdsledky s\\xfa skvel\\xe9! Ur\u010Dite odpor\\xfa\u010Dam!\",style:{width:\"100%\"},VhWLBmEP5:\"Human design\",width:\"100%\",XDtae_p3N:\"Daniela Bederkov\\xe1\",XWbdou1CX:\"var(--token-c7296255-ae5e-4cec-8116-ad2cebcb1ccb, rgb(225, 245, 254))\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-xnm7ts-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:.3,id:\"BccwAwV6c\",layoutId:\"BccwAwV6c\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:106,src:\"https://framerusercontent.com/images/RQtplDgO0QaR12FvioQ15mE35kU.svg\"},className:\"framer-1ocbqf\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:106,src:\"https://framerusercontent.com/images/RQtplDgO0QaR12FvioQ15mE35kU.svg\"},className:\"framer-1ocbqf\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:119,src:\"https://framerusercontent.com/images/rim9ymYCtInC2YkivpMBMf8Dn0k.svg\"},className:\"framer-1k736v6\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:108,src:\"https://framerusercontent.com/images/EwqtQRJ6tQkLQz8wYeL13rdCm5E.svg\"},className:\"framer-mnm58x\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:109,src:\"https://framerusercontent.com/images/CgaamTpX7MhPEKWQ5nErcXoxdJc.svg\"},className:\"framer-1wcc4d2\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:153,src:\"https://framerusercontent.com/images/bD64dsBbmhkS3zkf22186FsX4Ac.svg\"},className:\"framer-z65pex\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:109,src:\"https://framerusercontent.com/images/vGXtF9HXsgc9RTwZC0EnFQAc5a0.svg\"},className:\"framer-1egklvp\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:94,src:\"https://framerusercontent.com/images/9dwWN9t1Rvolj5dKZVTERoTo.svg\"},className:\"framer-1bg5bqs\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:24,pixelWidth:124,src:\"https://framerusercontent.com/images/WiaTKEhWhhJvWfoS5B6yeBxEqo.svg\"},className:\"framer-17y7diu\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:133,src:\"https://framerusercontent.com/images/pWdI1S9RQGdpsjRHvx9SiSIt7Q.svg\"},className:\"framer-1myzwh8\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:106,src:\"https://framerusercontent.com/images/MD3ZaTHRq3jFe94NbAvLnwbQPE.svg\"},className:\"framer-1sqs5w8\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:26,pixelWidth:113,src:\"https://framerusercontent.com/images/R8dilgEbKuaM28BotYk2pOZ0Sgg.svg\"},className:\"framer-1b35rsc\",\"data-framer-name\":\"Logo\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-wvw3ea\",\"data-framer-name\":\"Pricing\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1jlpqts\",\"data-framer-appear-id\":\"1jlpqts\",\"data-framer-name\":\"Container\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-9xhsv5\",\"data-framer-name\":\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{y:(componentViewport?.y||0)+0+7210+160+0+0+0+0+0},qq5Dlu4rN:{y:(componentViewport?.y||0)+0+6249+96+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+5382+192+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-75eowi-container\",children:/*#__PURE__*/_jsx(ElementsBadge,{height:\"100%\",id:\"Y2xlziA0w\",layoutId:\"Y2xlziA0w\",UealQPH5o:{borderColor:\"var(--token-98ea2f69-4c41-4e53-9c8c-7a98946cba16, rgb(230, 230, 230))\",borderStyle:\"solid\",borderWidth:1},variant:\"SBD4P9y4R\",VchKknZOt:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\",VT_9_Tgiy:\"var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, rgb(255, 255, 255))\",width:\"100%\",YxFiDAtHJ:\"Zisti Ceny\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qq5Dlu4rN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-148x6tq\",\"data-styles-preset\":\"ARDZyocPI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Slu\u017Eby, ktor\\xe9 podporia rast tvojho podnikania\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1dp0y4t\",\"data-styles-preset\":\"kKFOnFSJ0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},children:\"Slu\u017Eby, ktor\\xe9 podporia rast tvojho podnikania\"})}),className:\"framer-135ikna\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cli3xu\",\"data-framer-name\":\"Reviews\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+7210+160+0+0+168+0+0},qq5Dlu4rN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px)`,y:(componentViewport?.y||0)+0+6249+96+0+0+140+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:461,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+5382+192+0+0+168+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-455ifa-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsPricingCard,{as36dU6CS:\"Pozrieme tvoj dizajn a zlep\u0161\\xedme ho.\",AuYDQ0G3K:\"Simple Pricing\",CpUbyqeIo:false,GqchEW_nF:\"Porad\\xedm, ako zauja\u0165 z\\xe1kazn\\xed\u010Dky.\",height:\"100%\",id:\"VhsOV8k3u\",ioEZ_Cwjt:\"zRvLXrMsx\",Kmc2u1xbf:\"Vyjadr\\xedme tvoje hodnoty dizajnom.\",layoutId:\"VhsOV8k3u\",msezJg2QQ:\"\u20AC50\",QFU8l7pAN:\"Vysvetl\\xedm, \u010Do funguje a \u010Do nie.\",style:{width:\"100%\"},U2omjG7xn:\"Viac o Slu\u017Ebe\",variant:\"Xn6V9nS9R\",width:\"100%\",zdKms9Jcq:\"Konzult\\xe1cie na mieru\",zoz0b_aXz:\"D\\xe1m ti konkr\\xe9tne tipy na vylep\u0161enie.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+7210+160+0+0+168+0+477},qq5Dlu4rN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px)`,y:(componentViewport?.y||0)+0+6249+96+0+0+140+0+477}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:461,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+5382+192+0+0+168+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k3ujef-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsPricingCard,{as36dU6CS:\"Osvie\u017Eime vzh\u013Ead tvojho webu.\",AuYDQ0G3K:\"Simple Pricing\",CpUbyqeIo:false,GqchEW_nF:\"R\\xfdchlej\u0161ia a funk\u010Dnej\u0161ia str\\xe1nka\",height:\"100%\",id:\"ihHwvaPiS\",ioEZ_Cwjt:\"t6omkvp5i\",Kmc2u1xbf:\"SEO \\xfapravy pre lep\u0161iu vidite\u013Enos\u0165.\",layoutId:\"ihHwvaPiS\",msezJg2QQ:\"\u20AC50\",QFU8l7pAN:\"Urob\\xedme ho pr\\xedjemn\\xfdm a funk\u010Dn\\xfdm.\",style:{width:\"100%\"},U2omjG7xn:\"Viac o Slu\u017Ebe\",variant:\"Xn6V9nS9R\",width:\"100%\",zdKms9Jcq:\"Redizajn webstr\\xe1nok\",zoz0b_aXz:\"Vytvor\\xedme web, ktor\\xfd zaujme.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+7210+160+0+0+168+0+954},qq5Dlu4rN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px)`,y:(componentViewport?.y||0)+0+6249+96+0+0+140+0+954}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:461,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+5382+192+0+0+168+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bi1p4m-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsPricingCard,{as36dU6CS:\"Navrhnem web, ktor\\xfd \u0165a vystihne.\",AuYDQ0G3K:\"Popular\",CpUbyqeIo:true,GqchEW_nF:\"Postar\\xe1m sa o atraktivitu a funk\u010Dnos\u0165.\",height:\"100%\",id:\"XHluAuAyA\",ioEZ_Cwjt:\"t6omkvp5i\",Kmc2u1xbf:\" Post-webov\\xe1 spr\\xe1va a \\xfadr\u017Eba str\\xe1nky.\",layoutId:\"XHluAuAyA\",msezJg2QQ:\"od \u20AC350\",QFU8l7pAN:\"Platba mo\u017En\\xe1 v 3 \u010Dastiach\",style:{width:\"100%\"},U2omjG7xn:\"Viac o Slu\u017Ebe\",variant:\"Sa37TnkBO\",width:\"100%\",zdKms9Jcq:\"Tvorba nov\\xfdch webstr\\xe1nok\",zoz0b_aXz:\"N\\xe1vody na spr\\xe1vu webu a obsah.\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{y:(componentViewport?.y||0)+0+9033},qq5Dlu4rN:{y:(componentViewport?.y||0)+0+7948}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:412,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6299,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8sj2zr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mVIL4xheu:{variant:\"EB0CY54_B\"},qq5Dlu4rN:{variant:\"abQc5Spja\"}},children:/*#__PURE__*/_jsx(SectionsFooter,{height:\"100%\",id:\"lVP7JErHH\",layoutId:\"lVP7JErHH\",style:{width:\"100%\"},variant:\"OzSHv4lnz\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-c117d9ac-d2b9-4549-9f5f-f24ac4941119, rgb(242, 242, 242)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CEI0a.framer-lux5qc, .framer-CEI0a .framer-lux5qc { display: block; }\",\".framer-CEI0a.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-c117d9ac-d2b9-4549-9f5f-f24ac4941119, #f2f2f2); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-CEI0a .framer-z91rkh { flex: none; height: 32px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 84px; }\",\".framer-CEI0a .framer-1ypw34m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 84px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 24px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-CEI0a .framer-i9d5tu-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-CEI0a.framer-1jw4q1q { inset: 0px; position: fixed; user-select: none; z-index: 8; }\",\".framer-CEI0a.framer-1e1l57c { -webkit-backdrop-filter: blur(8px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(8px); background-color: rgba(255, 255, 255, 0.8); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; left: 0px; overflow: hidden; padding: 84px 24px 24px 24px; position: fixed; top: 0px; width: 100%; z-index: 8; }\",\".framer-CEI0a .framer-1ji1v0v-container, .framer-CEI0a .framer-z69a2n-container, .framer-CEI0a .framer-16wizn8-container, .framer-CEI0a .framer-od6k5h-container, .framer-CEI0a .framer-b2wk1y-container, .framer-CEI0a .framer-kqd1x3-container, .framer-CEI0a .framer-712o4e-container, .framer-CEI0a .framer-455ifa-container, .framer-CEI0a .framer-1k3ujef-container, .framer-CEI0a .framer-1bi1p4m-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-CEI0a .framer-jpm87x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-14mocnn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 24px 24px 96px 24px; position: relative; width: 1px; }\",\".framer-CEI0a .framer-63ebyq { align-content: flex-start; align-items: flex-start; background-color: var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, #1a1a1a); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 64px 64px 64px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-1hevfp7 { -webkit-filter: brightness(2); aspect-ratio: 1 / 1; cursor: grab; filter: brightness(2); flex: none; height: var(--framer-aspect-ratio-supported, 313px); overflow: visible; position: absolute; right: 163px; top: 135px; width: 313px; z-index: 3; }\",\".framer-CEI0a .framer-1qesurz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-vl98ry { flex: none; height: auto; max-width: 640px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CEI0a .framer-1s5r6v8 { flex: none; height: auto; max-width: 466px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CEI0a .framer-od6sgz-container, .framer-CEI0a .framer-smb9xa-container, .framer-CEI0a .framer-1p1u7x2-container, .framer-CEI0a .framer-75eowi-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-CEI0a .framer-16wsyre, .framer-CEI0a .framer-uoemmp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-f9oymx, .framer-CEI0a .framer-i9a4by, .framer-CEI0a .framer-110uktp, .framer-CEI0a .framer-1jlpqts { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-sf7zix, .framer-CEI0a .framer-vkffru, .framer-CEI0a .framer-1oy03ko, .framer-CEI0a .framer-9xhsv5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 720px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-1aw7oqb, .framer-CEI0a .framer-huxwe3, .framer-CEI0a .framer-i2uw75, .framer-CEI0a .framer-zkyris, .framer-CEI0a .framer-1w86js6, .framer-CEI0a .framer-alwxi1, .framer-CEI0a .framer-1mmgj2g, .framer-CEI0a .framer-ayudoh, .framer-CEI0a .framer-lyep6l, .framer-CEI0a .framer-14jtpdy, .framer-CEI0a .framer-hibh7k, .framer-CEI0a .framer-10r6vcf, .framer-CEI0a .framer-135ikna { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CEI0a .framer-c0gz73, .framer-CEI0a .framer-fjsz8p, .framer-CEI0a .framer-1do64bh { flex: none; height: auto; max-width: 560px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CEI0a .framer-se3ybe, .framer-CEI0a .framer-1qqi3vz, .framer-CEI0a .framer-1cli3xu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-1k215pa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-1mne2lg { align-content: flex-start; align-items: flex-start; background-color: var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-15ln6lx { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-10kc877 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-CEI0a .framer-1v1st4e { flex: 1 0 0px; height: auto; max-width: 420px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-CEI0a .framer-1e3ciu3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 548px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-1bh1lpy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-CEI0a .framer-1lt0bn2 { align-content: flex-start; align-items: flex-start; background-color: var(--token-c117d9ac-d2b9-4549-9f5f-f24ac4941119, #f2f2f2); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-15rx5jf { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 180px; overflow: hidden; position: relative; width: 282px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-1k06uaf, .framer-CEI0a .framer-1mau6oc, .framer-CEI0a .framer-17f0lzw, .framer-CEI0a .framer-1emodas { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-chjygk, .framer-CEI0a .framer-ie57br { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 267px; word-break: break-word; word-wrap: break-word; }\",\".framer-CEI0a .framer-1pzm4ta, .framer-CEI0a .framer-349zsd, .framer-CEI0a .framer-z6an5t { flex: none; height: 48px; overflow: hidden; position: relative; width: 100%; }\",\".framer-CEI0a .framer-knu6ru, .framer-CEI0a .framer-1vdvs4c { align-content: center; align-items: center; background-color: var(--token-c117d9ac-d2b9-4549-9f5f-f24ac4941119, #f2f2f2); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: -2px; overflow: hidden; padding: 2px; position: absolute; top: 0px; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-w7hy1x, .framer-CEI0a .framer-1b36xwj, .framer-CEI0a .framer-11yleja, .framer-CEI0a .framer-vw267w { background-color: var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, #1a1a1a); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-tkj5dm, .framer-CEI0a .framer-naw3pn, .framer-CEI0a .framer-js1vdk, .framer-CEI0a .framer-1msm1q8 { aspect-ratio: 0.6818181818181818 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 15px; }\",\".framer-CEI0a .framer-1gadotx, .framer-CEI0a .framer-ih2xeb { align-content: center; align-items: center; background-color: var(--token-c117d9ac-d2b9-4549-9f5f-f24ac4941119, #f2f2f2); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 32px; overflow: hidden; padding: 2px; position: absolute; top: 0px; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-7m8hx1 { align-content: flex-start; align-items: flex-start; background-color: var(--token-c117d9ac-d2b9-4549-9f5f-f24ac4941119, #f2f2f2); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-1v6ilwi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CEI0a .framer-d79bfa { align-content: flex-start; align-items: flex-start; background-color: var(--token-71349634-3b39-4dae-a5cd-5adff4786465, #efedff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-uvzq7w-container { bottom: 0px; flex: none; left: -2px; position: absolute; top: 0px; width: 48px; }\",\".framer-CEI0a .framer-1k2pgv3-container { bottom: 0px; flex: none; left: 32px; position: absolute; top: 0px; width: 48px; }\",\".framer-CEI0a .framer-2rxp7y-container { bottom: 0px; flex: none; left: 64px; position: absolute; top: 0px; width: 48px; }\",\".framer-CEI0a .framer-18efkjt { align-content: flex-start; align-items: flex-start; background-color: var(--token-c7296255-ae5e-4cec-8116-ad2cebcb1ccb, #e1f5fe); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 24px 24px 0px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-4os0ll { border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-tvcvv8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 33%; }\",\".framer-CEI0a .framer-sudldl { align-content: flex-start; align-items: flex-start; background-color: var(--token-c117d9ac-d2b9-4549-9f5f-f24ac4941119, #f2f2f2); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 21px 24px 21px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-1qm7ql2 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 180px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CEI0a .framer-icdf6b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 316px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-okh01b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-CEI0a .framer-axlhyz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-CEI0a .framer-182u07m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 1px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-h3m7r3 { flex: none; height: auto; max-width: 810px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CEI0a .framer-1gw8ydz { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 11px; flex: none; left: 0px; opacity: 0.4; overflow: visible; position: absolute; right: 12px; top: 0px; z-index: 1; }\",\".framer-CEI0a .framer-k98zqk { background: radial-gradient(50% 50% at 50% 50%, #a8c8ff 0%, rgba(171, 171, 171, 0) 100%); flex: none; height: 627px; left: calc(36.50000000000002% - 717px / 2); overflow: hidden; position: absolute; top: calc(52.94759825327513% - 627px / 2); width: 717px; }\",\".framer-CEI0a .framer-1jszuok { background: radial-gradient(50% 50% at 50% 50%, #e8b5ff 0%, rgba(171, 171, 171, 0) 100%); flex: none; height: 619px; left: calc(50.00000000000002% - 774px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 619px / 2); width: 774px; }\",\".framer-CEI0a .framer-iltiqg { background: radial-gradient(50% 50% at 50% 50%, #bfe3ff 0%, rgba(171, 171, 171, 0) 100%); flex: none; height: 487px; left: calc(70.66666666666669% - 713px / 2); overflow: hidden; position: absolute; top: calc(53.38427947598255% - 487px / 2); width: 713px; }\",\".framer-CEI0a .framer-j14mb9 { align-content: center; align-items: center; background-color: var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 192px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-yf4axx { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-13073g2-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-CEI0a .framer-1blgy70 { align-content: center; align-items: center; background-color: var(--token-09f22285-1280-482e-8b22-1cef593bf6a7, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 0px 192px 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-ivxj2f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-12twrjm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-xnm7ts-container { flex: none; height: 24px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-1ocbqf { align-content: center; align-items: center; aspect-ratio: 4.0625 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 98px; }\",\".framer-CEI0a .framer-1k736v6 { align-content: center; align-items: center; aspect-ratio: 4.5625 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 110px; }\",\".framer-CEI0a .framer-mnm58x { align-content: center; align-items: center; aspect-ratio: 4.15625 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100px; }\",\".framer-CEI0a .framer-1wcc4d2, .framer-CEI0a .framer-1egklvp { align-content: center; align-items: center; aspect-ratio: 4.1875 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 101px; }\",\".framer-CEI0a .framer-z65pex { align-content: center; align-items: center; aspect-ratio: 5.875 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 141px; }\",\".framer-CEI0a .framer-1bg5bqs { align-content: center; align-items: center; aspect-ratio: 3.625 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 87px; }\",\".framer-CEI0a .framer-17y7diu { align-content: center; align-items: center; aspect-ratio: 5.15625 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 124px; }\",\".framer-CEI0a .framer-1myzwh8 { align-content: center; align-items: center; aspect-ratio: 5.125 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 123px; }\",\".framer-CEI0a .framer-1sqs5w8 { align-content: center; align-items: center; aspect-ratio: 4.0625 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 98px; }\",\".framer-CEI0a .framer-1b35rsc { align-content: center; align-items: center; aspect-ratio: 4.34375 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 104px; }\",\".framer-CEI0a .framer-wvw3ea { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 192px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-CEI0a .framer-8sj2zr-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CEI0a.framer-72rtr7, .framer-CEI0a .framer-1ypw34m, .framer-CEI0a.framer-1e1l57c, .framer-CEI0a .framer-jpm87x, .framer-CEI0a .framer-14mocnn, .framer-CEI0a .framer-63ebyq, .framer-CEI0a .framer-1qesurz, .framer-CEI0a .framer-16wsyre, .framer-CEI0a .framer-f9oymx, .framer-CEI0a .framer-sf7zix, .framer-CEI0a .framer-se3ybe, .framer-CEI0a .framer-uoemmp, .framer-CEI0a .framer-1k215pa, .framer-CEI0a .framer-1mne2lg, .framer-CEI0a .framer-15ln6lx, .framer-CEI0a .framer-10kc877, .framer-CEI0a .framer-1e3ciu3, .framer-CEI0a .framer-1lt0bn2, .framer-CEI0a .framer-1k06uaf, .framer-CEI0a .framer-knu6ru, .framer-CEI0a .framer-1gadotx, .framer-CEI0a .framer-7m8hx1, .framer-CEI0a .framer-1v6ilwi, .framer-CEI0a .framer-d79bfa, .framer-CEI0a .framer-1mau6oc, .framer-CEI0a .framer-18efkjt, .framer-CEI0a .framer-17f0lzw, .framer-CEI0a .framer-tvcvv8, .framer-CEI0a .framer-sudldl, .framer-CEI0a .framer-1emodas, .framer-CEI0a .framer-1vdvs4c, .framer-CEI0a .framer-ih2xeb, .framer-CEI0a .framer-icdf6b, .framer-CEI0a .framer-i9a4by, .framer-CEI0a .framer-okh01b, .framer-CEI0a .framer-axlhyz, .framer-CEI0a .framer-182u07m, .framer-CEI0a .framer-j14mb9, .framer-CEI0a .framer-110uktp, .framer-CEI0a .framer-vkffru, .framer-CEI0a .framer-1blgy70, .framer-CEI0a .framer-ivxj2f, .framer-CEI0a .framer-12twrjm, .framer-CEI0a .framer-1oy03ko, .framer-CEI0a .framer-1qqi3vz, .framer-CEI0a .framer-1ocbqf, .framer-CEI0a .framer-1k736v6, .framer-CEI0a .framer-mnm58x, .framer-CEI0a .framer-1wcc4d2, .framer-CEI0a .framer-z65pex, .framer-CEI0a .framer-1egklvp, .framer-CEI0a .framer-1bg5bqs, .framer-CEI0a .framer-17y7diu, .framer-CEI0a .framer-1myzwh8, .framer-CEI0a .framer-1sqs5w8, .framer-CEI0a .framer-1b35rsc, .framer-CEI0a .framer-wvw3ea, .framer-CEI0a .framer-1jlpqts, .framer-CEI0a .framer-9xhsv5, .framer-CEI0a .framer-1cli3xu { gap: 0px; } .framer-CEI0a.framer-72rtr7 > *, .framer-CEI0a .framer-16wsyre > *, .framer-CEI0a .framer-uoemmp > *, .framer-CEI0a .framer-icdf6b > *, .framer-CEI0a .framer-okh01b > *, .framer-CEI0a .framer-j14mb9 > *, .framer-CEI0a .framer-1blgy70 > *, .framer-CEI0a .framer-wvw3ea > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CEI0a.framer-72rtr7 > :first-child, .framer-CEI0a .framer-14mocnn > :first-child, .framer-CEI0a .framer-63ebyq > :first-child, .framer-CEI0a .framer-1qesurz > :first-child, .framer-CEI0a .framer-16wsyre > :first-child, .framer-CEI0a .framer-f9oymx > :first-child, .framer-CEI0a .framer-sf7zix > :first-child, .framer-CEI0a .framer-uoemmp > :first-child, .framer-CEI0a .framer-1k215pa > :first-child, .framer-CEI0a .framer-1mne2lg > :first-child, .framer-CEI0a .framer-10kc877 > :first-child, .framer-CEI0a .framer-1lt0bn2 > :first-child, .framer-CEI0a .framer-1k06uaf > :first-child, .framer-CEI0a .framer-7m8hx1 > :first-child, .framer-CEI0a .framer-1v6ilwi > :first-child, .framer-CEI0a .framer-d79bfa > :first-child, .framer-CEI0a .framer-1mau6oc > :first-child, .framer-CEI0a .framer-18efkjt > :first-child, .framer-CEI0a .framer-17f0lzw > :first-child, .framer-CEI0a .framer-tvcvv8 > :first-child, .framer-CEI0a .framer-sudldl > :first-child, .framer-CEI0a .framer-1emodas > :first-child, .framer-CEI0a .framer-icdf6b > :first-child, .framer-CEI0a .framer-i9a4by > :first-child, .framer-CEI0a .framer-okh01b > :first-child, .framer-CEI0a .framer-axlhyz > :first-child, .framer-CEI0a .framer-182u07m > :first-child, .framer-CEI0a .framer-j14mb9 > :first-child, .framer-CEI0a .framer-110uktp > :first-child, .framer-CEI0a .framer-vkffru > :first-child, .framer-CEI0a .framer-1blgy70 > :first-child, .framer-CEI0a .framer-ivxj2f > :first-child, .framer-CEI0a .framer-12twrjm > :first-child, .framer-CEI0a .framer-1oy03ko > :first-child, .framer-CEI0a .framer-mnm58x > :first-child, .framer-CEI0a .framer-wvw3ea > :first-child, .framer-CEI0a .framer-1jlpqts > :first-child, .framer-CEI0a .framer-9xhsv5 > :first-child { margin-top: 0px; } .framer-CEI0a.framer-72rtr7 > :last-child, .framer-CEI0a .framer-14mocnn > :last-child, .framer-CEI0a .framer-63ebyq > :last-child, .framer-CEI0a .framer-1qesurz > :last-child, .framer-CEI0a .framer-16wsyre > :last-child, .framer-CEI0a .framer-f9oymx > :last-child, .framer-CEI0a .framer-sf7zix > :last-child, .framer-CEI0a .framer-uoemmp > :last-child, .framer-CEI0a .framer-1k215pa > :last-child, .framer-CEI0a .framer-1mne2lg > :last-child, .framer-CEI0a .framer-10kc877 > :last-child, .framer-CEI0a .framer-1lt0bn2 > :last-child, .framer-CEI0a .framer-1k06uaf > :last-child, .framer-CEI0a .framer-7m8hx1 > :last-child, .framer-CEI0a .framer-1v6ilwi > :last-child, .framer-CEI0a .framer-d79bfa > :last-child, .framer-CEI0a .framer-1mau6oc > :last-child, .framer-CEI0a .framer-18efkjt > :last-child, .framer-CEI0a .framer-17f0lzw > :last-child, .framer-CEI0a .framer-tvcvv8 > :last-child, .framer-CEI0a .framer-sudldl > :last-child, .framer-CEI0a .framer-1emodas > :last-child, .framer-CEI0a .framer-icdf6b > :last-child, .framer-CEI0a .framer-i9a4by > :last-child, .framer-CEI0a .framer-okh01b > :last-child, .framer-CEI0a .framer-axlhyz > :last-child, .framer-CEI0a .framer-182u07m > :last-child, .framer-CEI0a .framer-j14mb9 > :last-child, .framer-CEI0a .framer-110uktp > :last-child, .framer-CEI0a .framer-vkffru > :last-child, .framer-CEI0a .framer-1blgy70 > :last-child, .framer-CEI0a .framer-ivxj2f > :last-child, .framer-CEI0a .framer-12twrjm > :last-child, .framer-CEI0a .framer-1oy03ko > :last-child, .framer-CEI0a .framer-mnm58x > :last-child, .framer-CEI0a .framer-wvw3ea > :last-child, .framer-CEI0a .framer-1jlpqts > :last-child, .framer-CEI0a .framer-9xhsv5 > :last-child { margin-bottom: 0px; } .framer-CEI0a .framer-1ypw34m > *, .framer-CEI0a.framer-1e1l57c > *, .framer-CEI0a .framer-jpm87x > *, .framer-CEI0a .framer-knu6ru > *, .framer-CEI0a .framer-1gadotx > *, .framer-CEI0a .framer-1vdvs4c > *, .framer-CEI0a .framer-ih2xeb > *, .framer-CEI0a .framer-1ocbqf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-CEI0a .framer-1ypw34m > :first-child, .framer-CEI0a.framer-1e1l57c > :first-child, .framer-CEI0a .framer-jpm87x > :first-child, .framer-CEI0a .framer-se3ybe > :first-child, .framer-CEI0a .framer-15ln6lx > :first-child, .framer-CEI0a .framer-1e3ciu3 > :first-child, .framer-CEI0a .framer-knu6ru > :first-child, .framer-CEI0a .framer-1gadotx > :first-child, .framer-CEI0a .framer-1vdvs4c > :first-child, .framer-CEI0a .framer-ih2xeb > :first-child, .framer-CEI0a .framer-1qqi3vz > :first-child, .framer-CEI0a .framer-1ocbqf > :first-child, .framer-CEI0a .framer-1k736v6 > :first-child, .framer-CEI0a .framer-1wcc4d2 > :first-child, .framer-CEI0a .framer-z65pex > :first-child, .framer-CEI0a .framer-1egklvp > :first-child, .framer-CEI0a .framer-1bg5bqs > :first-child, .framer-CEI0a .framer-17y7diu > :first-child, .framer-CEI0a .framer-1myzwh8 > :first-child, .framer-CEI0a .framer-1sqs5w8 > :first-child, .framer-CEI0a .framer-1b35rsc > :first-child, .framer-CEI0a .framer-1cli3xu > :first-child { margin-left: 0px; } .framer-CEI0a .framer-1ypw34m > :last-child, .framer-CEI0a.framer-1e1l57c > :last-child, .framer-CEI0a .framer-jpm87x > :last-child, .framer-CEI0a .framer-se3ybe > :last-child, .framer-CEI0a .framer-15ln6lx > :last-child, .framer-CEI0a .framer-1e3ciu3 > :last-child, .framer-CEI0a .framer-knu6ru > :last-child, .framer-CEI0a .framer-1gadotx > :last-child, .framer-CEI0a .framer-1vdvs4c > :last-child, .framer-CEI0a .framer-ih2xeb > :last-child, .framer-CEI0a .framer-1qqi3vz > :last-child, .framer-CEI0a .framer-1ocbqf > :last-child, .framer-CEI0a .framer-1k736v6 > :last-child, .framer-CEI0a .framer-1wcc4d2 > :last-child, .framer-CEI0a .framer-z65pex > :last-child, .framer-CEI0a .framer-1egklvp > :last-child, .framer-CEI0a .framer-1bg5bqs > :last-child, .framer-CEI0a .framer-17y7diu > :last-child, .framer-CEI0a .framer-1myzwh8 > :last-child, .framer-CEI0a .framer-1sqs5w8 > :last-child, .framer-CEI0a .framer-1b35rsc > :last-child, .framer-CEI0a .framer-1cli3xu > :last-child { margin-right: 0px; } .framer-CEI0a .framer-14mocnn > *, .framer-CEI0a .framer-f9oymx > *, .framer-CEI0a .framer-1k215pa > *, .framer-CEI0a .framer-1mne2lg > *, .framer-CEI0a .framer-i9a4by > *, .framer-CEI0a .framer-110uktp > *, .framer-CEI0a .framer-12twrjm > *, .framer-CEI0a .framer-1jlpqts > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-CEI0a .framer-63ebyq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CEI0a .framer-1qesurz > *, .framer-CEI0a .framer-sf7zix > *, .framer-CEI0a .framer-1v6ilwi > *, .framer-CEI0a .framer-tvcvv8 > *, .framer-CEI0a .framer-182u07m > *, .framer-CEI0a .framer-vkffru > *, .framer-CEI0a .framer-1oy03ko > *, .framer-CEI0a .framer-9xhsv5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-CEI0a .framer-se3ybe > *, .framer-CEI0a .framer-1e3ciu3 > *, .framer-CEI0a .framer-1qqi3vz > *, .framer-CEI0a .framer-1cli3xu > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-CEI0a .framer-15ln6lx > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-CEI0a .framer-10kc877 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-CEI0a .framer-1lt0bn2 > *, .framer-CEI0a .framer-d79bfa > *, .framer-CEI0a .framer-18efkjt > *, .framer-CEI0a .framer-sudldl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-CEI0a .framer-1k06uaf > *, .framer-CEI0a .framer-7m8hx1 > *, .framer-CEI0a .framer-1mau6oc > *, .framer-CEI0a .framer-17f0lzw > *, .framer-CEI0a .framer-1emodas > *, .framer-CEI0a .framer-mnm58x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CEI0a .framer-axlhyz > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-CEI0a .framer-ivxj2f > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-CEI0a .framer-1k736v6 > *, .framer-CEI0a .framer-1wcc4d2 > *, .framer-CEI0a .framer-z65pex > *, .framer-CEI0a .framer-1egklvp > *, .framer-CEI0a .framer-1bg5bqs > *, .framer-CEI0a .framer-17y7diu > *, .framer-CEI0a .framer-1myzwh8 > *, .framer-CEI0a .framer-1sqs5w8 > *, .framer-CEI0a .framer-1b35rsc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1279px) { .framer-CEI0a.framer-72rtr7 { width: 810px; } .framer-CEI0a .framer-i9d5tu-container { flex: 1 0 0px; order: 0; width: 1px; } .framer-CEI0a .framer-14mocnn { padding: 24px 24px 80px 24px; } .framer-CEI0a .framer-1hevfp7 { height: var(--framer-aspect-ratio-supported, 203px); right: 46px; top: 150px; width: 203px; } .framer-CEI0a .framer-16wsyre, .framer-CEI0a .framer-uoemmp { padding: 80px 0px 80px 0px; } .framer-CEI0a .framer-se3ybe, .framer-CEI0a .framer-1qqi3vz, .framer-CEI0a .framer-1cli3xu { flex-direction: column; } .framer-CEI0a .framer-z69a2n-container, .framer-CEI0a .framer-16wizn8-container, .framer-CEI0a .framer-od6k5h-container, .framer-CEI0a .framer-b2wk1y-container, .framer-CEI0a .framer-kqd1x3-container, .framer-CEI0a .framer-712o4e-container, .framer-CEI0a .framer-455ifa-container, .framer-CEI0a .framer-1k3ujef-container, .framer-CEI0a .framer-1bi1p4m-container { flex: none; width: 100%; } .framer-CEI0a .framer-1e3ciu3 { flex-direction: column; height: min-content; } .framer-CEI0a .framer-1bh1lpy { flex: none; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-CEI0a .framer-1v6ilwi { flex: none; height: min-content; width: 100%; } .framer-CEI0a .framer-18efkjt { flex: none; height: min-content; } .framer-CEI0a .framer-4os0ll { flex: none; height: 0px; } .framer-CEI0a .framer-tvcvv8 { height: min-content; width: 100%; } .framer-CEI0a .framer-icdf6b, .framer-CEI0a .framer-1blgy70 { padding: 80px 0px 160px 0px; } .framer-CEI0a .framer-okh01b { padding: 60px 40px 60px 40px; } .framer-CEI0a .framer-j14mb9, .framer-CEI0a .framer-wvw3ea { padding: 160px 0px 80px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CEI0a .framer-se3ybe, .framer-CEI0a .framer-1e3ciu3, .framer-CEI0a .framer-1bh1lpy, .framer-CEI0a .framer-1qqi3vz, .framer-CEI0a .framer-1cli3xu { gap: 0px; } .framer-CEI0a .framer-se3ybe > *, .framer-CEI0a .framer-1e3ciu3 > *, .framer-CEI0a .framer-1qqi3vz > *, .framer-CEI0a .framer-1cli3xu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-CEI0a .framer-se3ybe > :first-child, .framer-CEI0a .framer-1e3ciu3 > :first-child, .framer-CEI0a .framer-1bh1lpy > :first-child, .framer-CEI0a .framer-1qqi3vz > :first-child, .framer-CEI0a .framer-1cli3xu > :first-child { margin-top: 0px; } .framer-CEI0a .framer-se3ybe > :last-child, .framer-CEI0a .framer-1e3ciu3 > :last-child, .framer-CEI0a .framer-1bh1lpy > :last-child, .framer-CEI0a .framer-1qqi3vz > :last-child, .framer-CEI0a .framer-1cli3xu > :last-child { margin-bottom: 0px; } .framer-CEI0a .framer-1bh1lpy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (max-width: 809px) { .framer-CEI0a.framer-72rtr7 { width: 390px; } .framer-CEI0a .framer-z91rkh { top: 76px; } .framer-CEI0a .framer-1ypw34m { padding: 16px; } .framer-CEI0a .framer-i9d5tu-container { flex: 1 0 0px; width: 1px; } .framer-CEI0a.framer-1e1l57c { padding: 84px 16px 24px 16px; } .framer-CEI0a .framer-14mocnn { gap: 48px; padding: 16px 16px 48px 16px; } .framer-CEI0a .framer-63ebyq { padding: 96px 32px 32px 32px; } .framer-CEI0a .framer-1hevfp7 { height: var(--framer-aspect-ratio-supported, 96px); right: 17px; top: 29px; width: 96px; } .framer-CEI0a .framer-od6sgz-container { width: 100%; } .framer-CEI0a .framer-16wsyre { gap: 64px; padding: 48px 0px 48px 0px; } .framer-CEI0a .framer-f9oymx, .framer-CEI0a .framer-i9a4by, .framer-CEI0a .framer-110uktp, .framer-CEI0a .framer-1jlpqts { gap: 48px; padding: 0px 16px 0px 16px; } .framer-CEI0a .framer-se3ybe, .framer-CEI0a .framer-1qqi3vz, .framer-CEI0a .framer-1cli3xu { flex-direction: column; } .framer-CEI0a .framer-z69a2n-container, .framer-CEI0a .framer-16wizn8-container, .framer-CEI0a .framer-od6k5h-container, .framer-CEI0a .framer-10kc877, .framer-CEI0a .framer-1v1st4e, .framer-CEI0a .framer-b2wk1y-container, .framer-CEI0a .framer-kqd1x3-container, .framer-CEI0a .framer-712o4e-container, .framer-CEI0a .framer-455ifa-container, .framer-CEI0a .framer-1k3ujef-container, .framer-CEI0a .framer-1bi1p4m-container { flex: none; width: 100%; } .framer-CEI0a .framer-uoemmp { gap: 48px; padding: 48px 0px 48px 0px; } .framer-CEI0a .framer-1k215pa { padding: 0px 16px 0px 16px; } .framer-CEI0a .framer-1mne2lg { gap: 32px; padding: 32px; } .framer-CEI0a .framer-15ln6lx { align-content: center; align-items: center; flex-direction: column; gap: 16px; } .framer-CEI0a .framer-1e3ciu3 { align-content: center; align-items: center; flex-direction: column; height: min-content; } .framer-CEI0a .framer-1bh1lpy { flex: none; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-CEI0a .framer-1v6ilwi { flex: none; height: min-content; width: 100%; } .framer-CEI0a .framer-18efkjt { flex: none; height: min-content; } .framer-CEI0a .framer-4os0ll { flex: none; height: 160px; } .framer-CEI0a .framer-tvcvv8 { height: min-content; width: 100%; } .framer-CEI0a .framer-icdf6b, .framer-CEI0a .framer-1blgy70 { gap: 64px; padding: 48px 0px 96px 0px; } .framer-CEI0a .framer-okh01b { padding: 60px 20px 60px 20px; } .framer-CEI0a .framer-j14mb9, .framer-CEI0a .framer-wvw3ea { gap: 64px; padding: 96px 0px 48px 0px; } .framer-CEI0a .framer-yf4axx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; justify-content: flex-start; } .framer-CEI0a .framer-13073g2-container { align-self: unset; height: auto; } .framer-CEI0a .framer-ivxj2f { gap: 64px; padding: 0px 16px 0px 16px; } .framer-CEI0a .framer-12twrjm { gap: 48px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CEI0a .framer-14mocnn, .framer-CEI0a .framer-16wsyre, .framer-CEI0a .framer-f9oymx, .framer-CEI0a .framer-se3ybe, .framer-CEI0a .framer-uoemmp, .framer-CEI0a .framer-1mne2lg, .framer-CEI0a .framer-15ln6lx, .framer-CEI0a .framer-1e3ciu3, .framer-CEI0a .framer-1bh1lpy, .framer-CEI0a .framer-icdf6b, .framer-CEI0a .framer-i9a4by, .framer-CEI0a .framer-j14mb9, .framer-CEI0a .framer-110uktp, .framer-CEI0a .framer-yf4axx, .framer-CEI0a .framer-1blgy70, .framer-CEI0a .framer-ivxj2f, .framer-CEI0a .framer-12twrjm, .framer-CEI0a .framer-1qqi3vz, .framer-CEI0a .framer-wvw3ea, .framer-CEI0a .framer-1jlpqts, .framer-CEI0a .framer-1cli3xu { gap: 0px; } .framer-CEI0a .framer-14mocnn > *, .framer-CEI0a .framer-f9oymx > *, .framer-CEI0a .framer-uoemmp > *, .framer-CEI0a .framer-i9a4by > *, .framer-CEI0a .framer-110uktp > *, .framer-CEI0a .framer-12twrjm > *, .framer-CEI0a .framer-1jlpqts > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-CEI0a .framer-14mocnn > :first-child, .framer-CEI0a .framer-16wsyre > :first-child, .framer-CEI0a .framer-f9oymx > :first-child, .framer-CEI0a .framer-se3ybe > :first-child, .framer-CEI0a .framer-uoemmp > :first-child, .framer-CEI0a .framer-1mne2lg > :first-child, .framer-CEI0a .framer-15ln6lx > :first-child, .framer-CEI0a .framer-1e3ciu3 > :first-child, .framer-CEI0a .framer-1bh1lpy > :first-child, .framer-CEI0a .framer-icdf6b > :first-child, .framer-CEI0a .framer-i9a4by > :first-child, .framer-CEI0a .framer-j14mb9 > :first-child, .framer-CEI0a .framer-110uktp > :first-child, .framer-CEI0a .framer-yf4axx > :first-child, .framer-CEI0a .framer-1blgy70 > :first-child, .framer-CEI0a .framer-ivxj2f > :first-child, .framer-CEI0a .framer-12twrjm > :first-child, .framer-CEI0a .framer-1qqi3vz > :first-child, .framer-CEI0a .framer-wvw3ea > :first-child, .framer-CEI0a .framer-1jlpqts > :first-child, .framer-CEI0a .framer-1cli3xu > :first-child { margin-top: 0px; } .framer-CEI0a .framer-14mocnn > :last-child, .framer-CEI0a .framer-16wsyre > :last-child, .framer-CEI0a .framer-f9oymx > :last-child, .framer-CEI0a .framer-se3ybe > :last-child, .framer-CEI0a .framer-uoemmp > :last-child, .framer-CEI0a .framer-1mne2lg > :last-child, .framer-CEI0a .framer-15ln6lx > :last-child, .framer-CEI0a .framer-1e3ciu3 > :last-child, .framer-CEI0a .framer-1bh1lpy > :last-child, .framer-CEI0a .framer-icdf6b > :last-child, .framer-CEI0a .framer-i9a4by > :last-child, .framer-CEI0a .framer-j14mb9 > :last-child, .framer-CEI0a .framer-110uktp > :last-child, .framer-CEI0a .framer-yf4axx > :last-child, .framer-CEI0a .framer-1blgy70 > :last-child, .framer-CEI0a .framer-ivxj2f > :last-child, .framer-CEI0a .framer-12twrjm > :last-child, .framer-CEI0a .framer-1qqi3vz > :last-child, .framer-CEI0a .framer-wvw3ea > :last-child, .framer-CEI0a .framer-1jlpqts > :last-child, .framer-CEI0a .framer-1cli3xu > :last-child { margin-bottom: 0px; } .framer-CEI0a .framer-16wsyre > *, .framer-CEI0a .framer-icdf6b > *, .framer-CEI0a .framer-j14mb9 > *, .framer-CEI0a .framer-1blgy70 > *, .framer-CEI0a .framer-ivxj2f > *, .framer-CEI0a .framer-wvw3ea > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-CEI0a .framer-se3ybe > *, .framer-CEI0a .framer-15ln6lx > *, .framer-CEI0a .framer-1e3ciu3 > *, .framer-CEI0a .framer-yf4axx > *, .framer-CEI0a .framer-1qqi3vz > *, .framer-CEI0a .framer-1cli3xu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-CEI0a .framer-1mne2lg > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-CEI0a .framer-1bh1lpy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6193\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mVIL4xheu\":{\"layout\":[\"fixed\",\"auto\"]},\"qq5Dlu4rN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-CEI0a\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6193,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ElementsNavigationFonts,...ElementsNavLinksFonts,...ElementsButtonFonts,...CardsCard1Fonts,...ElementsBadgeFonts,...ElementsAvatarCircleFonts,...CardsWorkCardFonts,...CardsTestimonialsCardFonts,...TickerFonts,...CardsPricingCardFonts,...SectionsFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mVIL4xheu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qq5Dlu4rN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6193\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "h", "u", "f", "l", "g", "glide", "o", "d", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "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", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "style", "className", "layoutId", "width", "height", "outerVariant", "VurELiPqN", "Z2NuoQS1k", "tc_6nmlts", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "variantProps", "se", "addVariantProps", "useAddVariantProps", "defaultLayoutId", "useRandomID", "p", "LayoutGroup", "motion", "cx", "Stack", "Image2", "css", "FramerdkRfXNUhM", "withCSS", "dkRfXNUhM_default", "addPropertyControls", "ControlType", "addFonts", "MemojiFonts", "getFonts", "dkRfXNUhM_default", "MemojiControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "avatar", "avatarBackground", "background", "height", "id", "width", "props", "_ref", "_ref1", "_humanReadableEnumMap_avatar", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "F0usfKMv0", "trm_lMoZe", "QBnwHXXyd", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "dkRfXNUhM_default", "css", "FramercfeaZYvSQ", "withCSS", "cfeaZYvSQ_default", "addPropertyControls", "ControlType", "MemojiControls", "addFonts", "MemojiFonts", "ElementsBadgeFonts", "getFonts", "RfUDaPlwf_default", "ElementsButtonFonts", "lYlPcNMOf_default", "ElementsButtonControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "badge", "badgeLabel", "buttonLabel", "buttonVariant", "height", "id", "link", "list1", "list2", "list3", "list4", "list5", "pricing", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zdKms9Jcq", "CpUbyqeIo", "AuYDQ0G3K", "as36dU6CS", "GqchEW_nF", "Kmc2u1xbf", "zoz0b_aXz", "QFU8l7pAN", "msezJg2QQ", "ioEZ_Cwjt", "U2omjG7xn", "Hbt_sQjdK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "css", "FramergJmXwhk86", "withCSS", "gJmXwhk86_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "description", "height", "icon", "id", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "c3uYh5VfY", "tzxEal8xe", "VcNysyoVK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "MotionDivWithFX", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "RichText2", "css", "FramerLZwV8Q4hm", "withCSS", "LZwV8Q4hm_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MemojiFonts", "getFonts", "dkRfXNUhM_default", "MemojiControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "avatar", "avatarBackground", "background", "height", "id", "width", "props", "_ref", "_ref1", "_humanReadableEnumMap_avatar", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "F0usfKMv0", "trm_lMoZe", "QBnwHXXyd", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "dkRfXNUhM_default", "css", "FramercfeaZYvSQ", "withCSS", "cfeaZYvSQ_default", "addPropertyControls", "ControlType", "MemojiControls", "addFonts", "MemojiFonts", "ElementsAvatarCircleFonts", "getFonts", "cfeaZYvSQ_default", "ElementsAvatarCircleControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "avatar", "avatarBackground", "background", "fullName", "height", "id", "review", "role", "width", "props", "_ref", "_humanReadableEnumMap_avatar", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "aWNQwOUgW", "XDtae_p3N", "VhWLBmEP5", "NKd2VB0Rt", "XWbdou1CX", "ajkPmSN2I", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "cfeaZYvSQ_default", "RichText2", "css", "FramerNA9kjVHnT", "withCSS", "NA9kjVHnT_default", "addPropertyControls", "ElementsAvatarCircleControls", "ControlType", "addFonts", "ElementsAvatarCircleFonts", "getFontsFromSharedStyle", "fonts", "ElementsNavigationFonts", "getFonts", "kuQZwkMm1_default", "ElementsNavigationWithVariantAppearEffect", "withVariantAppearEffect", "ElementsNavLinksFonts", "mTy1Dc98z_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ImageWithFXWithOptimizedAppearEffect", "withFX", "Image2", "MotionDivWithOptimizedAppearEffect", "motion", "ElementsButtonFonts", "lYlPcNMOf_default", "CardsCard1Fonts", "LZwV8Q4hm_default", "ElementsBadgeFonts", "RfUDaPlwf_default", "MotionDivWithFX", "ElementsAvatarCircleFonts", "cfeaZYvSQ_default", "CardsWorkCardFonts", "hhOAbU_QF_default", "ContainerWithFX", "CardsTestimonialsCardFonts", "NA9kjVHnT_default", "TickerFonts", "Ticker", "CardsPricingCardFonts", "gJmXwhk86_default", "SectionsFooterFonts", "JJmgABkgm_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation2", "inertia", "preventDefault", "e", "animation3", "animation4", "transition3", "animation5", "animation6", "animation7", "animation8", "animation9", "animation10", "animation11", "transition4", "textEffect", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "dsL5yhyYVvEXjrxcU_", "PU8bteqhKvEXjrxcU_", "tA_HdJAhAvEXjrxcU_", "LtwPhsbXHvEXjrxcU_", "BcM9GNX1kvEXjrxcU_", "u8GCKzMS9vEXjrxcU_", "idvEXjrxcU_", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "beH8dcv7J3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "l", "PropertyOverrides2", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "ElementsNavigationWithVariantAppearEffect", "AnimatePresence", "Ga", "x", "Container", "mTy1Dc98z_default", "MotionDivWithOptimizedAppearEffect", "getLoadingLazyAtYPosition", "ImageWithFXWithOptimizedAppearEffect", "RichText2", "lYlPcNMOf_default", "LZwV8Q4hm_default", "MotionDivWithFX", "RfUDaPlwf_default", "Image2", "SVG", "cfeaZYvSQ_default", "ChildrenCanSuspend", "mD0yv0kks_default", "collection", "paginationInfo", "index", "PathVariablesContext", "ContainerWithFX", "hhOAbU_QF_default", "enumToDisplayNameFunctions", "NA9kjVHnT_default", "Ticker", "gJmXwhk86_default", "JJmgABkgm_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "ElementsNavigationFonts", "ElementsNavLinksFonts", "ElementsButtonFonts", "CardsCard1Fonts", "ElementsBadgeFonts", "ElementsAvatarCircleFonts", "CardsWorkCardFonts", "CardsTestimonialsCardFonts", "TickerFonts", "CardsPricingCardFonts", "SectionsFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
