{
  "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://framerusercontent.com/modules/YpphMgZh2N18UQGkdXmQ/4EGUwPvP9EXAXhECOPmC/tjsHzDEE4.js", "ssg:https://framerusercontent.com/modules/dyMoS23SRPwBGGVlOg1W/9oBRjZih3hlw9UPxP61O/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", "// Generated by Framer (e39ee10)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"D_gceBeKR\"];const serializationHash=\"framer-bwweh\";const variantClassNames={D_gceBeKR:\"framer-v-1ddfjgt\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"D_gceBeKR\",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-1ddfjgt\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"D_gceBeKR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:88,borderBottomRightRadius:88,borderTopLeftRadius:88,borderTopRightRadius:88,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"36px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"36px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"\uD83D\uDC4B\"})})}),className:\"framer-g5qswg\",\"data-framer-name\":\"\uD83D\uDC4B\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R83eb1vuI\",style:{\"--extracted-1w3ko1f\":\" rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bwweh.framer-1ygeo6d, .framer-bwweh .framer-1ygeo6d { display: block; }\",\".framer-bwweh.framer-1ddfjgt { height: 64px; overflow: hidden; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwweh .framer-g5qswg { flex: none; height: auto; left: 45%; position: absolute; top: 48%; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertjsHzDEE4=withCSS(Component,css,\"framer-bwweh\");export default FramertjsHzDEE4;FramertjsHzDEE4.displayName=\"My Cursor\";FramertjsHzDEE4.defaultProps={height:64,width:64};addFonts(FramertjsHzDEE4,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertjsHzDEE4\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"64\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tjsHzDEE4.map", "// Generated by Framer (b2780b5)\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,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import TopNavigation from\"#framer/local/canvasComponent/CIMkaNJg7/CIMkaNJg7.js\";import Findme from\"#framer/local/canvasComponent/lwZhL1m39/lwZhL1m39.js\";import Footer from\"#framer/local/canvasComponent/mzvkyvR7D/mzvkyvR7D.js\";import Cursor from\"#framer/local/canvasComponent/O_gzAMez6/O_gzAMez6.js\";import MyCursor from\"#framer/local/canvasComponent/tjsHzDEE4/tjsHzDEE4.js\";import{Orange}from\"#framer/local/codeFile/vHbVbOw/Orange.js\";import Projects from\"#framer/local/collection/CoaB7NDtz/CoaB7NDtz.js\";import*as sharedStyle from\"#framer/local/css/BLqRyYcVs/BLqRyYcVs.js\";import*as sharedStyle1 from\"#framer/local/css/DITJOiXQ8/DITJOiXQ8.js\";import*as sharedStyle8 from\"#framer/local/css/eTRBuLpaB/eTRBuLpaB.js\";import*as sharedStyle7 from\"#framer/local/css/FttqupxVY/FttqupxVY.js\";import*as sharedStyle3 from\"#framer/local/css/oC3MQMX9Z/oC3MQMX9Z.js\";import*as sharedStyle4 from\"#framer/local/css/pEkuJmiZ_/pEkuJmiZ_.js\";import*as sharedStyle2 from\"#framer/local/css/PRR8k1uKY/PRR8k1uKY.js\";import*as sharedStyle9 from\"#framer/local/css/VW3iYbXs8/VW3iYbXs8.js\";import*as sharedStyle6 from\"#framer/local/css/Z2Zhhr6cb/Z2Zhhr6cb.js\";import*as sharedStyle5 from\"#framer/local/css/ZexBYZTOP/ZexBYZTOP.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const TopNavigationFonts=getFonts(TopNavigation);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const LottieFonts=getFonts(Lottie);const FindmeFonts=getFonts(Findme);const FooterFonts=getFonts(Footer);const MotionDivOrange=Orange(motion.div);const MyCursorFonts=getFonts(MyCursor);const CursorFonts=getFonts(Cursor);const breakpoints={Ka1ORaXUM:\"(max-width: 809px)\",wlBb2Ot_j:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-qw8qz\";const variantClassNames={Ka1ORaXUM:\"framer-v-qhrub\",wlBb2Ot_j:\"framer-v-zgwuyn\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transition:transition1};const transition2={delay:.1,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:90,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const transition3={damping:38,delay:0,mass:1.8,stiffness:340,type:\"spring\"};const animation3={opacity:.001,rotate:0,rotateX:24,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const animation4={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition4={damping:40,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation4,tokenization:\"character\",transition:transition4,trigger:\"onMount\",type:\"appear\"};const animation5={opacity:0,rotate:0,rotateX:32,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const transition5={delay:.1,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:32,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:16};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition6={delay:.1,duration:.5,ease:[.39,.01,.23,.99],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition6};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation8={opacity:0,rotate:0,rotateX:8,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:16};const transition7={delay:.1,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:.001,rotate:45,scale:1,skewX:0,skewY:0,x:0,y:0};const transition8={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const textEffect1={effect:animation9,threshold:.5,tokenization:\"word\",transition:transition8,trigger:\"onInView\",type:\"appear\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Ka1ORaXUM\",Tablet:\"wlBb2Ot_j\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const cursor={alignment:\"center\",component:MyCursor,offset:{x:12,y:20},placement:\"bottom\",transition:transition3,variant:\"D_gceBeKR\"};const cursor1={alignment:\"center\",component:Cursor,offset:{x:12,y:20},placement:\"bottom\",transition:transition3,variant:\"EP_j3SQDO\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jwNMPCjjiaNqHNtfqj,X80aeNlc8aNqHNtfqj,x8YaeawMAaNqHNtfqj,n5Y9bn8wlaNqHNtfqj,x5CcXjTpmaNqHNtfqj,EwR_RStOuaNqHNtfqj,hXWSIUSi7aNqHNtfqj,idaNqHNtfqj,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-qw8qz`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-qw8qz`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"aNqHNtfqj\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"y05ZcgnZZ\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({\"9ki1oy\":cursor,txg3wm:cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(MotionDivOrange,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oycf7m-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"XbOT3hMiA\",intensity:7,layoutId:\"XbOT3hMiA\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-142dcn6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{variant:\"jM8q8doRr\"},wlBb2Ot_j:{variant:\"S9SXQl5Vm\"}},children:/*#__PURE__*/_jsx(TopNavigation,{height:\"100%\",id:\"zSIUS9Ns4\",layoutId:\"zSIUS9Ns4\",style:{width:\"100%\"},variant:\"uS7SK3syh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lt1bh2\",\"data-framer-name\":\"Hero Section\",name:\"Hero Section\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-169m63j\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"DSuP7hyl2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(160),pixelHeight:1812,pixelWidth:1444,src:\"https://framerusercontent.com/images/fhizipQOFj2LEO9FrB7iqj3njfI.png\"}},wlBb2Ot_j:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(184),pixelHeight:1812,pixelWidth:1444,src:\"https://framerusercontent.com/images/fhizipQOFj2LEO9FrB7iqj3njfI.png\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(216),pixelHeight:1812,pixelWidth:1444,src:\"https://framerusercontent.com/images/fhizipQOFj2LEO9FrB7iqj3njfI.png\"},className:\"framer-t23275 framer-lux5qc\",\"data-border\":true,\"data-framer-appear-id\":\"t23275\",\"data-framer-cursor\":\"9ki1oy\",\"data-framer-name\":\"image 1\",initial:animation2,name:\"image 1\",optimized:true,whileHover:animation})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jd5aqo\",\"data-framer-name\":\"Frame 9\",name:\"Frame 9\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1gwkptl\",\"data-styles-preset\":\"BLqRyYcVs\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hey There! I\u2019m Beka\"})}),className:\"framer-1rs6iy7\",\"data-framer-appear-id\":\"1rs6iy7\",\"data-framer-name\":\"Hey There! I\u2019m Beka\",effect:textEffect,fonts:[\"Inter\"],initial:animation3,name:\"Hey There! I\u2019m Beka\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"180%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aff47553-a0d1-41ad-90ba-f1622e0bc929, rgb(14, 18, 27))\"},children:[\"Senior Product Designer\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"with\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),\"6 years of experience\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"based in\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),\"Tbilisi, Georgia.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"Currently working at the\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(Link,{href:\"https://bankofgeorgia.ge/en/retail/main\",nodeId:\"sfZixhPoaDNzp2N5uR\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-styles-preset-fwqrn9\",\"data-styles-preset\":\"DITJOiXQ8\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(254, 95, 10)\",\"--framer-text-decoration\":\"underline\"},children:\"Bank \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-cedde055-9d23-4b15-bf97-e5cc679cce99, rgb(254, 95, 10))\",\"--framer-text-decoration\":\"underline\"},children:\"of \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(254, 95, 10)\",\"--framer-text-decoration\":\"underline\"},children:\"Georgia\"})]})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(13, 17, 27, 0.4)\"},children:\",\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"where I craft delightful experiences\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(13, 17, 27, 0.4)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"for\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(13, 17, 27, 0.4)\"},children:\" \"}),\"millions of users.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"Take a look at my\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),\"curated projects\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"below to see my\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),\"enthusiasm for design and innovation\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"180%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aff47553-a0d1-41ad-90ba-f1622e0bc929, rgb(14, 18, 27))\"},children:[\"Senior Product Designer\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"with\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),\"6 years of experience\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"based in\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),\"Tbilisi, Georgia.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"Currently working at the\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(Link,{href:\"https://bankofgeorgia.ge/en/retail/main\",nodeId:\"sfZixhPoaDNzp2N5uR\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-styles-preset-fwqrn9\",\"data-styles-preset\":\"DITJOiXQ8\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(254, 95, 10)\",\"--framer-text-decoration\":\"underline\"},children:\"Bank \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-cedde055-9d23-4b15-bf97-e5cc679cce99, rgb(254, 95, 10))\",\"--framer-text-decoration\":\"underline\"},children:\"of \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(254, 95, 10)\",\"--framer-text-decoration\":\"underline\"},children:\"Georgia\"})]})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(13, 17, 27, 0.4)\"},children:\",\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"where I craft delightful experiences\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(13, 17, 27, 0.4)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"for\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(13, 17, 27, 0.4)\"},children:\" \"}),\"millions of users.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"Take a look at my\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),\"curated projects\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28fa1728-90c0-4b07-93b3-1444661753f9, rgba(14, 18, 27, 0.4))\"},children:\"below to see my\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(13, 17, 27)\"},children:\" \"}),\"enthusiasm for design and innovation\"]})}),className:\"framer-vz3c5h\",\"data-framer-appear-id\":\"vz3c5h\",\"data-framer-name\":\"Senior Product Designer with 6 years of experience based in Tbilisi, Georgia. Currently working at the Bank of Georgia, where I craft delightful experiences for millions of users. Take a look at my curated projects below to see my enthusiasm for design and innovation\",fonts:[\"GF;IBM Plex Sans-500\",\"GF;IBM Plex Sans-600\"],initial:animation3,name:\"Senior Product Designer with 6 years of experience based in Tbilisi, Georgia. Currently working at the Bank of Georgia, where I craft delightful experiences for millions of users. Take a look at my curated projects below to see my enthusiasm for design and innovation\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-snytb7\",\"data-framer-name\":\"Projects\",id:elementId,name:\"Projects\",ref:ref2,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"aNqHNtfqj\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"aNqHNtfqj\",name:\"jwNMPCjji\",type:\"Identifier\"},{collection:\"aNqHNtfqj\",name:\"X80aeNlc8\",type:\"Identifier\"},{collection:\"aNqHNtfqj\",name:\"x8YaeawMA\",type:\"Identifier\"},{collection:\"aNqHNtfqj\",name:\"n5Y9bn8wl\",type:\"Identifier\"},{collection:\"aNqHNtfqj\",name:\"x5CcXjTpm\",type:\"Identifier\"},{collection:\"aNqHNtfqj\",name:\"EwR_RStOu\",type:\"Identifier\"},{collection:\"aNqHNtfqj\",name:\"hXWSIUSi7\",type:\"Identifier\"},{collection:\"aNqHNtfqj\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"jwNMPCjji\":jwNMPCjjiaNqHNtfqj,\"X80aeNlc8\":X80aeNlc8aNqHNtfqj,\"x8YaeawMA\":x8YaeawMAaNqHNtfqj,\"n5Y9bn8wl\":n5Y9bn8wlaNqHNtfqj,\"x5CcXjTpm\":x5CcXjTpmaNqHNtfqj,\"EwR_RStOu\":EwR_RStOuaNqHNtfqj,\"hXWSIUSi7\":hXWSIUSi7aNqHNtfqj,\"id\":idaNqHNtfqj},i)=>{X80aeNlc8aNqHNtfqj!==null&&X80aeNlc8aNqHNtfqj!==void 0?X80aeNlc8aNqHNtfqj:X80aeNlc8aNqHNtfqj=\"\";x8YaeawMAaNqHNtfqj!==null&&x8YaeawMAaNqHNtfqj!==void 0?x8YaeawMAaNqHNtfqj:x8YaeawMAaNqHNtfqj=\"\";n5Y9bn8wlaNqHNtfqj!==null&&n5Y9bn8wlaNqHNtfqj!==void 0?n5Y9bn8wlaNqHNtfqj:n5Y9bn8wlaNqHNtfqj=\"\";x5CcXjTpmaNqHNtfqj!==null&&x5CcXjTpmaNqHNtfqj!==void 0?x5CcXjTpmaNqHNtfqj:x5CcXjTpmaNqHNtfqj=\"\";EwR_RStOuaNqHNtfqj!==null&&EwR_RStOuaNqHNtfqj!==void 0?EwR_RStOuaNqHNtfqj:EwR_RStOuaNqHNtfqj=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`aNqHNtfqj-${idaNqHNtfqj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8YaeawMA:x8YaeawMAaNqHNtfqj},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7ysitd\",\"data-framer-name\":\"Project 1\",name:\"Project 1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4rh7ds\",\"data-framer-name\":\"Project Name / Logo\",name:\"Project Name / Logo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3349.5),sizes:\"32px\",...toResponsiveImage(jwNMPCjjiaNqHNtfqj)}},wlBb2Ot_j:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3366.3),sizes:\"40px\",...toResponsiveImage(jwNMPCjjiaNqHNtfqj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3526.3),sizes:\"40px\",...toResponsiveImage(jwNMPCjjiaNqHNtfqj)},className:\"framer-1bj0u5o\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18chvkn\",\"data-styles-preset\":\"PRR8k1uKY\",style:{\"--framer-text-color\":\"var(--token-f51bf637-101a-41e7-a57a-4609bdf91314, rgb(93, 100, 116))\"},children:\"Company Name\"})}),className:\"framer-3pkm0q\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vel leo et tortor rhoncus volutpat. Sed nulla mauris, auctor at ullamcorper at, posuere sit amet urna\",fonts:[\"Inter\"],name:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vel leo et tortor rhoncus volutpat. Sed nulla mauris, auctor at ullamcorper at, posuere sit amet urna\",text:X80aeNlc8aNqHNtfqj,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hn8y3d\",\"data-framer-name\":\"Project Description\",name:\"Project Description\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l0da0l\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-105v4gx\",\"data-styles-preset\":\"oC3MQMX9Z\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8YaeawMA:x8YaeawMAaNqHNtfqj},webPageId:\"wP5BPSRAJ\"},nodeId:\"YsGpURl_y\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1fbjnee\",\"data-styles-preset\":\"pEkuJmiZ_\",children:\"Gamification Campaign\"})})})}),className:\"framer-1p2wzc2\",\"data-framer-name\":\"Gamification Campaign\",fonts:[\"Inter\"],name:\"Gamification Campaign\",text:n5Y9bn8wlaNqHNtfqj,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7yutan\",\"data-styles-preset\":\"ZexBYZTOP\",children:\"Year\"})}),className:\"framer-7iptyx\",\"data-framer-name\":\"2023-2024\",fonts:[\"Inter\"],name:\"2023-2024\",text:x5CcXjTpmaNqHNtfqj,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18chvkn\",\"data-styles-preset\":\"PRR8k1uKY\",children:\"Introduction\"})}),className:\"framer-wtr39k\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vel leo et tortor rhoncus volutpat. Sed nulla mauris, auctor at ullamcorper at, posuere sit amet urna\",fonts:[\"Inter\"],name:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vel leo et tortor rhoncus volutpat. Sed nulla mauris, auctor at ullamcorper at, posuere sit amet urna\",text:EwR_RStOuaNqHNtfqj,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k448h0\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8YaeawMA:x8YaeawMAaNqHNtfqj},webPageId:\"wP5BPSRAJ\"},nodeId:\"Xcu_lI64D\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3633.9),sizes:\"calc(100vw - 48px)\",...toResponsiveImage(hXWSIUSi7aNqHNtfqj),...{positionX:\"center\",positionY:\"center\"}}},wlBb2Ot_j:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3614.3),sizes:\"calc(100vw - 96px)\",...toResponsiveImage(hXWSIUSi7aNqHNtfqj),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3774.3),sizes:\"1000px\",...toResponsiveImage(hXWSIUSi7aNqHNtfqj),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-gb3gwz framer-lux5qc\",\"data-framer-cursor\":\"txg3wm\",\"data-framer-name\":\"Thumbnail\",name:\"Thumbnail\",whileHover:animation7})})})})]})})},idaNqHNtfqj);})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jpf02v\",\"data-framer-name\":\"Small pieces of my work\",name:\"Small pieces of my work\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-62lob1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15fuqbf\",\"data-styles-preset\":\"Z2Zhhr6cb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Completed Courses\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15fuqbf\",\"data-styles-preset\":\"Z2Zhhr6cb\",children:\"Completed Courses\"})}),className:\"framer-1bhbycn\",\"data-framer-name\":\"Where you can find me:\",fonts:[\"Inter\"],name:\"Where you can find me:\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y8q6pa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3tbe3v\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4306.799999999999),pixelHeight:59,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SJaA8uzUyDM7Yeof1GImjdkiV8.svg\"}},wlBb2Ot_j:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4327.2),pixelHeight:59,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SJaA8uzUyDM7Yeof1GImjdkiV8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4519.2),pixelHeight:59,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SJaA8uzUyDM7Yeof1GImjdkiV8.svg\"},className:\"framer-x00w3i\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kzdh09\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-105v4gx\",\"data-styles-preset\":\"oC3MQMX9Z\",children:\"Storytelling to Present UX Work\"})}),className:\"framer-alvsgo\",\"data-framer-name\":\"Gamification Campaign\",fonts:[\"Inter\"],name:\"Gamification Campaign\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-agibv4\",\"data-styles-preset\":\"FttqupxVY\",style:{\"--framer-text-color\":\"var(--token-f51bf637-101a-41e7-a57a-4609bdf91314, rgb(93, 100, 116))\"},children:\"Oct 2024\"})}),className:\"framer-1hbkbne\",\"data-framer-name\":\"Connects Brands With Digital Creators\",fonts:[\"Inter\"],name:\"Connects Brands With Digital Creators\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19wmg4e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4504.4),pixelHeight:59,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SJaA8uzUyDM7Yeof1GImjdkiV8.svg\"}},wlBb2Ot_j:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4327.2),pixelHeight:59,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SJaA8uzUyDM7Yeof1GImjdkiV8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4519.2),pixelHeight:59,pixelWidth:124,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SJaA8uzUyDM7Yeof1GImjdkiV8.svg\"},className:\"framer-g1osyu\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-duu5f9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-105v4gx\",\"data-styles-preset\":\"oC3MQMX9Z\",children:\"Persuasive and Emotional Design\"})}),className:\"framer-8hrc5n\",\"data-framer-name\":\"Gamification Campaign\",fonts:[\"Inter\"],name:\"Gamification Campaign\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-agibv4\",\"data-styles-preset\":\"FttqupxVY\",style:{\"--framer-text-color\":\"var(--token-f51bf637-101a-41e7-a57a-4609bdf91314, rgb(93, 100, 116))\"},children:\"Oct 2024\"})}),className:\"framer-gpdcho\",\"data-framer-name\":\"Connects Brands With Digital Creators\",fonts:[\"Inter\"],name:\"Connects Brands With Digital Creators\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2zzgrd\",\"data-framer-name\":\"Frame 10774\",name:\"Frame 10774\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-q9f0fp\",\"data-framer-name\":\"Frame 10772\",name:\"Frame 10772\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10str2z\",\"data-framer-name\":\"Frame 10775\",name:\"Frame 10775\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18chvkn\",\"data-styles-preset\":\"PRR8k1uKY\",style:{\"--framer-text-color\":\"var(--token-aff47553-a0d1-41ad-90ba-f1622e0bc929, rgb(14, 18, 27))\"},children:\"I had pleasure to work with\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-r2x1ni\",\"data-styles-preset\":\"eTRBuLpaB\",children:\"I had pleasure to work with\"})}),className:\"framer-ga7ryv\",\"data-framer-name\":\"I had pleasure to work with\",fonts:[\"Inter\"],name:\"I had pleasure to work with\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v110sk\",\"data-framer-name\":\"Backhand Index Pointing Down Light Skin Tone\",name:\"Backhand Index Pointing Down Light Skin Tone\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4730),src:\"https://framerusercontent.com/images/kc0xx728mAO4kETaRwDiGGabpM.png\"}},wlBb2Ot_j:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4594.3),src:\"https://framerusercontent.com/images/kc0xx728mAO4kETaRwDiGGabpM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4818.3),src:\"https://framerusercontent.com/images/kc0xx728mAO4kETaRwDiGGabpM.png\"},className:\"framer-13brwg2\",\"data-framer-name\":\"Backhand Index Pointing Down Light Skin Tone\",name:\"Backhand Index Pointing Down Light Skin Tone\"})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i72uz6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-100zqwn\",\"data-framer-name\":\"Lays\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:43,name:\"Lays\",svg:'<svg width=\"43\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M9.035 29.74c-.51 0-2.015.066-3.107.37a4.64 4.64 0 0 0-1.569.787c-.763.6-1.059 1.369-1.05 1.979.734.697 1.435.708 2.365.59 0 0 1.356-3.726 3.361-3.726Z\" fill=\"#FDAA1C\"/><path d=\"M38.649 7.985c-.931 0-1.033.299-1.533.495-2.728 1.084-3.856 2.807-6.362 2.958 3.156-.084 5.333-.539 6.296-.848.803-.257 1.292-.38 1.913-.85.392-.296.751-.77.818-1.4-.33-.253-.678-.355-1.132-.355Z\" fill=\"url(#b)\"/><path d=\"M38.797 28.817c-2.486 1.886-5.305 2.326-8.45 2.326-7.3 0-14.192-1.403-21.312-1.403-.51 0-2.015.067-3.107.37a4.643 4.643 0 0 0-1.465.71 19.539 19.539 0 0 0 16.622 9.288 19.54 19.54 0 0 0 17.712-11.291Z\" fill=\"url(#c)\"/><path d=\"M21.085 1.03A19.539 19.539 0 0 0 4.687 9.948c1.06-.486 2.61-.694 3.943-.694 7.563 0 10.899 2.184 22.123 2.184 3.157-.083 5.334-.538 6.297-.847.26-.084.487-.153.697-.225A19.538 19.538 0 0 0 21.084 1.03Z\" fill=\"url(#d)\"/><path d=\"M34.865 34.42s-2.306.832-4.61.858c-3.176.034-5.306-.555-8.035-1.311-3.143-.871-9.637-2.836-9.637-2.836l.191-.545 15.935.534 8.89-.164-2.733 3.464Z\" fill=\"url(#e)\"/><path d=\"M5.84 31.93c.47-.506 1.77-1.452 4.648-1.452 6.322 0 11.457 3.12 20.46 3.12 2.309 0 4.944-1.102 4.944-1.102l1.136-.632 1.142-1.816.671-1.264-.083-1.194-31.6.188-3.114 2.35.315.77.945 1.191.535-.159Z\" fill=\"url(#f)\"/><path d=\"M39.712 28.044c-.58.545-1.18.998-1.798 1.375-3.182 6.042-9.52 10.159-16.83 10.159-6.846 0-12.842-3.613-16.188-9.037-.194.109-.375.23-.537.357a3.157 3.157 0 0 0-.308.277c3.545 5.68 9.85 9.462 17.034 9.462 8.435 0 15.66-5.215 18.627-12.593Z\" fill=\"url(#g)\"/><path d=\"M21.085.5C13.663.5 7.178 4.538 3.706 10.534c.19-.136.406-.275.658-.421.329-.19.725-.345 1.16-.468C8.962 4.754 14.647 1.56 21.085 1.56c6.819 0 12.794 3.584 16.149 8.972a8.83 8.83 0 0 0 1.014-.363C34.728 4.374 28.356.5 21.085.5Z\" fill=\"url(#h)\"/><path d=\"M39.78 8.34c-.066.63-.425 1.104-.817 1.4-.621.47-1.11.593-1.913.85-.963.31-3.14.764-6.296.848-11.225 0-14.56-2.184-22.124-2.184-1.475 0-3.218.253-4.266.858-1.442.833-1.73 1.457-2.372 2.494C.71 14.68.062 17.551.005 20.734c-.077 4.3.706 7.547 1.679 9.59.612 1.285 1.126 2.077 1.625 2.552-.009-.61.287-1.379 1.05-1.978.43-.338.99-.626 1.569-.787 1.092-.305 2.597-.371 3.107-.371 7.12 0 14.013 1.403 21.313 1.403 3.65 0 6.862-.59 9.624-3.352.665-.666 1.295-1.533 1.932-3.837.498-1.8.9-3.93.9-6.25 0-2.31-.383-4.12-1.094-6.127-.209-.588-.814-1.826-1.083-2.237-.303-.464-.568-.785-.846-1Z\" fill=\"url(#i)\"/><mask id=\"k\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"8\" width=\"43\" height=\"25\"><path d=\"M39.78 8.34c-.066.63-.426 1.104-.817 1.4-.621.47-1.11.593-1.913.85-.963.31-3.14.764-6.296.848-11.225 0-14.56-2.184-22.124-2.184-1.475 0-3.218.253-4.266.859-1.442.832-1.73 1.456-2.372 2.493C.71 14.68.062 17.551.005 20.734c-.077 4.3.706 7.547 1.679 9.59.612 1.285 1.126 2.077 1.625 2.552-.009-.61.287-1.379 1.05-1.978.43-.338.99-.626 1.569-.787 1.092-.305 2.597-.371 3.107-.371 7.12 0 14.013 1.403 21.313 1.403 3.65 0 6.862-.59 9.624-3.352.665-.666 1.295-1.533 1.932-3.837.497-1.8.9-3.93.9-6.25 0-2.31-.383-4.12-1.094-6.127-.209-.588-.814-1.826-1.083-2.237-.303-.464-.568-.785-.847-1Z\" fill=\"#fff\"/></mask><g filter=\"url(#j)\" mask=\"url(#k)\"><path d=\"M39.522 9.12s1.52 3.975 1.52 9.951c0 8.345-3.48 9.996-4.561 11.076l6.323 3.753 4.594-14.629.45-11.286-6.695-4.152-4.037 4.647 2.406.64Z\" fill=\"url(#l)\"/></g><mask id=\"n\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"8\" width=\"43\" height=\"25\"><path d=\"M39.78 8.34c-.066.63-.426 1.104-.817 1.4-.621.47-1.11.593-1.913.85-.963.31-3.14.764-6.296.848-11.225 0-14.56-2.184-22.124-2.184-1.475 0-3.218.253-4.266.859-1.442.832-1.73 1.456-2.372 2.493C.71 14.68.062 17.551.005 20.734c-.077 4.3.706 7.547 1.679 9.59.612 1.285 1.126 2.077 1.625 2.552-.009-.61.287-1.379 1.05-1.978.43-.338.99-.626 1.569-.787 1.092-.305 2.597-.371 3.107-.371 7.12 0 14.013 1.403 21.313 1.403 3.65 0 6.862-.59 9.624-3.352.665-.666 1.295-1.533 1.932-3.837.497-1.8.9-3.93.9-6.25 0-2.31-.383-4.12-1.094-6.127-.209-.588-.814-1.826-1.083-2.237-.303-.464-.568-.785-.847-1Z\" fill=\"#fff\"/></mask><g filter=\"url(#m)\" mask=\"url(#n)\"><path d=\"M6.626 9.408S2.744 13.31 2.744 20.569c0 5.685 2.126 9.944 2.126 9.944L3.272 41.364-7.518 29.74l.317-12.314 5.556-12.772 8.271 4.754Z\" fill=\"url(#o)\"/></g><path d=\"M34.52 10.214c-.395 0-.912.24-1.051.832-.189.801.344 1.333.202 1.937-.041.177-.122.206-.138.275-.015.063.132.12.265.12.935 0 1.808-.996 1.772-2.114-.005-.175-.043-.443-.227-.66-.22-.26-.467-.39-.822-.39Zm-27.69.41s.163.692-.053 1.636l-2.95 12.873c-.724 3.161-.986 3.494-.986 3.494s1.69-.27 4.115-.27c2.915 0 4.852.348 6.26.348.673 0 1.389-.096 2.012-.47.677-.404 1.287-1.171 1.044-2.572-.554.448-1.428.642-2.321.642-1.707 0-3.353-.23-5.06-.23-.603 0-.963.017-1.543.083l3.365-14.284c.167-.708-.22-1.226-.921-1.23l-2.963-.02Zm9.07 2.737c-2.34 0-4.435 2.429-5.223 5.877-.256 1.123-.367 2.892-.058 3.799.431 1.26 1.383 1.787 2.503 1.798 1.162.012 1.906-.351 2.449-.81.547-.462.776-.93.937-1.159.234 1.366 1.089 1.959 2.209 1.97 1.161.01 1.689-.33 2.232-.788.477-.403.741-.878.905-1.128.279 1.533 1.31 1.905 2.421 1.915 1.162.012 1.912-.552 2.303-.868.407-.33.617-.696.778-.925l-.549 2.328s-1.977.634-3.379 1.276c-1.803.826-3.522 1.884-3.818 3.14-.215.914.217 2.35 3.186 2.35 1.693 0 3.202-.572 4.403-1.631 1.011-.892 2.086-2.579 2.549-4.543l2.901-12.317h-2.507c-.317 0-.654.106-.78.642l-1.357 5.76c-.264 1.12-.743 1.826-1.157 2.193-.452.4-.79.426-1.1.426-.29 0-.526-.082-.687-.316-.162-.234-.221-.732-.105-1.226l1.762-7.479h-2.486c-.318 0-.682.106-.808.642l-1.582 6.718c-.125.53-.429.95-.704 1.23-.328.335-.67.431-.938.431-.577 0-.982-.329-.696-1.542l1.762-7.479h-2.232c-.318 0-.654.106-.78.642l-.143.603s-.22-1.529-2.21-1.529Zm21.655.024c-2.597 0-3.853 1.462-4.1 2.512-.231.978-.144 1.462.07 2.08.212.62.566.938 1.078 1.573.287.356 2.26 1.883 2.047 2.79-.072.304-.128.49-.417.678-.147.095-.47.193-.758.193-1.107 0-1.628-.706-2.528-.706-1.033 0-1.453 1.226-1.453 1.226s.288.298.884.546c.746.31 1.437.545 2.538.545.776 0 1.602-.05 2.556-.523a3.392 3.392 0 0 0 1.112-.86c.427-.51.56-.847.7-1.44.261-1.111-.14-2.332-1.562-3.59-1.106-.977-1.86-1.787-1.667-2.606.136-.575.651-.816 1.053-.816.877 0 1.334.524 2.095.524 1.086 0 1.459-.824 1.582-1.347 0 0-.307-.195-.868-.39-.867-.3-1.343-.39-2.362-.39ZM16.392 15.11c.825 0 1.306.975.645 3.777-.73 3.097-1.687 3.778-2.463 3.778-.825 0-1.475-.553-.656-3.778.57-2.243 1.618-3.777 2.474-3.777Zm10.105 11.53-.102.433c-.13.55-.408 1.652-.864 2.368-.397.624-1.12 1.228-2.094 1.228-.46 0-.8-.128-1.008-.334-.207-.206-.26-.562-.204-.803.191-.81 1.145-1.409 2.267-1.98a28.372 28.372 0 0 1 2.005-.912Z\" fill=\"url(#p)\"/><path d=\"M34.227 9.906c-.395 0-.912.24-1.052.832-.188.801.345 1.333.203 1.937-.042.177-.122.206-.139.275-.014.063.132.12.265.12.936 0 1.809-.996 1.773-2.114-.006-.175-.043-.443-.227-.66-.22-.26-.467-.39-.823-.39Zm-27.691.41s.164.692-.053 1.636l-2.95 12.873c-.724 3.161-.985 3.494-.985 3.494s1.69-.27 4.115-.27c2.915 0 4.852.348 6.26.348.672 0 1.388-.096 2.012-.47.676-.404 1.286-1.171 1.043-2.572-.553.448-1.428.642-2.32.642-1.707 0-3.354-.23-5.06-.23-.603 0-.963.017-1.543.083l3.365-14.284c.167-.708-.22-1.226-.921-1.23l-2.963-.02Zm9.071 2.737c-2.34 0-4.436 2.429-5.223 5.877-.257 1.123-.368 2.892-.058 3.799.431 1.26 1.383 1.787 2.502 1.798 1.162.012 1.907-.352 2.45-.81.547-.462.776-.93.936-1.159.235 1.366 1.09 1.958 2.21 1.97 1.16.01 1.689-.33 2.232-.788.477-.403.74-.878.905-1.128.279 1.533 1.31 1.905 2.421 1.915 1.162.012 1.912-.552 2.302-.868.408-.33.618-.696.779-.925l-.549 2.328s-1.977.634-3.38 1.276c-1.803.826-3.522 1.884-3.817 3.14-.216.914.217 2.35 3.185 2.35 1.693 0 3.203-.572 4.403-1.631 1.012-.892 2.087-2.579 2.55-4.543l2.901-12.317h-2.507c-.318 0-.655.106-.78.642l-1.358 5.759c-.264 1.12-.742 1.827-1.157 2.194-.451.4-.79.426-1.1.426-.289 0-.525-.082-.687-.316-.161-.234-.22-.732-.104-1.226l1.761-7.479h-2.486c-.317 0-.681.106-.807.642l-1.583 6.718c-.125.53-.428.95-.703 1.23-.328.334-.67.431-.938.431-.577 0-.982-.329-.696-1.542l1.762-7.479H18.74c-.318 0-.655.106-.78.642l-.143.603s-.221-1.53-2.21-1.53Zm21.655.023c-2.598 0-3.854 1.463-4.101 2.513-.23.978-.143 1.462.07 2.08.213.619.567.938 1.078 1.573.287.356 2.28 1.916 2.067 2.822-.072.305-.147.458-.436.646-.147.095-.471.193-.758.193-1.108 0-1.628-.706-2.528-.706-1.033 0-1.453 1.226-1.453 1.226s.288.298.883.546c.746.31 1.438.545 2.539.545.776 0 1.601-.05 2.556-.523a3.39 3.39 0 0 0 1.111-.86c.428-.51.56-.848.7-1.44.262-1.111-.139-2.332-1.561-3.59-1.107-.977-1.86-1.787-1.667-2.606.136-.575.65-.816 1.053-.816.876 0 1.334.524 2.094.524 1.086 0 1.46-.824 1.583-1.347 0 0-.307-.195-.868-.39-.867-.3-1.343-.39-2.362-.39Zm-21.163 1.727c.824 0 1.305.974.645 3.777-.73 3.097-1.687 3.778-2.464 3.778-.824 0-1.475-.553-.655-3.778.57-2.243 1.618-3.777 2.474-3.777Zm10.105 11.53-.102.433c-.13.55-.408 1.652-.864 2.368-.398.624-1.121 1.228-2.095 1.228-.46 0-.8-.128-1.007-.334-.208-.206-.26-.562-.204-.803.19-.81 1.144-1.409 2.267-1.98a27.799 27.799 0 0 1 2.005-.912Z\" fill=\"#fff\"/><path d=\"M34.227 9.906c-.395 0-.912.24-1.052.832-.188.801.345 1.333.203 1.937-.042.177-.122.206-.139.275-.014.063.132.12.265.12.018 0 .035 0 .052-.002-.128-.005-.261-.058-.247-.118.016-.07.097-.098.138-.275.143-.604-.39-1.136-.202-1.937.135-.573.622-.815 1.012-.83l-.03-.002Zm-27.691.41s.164.693-.053 1.636l-2.95 12.873c-.724 3.161-.985 3.494-.985 3.494l.076-.01c.033-.051.302-.53.98-3.484l2.949-12.873c.216-.942.053-1.634.053-1.636h-.07Zm9.071 2.737c-2.34 0-4.436 2.43-5.223 5.878-.257 1.122-.368 2.891-.058 3.798.431 1.26 1.383 1.787 2.502 1.798h.056c-1.114-.016-2.06-.543-2.489-1.798-.31-.907-.198-2.676.058-3.799.785-3.433 2.866-5.855 5.194-5.876h-.04Zm21.655.024c-2.598 0-3.854 1.462-4.101 2.512-.23.978-.143 1.462.07 2.08.213.62.567.938 1.078 1.573.287.356 2.28 1.916 2.067 2.822-.072.305-.147.458-.436.646-.142.091-.446.184-.724.192l.035.001c.287 0 .611-.098.758-.193.29-.188.365-.34.436-.646.214-.906-1.78-2.466-2.066-2.822-.512-.635-.865-.954-1.078-1.572-.213-.619-.3-1.103-.07-2.081.246-1.046 1.494-2.5 4.071-2.512h-.04Zm-7.413.26c-.318 0-.655.107-.78.642l-1.358 5.76c-.264 1.12-.742 1.826-1.157 2.193-.428.38-.754.422-1.052.425l.022.001c.31 0 .648-.026 1.1-.426.414-.366.893-1.073 1.157-2.194l1.357-5.759c.126-.535.463-.642.78-.642h-.07Zm-11.108 0c-.318 0-.655.107-.78.642l-.108.457c.026.09.035.146.035.146l.142-.603c.126-.535.463-.642.78-.642h-.07Zm5.197 0c-.317 0-.68.107-.807.642l-1.583 6.718c-.125.53-.428.95-.703 1.231-.316.32-.644.421-.907.429l.039.001c.267 0 .61-.096.937-.43.276-.28.579-.7.704-1.231l1.583-6.718c.126-.535.49-.642.807-.642h-.07Zm12.946 1.342-.035.002c.854.013 1.31.522 2.06.522l.033-.001c-.738-.017-1.196-.522-2.058-.522Zm-20.715.124-.03.001c.8.032 1.254 1.02.605 3.776-.72 3.056-1.662 3.758-2.433 3.776l.039.002c.776 0 1.734-.68 2.464-3.777.66-2.803.179-3.778-.645-3.778Zm16.485 7.394c-1.033 0-1.453 1.226-1.453 1.226s.288.298.883.546c.746.31 1.438.545 2.539.545h.038c-1.082-.005-1.768-.238-2.507-.545-.595-.248-.883-.546-.883-.546s.409-1.193 1.413-1.224l-.03-.002Zm-16.37.361-.052.082c.254 1.306 1.095 1.877 2.191 1.888l.057-.001c-1.113-.015-1.963-.608-2.196-1.969Zm5.347.054-.052.081c.3 1.463 1.313 1.824 2.403 1.835l.042-.001c-1.1-.017-2.117-.395-2.393-1.915Zm5.501.122-.107.157-.511 2.171s-1.977.634-3.379 1.276c-1.804.826-3.523 1.884-3.818 3.14-.216.914.217 2.35 3.185 2.35h.03c-2.931-.014-3.36-1.44-3.146-2.35.296-1.256 2.015-2.314 3.819-3.14 1.402-.642 3.379-1.276 3.379-1.276l.548-2.328Zm-11.154 2.621c-.548.444-1.412.638-2.296.642h.045c.86 0 1.702-.18 2.258-.594l-.006-.048Zm-7.38.413c-.576 0-.935.016-1.472.075l-.002.007c.564-.064.924-.081 1.498-.082h-.024Zm17.675.566-.077.031-.094.401c-.13.55-.408 1.653-.864 2.368-.393.616-1.105 1.213-2.061 1.227l.036.002c.973 0 1.697-.605 2.095-1.229.455-.715.734-1.818.863-2.368l.102-.432Zm-19.54 1.715h-.037c2.896.003 4.824.348 6.226.348h.03c-1.404-.007-3.331-.348-6.22-.348Z\" fill=\"#FBF1E9\"/></g><defs><linearGradient id=\"e\" x1=\"12.511\" y1=\"32.496\" x2=\"35.892\" y2=\"32.496\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFD205\" stop-opacity=\".072\"/><stop offset=\".25\" stop-color=\"#FFD504\"/><stop offset=\".375\" stop-color=\"#FECC0B\"/><stop offset=\".5\" stop-color=\"#FFC012\"/><stop offset=\".755\" stop-color=\"#FAA41D\"/><stop offset=\"1\" stop-color=\"#F68E1D\"/></linearGradient><linearGradient id=\"f\" x1=\"5.384\" y1=\"30.593\" x2=\"38.841\" y2=\"30.593\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFA821\"/><stop offset=\".25\" stop-color=\"#FCAD1C\"/><stop offset=\".5\" stop-color=\"#FEA81F\"/><stop offset=\".696\" stop-color=\"#FBA61F\"/><stop offset=\".892\" stop-color=\"#F98A2A\"/></linearGradient><linearGradient id=\"g\" x1=\"4.044\" y1=\"33.597\" x2=\"38.942\" y2=\"33.597\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FDAB19\"/><stop offset=\".169\" stop-color=\"#F8A61B\"/><stop offset=\".339\" stop-color=\"#F6961E\"/><stop offset=\".504\" stop-color=\"#F68E1C\"/><stop offset=\".669\" stop-color=\"#F68A1E\"/><stop offset=\".835\" stop-color=\"#F68A1E\"/><stop offset=\"1\" stop-color=\"#FB8C2F\"/></linearGradient><linearGradient id=\"h\" x1=\"4.364\" y1=\"9.11\" x2=\"38.039\" y2=\"9.11\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FAC511\"/><stop offset=\".085\" stop-color=\"#FECD0F\"/><stop offset=\".169\" stop-color=\"#FBD20A\"/><stop offset=\".339\" stop-color=\"#FFD10D\"/><stop offset=\".669\" stop-color=\"#FEBE16\"/><stop offset=\"1\" stop-color=\"#FCAA29\"/></linearGradient><linearGradient id=\"i\" x1=\"0\" y1=\"20.608\" x2=\"42.804\" y2=\"20.608\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".086\" stop-color=\"#E91E24\"/><stop offset=\".224\" stop-color=\"#ED1B24\"/><stop offset=\".42\" stop-color=\"#ED1B24\"/><stop offset=\".54\" stop-color=\"#ED1B24\"/><stop offset=\".662\" stop-color=\"#ED1B24\"/><stop offset=\".77\" stop-color=\"#ED1B24\"/><stop offset=\".838\" stop-color=\"#EB1C24\"/><stop offset=\".907\" stop-color=\"#EB1C24\"/><stop offset=\".95\" stop-color=\"#D21921\"/></linearGradient><linearGradient id=\"p\" x1=\"24.493\" y1=\"10.214\" x2=\"24.493\" y2=\"32.136\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#C81417\"/><stop offset=\".25\" stop-color=\"#C8141F\"/><stop offset=\".5\" stop-color=\"#B6161B\"/><stop offset=\".75\" stop-color=\"#A50917\"/><stop offset=\"1\" stop-color=\"#870704\"/></linearGradient><radialGradient id=\"b\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"rotate(60 11.214 36.383) scale(2.80626 3.37194)\"><stop stop-color=\"#F9D331\"/><stop offset=\"1\" stop-color=\"#FE9F1C\"/></radialGradient><radialGradient id=\"c\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"matrix(0 13.9784 -33.5771 0 5.839 31.93)\"><stop stop-color=\"#FCE401\"/><stop offset=\".308\" stop-color=\"#FFE301\"/><stop offset=\".616\" stop-color=\"#FFC00F\"/><stop offset=\".78\" stop-color=\"#FDB016\"/></radialGradient><radialGradient id=\"d\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"matrix(7.2299 26.98216 -29.52515 7.9113 8.397 6.41)\"><stop stop-color=\"#FDF003\"/><stop offset=\".299\" stop-color=\"#FFEF01\"/><stop offset=\".449\" stop-color=\"#FFEC01\"/><stop offset=\".724\" stop-color=\"#FDD704\"/><stop offset=\"1\" stop-color=\"#FFC109\"/></radialGradient><radialGradient id=\"l\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"matrix(3.99015 0 0 16.698 38.814 18.41)\"><stop stop-color=\"#EC1A23\" stop-opacity=\"0\"/><stop offset=\".348\" stop-color=\"#D61A20\"/><stop offset=\".669\" stop-color=\"#C3161C\"/><stop offset=\"1\" stop-color=\"#AA181D\"/></radialGradient><radialGradient id=\"o\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"matrix(4.98605 0 0 14.374 5.088 20.608)\"><stop stop-color=\"#ED1B24\" stop-opacity=\"0\"/><stop offset=\".596\" stop-color=\"#D6191F\"/><stop offset=\"1\" stop-color=\"#AD151F\"/></radialGradient><filter id=\"j\" x=\"35.154\" y=\"2.507\" width=\"14.02\" height=\"32.719\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur stdDeviation=\".663\" result=\"effect1_foregroundBlur_153_1426\"/></filter><filter id=\"m\" x=\"-8.793\" y=\"3.379\" width=\"16.695\" height=\"39.261\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur stdDeviation=\".638\" result=\"effect1_foregroundBlur_153_1426\"/></filter><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .5)\" d=\"M0 0h42.804v40.136H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1x05hb7\",\"data-framer-name\":\"Oktoberfest\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:44,name:\"Oktoberfest\",svg:'<svg width=\"44\" height=\"44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M16.645 23.48a30.58 30.58 0 0 0 1.707-1.602c2.335 1.801 5.56 2.9 9.498 2.9.933 0 1.812-.062 2.65-.188-.178.294-.346.503-.492.629-.576.46-2.409.848-5.142.848-2.943 0-5.896-.87-8.221-2.587Zm4.43-4.566c3.09-3.592 5.98-7.446 9.75-9.97 1.026 1.874 1.592 4.147 1.592 6.598 0 2.45-.346 4.545-.807 6.22-.534.043-1.078.084-1.644.084-3.885 0-6.797-1.183-8.892-2.922m15.95-5.655c0-2.346-.492-4.556-1.403-6.462 5.917-1.204 8.902 4.2 6.096 9.154-1.163 1.969-3.415 4.094-6.87 5.173 1.34-2.283 2.178-4.933 2.178-7.865ZM18.552 4.807c.838-.67 2.618-.932 3.948-.932 3.351 0 6.043 1.613 7.77 4.158-3.947 2.482-6.964 6.378-10.116 10.022-4.2-4.357-4.179-11.185-1.602-13.248Zm1.874-2.974c-4.86 3.456-6.367 6.849-6.367 11.331 0 3.048 1.183 5.834 3.362 7.907a35.978 35.978 0 0 1-1.708 1.634c-2.188-2-3.623-4.87-3.623-8.608 0-4.378 2.126-8.379 4.503-10.526-2.136.985-5.865 3.048-6.776 4.315-1.068 1.477-2.325 4.462-2.325 8.577 0 3.477 1.393 6.797 3.865 9.3-4 2.053-6.87 1.739-8.42.43-2.388-2.011-1.613-6.42 1.99-8.41.397-.22-.545-.88-1.236-.492-3.341 1.874-4.169 7.1-1.32 9.373 1.927 1.55 5.278 1.969 9.75-.168 2.629 2.283 6.274 3.729 10.64 3.729 1.697 0 2.954-.283 7.75-4.106a19.236 19.236 0 0 0 2.095-1.948c6.064-1.665 9.101-6.273 9.97-8.179 2.65-5.729-1.037-11.143-7.352-10.002C33.192 2.377 29.6 0 25.002 0c-1.163 0-2.273.21-4.566 1.843\" fill=\"url(#b)\"/><path d=\"M11.402 32.881v5.922h-.939v-5.509l.94-.413Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.368 35.562c0 .418.141.916.362 1.165l.746-.724c-.531-.588-.509-1.663-.147-2.008.159-.152.51-.198.77-.198 1.176 0 1.854.962 1.854 2.223 0 .984-.282 1.583-.554 1.81-.17.14-.47.192-1.006.192-1.239 0-2.415-.741-2.415-2.285 0-.854.412-1.634.876-2.053-.418.192-1.148.594-1.323.843-.21.288-.453.87-.453 1.674 0 1.414 1.171 2.686 2.98 2.686.335 0 .578-.056 1.516-.803.707-.56 1.273-1.442 1.273-2.511 0-1.43-.933-2.59-2.353-2.59-.226 0-.44.04-.893.362-.95.673-1.244 1.34-1.244 2.211\" fill=\"#000\"/><path d=\"m28.244 35.228.356-.401.243-.266c.3.141.65.435.764.77l-.662.729a1.778 1.778 0 0 0-.441-.56l-.22.249v1.538c0 .52.124.74.542 1.057l-.254.17-.583.39c-.452-.362-.644-.73-.644-1.283v-1.437c0-.47 0-.701-.374-.99l.775-.633c.238.192.43.379.503.673m-12.447-.418-.385.537h-.463v1.928c0 .52.124.741.537 1.058l-.249.17-.582.39c-.453-.362-.645-.73-.645-1.284v-3.41l.939-.549v1.16m-1.504.588c0 .463-.572.933-1.03 1.232.283.408.973 1.38 1.38 1.68l-.289.192-.582.39c-.48-.384-1.165-1.498-1.487-2.064.31-.209 1.018-.61 1.018-.978 0-.277-.35-.498-1.143-.424l.017-.125.515-.565c.079-.09.141-.102.328-.102.21.006 1.261.204 1.261.758m22.225.203c-.045.159-.135.673.283 1.007l.866-.73c.712.368 1.13.99.837 1.736-.102.255-.306.453-.628.702-.362.283-.73.531-.916.531-.492 0-1.052-.226-1.374-.6l.734-.615c.289.322.736.463 1.16.452.124 0 .21-.057.243-.198.045-.175.147-.752-.464-1.137l-.893.752c-.628-.378-.883-.978-.628-1.628.102-.25.21-.39.628-.696.175-.13.695-.532.916-.532.396 0 .809.244 1.046.55l-.724.604a1.18 1.18 0 0 0-.848-.396c-.119 0-.198.057-.243.198\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.96 35.89v.995c0 .701.384 1.103 1.035 1.103.113 0 .175-.04.243-.192.079-.17.22-.504.22-.94 0-.763-.401-1.323-1.097-1.419m-.402-.113.346-.384c.243-.266.226-.306.605-.306.435 0 1.385.362 1.385 1.765 0 .582-.13 1.057-.537 1.481-.17.176-.367.334-.554.492-.198.164-.571.47-.77.47-.146 0-1.413-.328-1.413-1.691v-3.863l.938-.412v2.448Zm-3.483 3.523c-.814 0-1.815-.69-1.815-1.843 0-.645.215-1.165.52-1.46.107-.107.441-.333.786-.537.226-.135.56-.361.831-.361.792 0 1.669.565 1.669 1.764 0 .39-.147.933-.255 1.137-.113.215-.39.48-.837.837-.424.339-.628.47-.893.47m.848-.883c.147-.113.31-.56.31-.984 0-1.131-.814-1.59-1.464-1.578a.507.507 0 0 0-.237.056c-.181.114-.43.543-.43.99 0 .826.543 1.59 1.487 1.59.102 0 .249-.018.328-.074m15.394.023c.311 0 .503-.051.792-.13l-.786.865c-.051.05-.142.124-.532.124-.825 0-1.668-.593-1.668-1.877 0-.504.113-.922.203-1.097.12-.244.26-.362.73-.696.175-.124.701-.532.916-.532.452 0 1.007.64 1.188.933l-1.567 1.318-.48.402c.169.43.542.695 1.204.695m-1.074-2.448c-.164.254-.25.661-.25 1.057 0 .085 0 .164.012.249l1.148-.967c-.158-.198-.667-.735-.916-.34\" fill=\"#000\"/><path d=\"M31.026 33.696c-.119-.017-.249.034-.249.26v.899h.979l-.328.458h-.65v4.078l-.866.503V34.42c0-.317.254-.594.724-.934.379-.271.746-.497.916-.497.17 0 .424.13.656.333l-.718.606c-.164-.136-.305-.21-.47-.232\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.981 37.994c.312 0 .504-.051.792-.13l-.786.865c-.05.05-.141.124-.526.124-.825 0-1.668-.593-1.668-1.877 0-.504.119-.922.204-1.097.118-.244.26-.362.729-.696.175-.124.701-.532.916-.532.453 0 1.007.64 1.188.933l-1.572 1.318-.481.402c.17.43.543.695 1.204.695m-1.074-2.448c-.164.254-.249.661-.249 1.057 0 .085 0 .164.011.249l1.154-.967c-.158-.198-.667-.735-.916-.34Z\" fill=\"#000\"/><path d=\"M39.187 34.855H40l-.328.464h-.48v1.968c0 .492.113.752.514 1.057l-.21.142-.559.373c-.537-.424-.61-.86-.61-1.239v-3.353l.864-.538M27.437 41.09v.412l-.03.03h-1.035v.343h.846l.03.03v.383l-.03.03h-.846v.309h1.035l.03.03v.412l-.03.03h-1.494l-.035-.03v-1.98l.035-.034h1.494m-4.191 1.52v.017c-.193.34-.558.546-.953.546-.597 0-1.086-.477-1.086-1.06 0-.585.485-1.061 1.086-1.061.391 0 .752.206.945.54v.018l-.009.013-.408.184-.026-.008a.59.59 0 1 0 0 .627l.026-.009.413.18m2.206-1.485v2l-.02.022h-.452l-.021-.021v-.756h-.893v.756l-.022.021h-.446l-.022-.021v-2.001l.022-.022h.446l.022.022v.79h.893v-.79l.021-.022h.451m-4.556.017v2.001l-.021.022h-.39l-.018-.009-.958-1.194v1.181l-.021.022h-.447l-.021-.022v-2l.021-.022h.391l.017.008.954 1.198v-1.185l.021-.021h.45m8.915.021v2.001l-.021.022h-.391l-.017-.009-.954-1.194v1.181l-.021.022h-.451l-.021-.022v-2l.021-.022h.39l.018.004.957 1.198v-1.18l.022-.022h.447m-11.19.021v1.134c0 .567-.37.932-.94.932-.572 0-.937-.357-.937-.932v-1.134l.022-.021h.45l.022.021v1.1c0 .313.159.489.442.489.284 0 .451-.172.451-.49v-1.099l.022-.021h.446m-2.258.034v1.98l-.035.034h-.425l-.034-.034v-1.022l-.46.957-.025.017h-.288L14.942 43l-.46-.957v1.022l-.034.034h-.425l-.034-.034v-1.98l.034-.034h.451l.03.017.606 1.335.61-1.335.03-.017h.45\" fill=\"#000\"/><path d=\"M17.402 41.682v-.593l.04-.038h.278l.035.038v.593l-.035.034h-.279\" fill=\"#000\"/></g><defs><linearGradient id=\"b\" x1=\"11.259\" y1=\"6.337\" x2=\"32.283\" y2=\"27.361\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FBBA00\"/><stop offset=\".49\" stop-color=\"#FBBA00\"/><stop offset=\".92\" stop-color=\"#B37C00\"/><stop offset=\"1\" stop-color=\"#B37C00\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.64)\" d=\"M0 0h42.804v43.138H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s2dt08\",\"data-framer-name\":\"McDonalds\",fill:\"black\",intrinsicHeight:39,intrinsicWidth:44,name:\"McDonalds\",svg:'<svg width=\"44\" height=\"39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M31.013 3.732c3.657 0 6.624 15.365 6.624 34.342h5.337c0-20.43-5.384-36.969-11.976-36.969-3.768 0-7.095 4.956-9.293 12.74-2.197-7.784-5.525-12.74-9.26-12.74C5.851 1.105.483 17.628.483 38.058H5.82c0-18.976 2.935-34.326 6.592-34.326 3.657 0 6.624 14.193 6.624 31.7h5.305c0-17.507 2.983-31.7 6.64-31.7\" fill=\"#FC0\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.28 .928)\" d=\"M0 0h42.804v37.281H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xzqha3\",\"data-framer-name\":\"hcahealthcare\",fill:\"black\",intrinsicHeight:43,intrinsicWidth:92,name:\"hcahealthcare\",svg:'<svg width=\"92\" height=\"43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M3.365 3.064v20.544c0 .26.127.364.35.35h3.532c.345.017.392-.162.38-.38v-8.077c-.018-.326.154-.324.325-.325h9.066c.204-.001.353.07.347.348v8.018c-.001.317.174.413.42.42h3.405c.245.009.411-.084.402-.401V3.077c.02-.358-.17-.449-.439-.439h-3.435c-.3.003-.403.153-.391.391v7.878c.018.316-.143.347-.333.332h-9.1c-.223.013-.298-.1-.285-.285v-7.97c-.022-.283-.18-.314-.34-.339H3.723c-.231.015-.362.142-.357.419Zm37.657 7.143 2.93-1.598c.212-.106.22-.254.133-.422-3.42-7.6-13.902-7.197-17.79-2.304-3.927 5.179-3.003 11.097 0 14.847 4.578 5.277 14.042 5.213 17.814-2.294.12-.22.085-.425-.094-.546l-3.062-1.438c-.25-.137-.431-.082-.541.168-2.329 4.108-6.47 4.476-9.598 2.558-3.396-2.31-4.112-8.674 0-11.726 2.847-1.897 7.237-1.637 9.663 2.586.117.239.304.282.545.169Zm3.657 13.744h3.684c.203.005.315-.16.396-.382l1.586-4.298c.08-.223.244-.305.449-.317h2.8c2.052-.011 3.233-1.184 3.492-3.585.022-.224-.097-.28-.261-.28h-4.538c-.261.022-.335-.092-.28-.299l2.801-7.432c.051-.199.32-.21.392 0l6.106 16.33c.095.196.238.282.42.28h3.725c.348-.041.36-.263.271-.584L57.79 2.998c-.098-.278-.259-.378-.462-.357h-4.529c-.19.008-.347.103-.449.357l-7.933 20.297c-.152.376-.096.615.262.656Z\" fill=\"#092240\"/><path d=\"M77.35 2.595V8.5c-.072 2.527-1.95 3.633-3.647 3.648H67.79c-.162-.017-.329-.025-.287-.398.27-1.843 1.465-2.411 3.02-2.484h2.423c.848-.01 1.633-.722 1.594-1.594V4.878c.046-1.447 1.195-2.409 2.44-2.597.242-.04.35.083.372.314Zm-9.54 11.533h5.907c2.528.073 3.634 1.95 3.648 3.648v5.913c-.017.163-.025.33-.398.288-1.842-.27-2.41-1.465-2.484-3.02v-2.423c-.009-.848-.722-1.633-1.594-1.594h-2.795c-1.447-.047-2.409-1.196-2.597-2.44-.04-.242.083-.351.314-.372Zm11.487 9.57V17.79c.073-2.527 1.95-3.633 3.648-3.648h5.913c.162.017.33.025.288.398-.27 1.843-1.465 2.411-3.02 2.484h-2.423c-.848.01-1.633.722-1.594 1.594v2.795c-.047 1.447-1.196 2.409-2.44 2.597-.242.04-.351-.083-.372-.314Zm9.479-11.566h-5.907c-2.527-.072-3.633-1.95-3.647-3.647V2.57c.017-.162.025-.329.398-.287 1.842.27 2.41 1.465 2.483 3.019v2.424c.01.848.722 1.633 1.594 1.593h2.795c1.447.047 2.41 1.196 2.597 2.44.04.242-.082.352-.313.372Z\" fill=\"#E75925\"/><path d=\"M16.85 40.593h-5.499v-.664c.15-.012.364-.03.644-.055.287-.025.483-.063.589-.113a.798.798 0 0 0 .41-.336c.088-.155.131-.354.131-.597v-4.715H6.897v4.612c0 .218.035.402.103.551.075.15.218.28.43.392.106.056.292.112.56.168.274.056.489.087.644.094v.663h-5.5v-.663l.645-.056c.286-.025.482-.063.588-.112a.798.798 0 0 0 .411-.337c.087-.155.13-.354.13-.597v-9.561c0-.2-.04-.38-.12-.542a.837.837 0 0 0-.42-.392 3.35 3.35 0 0 0-.617-.215 3.436 3.436 0 0 0-.616-.112v-.663h5.5v.663a4.207 4.207 0 0 0-.645.084c-.25.05-.436.097-.56.14-.212.075-.355.2-.43.374a1.545 1.545 0 0 0-.102.57v4.108h6.227v-4.015c0-.2-.04-.38-.121-.542a.837.837 0 0 0-.42-.392 3.343 3.343 0 0 0-.617-.215 3.426 3.426 0 0 0-.616-.112v-.663h5.5v.663a4.207 4.207 0 0 0-.644.084 4.47 4.47 0 0 0-.56.14c-.212.075-.355.2-.43.374a1.544 1.544 0 0 0-.103.57v9.551c0 .218.034.402.103.551.074.15.218.28.43.392.105.056.292.112.56.168.273.056.488.087.644.094v.663Z\" fill=\"#092240\"/><path d=\"M24.69 38.48a4.724 4.724 0 0 1-1.553 1.76c-.648.436-1.394.655-2.236.655-.742 0-1.394-.131-1.955-.393a3.84 3.84 0 0 1-1.376-1.067 4.59 4.59 0 0 1-.814-1.572 6.749 6.749 0 0 1-.262-1.9c0-.598.094-1.184.281-1.758.193-.58.474-1.101.842-1.563a4.014 4.014 0 0 1 1.32-1.066 3.809 3.809 0 0 1 1.777-.412c.674 0 1.25.106 1.731.318.48.212.87.502 1.17.87.287.35.499.761.636 1.235.143.474.215.989.215 1.544v.618h-6.11c0 .605.056 1.154.169 1.646.118.493.302.927.552 1.3.243.363.561.65.954.862.393.206.86.308 1.404.308.555 0 1.032-.127 1.431-.383.405-.262.795-.73 1.17-1.404l.654.403Zm-2.067-3.517c0-.35-.031-.724-.094-1.123-.056-.4-.15-.733-.28-1.001a1.9 1.9 0 0 0-.59-.702c-.25-.18-.57-.271-.964-.271-.655 0-1.2.274-1.637.823-.43.543-.664 1.3-.702 2.274h4.267Zm11.387 5.453c-.292.106-.55.19-.775.252a2.49 2.49 0 0 1-.746.103c-.485 0-.874-.112-1.167-.336-.286-.23-.47-.563-.55-.999h-.056c-.405.448-.84.79-1.307 1.027-.46.236-1.017.354-1.67.354-.69 0-1.26-.211-1.708-.634-.441-.423-.662-.977-.662-1.661 0-.355.05-.672.15-.952.099-.28.248-.532.447-.756.155-.187.36-.352.616-.495.255-.149.494-.267.718-.354.28-.106.846-.302 1.699-.588.858-.286 1.437-.51 1.736-.672v-.924c0-.08-.02-.236-.056-.466a1.878 1.878 0 0 0-.215-.654 1.792 1.792 0 0 0-.532-.597c-.224-.174-.544-.261-.961-.261-.286 0-.554.05-.803.15-.242.092-.413.192-.513.298 0 .124.028.308.084.55.062.243.093.467.093.672 0 .218-.1.417-.298.597-.193.18-.464.271-.812.271-.311 0-.541-.109-.69-.327a1.336 1.336 0 0 1 .084-1.568c.205-.26.469-.494.793-.7a4.21 4.21 0 0 1 1.017-.438 3.9 3.9 0 0 1 1.166-.186c.523 0 .977.037 1.363.111.392.069.746.221 1.063.458.318.23.557.544.719.942.168.392.252.9.252 1.521 0 .89-.01 1.68-.028 2.37a82.81 82.81 0 0 0-.028 2.25c0 .242.04.435.121.578.087.143.218.265.392.364.093.056.24.087.439.093.205.007.413.01.625.01v.597Zm-3.257-4.927a20.36 20.36 0 0 0-1.39.457 5.66 5.66 0 0 0-1.11.56 2.504 2.504 0 0 0-.738.756c-.18.286-.27.628-.27 1.026 0 .517.133.896.4 1.139.274.242.62.364 1.037.364.441 0 .83-.106 1.166-.317a3.47 3.47 0 0 0 .85-.766l.055-3.22Zm16.667-6.974v10.537c0 .224-.043.408-.13.552a.7.7 0 0 1-.393.29 2.462 2.462 0 0 1-.393.075 34.12 34.12 0 0 0-.449.037v.617h4.527v-.617a3.674 3.674 0 0 1-.486-.065 2.085 2.085 0 0 1-.421-.14.842.842 0 0 1-.393-.319 1.018 1.018 0 0 1-.122-.523v-5.303a5.64 5.64 0 0 1 .262-.393c.112-.156.275-.312.487-.468.218-.15.464-.274.738-.374.281-.106.583-.158.908-.158.442 0 .816.177 1.122.532.311.356.467.86.467 1.515v4.742c0 .224-.043.408-.13.552a.658.658 0 0 1-.384.29 1.793 1.793 0 0 1-.43.075c-.175.012-.334.024-.477.037v.617h4.526v-.617a3.37 3.37 0 0 1-.458-.056 4.04 4.04 0 0 1-.383-.131.804.804 0 0 1-.393-.309 1.11 1.11 0 0 1-.112-.533V34.18c0-.98-.222-1.728-.664-2.245-.443-.524-1.076-.785-1.9-.785a3.526 3.526 0 0 0-1.916.523 4.26 4.26 0 0 0-.664.505c-.168.156-.355.337-.561.543h-.038v-4.206h-1.74Zm-6.648.053v2.871H39.07v.898h1.664v6.247c0 .711.156 1.263.468 1.656.318.386.863.58 1.637.58.523 0 .966-.06 1.328-.178a13.26 13.26 0 0 0 1.15-.421v-.683c-.125.044-.34.081-.646.113a9.38 9.38 0 0 1-.682.037c-.337 0-.605-.047-.804-.14a.964.964 0 0 1-.45-.412 1.855 1.855 0 0 1-.205-.673 10.558 10.558 0 0 1-.038-.973v-5.153h2.628v-.898h-2.646v-2.87h-1.702Zm19.912 12.357c-1.359 0-2.422-.451-3.19-1.352-.767-.901-1.151-2.11-1.151-3.627 0-.66.101-1.276.304-1.847.21-.578.511-1.101.904-1.57a4.15 4.15 0 0 1 1.41-1.086 4.11 4.11 0 0 1 1.846-.419c.92 0 1.67.222 2.247.666.578.438.866 1.038.866 1.8 0 .317-.076.6-.228.847-.153.241-.403.362-.752.362-.375 0-.667-.096-.876-.286-.203-.19-.305-.403-.305-.638 0-.285.038-.577.114-.876a5 5 0 0 0 .134-.666.825.825 0 0 0-.514-.39 2.405 2.405 0 0 0-.724-.105c-.304 0-.596.067-.875.2-.273.127-.54.365-.8.714-.235.317-.425.746-.571 1.285-.146.54-.22 1.184-.22 1.933 0 1.18.26 2.145.781 2.894.527.742 1.216 1.113 2.066 1.113.616 0 1.13-.149 1.542-.447.42-.298.806-.746 1.162-1.342l.609.4a4.919 4.919 0 0 1-1.656 1.78c-.686.438-1.394.657-2.123.657Zm12.914-.42c-.298.109-.562.194-.79.258-.222.07-.476.104-.762.104-.495 0-.892-.114-1.19-.342-.292-.235-.479-.575-.561-1.019h-.058a4.618 4.618 0 0 1-1.332 1.047c-.47.241-1.038.362-1.704.362-.705 0-1.285-.216-1.742-.647-.451-.432-.676-.997-.676-1.695 0-.362.05-.685.152-.971a2.32 2.32 0 0 1 .457-.771c.159-.19.368-.359.628-.505.26-.152.505-.273.733-.361a61.35 61.35 0 0 1 1.733-.6c.876-.292 1.466-.52 1.77-.686v-.942a3.67 3.67 0 0 0-.057-.476 1.917 1.917 0 0 0-.218-.666 1.829 1.829 0 0 0-.543-.61c-.229-.177-.556-.266-.98-.266-.293 0-.566.05-.82.152-.247.095-.421.197-.523.305 0 .127.029.314.086.561.063.248.095.477.095.686 0 .222-.102.425-.305.61-.196.183-.472.275-.828.275-.317 0-.552-.11-.704-.333a1.385 1.385 0 0 1-.22-.762c0-.291.102-.57.305-.837.21-.267.48-.505.81-.714a4.254 4.254 0 0 1 1.037-.448 3.98 3.98 0 0 1 1.19-.19c.533 0 .996.038 1.39.114.4.07.762.225 1.085.467.324.234.568.555.733.961.172.4.257.917.257 1.552 0 .907-.01 1.713-.028 2.418a84.813 84.813 0 0 0-.029 2.294c0 .248.041.444.124.59.089.146.222.27.4.372.095.057.244.088.447.095.21.006.422.01.638.01v.609Zm-3.323-5.026c-.539.159-1.012.314-1.418.467a5.74 5.74 0 0 0-1.133.57 2.554 2.554 0 0 0-.752.772c-.184.292-.276.641-.276 1.047 0 .527.136.914.41 1.161.279.248.63.372 1.056.372.45 0 .847-.108 1.19-.324.343-.222.632-.482.866-.78l.057-3.285ZM81.2 32.617c0 .317-.079.6-.234.85-.156.242-.395.363-.72.363-.348 0-.615-.09-.802-.27-.18-.18-.271-.38-.271-.598 0-.137.01-.261.028-.373.025-.112.047-.224.066-.337-.293 0-.635.119-1.028.355a3.036 3.036 0 0 0-.999 1.009v5.359c0 .218.04.395.122.532a.78.78 0 0 0 .401.308c.156.063.355.11.598.14.249.032.463.053.644.066v.616H74.15v-.616l.439-.038a1.7 1.7 0 0 0 .401-.074.657.657 0 0 0 .383-.29c.087-.143.13-.327.13-.55v-5.687a1.26 1.26 0 0 0-.14-.57 1.098 1.098 0 0 0-.373-.447 1.207 1.207 0 0 0-.42-.16 3.304 3.304 0 0 0-.523-.074v-.607l3.063-.205.13.13v1.299h.047c.386-.505.815-.887 1.288-1.149.473-.261.906-.392 1.298-.392s.71.127.953.383c.249.255.373.597.373 1.027Zm8.266 5.854a4.714 4.714 0 0 1-1.55 1.755c-.647.436-1.391.654-2.231.654-.741 0-1.392-.13-1.952-.392a3.83 3.83 0 0 1-1.372-1.065 4.581 4.581 0 0 1-.813-1.568 6.736 6.736 0 0 1-.261-1.896c0-.597.093-1.182.28-1.755a5.03 5.03 0 0 1 .84-1.56 4.006 4.006 0 0 1 1.317-1.064 3.798 3.798 0 0 1 1.774-.41c.672 0 1.248.105 1.727.317.48.212.869.501 1.167.868.287.349.498.76.635 1.233.143.473.215.986.215 1.54v.617h-6.097c0 .603.056 1.151.168 1.643.118.492.302.924.55 1.298.244.36.561.647.953.859.392.205.86.308 1.4.308.555 0 1.03-.128 1.43-.383.404-.261.793-.728 1.166-1.4l.654.4Zm-2.063-3.51c0-.35-.032-.723-.094-1.121a3.351 3.351 0 0 0-.28-1 1.899 1.899 0 0 0-.588-.7c-.25-.18-.57-.27-.962-.27-.653 0-1.198.274-1.634.821-.43.542-.663 1.298-.7 2.27h4.258Zm-51.455-5.807v9.892c0 .222-.043.404-.13.546a.693.693 0 0 1-.389.287 2.42 2.42 0 0 1-.397.074c-.16.012-.312.024-.454.037v.61h4.451v-.61a3.064 3.064 0 0 1-.453-.065 2.184 2.184 0 0 1-.398-.139.776.776 0 0 1-.389-.315 1.08 1.08 0 0 1-.12-.536v-9.781h-1.721Z\" fill=\"#092240\"/><path d=\"m49.033 27.178-3.414.215v.598c.175.013.402.038.683.075.287.031.486.088.598.169.156.105.281.265.375.477.1.212.15.423.15.635v1.511h1.739v-3.54l-.131-.14ZM40.775 29.6v1.258h1.702V29.6h-1.702Zm-3.238-2.426-3.433.213v.592c.179.012.416.05.712.111.296.062.5.13.611.204.154.11.278.265.37.462.099.192.148.398.148.62v8.914h1.721V27.313l-.13-.14Z\" fill=\"#092240\"/><path d=\"M76.448 12.808c.598-.44 1.136-.915 1.492-1.493.245-.311.49-.307.735 0 .374.56.817 1.066 1.435 1.435.42.303.341.565 0 .806a5.674 5.674 0 0 0-1.37 1.37c-.274.33-.548.36-.823 0-.413-.525-.841-1.039-1.442-1.443-.255-.177-.387-.378-.027-.675Z\" fill=\"#E75925\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wgitlg\",\"data-framer-name\":\"bog\",fill:\"black\",intrinsicHeight:37,intrinsicWidth:43,name:\"bog\",svg:'<svg width=\"43\" height=\"37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M29.54.657h-17.2C9.652.66 7.077 1.682 5.18 3.5c-1.9 1.817-2.967 4.281-2.968 6.85V26.8c.001 2.57 1.069 5.033 2.967 6.85 1.9 1.818 4.474 2.84 7.16 2.844h17.2c2.687-.004 5.262-1.026 7.16-2.843 1.9-1.818 2.967-4.282 2.968-6.851V10.345c-.003-2.569-1.07-5.031-2.97-6.847C34.8 1.682 32.226.66 29.54.657Zm6.801 26.142c-.002 1.727-.718 3.384-1.992 4.609a6.997 6.997 0 0 1-4.81 1.926h-17.2a7.062 7.062 0 0 1-3.747-1.078 6.622 6.622 0 0 1-2.516-2.867l.618-.502 1.237-3.407-2.412-3.91V10.333c.01-1.723.73-3.372 2.003-4.59a6.998 6.998 0 0 1 4.799-1.916h17.2a7.003 7.003 0 0 1 4.799 1.916c1.273 1.218 1.993 2.867 2.003 4.59l.018 16.466Z\" fill=\"#E6E7E8\"/><path d=\"M32.458 26.166c.4.12.818.177 1.237.171 1.855 0 2.69-.698 2.69-1.526 0-.97-1.373-.97-1.515-1.821-.18-1.065-.062-5.785 1.855-8.399l1.28.556c.248.122.524.183.803.178a1.28 1.28 0 0 0 .478-.128c.15-.074.281-.175.388-.298a27.008 27.008 0 0 0 3.35-4.412c.155-.314-2.54-3.55-4.049-4.732a6.167 6.167 0 0 0-2.587-1.153 6.306 6.306 0 0 0-2.852.113 6.114 6.114 0 0 0-2.48 1.352 5.76 5.76 0 0 0-1.553 2.29 29.431 29.431 0 0 1-8.563 3.886c-4.124 1.041-8.397.065-11.303.207-3.71.184-5.954 2.798-5.867 5.832.086 3.034 2.306 5.914 2.306 8.771.014.42-.06.838-.216 1.23a3.155 3.155 0 0 1-.695 1.056 3.32 3.32 0 0 1-1.067.717c-.402.17-.835.26-1.274.268-1.59 0-1.694-.621-2.183-.621a.436.436 0 0 0-.295.12.4.4 0 0 0-.125.282c0 .769 1.966 1.496 3.091 1.496a5.134 5.134 0 0 0 2.379-.505 4.89 4.89 0 0 0 1.838-1.53s.76 2.106 3.71 2.106c2.343 0 3.357-1.07 3.357-1.963 0-.728-.464-1.035-.791-1.461a2.337 2.337 0 0 1-.452-1.343c.422.054.848.08 1.274.077 1.7 0 2.22-.662 2.22-1.307 0-.84-1.02-.78-1.02-2.147 0-1.041.618-1.378 1.13-1.378.514 0 2.746.195 5.374.455.878.083 3.091.893 3.091 4.14v1.183c0 1.982.829 4.43 4.495 4.43 2.473 0 3.883-1.324 3.883-2.283 0-.627-.575-.905-.853-1.277a3.456 3.456 0 0 1-.42-2.656\" fill=\"#FF600A\"/><path d=\"M38.517 11.965a.443.443 0 0 0-.306.122.405.405 0 0 0-.126.292c0 .11.045.216.127.293a.443.443 0 0 0 .612 0 .405.405 0 0 0 .126-.293.405.405 0 0 0-.126-.292.443.443 0 0 0-.306-.122m1.483-1.206a.404.404 0 0 0-.218.06.378.378 0 0 0-.146.166.357.357 0 0 0 .08.408.406.406 0 0 0 .425.083.386.386 0 0 0 .177-.137.363.363 0 0 0-.046-.469.399.399 0 0 0-.272-.111m.705-1.39a.332.332 0 0 0-.178.051.311.311 0 0 0-.119.139.295.295 0 0 0 .07.335.335.335 0 0 0 .35.067.32.32 0 0 0 .145-.114.298.298 0 0 0-.04-.388.33.33 0 0 0-.228-.09m-12.372 1.934a.485.485 0 0 0 .261-.076.454.454 0 0 0 .173-.202.43.43 0 0 0-.102-.49.49.49 0 0 0-.512-.098.466.466 0 0 0-.21.167.435.435 0 0 0 .058.567.48.48 0 0 0 .332.132m1.793 10.829a.477.477 0 0 0-.297.148.439.439 0 0 0 0 .598.477.477 0 0 0 .297.147.478.478 0 0 0 .297-.147.439.439 0 0 0 0-.598.478.478 0 0 0-.297-.148m2.783.45a.483.483 0 0 0-.332.127.444.444 0 0 0-.138.316c0 .12.05.234.137.318a.481.481 0 0 0 .665 0 .44.44 0 0 0 .102-.489.444.444 0 0 0-.255-.24.482.482 0 0 0-.18-.032m-2.392-4.507a.478.478 0 0 0-.258.075.448.448 0 0 0-.17.199.426.426 0 0 0 .1.483.472.472 0 0 0 .505.096.46.46 0 0 0 .208-.163.43.43 0 0 0-.057-.56.475.475 0 0 0-.328-.13Zm1.589-3.028a.485.485 0 0 0 .263-.073.454.454 0 0 0 .176-.202.431.431 0 0 0-.1-.492.489.489 0 0 0-.515-.096.466.466 0 0 0-.211.167.436.436 0 0 0 .059.566c.087.083.205.13.328.13m-7.284-1.804a.485.485 0 0 0 .263-.073.455.455 0 0 0 .176-.2.431.431 0 0 0-.098-.493.49.49 0 0 0-.513-.1.465.465 0 0 0-.212.166.437.437 0 0 0 .056.566.48.48 0 0 0 .328.134Zm2.616 7.972a.486.486 0 0 0-.263.073.455.455 0 0 0-.176.2.431.431 0 0 0 .098.493.49.49 0 0 0 .513.1.465.465 0 0 0 .212-.166.436.436 0 0 0-.056-.566.48.48 0 0 0-.328-.134Zm-1.286-5.772a.485.485 0 0 0 .26-.076.455.455 0 0 0 .174-.202.43.43 0 0 0-.102-.49.488.488 0 0 0-.512-.097.466.466 0 0 0-.21.166.435.435 0 0 0 .058.567.481.481 0 0 0 .332.132m-2.949 2.543a.478.478 0 0 0-.258.075.448.448 0 0 0-.17.2.426.426 0 0 0 .1.483.483.483 0 0 0 .505.096.459.459 0 0 0 .208-.164.43.43 0 0 0-.058-.56.475.475 0 0 0-.328-.13Zm4.804-.479a.487.487 0 0 0 .263-.073.455.455 0 0 0 .176-.202.432.432 0 0 0-.101-.492.489.489 0 0 0-.515-.096.465.465 0 0 0-.21.167.435.435 0 0 0 .06.564c.087.083.204.13.327.132m-7.352-4.004a.48.48 0 0 0-.332.132.44.44 0 0 0-.059.567.466.466 0 0 0 .211.166.49.49 0 0 0 .512-.098.43.43 0 0 0 .102-.49.455.455 0 0 0-.173-.201.485.485 0 0 0-.26-.076Zm1.015 2.318a.486.486 0 0 0-.264.073.455.455 0 0 0-.175.2.43.43 0 0 0 .097.492.49.49 0 0 0 .513.1.467.467 0 0 0 .212-.165.435.435 0 0 0-.056-.566.48.48 0 0 0-.328-.134m3.419 3.892a.481.481 0 0 0-.332.132.44.44 0 0 0-.138.318c0 .12.05.233.138.318a.481.481 0 0 0 .665 0 .44.44 0 0 0 .137-.318.44.44 0 0 0-.137-.318.481.481 0 0 0-.333-.132Zm4.773-6.317a.479.479 0 0 0 .256-.077.447.447 0 0 0 .168-.2.427.427 0 0 0-.104-.482.483.483 0 0 0-.505-.094.46.46 0 0 0-.207.164.43.43 0 0 0-.077.246.44.44 0 0 0 .14.314c.087.083.206.13.33.13m3.456 5.53a.485.485 0 0 0-.264.073.455.455 0 0 0-.175.201.431.431 0 0 0 .1.493.489.489 0 0 0 .515.096.466.466 0 0 0 .21-.168.435.435 0 0 0-.06-.564.48.48 0 0 0-.326-.131m1.168-3.644a.485.485 0 0 0-.261.076.454.454 0 0 0-.174.203.432.432 0 0 0 .105.49.49.49 0 0 0 .514.094.466.466 0 0 0 .21-.168.436.436 0 0 0-.064-.565.48.48 0 0 0-.33-.13Zm-.296-3.673a.486.486 0 0 0-.263.073.456.456 0 0 0-.176.2.431.431 0 0 0 .098.493.49.49 0 0 0 .513.1.465.465 0 0 0 .212-.166.436.436 0 0 0-.056-.566.48.48 0 0 0-.328-.134Zm2.213.686a.486.486 0 0 0-.261.076.454.454 0 0 0-.173.202.431.431 0 0 0 .102.49.49.49 0 0 0 .512.097.466.466 0 0 0 .21-.165.436.436 0 0 0-.058-.568.481.481 0 0 0-.332-.132m-3.877-2.064a.485.485 0 0 0-.263.074.455.455 0 0 0-.176.201.432.432 0 0 0 .1.493.49.49 0 0 0 .515.096.466.466 0 0 0 .211-.168.435.435 0 0 0-.06-.564.48.48 0 0 0-.327-.132m-.921-1.686a.486.486 0 0 0-.261.076.454.454 0 0 0-.173.202.431.431 0 0 0 .102.49.49.49 0 0 0 .512.097.466.466 0 0 0 .21-.165.436.436 0 0 0-.058-.568.481.481 0 0 0-.332-.132m1.966 0a.486.486 0 0 0-.263.073.455.455 0 0 0-.175.2.431.431 0 0 0 .097.493.49.49 0 0 0 .513.1.466.466 0 0 0 .212-.166.435.435 0 0 0-.055-.566.48.48 0 0 0-.329-.134m-2.238-1.218c0-.074.023-.146.066-.207a.386.386 0 0 1 .174-.137.406.406 0 0 1 .425.08.358.358 0 0 1 .084.406.377.377 0 0 1-.143.168.402.402 0 0 1-.492-.046.364.364 0 0 1-.114-.264M32.49 5.98c0-.056.017-.111.05-.158a.294.294 0 0 1 .132-.105.31.31 0 0 1 .324.062.273.273 0 0 1 .064.31.287.287 0 0 1-.11.127.306.306 0 0 1-.374-.036.278.278 0 0 1-.087-.2m1.509-.65a.24.24 0 0 1 .044-.14.258.258 0 0 1 .117-.09.27.27 0 0 1 .284.056.239.239 0 0 1 .052.273.252.252 0 0 1-.098.11.269.269 0 0 1-.146.039.264.264 0 0 1-.181-.073.243.243 0 0 1-.072-.176M40.41 8.41c0-.044.013-.087.039-.124a.233.233 0 0 1 .105-.083.245.245 0 0 1 .256.049.215.215 0 0 1 .05.245.227.227 0 0 1-.085.1.243.243 0 0 1-.297-.027.22.22 0 0 1-.069-.16m-.333 4.466a.246.246 0 0 1 .087-.15.267.267 0 0 1 .338 0 .246.246 0 0 1 .088.15.248.248 0 0 1-.07.178.271.271 0 0 1-.178.082.278.278 0 0 1-.18-.07.256.256 0 0 1-.085-.166m.661-.888c0-.064.027-.126.074-.171a.26.26 0 0 1 .359 0 .237.237 0 0 1 .074.171.227.227 0 0 1-.063.177.245.245 0 0 1-.178.078.265.265 0 0 1-.183-.063.244.244 0 0 1-.083-.168m-1.36 1.692a.233.233 0 0 1 .065-.175.256.256 0 0 1 .176-.08.26.26 0 0 1 .18.072.237.237 0 0 1 .073.171.238.238 0 0 1-.074.172.26.26 0 0 1-.179.07.265.265 0 0 1-.183-.062.243.243 0 0 1-.083-.168m-.767.798c0-.064.027-.126.075-.171a.26.26 0 0 1 .179-.071.26.26 0 0 1 .18.07.238.238 0 0 1 .054.265.243.243 0 0 1-.137.131.264.264 0 0 1-.276-.052.245.245 0 0 1-.075-.172m2.758-3.371a.233.233 0 0 1 .065-.175.253.253 0 0 1 .176-.08.27.27 0 0 1 .148.033.253.253 0 0 1 .104.107.238.238 0 0 1-.041.275.27.27 0 0 1-.404-.022.24.24 0 0 1-.048-.138m.47-.751a.24.24 0 0 1 .074-.172.26.26 0 0 1 .359 0 .237.237 0 0 1 .074.172.234.234 0 0 1-.068.177.254.254 0 0 1-.18.077.257.257 0 0 1-.18-.063.238.238 0 0 1-.079-.168m-29.14 18.838s-1.706-2.821-.525-5.72c1.304-3.2 5.05-2.785 5.05-2.785a4.498 4.498 0 0 0-1.978-.367c-2.603.095-4.624 2.366-4.513 5.08a4.87 4.87 0 0 0 .547 2.103c.34.655.824 1.23 1.419 1.689\" fill=\"#fff\"/><path d=\"M6.367 20.27a3.862 3.862 0 0 1-.88-1.257 3.723 3.723 0 0 1-.308-1.482c.02-1.023.453-2 1.21-2.723a4.224 4.224 0 0 1 2.846-1.157c2.307-.124 6.542.538 9.238.201.933 3.986 5.07 7.86 8.316 9.623-3.852-1.644-7.544-5.376-10.771-7.097-3.37-1.775-6.752-2.053-8.526-.491-1.527 1.348-1.41 3.253-1.125 4.376m9.54 4.051c.21 1.154-1.954 1.52-1.954 1.52 1.966.332 2.702-.68 2.702-.68l-.748-.84Zm15.692.592s-1.28 1.775-.402 4.915a5.93 5.93 0 0 1-2.281 1.112s2.967.367 3.9-1.147c-1.798-1.331-1.236-4.637-1.236-4.862m5.954-18.181a1.88 1.88 0 0 0-1.54.103 1.78 1.78 0 0 0-.587.506 1.688 1.688 0 0 0-.306.699c-.047.25-.034.51.036.755.07.247.197.475.37.67a1.854 1.854 0 0 0 1.409.602c1.163.196 2.238-.384 2.412-1.3a1.833 1.833 0 0 0-.452-1.366 2 2 0 0 0-1.323-.67h-.019ZM39 8.7c.001.304-.096.6-.278.85a1.53 1.53 0 0 1-.739.541 1.605 1.605 0 0 1-.93.035c-.307-.08-.58-.25-.781-.484a1.422 1.422 0 0 1-.132-1.693 1.52 1.52 0 0 1 .698-.59c.29-.123.614-.156.925-.097.362.038.694.21.925.478.231.268.343.613.312.96\" fill=\"#fff\"/><path d=\"M37.43 8.417a.791.791 0 0 1 .15-.472.85.85 0 0 1 .407-.303.89.89 0 0 1 .515-.023c.17.043.322.136.435.265a.787.787 0 0 1 .08.937.842.842 0 0 1-.383.33c-.16.07-.34.09-.512.058a.778.778 0 0 1-.517-.26.712.712 0 0 1-.176-.532m-2.423 14.922c.71 1.265-1.57 1.733-1.57 1.733 1.582.254 2.472-.716 2.472-1.124-.34-1.366-.717-.325-.927-.592\" fill=\"#fff\"/><path d=\"M39.754 7.754a3.27 3.27 0 0 0-1.158-1.144 3.474 3.474 0 0 0-3.222-.145A3.31 3.31 0 0 0 34.11 7.5a.557.557 0 0 1-.76.071.501.501 0 0 1-.074-.727c.369-.394.82-.709 1.326-.924a4.085 4.085 0 0 1 1.604-.325 4.001 4.001 0 0 1 2.108.578c.63.383 1.13.932 1.441 1.581m-3.605 6.589a8.114 8.114 0 0 1-4.162-1.609 8.32 8.32 0 0 1-2.597-2.81.33.33 0 0 1-.035-.258.345.345 0 0 1 .165-.208.355.355 0 0 1 .489.124 9.338 9.338 0 0 0 2.473 3.01 8.549 8.549 0 0 0 3.673 1.774M34.56 17.46c-2.5-.233-4.828-1.324-6.554-3.07a10.366 10.366 0 0 1-2.027-2.756.335.335 0 0 1-.028-.261.351.351 0 0 1 .304-.247.376.376 0 0 1 .264.074.347.347 0 0 1 .09.103 11.584 11.584 0 0 0 2.405 3.442 9.751 9.751 0 0 0 5.522 2.715m-12.094-4.679a.38.38 0 0 1 .274.018c.085.04.151.11.183.195a12.396 12.396 0 0 0 3.172 4.862c2.055 1.984 4.808 3.164 7.723 3.312a12.28 12.28 0 0 1-4.544-.876 11.84 11.84 0 0 1-3.84-2.483 12.982 12.982 0 0 1-3.184-4.614.33.33 0 0 1 .013-.261.353.353 0 0 1 .203-.176m12.656-2.638c.62.378 1.337.583 2.072.591a2.604 2.604 0 0 0 1.741-.495c.496-.366.832-.896.942-1.486a2.718 2.718 0 0 1-.959 1.793 2.96 2.96 0 0 1-1.978.691 4.057 4.057 0 0 1-2.14-.497.352.352 0 0 1-.182-.198.324.324 0 0 1 .022-.263.338.338 0 0 1 .205-.179.367.367 0 0 1 .277.02\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.196 .65)\" d=\"M0 0h42.804v35.836H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5yzlvc\",\"data-framer-name\":\"Small pieces of my work\",name:\"Small pieces of my work\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xphzp7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15fuqbf\",\"data-styles-preset\":\"Z2Zhhr6cb\",style:{\"--framer-text-alignment\":\"center\"},children:\"Small pieces of my work\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15fuqbf\",\"data-styles-preset\":\"Z2Zhhr6cb\",children:\"Small pieces of my work\"})}),className:\"framer-i7fz03\",\"data-framer-name\":\"Where you can find me:\",fonts:[\"Inter\"],name:\"Where you can find me:\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hd5mln-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:12,overflow:false},gap:24,height:\"100%\",hoverFactor:.5,id:\"YDE3G5YAR\",layoutId:\"YDE3G5YAR\",padding:32,paddingBottom:32,paddingLeft:32,paddingPerSide:false,paddingRight:32,paddingTop:32,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-frp3co\",\"data-framer-name\":\"Eurocredit\",name:\"Eurocredit\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19kn67g\",\"data-framer-name\":\"Frame 27\",name:\"Frame 27\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:548,pixelWidth:680,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/JMCnjTnaqWZar4c9rHbP3i0mTc.png\"},className:\"framer-1j9ug0i\",\"data-framer-name\":\"McHome 1\",name:\"McHome 1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9tgphv\",\"data-framer-name\":\"Frame 10767\",name:\"Frame 10767\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rjo8y1\",\"data-framer-name\":\"Frame 10802\",name:\"Frame 10802\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9bsqo\",\"data-styles-preset\":\"VW3iYbXs8\",style:{\"--framer-text-color\":\"var(--token-bda613ff-1315-47ce-925c-9dc27add0595, rgb(38, 43, 53))\"},children:\"Eurocredit\"})}),className:\"framer-hsnbal\",\"data-framer-name\":\"Storeal\",fonts:[\"Inter\"],name:\"Storeal\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-agibv4\",\"data-styles-preset\":\"FttqupxVY\",style:{\"--framer-text-color\":\"var(--token-f51bf637-101a-41e7-a57a-4609bdf91314, rgb(93, 100, 116))\"},children:\"Take Loans\"})}),className:\"framer-ry7k9c\",\"data-framer-name\":\"Connects Brands With Digital Creators\",fonts:[\"Inter\"],name:\"Connects Brands With Digital Creators\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j143q5\",\"data-framer-name\":\"Cyngular\",name:\"Cyngular\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4oohuu\",\"data-framer-name\":\"Frame 27\",name:\"Frame 27\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:426,pixelWidth:680,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/cQJj59O720CoKo5gJME5evgnzXo.png\"},className:\"framer-1qrxbjk\",\"data-framer-name\":\"McHome 1\",name:\"McHome 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ciur7k\",\"data-framer-name\":\"Frame 10767\",name:\"Frame 10767\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-23lwxf\",\"data-framer-name\":\"Frame 10802\",name:\"Frame 10802\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9bsqo\",\"data-styles-preset\":\"VW3iYbXs8\",style:{\"--framer-text-color\":\"var(--token-bda613ff-1315-47ce-925c-9dc27add0595, rgb(38, 43, 53))\"},children:\"Cyngular\"})}),className:\"framer-v3sj6y\",\"data-framer-name\":\"Storeal\",fonts:[\"Inter\"],name:\"Storeal\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-agibv4\",\"data-styles-preset\":\"FttqupxVY\",style:{\"--framer-text-color\":\"var(--token-f51bf637-101a-41e7-a57a-4609bdf91314, rgb(93, 100, 116))\"},children:\"Cyber Security\"})}),className:\"framer-k6amb0\",\"data-framer-name\":\"Connects Brands With Digital Creators\",fonts:[\"Inter\"],name:\"Connects Brands With Digital Creators\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xv0d2q\",\"data-framer-name\":\"Onway\",name:\"Onway\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1932wmc\",\"data-framer-name\":\"Frame 27\",name:\"Frame 27\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:554,pixelWidth:688,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/vzEng6vtG0tuY0nZZ0EDvVKWQk.png\"},className:\"framer-ney9ly\",\"data-framer-name\":\"McHome 1\",name:\"McHome 1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wuq43s\",\"data-framer-name\":\"Frame 10767\",name:\"Frame 10767\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fxpqiv\",\"data-framer-name\":\"Frame 10802\",name:\"Frame 10802\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9bsqo\",\"data-styles-preset\":\"VW3iYbXs8\",style:{\"--framer-text-color\":\"var(--token-bda613ff-1315-47ce-925c-9dc27add0595, rgb(38, 43, 53))\"},children:\"Onway\"})}),className:\"framer-16cz7q3\",\"data-framer-name\":\"Storeal\",fonts:[\"Inter\"],name:\"Storeal\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-agibv4\",\"data-styles-preset\":\"FttqupxVY\",style:{\"--framer-text-color\":\"var(--token-f51bf637-101a-41e7-a57a-4609bdf91314, rgb(93, 100, 116))\"},children:\"Parcel Management\"})}),className:\"framer-1khyve8\",\"data-framer-name\":\"Connects Brands With Digital Creators\",fonts:[\"Inter\"],name:\"Connects Brands With Digital Creators\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5xllir\",\"data-framer-name\":\"McDonalds\",name:\"McDonalds\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11s6to6\",\"data-framer-name\":\"Frame 27\",name:\"Frame 27\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/KMsVONhZhLAYDlXq2IagcO9IzU.png\"},className:\"framer-1fog0m5\",\"data-framer-name\":\"McHome 1\",name:\"McHome 1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-usdf56\",\"data-framer-name\":\"Frame 10767\",name:\"Frame 10767\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wtqou2\",\"data-framer-name\":\"Frame 10802\",name:\"Frame 10802\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9bsqo\",\"data-styles-preset\":\"VW3iYbXs8\",style:{\"--framer-text-color\":\"var(--token-bda613ff-1315-47ce-925c-9dc27add0595, rgb(38, 43, 53))\"},children:\"McDonald's\"})}),className:\"framer-yjt91\",\"data-framer-name\":\"Storeal\",fonts:[\"Inter\"],name:\"Storeal\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-agibv4\",\"data-styles-preset\":\"FttqupxVY\",style:{\"--framer-text-color\":\"var(--token-f51bf637-101a-41e7-a57a-4609bdf91314, rgb(93, 100, 116))\"},children:\"Fast Food Restaurant\"})}),className:\"framer-1tsz5q0\",\"data-framer-name\":\"Connects Brands With Digital Creators\",fonts:[\"Inter\"],name:\"Connects Brands With Digital Creators\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eegbqc\",\"data-framer-name\":\"Coinflip\",name:\"Coinflip\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hlgss6\",\"data-framer-name\":\"Frame 27\",name:\"Frame 27\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:426,pixelWidth:680,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/mrJq3w00YIDTTwaVp2VeK37wM.png\"},className:\"framer-zc5ovd\",\"data-framer-name\":\"McHome 1\",name:\"McHome 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xjnsma\",\"data-framer-name\":\"Frame 10767\",name:\"Frame 10767\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1taj2sg\",\"data-framer-name\":\"Frame 10802\",name:\"Frame 10802\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9bsqo\",\"data-styles-preset\":\"VW3iYbXs8\",style:{\"--framer-text-color\":\"var(--token-bda613ff-1315-47ce-925c-9dc27add0595, rgb(38, 43, 53))\"},children:\"Coinflip\"})}),className:\"framer-606fcj\",\"data-framer-name\":\"Storeal\",fonts:[\"Inter\"],name:\"Storeal\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-agibv4\",\"data-styles-preset\":\"FttqupxVY\",style:{\"--framer-text-color\":\"var(--token-f51bf637-101a-41e7-a57a-4609bdf91314, rgb(93, 100, 116))\"},children:\"Crypto Coinflip Game\"})}),className:\"framer-1bkc31c\",\"data-framer-name\":\"Connects Brands With Digital Creators\",fonts:[\"Inter\"],name:\"Connects Brands With Digital Creators\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t0yjs2\",\"data-framer-name\":\"Storeal\",name:\"Storeal\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6pvob3\",\"data-framer-name\":\"Frame 27\",name:\"Frame 27\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:548,pixelWidth:680,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/JMnOF0nOVwz5cZTLg8WMofd5u4.png\"},className:\"framer-15kzir\",\"data-framer-name\":\"McHome 1\",name:\"McHome 1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1674df9\",\"data-framer-name\":\"Frame 10767\",name:\"Frame 10767\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lxj59p\",\"data-framer-name\":\"Frame 10802\",name:\"Frame 10802\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e9bsqo\",\"data-styles-preset\":\"VW3iYbXs8\",style:{\"--framer-text-color\":\"var(--token-bda613ff-1315-47ce-925c-9dc27add0595, rgb(38, 43, 53))\"},children:\"Storeal\"})}),className:\"framer-1iga3yi\",\"data-framer-name\":\"Storeal\",fonts:[\"Inter\"],name:\"Storeal\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-agibv4\",\"data-styles-preset\":\"FttqupxVY\",style:{\"--framer-text-color\":\"var(--token-f51bf637-101a-41e7-a57a-4609bdf91314, rgb(93, 100, 116))\"},children:\"Connects Brands With Digital Creators\"})}),className:\"framer-vrlvcx\",\"data-framer-name\":\"Connects Brands With Digital Creators\",fonts:[\"Inter\"],name:\"Connects Brands With Digital Creators\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ihwj7j\",\"data-framer-name\":\"Contact\",id:elementId1,name:\"Contact\",ref:ref3,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ec9rv3\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mgfh79-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"mMsCtE9S_\",isForwardsDirection:true,layoutId:\"mMsCtE9S_\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1.5,srcFile:\"https://framerusercontent.com/assets/PQqhJv99YJQ6qGs0oTua0whJEwQ.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15fuqbf\",\"data-styles-preset\":\"Z2Zhhr6cb\",children:\"Where you can find me:\"})}),className:\"framer-1sdr22y\",\"data-framer-name\":\"What Leadership Has to Say about my work\",effect:textEffect1,fonts:[\"Inter\"],name:\"What Leadership Has to Say about my work\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r26fw\",\"data-framer-name\":\"Frame 10751\",name:\"Frame 10751\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{width:\"calc(100vw - 48px)\",y:5508.799999999999},wlBb2Ot_j:{width:\"max((100vw - 112px) / 2, 1px)\",y:5428.599999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:\"488px\",y:5716.599999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-utqh19-container\",children:/*#__PURE__*/_jsx(Findme,{a_U3T9gQz:\"mailto:beqqagiorgadze21@gmail.com\",height:\"100%\",id:\"oGI2W1tHt\",layoutId:\"oGI2W1tHt\",style:{width:\"100%\"},variant:\"mnRzNExFB\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{width:\"calc(100vw - 48px)\",y:5621.799999999999},wlBb2Ot_j:{width:\"max((100vw - 112px) / 2, 1px)\",y:5428.599999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:\"488px\",y:5716.599999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r2n34r-container\",children:/*#__PURE__*/_jsx(Findme,{a_U3T9gQz:\"https://www.linkedin.com/in/beqagiorgadze/\",height:\"100%\",id:\"SWSQhVVtA\",layoutId:\"SWSQhVVtA\",style:{width:\"100%\"},variant:\"RFNijpvU4\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{y:5774.799999999999},wlBb2Ot_j:{y:5621.599999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"100vw\",y:5941.599999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hb4obw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ka1ORaXUM:{variant:\"i6t7h3Xp3\"},wlBb2Ot_j:{variant:\"Np9pnIsl5\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"rce5GjZ8F\",layoutId:\"rce5GjZ8F\",style:{width:\"100%\"},variant:\"BdUBIYemk\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-qw8qz { background: var(--token-e5b4ae03-fdaa-4959-8592-abbcb82706c6, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; }`,\".framer-qw8qz.framer-lux5qc, .framer-qw8qz .framer-lux5qc { display: block; }\",\".framer-qw8qz.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-e5b4ae03-fdaa-4959-8592-abbcb82706c6, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 136px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-qw8qz .framer-1oycf7m-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-qw8qz .framer-142dcn6-container, .framer-qw8qz .framer-1hb4obw-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-qw8qz .framer-lt1bh2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 112px 0px 112px; position: relative; width: 100%; }\",\".framer-qw8qz .framer-169m63j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-qw8qz .framer-t23275 { --border-bottom-width: 3px; --border-color: var(--token-69d9f9a4-b310-46c8-8b53-f65c929bd1bd, #eff0f3); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; -webkit-user-select: none; aspect-ratio: 1 / 1; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; flex: none; height: var(--framer-aspect-ratio-supported, 126px); position: relative; text-decoration: none; user-select: none; width: 126px; }\",\".framer-qw8qz .framer-jd5aqo { 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; overflow: visible; padding: 0px; position: relative; width: 790px; }\",\".framer-qw8qz .framer-1rs6iy7, .framer-qw8qz .framer-vz3c5h, .framer-qw8qz .framer-1p2wzc2, .framer-qw8qz .framer-alvsgo, .framer-qw8qz .framer-8hrc5n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-qw8qz .framer-snytb7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; scroll-margin-top: 16px; width: 1000px; }\",\".framer-qw8qz .framer-7ysitd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-qw8qz .framer-4rh7ds { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qw8qz .framer-1bj0u5o { -webkit-user-select: none; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 40px; position: relative; user-select: none; width: 40px; }\",\".framer-qw8qz .framer-3pkm0q, .framer-qw8qz .framer-wtr39k { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-qw8qz .framer-1hn8y3d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qw8qz .framer-1l0da0l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 35%; }\",\".framer-qw8qz .framer-7iptyx, .framer-qw8qz .framer-1hbkbne, .framer-qw8qz .framer-gpdcho, .framer-qw8qz .framer-ga7ryv, .framer-qw8qz .framer-hsnbal, .framer-qw8qz .framer-ry7k9c, .framer-qw8qz .framer-v3sj6y, .framer-qw8qz .framer-k6amb0, .framer-qw8qz .framer-16cz7q3, .framer-qw8qz .framer-1khyve8, .framer-qw8qz .framer-yjt91, .framer-qw8qz .framer-1tsz5q0, .framer-qw8qz .framer-606fcj, .framer-qw8qz .framer-1bkc31c, .framer-qw8qz .framer-1iga3yi, .framer-qw8qz .framer-vrlvcx, .framer-qw8qz .framer-1sdr22y { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qw8qz .framer-k448h0 { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-qw8qz .framer-gb3gwz { -webkit-user-select: none; aspect-ratio: 1.9900497512437811 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 502px); overflow: hidden; position: relative; text-decoration: none; user-select: none; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qw8qz .framer-jpf02v, .framer-qw8qz .framer-2zzgrd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-qw8qz .framer-62lob1, .framer-qw8qz .framer-1xphzp7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qw8qz .framer-1bhbycn, .framer-qw8qz .framer-i7fz03 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1000px; word-break: break-word; word-wrap: break-word; }\",\".framer-qw8qz .framer-1y8q6pa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qw8qz .framer-3tbe3v, .framer-qw8qz .framer-19wmg4e { align-content: flex-start; align-items: flex-start; background-color: var(--token-304a7c2b-9999-4888-b4fa-524f9f99dd41, #f9f9fb); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qw8qz .framer-x00w3i, .framer-qw8qz .framer-g1osyu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; }\",\".framer-qw8qz .framer-kzdh09, .framer-qw8qz .framer-duu5f9 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qw8qz .framer-q9f0fp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 320px 0px 320px; position: relative; width: 100%; }\",\".framer-qw8qz .framer-10str2z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qw8qz .framer-1v110sk { flex: none; height: 16px; overflow: visible; position: relative; width: 16px; }\",\".framer-qw8qz .framer-13brwg2 { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 16px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-qw8qz .framer-i72uz6 { 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-qw8qz .framer-100zqwn { aspect-ratio: 1.048780487804878 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); position: relative; width: 43px; }\",\".framer-qw8qz .framer-1x05hb7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 44px; }\",\".framer-qw8qz .framer-s2dt08 { aspect-ratio: 1.1282051282051282 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); position: relative; width: 44px; }\",\".framer-qw8qz .framer-1xzqha3 { aspect-ratio: 2.13953488372093 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 92px; }\",\".framer-qw8qz .framer-1wgitlg { aspect-ratio: 1.162162162162162 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); position: relative; width: 43px; }\",\".framer-qw8qz .framer-5yzlvc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qw8qz .framer-1hd5mln-container { flex: none; height: 364px; position: relative; width: 1440px; }\",\".framer-qw8qz .framer-frp3co, .framer-qw8qz .framer-j143q5, .framer-qw8qz .framer-xv0d2q, .framer-qw8qz .framer-5xllir, .framer-qw8qz .framer-1eegbqc, .framer-qw8qz .framer-1t0yjs2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qw8qz .framer-19kn67g { -webkit-user-select: none; aspect-ratio: 1.3020134228187918 / 1; background-color: #f9f9fb; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 298px); overflow: hidden; position: relative; user-select: none; width: 388px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qw8qz .framer-1j9ug0i, .framer-qw8qz .framer-ney9ly, .framer-qw8qz .framer-1fog0m5, .framer-qw8qz .framer-15kzir { aspect-ratio: 0.6028368794326241 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -290px; flex: none; height: var(--framer-aspect-ratio-supported, 564px); left: 50%; position: absolute; transform: translateX(-50%); width: 340px; }\",\".framer-qw8qz .framer-9tgphv, .framer-qw8qz .framer-1ciur7k, .framer-qw8qz .framer-wuq43s, .framer-qw8qz .framer-usdf56, .framer-qw8qz .framer-1xjnsma, .framer-qw8qz .framer-1674df9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 4px 0px 4px 0px; position: relative; width: 100%; }\",\".framer-qw8qz .framer-rjo8y1, .framer-qw8qz .framer-23lwxf, .framer-qw8qz .framer-fxpqiv, .framer-qw8qz .framer-1wtqou2, .framer-qw8qz .framer-1taj2sg, .framer-qw8qz .framer-lxj59p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qw8qz .framer-4oohuu, .framer-qw8qz .framer-1932wmc, .framer-qw8qz .framer-11s6to6, .framer-qw8qz .framer-1hlgss6, .framer-qw8qz .framer-6pvob3 { aspect-ratio: 1.3020134228187918 / 1; background-color: #f9f9fb; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 298px); overflow: hidden; position: relative; width: 388px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qw8qz .framer-1qrxbjk, .framer-qw8qz .framer-zc5ovd { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 213px; left: calc(50.00000000000002% - 340px / 2); position: absolute; top: 42px; width: 340px; }\",\".framer-qw8qz .framer-1ihwj7j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 320px 0px 320px; position: relative; scroll-margin-top: 16px; width: 100%; }\",\".framer-qw8qz .framer-ec9rv3 { align-content: center; align-items: center; 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: 1000px; }\",\".framer-qw8qz .framer-1mgfh79-container { aspect-ratio: 1 / 1; flex: none; height: 40px; position: relative; width: var(--framer-aspect-ratio-supported, 40px); }\",\".framer-qw8qz .framer-r26fw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-qw8qz .framer-utqh19-container, .framer-qw8qz .framer-1r2n34r-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qw8qz.framer-72rtr7, .framer-qw8qz .framer-lt1bh2, .framer-qw8qz .framer-169m63j, .framer-qw8qz .framer-jd5aqo, .framer-qw8qz .framer-snytb7, .framer-qw8qz .framer-7ysitd, .framer-qw8qz .framer-4rh7ds, .framer-qw8qz .framer-1hn8y3d, .framer-qw8qz .framer-1l0da0l, .framer-qw8qz .framer-k448h0, .framer-qw8qz .framer-jpf02v, .framer-qw8qz .framer-62lob1, .framer-qw8qz .framer-1y8q6pa, .framer-qw8qz .framer-3tbe3v, .framer-qw8qz .framer-kzdh09, .framer-qw8qz .framer-19wmg4e, .framer-qw8qz .framer-duu5f9, .framer-qw8qz .framer-2zzgrd, .framer-qw8qz .framer-q9f0fp, .framer-qw8qz .framer-10str2z, .framer-qw8qz .framer-5yzlvc, .framer-qw8qz .framer-1xphzp7, .framer-qw8qz .framer-frp3co, .framer-qw8qz .framer-rjo8y1, .framer-qw8qz .framer-j143q5, .framer-qw8qz .framer-23lwxf, .framer-qw8qz .framer-xv0d2q, .framer-qw8qz .framer-fxpqiv, .framer-qw8qz .framer-5xllir, .framer-qw8qz .framer-1wtqou2, .framer-qw8qz .framer-1eegbqc, .framer-qw8qz .framer-1taj2sg, .framer-qw8qz .framer-1t0yjs2, .framer-qw8qz .framer-lxj59p, .framer-qw8qz .framer-1ihwj7j, .framer-qw8qz .framer-ec9rv3, .framer-qw8qz .framer-r26fw { gap: 0px; } .framer-qw8qz.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(136px / 2); margin-top: calc(136px / 2); } .framer-qw8qz.framer-72rtr7 > :first-child, .framer-qw8qz .framer-lt1bh2 > :first-child, .framer-qw8qz .framer-169m63j > :first-child, .framer-qw8qz .framer-jd5aqo > :first-child, .framer-qw8qz .framer-snytb7 > :first-child, .framer-qw8qz .framer-7ysitd > :first-child, .framer-qw8qz .framer-1l0da0l > :first-child, .framer-qw8qz .framer-k448h0 > :first-child, .framer-qw8qz .framer-jpf02v > :first-child, .framer-qw8qz .framer-3tbe3v > :first-child, .framer-qw8qz .framer-kzdh09 > :first-child, .framer-qw8qz .framer-19wmg4e > :first-child, .framer-qw8qz .framer-duu5f9 > :first-child, .framer-qw8qz .framer-2zzgrd > :first-child, .framer-qw8qz .framer-q9f0fp > :first-child, .framer-qw8qz .framer-5yzlvc > :first-child, .framer-qw8qz .framer-frp3co > :first-child, .framer-qw8qz .framer-rjo8y1 > :first-child, .framer-qw8qz .framer-j143q5 > :first-child, .framer-qw8qz .framer-23lwxf > :first-child, .framer-qw8qz .framer-xv0d2q > :first-child, .framer-qw8qz .framer-fxpqiv > :first-child, .framer-qw8qz .framer-5xllir > :first-child, .framer-qw8qz .framer-1wtqou2 > :first-child, .framer-qw8qz .framer-1eegbqc > :first-child, .framer-qw8qz .framer-1taj2sg > :first-child, .framer-qw8qz .framer-1t0yjs2 > :first-child, .framer-qw8qz .framer-lxj59p > :first-child, .framer-qw8qz .framer-1ihwj7j > :first-child { margin-top: 0px; } .framer-qw8qz.framer-72rtr7 > :last-child, .framer-qw8qz .framer-lt1bh2 > :last-child, .framer-qw8qz .framer-169m63j > :last-child, .framer-qw8qz .framer-jd5aqo > :last-child, .framer-qw8qz .framer-snytb7 > :last-child, .framer-qw8qz .framer-7ysitd > :last-child, .framer-qw8qz .framer-1l0da0l > :last-child, .framer-qw8qz .framer-k448h0 > :last-child, .framer-qw8qz .framer-jpf02v > :last-child, .framer-qw8qz .framer-3tbe3v > :last-child, .framer-qw8qz .framer-kzdh09 > :last-child, .framer-qw8qz .framer-19wmg4e > :last-child, .framer-qw8qz .framer-duu5f9 > :last-child, .framer-qw8qz .framer-2zzgrd > :last-child, .framer-qw8qz .framer-q9f0fp > :last-child, .framer-qw8qz .framer-5yzlvc > :last-child, .framer-qw8qz .framer-frp3co > :last-child, .framer-qw8qz .framer-rjo8y1 > :last-child, .framer-qw8qz .framer-j143q5 > :last-child, .framer-qw8qz .framer-23lwxf > :last-child, .framer-qw8qz .framer-xv0d2q > :last-child, .framer-qw8qz .framer-fxpqiv > :last-child, .framer-qw8qz .framer-5xllir > :last-child, .framer-qw8qz .framer-1wtqou2 > :last-child, .framer-qw8qz .framer-1eegbqc > :last-child, .framer-qw8qz .framer-1taj2sg > :last-child, .framer-qw8qz .framer-1t0yjs2 > :last-child, .framer-qw8qz .framer-lxj59p > :last-child, .framer-qw8qz .framer-1ihwj7j > :last-child { margin-bottom: 0px; } .framer-qw8qz .framer-lt1bh2 > *, .framer-qw8qz .framer-169m63j > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-qw8qz .framer-jd5aqo > *, .framer-qw8qz .framer-kzdh09 > *, .framer-qw8qz .framer-duu5f9 > *, .framer-qw8qz .framer-frp3co > *, .framer-qw8qz .framer-j143q5 > *, .framer-qw8qz .framer-xv0d2q > *, .framer-qw8qz .framer-5xllir > *, .framer-qw8qz .framer-1eegbqc > *, .framer-qw8qz .framer-1t0yjs2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qw8qz .framer-snytb7 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-qw8qz .framer-7ysitd > *, .framer-qw8qz .framer-3tbe3v > *, .framer-qw8qz .framer-19wmg4e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-qw8qz .framer-4rh7ds > *, .framer-qw8qz .framer-10str2z > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-qw8qz .framer-4rh7ds > :first-child, .framer-qw8qz .framer-1hn8y3d > :first-child, .framer-qw8qz .framer-62lob1 > :first-child, .framer-qw8qz .framer-1y8q6pa > :first-child, .framer-qw8qz .framer-10str2z > :first-child, .framer-qw8qz .framer-1xphzp7 > :first-child, .framer-qw8qz .framer-ec9rv3 > :first-child, .framer-qw8qz .framer-r26fw > :first-child { margin-left: 0px; } .framer-qw8qz .framer-4rh7ds > :last-child, .framer-qw8qz .framer-1hn8y3d > :last-child, .framer-qw8qz .framer-62lob1 > :last-child, .framer-qw8qz .framer-1y8q6pa > :last-child, .framer-qw8qz .framer-10str2z > :last-child, .framer-qw8qz .framer-1xphzp7 > :last-child, .framer-qw8qz .framer-ec9rv3 > :last-child, .framer-qw8qz .framer-r26fw > :last-child { margin-right: 0px; } .framer-qw8qz .framer-1hn8y3d > *, .framer-qw8qz .framer-1y8q6pa > *, .framer-qw8qz .framer-r26fw > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-qw8qz .framer-1l0da0l > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-qw8qz .framer-k448h0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qw8qz .framer-jpf02v > *, .framer-qw8qz .framer-2zzgrd > *, .framer-qw8qz .framer-q9f0fp > *, .framer-qw8qz .framer-5yzlvc > *, .framer-qw8qz .framer-1ihwj7j > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-qw8qz .framer-62lob1 > *, .framer-qw8qz .framer-1xphzp7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qw8qz .framer-rjo8y1 > *, .framer-qw8qz .framer-23lwxf > *, .framer-qw8qz .framer-fxpqiv > *, .framer-qw8qz .framer-1wtqou2 > *, .framer-qw8qz .framer-1taj2sg > *, .framer-qw8qz .framer-lxj59p > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-qw8qz .framer-ec9rv3 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-qw8qz { background: var(--token-e5b4ae03-fdaa-4959-8592-abbcb82706c6, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-qw8qz.framer-72rtr7 { gap: 104px; width: 810px; } .framer-qw8qz .framer-lt1bh2, .framer-qw8qz .framer-7ysitd, .framer-qw8qz .framer-62lob1, .framer-qw8qz .framer-1xphzp7, .framer-qw8qz .framer-1ihwj7j { padding: 0px 48px 0px 48px; } .framer-qw8qz .framer-169m63j, .framer-qw8qz .framer-jpf02v, .framer-qw8qz .framer-ec9rv3 { width: 100%; } .framer-qw8qz .framer-jd5aqo { width: 714px; } .framer-qw8qz .framer-1rs6iy7 { white-space: pre; width: auto; } .framer-qw8qz .framer-snytb7 { gap: 64px; width: 100%; } .framer-qw8qz .framer-1l0da0l { width: 320px; } .framer-qw8qz .framer-gb3gwz { height: var(--framer-aspect-ratio-supported, 359px); width: 100%; } .framer-qw8qz .framer-1bhbycn, .framer-qw8qz .framer-i7fz03 { flex: 1 0 0px; width: 1px; } .framer-qw8qz .framer-1y8q6pa { gap: 16px; padding: 0px 48px 0px 48px; } .framer-qw8qz .framer-2zzgrd { padding: 0px 48px 0px 48px; width: 100%; } .framer-qw8qz .framer-r26fw { gap: 16px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qw8qz.framer-72rtr7, .framer-qw8qz .framer-snytb7, .framer-qw8qz .framer-1y8q6pa, .framer-qw8qz .framer-r26fw { gap: 0px; } .framer-qw8qz.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(104px / 2); margin-top: calc(104px / 2); } .framer-qw8qz.framer-72rtr7 > :first-child, .framer-qw8qz .framer-snytb7 > :first-child { margin-top: 0px; } .framer-qw8qz.framer-72rtr7 > :last-child, .framer-qw8qz .framer-snytb7 > :last-child { margin-bottom: 0px; } .framer-qw8qz .framer-snytb7 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-qw8qz .framer-1y8q6pa > *, .framer-qw8qz .framer-r26fw > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-qw8qz .framer-1y8q6pa > :first-child, .framer-qw8qz .framer-r26fw > :first-child { margin-left: 0px; } .framer-qw8qz .framer-1y8q6pa > :last-child, .framer-qw8qz .framer-r26fw > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-qw8qz { background: var(--token-e5b4ae03-fdaa-4959-8592-abbcb82706c6, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-qw8qz.framer-72rtr7 { gap: 64px; width: 390px; } .framer-qw8qz .framer-142dcn6-container { left: 0px; position: fixed; right: 0px; top: 0px; width: unset; z-index: 1; } .framer-qw8qz .framer-lt1bh2 { padding: 160px 24px 0px 24px; } .framer-qw8qz .framer-169m63j, .framer-qw8qz .framer-jd5aqo, .framer-qw8qz .framer-1l0da0l, .framer-qw8qz .framer-jpf02v { width: 100%; } .framer-qw8qz .framer-snytb7 { gap: 56px; padding: 0px 24px 0px 24px; width: 100%; } .framer-qw8qz .framer-7ysitd { gap: 16px; } .framer-qw8qz .framer-1bj0u5o { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 32px); width: 32px; } .framer-qw8qz .framer-1hn8y3d { flex-direction: column; gap: 8px; } .framer-qw8qz .framer-wtr39k, .framer-qw8qz .framer-3tbe3v, .framer-qw8qz .framer-19wmg4e, .framer-qw8qz .framer-utqh19-container, .framer-qw8qz .framer-1r2n34r-container { flex: none; width: 100%; } .framer-qw8qz .framer-gb3gwz { height: var(--framer-aspect-ratio-supported, 172px); width: 100%; } .framer-qw8qz .framer-62lob1, .framer-qw8qz .framer-1xphzp7 { gap: 0px; padding: 0px 24px 0px 24px; } .framer-qw8qz .framer-1bhbycn, .framer-qw8qz .framer-i7fz03 { flex: 1 0 0px; width: 1px; } .framer-qw8qz .framer-1y8q6pa { flex-direction: column; gap: 16px; padding: 0px 24px 0px 24px; } .framer-qw8qz .framer-2zzgrd { gap: 24px; padding: 0px 24px 0px 24px; width: 100%; } .framer-qw8qz .framer-100zqwn { height: var(--framer-aspect-ratio-supported, 28px); width: 29px; } .framer-qw8qz .framer-1x05hb7 { height: var(--framer-aspect-ratio-supported, 30px); width: 30px; } .framer-qw8qz .framer-s2dt08 { height: var(--framer-aspect-ratio-supported, 26px); width: 30px; } .framer-qw8qz .framer-1xzqha3 { height: var(--framer-aspect-ratio-supported, 30px); width: 63px; } .framer-qw8qz .framer-1wgitlg { height: var(--framer-aspect-ratio-supported, 26px); width: 29px; } .framer-qw8qz .framer-1ihwj7j { gap: 24px; padding: 0px 24px 0px 24px; } .framer-qw8qz .framer-ec9rv3, .framer-qw8qz .framer-r26fw { flex-direction: column; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qw8qz.framer-72rtr7, .framer-qw8qz .framer-snytb7, .framer-qw8qz .framer-7ysitd, .framer-qw8qz .framer-1hn8y3d, .framer-qw8qz .framer-62lob1, .framer-qw8qz .framer-1y8q6pa, .framer-qw8qz .framer-2zzgrd, .framer-qw8qz .framer-1xphzp7, .framer-qw8qz .framer-1ihwj7j, .framer-qw8qz .framer-ec9rv3, .framer-qw8qz .framer-r26fw { gap: 0px; } .framer-qw8qz.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-qw8qz.framer-72rtr7 > :first-child, .framer-qw8qz .framer-snytb7 > :first-child, .framer-qw8qz .framer-7ysitd > :first-child, .framer-qw8qz .framer-1hn8y3d > :first-child, .framer-qw8qz .framer-1y8q6pa > :first-child, .framer-qw8qz .framer-2zzgrd > :first-child, .framer-qw8qz .framer-1ihwj7j > :first-child, .framer-qw8qz .framer-ec9rv3 > :first-child, .framer-qw8qz .framer-r26fw > :first-child { margin-top: 0px; } .framer-qw8qz.framer-72rtr7 > :last-child, .framer-qw8qz .framer-snytb7 > :last-child, .framer-qw8qz .framer-7ysitd > :last-child, .framer-qw8qz .framer-1hn8y3d > :last-child, .framer-qw8qz .framer-1y8q6pa > :last-child, .framer-qw8qz .framer-2zzgrd > :last-child, .framer-qw8qz .framer-1ihwj7j > :last-child, .framer-qw8qz .framer-ec9rv3 > :last-child, .framer-qw8qz .framer-r26fw > :last-child { margin-bottom: 0px; } .framer-qw8qz .framer-snytb7 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-qw8qz .framer-7ysitd > *, .framer-qw8qz .framer-1y8q6pa > *, .framer-qw8qz .framer-ec9rv3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qw8qz .framer-1hn8y3d > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-qw8qz .framer-62lob1 > *, .framer-qw8qz .framer-1xphzp7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-qw8qz .framer-62lob1 > :first-child, .framer-qw8qz .framer-1xphzp7 > :first-child { margin-left: 0px; } .framer-qw8qz .framer-62lob1 > :last-child, .framer-qw8qz .framer-1xphzp7 > :last-child { margin-right: 0px; } .framer-qw8qz .framer-2zzgrd > *, .framer-qw8qz .framer-1ihwj7j > *, .framer-qw8qz .framer-r26fw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-qw8qz[data-border=\"true\"]::after, .framer-qw8qz [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5530\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wlBb2Ot_j\":{\"layout\":[\"fixed\",\"auto\"]},\"Ka1ORaXUM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-qw8qz\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5530,width:1440};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\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MINmdd_qFmo.woff2\",weight:\"500\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MINmdd_qFmo.woff2\",weight:\"600\"}]},...SmoothScrollFonts,...TopNavigationFonts,...TickerFonts,...LottieFonts,...FindmeFonts,...FooterFonts,...MyCursorFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wlBb2Ot_j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ka1ORaXUM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"5530\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "l", "g", "glide", "a", "f", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "createGeneratorEasing", "e", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "dispatchViewEvent", "se", "o", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "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", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichText2", "css", "FramertjsHzDEE4", "withCSS", "tjsHzDEE4_default", "addFonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "TopNavigationFonts", "CIMkaNJg7_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "TickerFonts", "Ticker", "ContainerWithFX", "Container", "LottieFonts", "Lottie", "FindmeFonts", "lwZhL1m39_default", "FooterFonts", "mzvkyvR7D_default", "MotionDivOrange", "Orange", "MyCursorFonts", "tjsHzDEE4_default", "CursorFonts", "O_gzAMez6_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "textEffect", "animation5", "transition5", "animation6", "toResponsiveImage", "value", "transition6", "animation7", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation8", "transition7", "animation9", "transition8", "textEffect1", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "tjsHzDEE4_default", "cursor1", "O_gzAMez6_default", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "jwNMPCjjiaNqHNtfqj", "X80aeNlc8aNqHNtfqj", "x8YaeawMAaNqHNtfqj", "n5Y9bn8wlaNqHNtfqj", "x5CcXjTpmaNqHNtfqj", "EwR_RStOuaNqHNtfqj", "hXWSIUSi7aNqHNtfqj", "idaNqHNtfqj", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "MotionDivOrange", "cx", "ComponentViewportProvider", "Container", "SmoothScroll", "PropertyOverrides2", "CIMkaNJg7_default", "motion", "Link", "getLoadingLazyAtYPosition", "ImageWithOptimizedAppearEffect", "RichTextWithOptimizedAppearEffect", "x", "ChildrenCanSuspend", "CoaB7NDtz_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "MotionDivWithFX", "Image2", "RichText2", "RichTextWithFX", "SVG", "ContainerWithFX", "Ticker", "Lottie", "lwZhL1m39_default", "mzvkyvR7D_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "SmoothScrollFonts", "TopNavigationFonts", "TickerFonts", "LottieFonts", "FindmeFonts", "FooterFonts", "MyCursorFonts", "CursorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
