{"version":3,"file":"TDgefwlxz.9uZKMD68.mjs","names":["t","e","i","s","u","p","o","n","r","l","h","a","c","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","transformTemplate1","t","Transition","transformTemplate2","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","Feather","WordsBad","cycleOrder","serializationHash","variantClassNames","transition1","transformTemplate1","t","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","TextAnimation","t","className","Image","css"],"sources":["https:/ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs","https:/framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js","https:/framerusercontent.com/modules/MEudzHNiIFff1ZPWAEKF/0fxY2Fb9au9XSCwDNf8Y/DvhspzyhT.js","https:/framerusercontent.com/modules/LRkHHsKA9sb8XjxFnjyX/ich8Jnvd4FOBHljaUgVl/NYcOkH0ur.js","https:/framerusercontent.com/modules/vdCFpj9U1xonE8HHmcYD/5ZZlOUHcEPbaNWu7WryU/zMpsiMOLk.js","https:/framerusercontent.com/modules/rtYLcGX2ewdOpXrukGgm/eLpYic5y6J6voMyV5QtQ/dHKTxVyyK.js","https:/framerusercontent.com/modules/TiPteql2Dv2TOgg0vzoM/tRxdN8KrObucA0rlRA8S/utZ4dg3ym.js","https:/framerusercontent.com/modules/UQGmf9KlNXQP9YHW7aRL/tE3v5d2qPqkKiem2O4D4/egiQsuKrk.js","https:/framerusercontent.com/modules/knyoYXR8UjSZWQuT1yVp/Zhr5E8aYNrJVN0xf3dHC/HpLCNUrRD.js","https:/framerusercontent.com/modules/34x6NocXiOjzWy3mgIjs/QivNW8jaVg8tXi2wTFRh/TDgefwlxz.js"],"sourcesContent":["function clamp(t,e,i){return Math.max(t,Math.min(e,i))}class Animate{advance(t){if(!this.isRunning)return;let e=!1;if(this.lerp)this.value=function damp(t,e,i,s){return function lerp(t,e,i){return(1-i)*t+i*e}(t,e,1-Math.exp(-i*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0);else{this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}e&&this.stop(),this.onUpdate?.(this.value,e)}stop(){this.isRunning=!1}fromTo(t,e,{lerp:i=.1,duration:s=1,easing:o=(t=>t),onStart:n,onUpdate:r}){this.from=this.value=t,this.to=e,this.lerp=i,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,n?.(),this.onUpdate=r}}class Dimensions{constructor({wrapper:t,content:e,autoResize:i=!0,debounce:s=250}={}){this.wrapper=t,this.content=e,i&&(this.debouncedResize=function debounce(t,e){let i;return function(){let s=arguments,o=this;clearTimeout(i),i=setTimeout((function(){t.apply(o,s)}),e)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...e){let i=this.events[t]||[];for(let t=0,s=i.length;t<s;t++)i[t](...e)}on(t,e){return this.events[t]?.push(e)||(this.events[t]=[e]),()=>{this.events[t]=this.events[t]?.filter((t=>e!==t))}}off(t,e){this.events[t]=this.events[t]?.filter((t=>e!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(t,{wheelMultiplier:e=1,touchMultiplier:i=1}){this.element=t,this.wheelMultiplier=e,this.touchMultiplier=i,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}onTouchStart=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})};onTouchMove=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t,s=-(e-this.touchStart.x)*this.touchMultiplier,o=-(i-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:s,y:o},this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:t})};onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})};onWheel=e=>{let{deltaX:i,deltaY:s,deltaMode:o}=e;i*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,i*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:i,deltaY:s,event:e})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:t=window,content:e=document.documentElement,wheelEventsTarget:i=t,eventsTarget:s=i,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:r=.075,touchInertiaMultiplier:l=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=!h&&.1,infinite:u=!1,orientation:d=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w=!1,__experimental__naiveDimensions:S=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:t,deltaY:e,event:i})=>{if(i.ctrlKey)return;const s=i.type.includes(\"touch\"),o=i.type.includes(\"wheel\");this.isTouching=\"touchstart\"===i.type||\"touchmove\"===i.type;if(this.options.syncTouch&&s&&\"touchstart\"===i.type&&!this.isStopped&&!this.isLocked)return void this.reset();const n=0===t&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===t;if(n||r)return;let l=i.composedPath();l=l.slice(0,l.indexOf(this.rootElement));const h=this.options.prevent;if(l.find((t=>{var e,i,n,r,l;return(\"function\"==typeof h?null==h?void 0:h(t):h)||(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent\"))||s&&(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent-touch\"))||o&&(null===(n=t.hasAttribute)||void 0===n?void 0:n.call(t,\"data-lenis-prevent-wheel\"))||(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis\"))&&!(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void i.preventDefault();if(!(this.options.syncTouch&&s||this.options.smoothWheel&&o))return this.isScrolling=\"native\",void this.animate.stop();i.preventDefault();let a=e;\"both\"===this.options.gestureOrientation?a=Math.abs(e)>Math.abs(t)?e:t:\"horizontal\"===this.options.gestureOrientation&&(a=t);const c=s&&this.options.syncTouch,u=s&&\"touchend\"===i.type&&Math.abs(a)>5;u&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.2\",t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:e,wheelEventsTarget:i,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:r,touchInertiaMultiplier:l,duration:h,easing:a,lerp:c,infinite:u,gestureOrientation:p,orientation:d,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,__experimental__naiveDimensions:S},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:e,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit({userData:t={}}={}){this.userData=t,this.emitter.emit(\"scroll\",this),this.userData={}}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const e=t-(this.time||t);this.time=t,this.animate.advance(.001*e)}scrollTo(t,{offset:e=0,immediate:i=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:r=!o&&this.options.lerp,onStart:l,onComplete:h,force:a=!1,programmatic:c=!0,userData:u={}}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(t))t=0;else if([\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let i;if(\"string\"==typeof t?i=document.querySelector(t):(null==t?void 0:t.nodeType)&&(i=t),i){if(this.options.wrapper!==window){const t=this.options.wrapper.getBoundingClientRect();e-=this.isHorizontal?t.left:t.top}const s=i.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t){if(t+=e,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),i)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));t!==this.targetScroll&&(c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:r,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==l||l(this)},onUpdate:(t,e)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),e||this.emit({userData:u}),e&&(this.reset(),this.emit({userData:u}),null==h||h(this),this.__preventNextNativeScrollEvent=!0)}}))}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,e){return(t%e+e)%e}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n","import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import Lenis from\"lenis\";import{useEffect,useRef}from\"react\";function SmoothScrollComponent(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current){try{lenis.current.scrollTo(0,{immediate:true});}catch(error){console.error(\"Error scrolling to top:\",error);}}},[lenis]);// Watch for stop scroll elements\nuseEffect(()=>{const checkForStopScroll=()=>{try{const stopScrollElement=document.querySelector(\"[data-frameruni-stop-scroll]\");const htmlElement=document.documentElement;const hasHiddenOverflow=htmlElement&&htmlElement.style&&htmlElement.style.overflow===\"hidden\";if(lenis.current){if(stopScrollElement||hasHiddenOverflow){lenis.current.stop();}else{lenis.current.start();}}}catch(error){console.error(\"Error in checkForStopScroll:\",error);}};// Initial check\ncheckForStopScroll();// Set up observers\nlet stopScrollObserver;let htmlStyleObserver;try{stopScrollObserver=new MutationObserver(checkForStopScroll);htmlStyleObserver=new MutationObserver(checkForStopScroll);// Observe document for data-frameruni-stop-scroll attribute\nif(document&&document.documentElement){stopScrollObserver.observe(document.documentElement,{childList:true,subtree:true,attributes:true,attributeFilter:[\"data-frameruni-stop-scroll\"]});// Observe only the HTML element for style changes\nhtmlStyleObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});}}catch(error){console.error(\"Error setting up observers:\",error);}return()=>{try{if(stopScrollObserver)stopScrollObserver.disconnect();if(htmlStyleObserver)htmlStyleObserver.disconnect();}catch(error){console.error(\"Error disconnecting observers:\",error);}};},[]);useEffect(()=>{try{if(!document)return;const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];if(!element)continue;try{const computedStyle=window.getComputedStyle(element);if(computedStyle&&computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}catch(styleError){console.error(\"Error getting computed style:\",styleError);}}}catch(error){console.error(\"Error in overflow detection:\",error);}},[]);useEffect(()=>{try{if(typeof Lenis!==\"function\"){console.error(\"Lenis is not available\");return;}lenis.current=new Lenis({duration:(intensity||10)/10});const raf=time=>{if(lenis.current){try{lenis.current.raf(time);requestAnimationFrame(raf);}catch(error){console.error(\"Error in animation frame:\",error);}}};const animationId=requestAnimationFrame(raf);return()=>{cancelAnimationFrame(animationId);if(lenis.current){try{lenis.current.destroy();lenis.current=null;}catch(error){console.error(\"Error destroying Lenis:\",error);}}};}catch(error){console.error(\"Error initializing Lenis:\",error);return()=>{};}},[intensity]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{try{if(!document||!lenis.current)return;// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=Array.from(document.querySelectorAll(\"a[href]\")||[]).filter(element=>{if(!element)return false;const anchor=element;if(!anchor.href)return false;// Only handle internal anchor links\nconst isInternalLink=anchor.href.startsWith(window.location.origin)||anchor.href.startsWith(\"./\")||anchor.href.startsWith(\"/\");const hasHash=anchor.href.includes(\"#\");return isInternalLink&&hasHash;}).map(anchor=>{try{const anchorElement=anchor;const href=anchorElement.href.includes(\"#\")?`#${anchorElement.href.split(\"#\").pop()}`:\"\";const decodedHref=href?decodeURIComponent(href):\"\";let scrollMargin=0;try{if(decodedHref){const targetElement=document.querySelector(decodedHref);if(targetElement){const marginStyle=window.getComputedStyle(targetElement).scrollMarginTop;scrollMargin=marginStyle?parseInt(marginStyle)||0:0;}}}catch(targetError){console.error(\"Error finding target element:\",targetError);}return{href,scrollMargin,anchorElement:anchorElement};}catch(anchorError){console.error(\"Error processing anchor:\",anchorError);return null;}}).filter(Boolean);const handleClick=(e,href,scrollMargin)=>{try{if(e&&e.preventDefault)e.preventDefault();if(lenis.current&&href){lenis.current.scrollTo(href,{offset:-(scrollMargin||0)});}}catch(error){console.error(\"Error in anchor click handler:\",error);}};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.addEventListener(\"click\",handlers[index]);}});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.removeEventListener(\"click\",handlers[index]);}});};}catch(error){console.error(\"Error setting up anchor links:\",error);return()=>{};}},[lenis]);return /*#__PURE__*/_jsx(\"div\",{style:props.style});}/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n */const SmoothScroll=withCSS(SmoothScrollComponent,[\"html.lenis { height: auto; }\",\".lenis.lenis-smooth { scroll-behavior: auto !important; }\",\".lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }\",\".lenis.lenis-stopped { overflow: hidden; }\",\".lenis.lenis-scrolling iframe { pointer-events: none; }\"],\"\");export default SmoothScroll;SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,min:0,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map","// Generated by Framer (8f9ffef)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Sen-500\",\"GF;Sen-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Sen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sen/v11/6xK0dSxYI9_dkN18-vZKK2EISBi5H4vKlD9q78A.woff2\",weight:\"500\"},{family:\"Sen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sen/v11/6xK0dSxYI9_dkN18-vZKK2EISM2-H4vKlD9q78A.woff2\",weight:\"700\"}]}];export const css=['.framer-rXaG0 .framer-styles-preset-1jq975n:not(.rich-text-wrapper), .framer-rXaG0 .framer-styles-preset-1jq975n.rich-text-wrapper h5 { --framer-font-family: \"Sen\", \"Sen Placeholder\", sans-serif; --framer-font-family-bold: \"Sen\", \"Sen Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, #333333); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-rXaG0\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (8f9ffef)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Sen-500\",\"GF;Sen-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Sen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sen/v11/6xK0dSxYI9_dkN18-vZKK2EISBi5H4vKlD9q78A.woff2\",weight:\"500\"},{family:\"Sen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sen/v11/6xK0dSxYI9_dkN18-vZKK2EISM2-H4vKlD9q78A.woff2\",weight:\"700\"}]}];export const css=['.framer-L52R5 .framer-styles-preset-131qkua:not(.rich-text-wrapper), .framer-L52R5 .framer-styles-preset-131qkua.rich-text-wrapper h3 { --framer-font-family: \"Sen\", \"Sen Placeholder\", sans-serif; --framer-font-family-bold: \"Sen\", \"Sen Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, #333333); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-L52R5\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (8ebf084)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-RodO5 .framer-styles-preset-57rakp:not(.rich-text-wrapper), .framer-RodO5 .framer-styles-preset-57rakp.rich-text-wrapper a { --framer-link-current-text-color: var(--token-b88454e5-8535-4a2a-9891-7f81eab87375, #ff8345); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-b88454e5-8535-4a2a-9891-7f81eab87375, #ff8345); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, #333333); --framer-link-text-decoration: none; }\"];export const className=\"framer-RodO5\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (8f9ffef)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Sen-500\",\"GF;Sen-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Sen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sen/v11/6xK0dSxYI9_dkN18-vZKK2EISBi5H4vKlD9q78A.woff2\",weight:\"500\"},{family:\"Sen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sen/v11/6xK0dSxYI9_dkN18-vZKK2EISM2-H4vKlD9q78A.woff2\",weight:\"700\"}]}];export const css=['.framer-FHi6d .framer-styles-preset-10fhivc:not(.rich-text-wrapper), .framer-FHi6d .framer-styles-preset-10fhivc.rich-text-wrapper h2 { --framer-font-family: \"Sen\", \"Sen Placeholder\", sans-serif; --framer-font-family-bold: \"Sen\", \"Sen Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, #333333); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-FHi6d\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (8f9ffef)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Sen-500\",\"GF;Sen-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Sen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sen/v11/6xK0dSxYI9_dkN18-vZKK2EISBi5H4vKlD9q78A.woff2\",weight:\"500\"},{family:\"Sen\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sen/v11/6xK0dSxYI9_dkN18-vZKK2EISM2-H4vKlD9q78A.woff2\",weight:\"700\"}]}];export const css=['.framer-i1qUe .framer-styles-preset-ej9oq:not(.rich-text-wrapper), .framer-i1qUe .framer-styles-preset-ej9oq.rich-text-wrapper h1 { --framer-font-family: \"Sen\", \"Sen Placeholder\", sans-serif; --framer-font-family-bold: \"Sen\", \"Sen Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 70px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, #333333); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-i1qUe\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f8e3bf6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rtYLcGX2ewdOpXrukGgm/eLpYic5y6J6voMyV5QtQ/dHKTxVyyK.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/TiPteql2Dv2TOgg0vzoM/tRxdN8KrObucA0rlRA8S/utZ4dg3ym.js\";const cycleOrder=[\"eM__VPVEO\",\"BShxAen51\",\"xHVNrzxxD\",\"rIcUIJRGp\",\"uyxjjJ3ey\",\"IeY3yF57m\",\"bLBPg1C37\",\"h9CGQ7Hlr\",\"lVmFIzqUD\",\"XRFlZazyM\",\"pmAbHGhAl\",\"Kvgh7F_xI\",\"v8CZBl0Ko\",\"ZqKCXQ4l0\"];const serializationHash=\"framer-IIx7r\";const variantClassNames={bLBPg1C37:\"framer-v-1v4enpz\",BShxAen51:\"framer-v-137o2kq\",eM__VPVEO:\"framer-v-1yv1d09\",h9CGQ7Hlr:\"framer-v-1p6oucg\",IeY3yF57m:\"framer-v-1bzw7v1\",Kvgh7F_xI:\"framer-v-6two1o\",lVmFIzqUD:\"framer-v-2vabp3\",pmAbHGhAl:\"framer-v-2ijk5k\",rIcUIJRGp:\"framer-v-c86uzm\",uyxjjJ3ey:\"framer-v-n4qmi1\",v8CZBl0Ko:\"framer-v-jplxe0\",xHVNrzxxD:\"framer-v-1m338pd\",XRFlZazyM:\"framer-v-z46ygl\",ZqKCXQ4l0:\"framer-v-xjnd2i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"mobile 1\":\"h9CGQ7Hlr\",\"mobile 2\":\"lVmFIzqUD\",\"mobile 3\":\"XRFlZazyM\",\"mobile 4\":\"pmAbHGhAl\",\"mobile 5\":\"Kvgh7F_xI\",\"mobile 6\":\"v8CZBl0Ko\",\"mobile 7\":\"ZqKCXQ4l0\",\"Variant 1\":\"eM__VPVEO\",\"Variant 2\":\"BShxAen51\",\"Variant 3\":\"xHVNrzxxD\",\"Variant 4\":\"rIcUIJRGp\",\"Variant 5\":\"uyxjjJ3ey\",\"Variant 6\":\"IeY3yF57m\",\"Variant 7\":\"bLBPg1C37\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eM__VPVEO\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eM__VPVEO\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1ycm7qx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"BShxAen51\"),1500);});const onAppear1ybepx5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xHVNrzxxD\"),1500);});const onAppearblchm6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rIcUIJRGp\"),1500);});const onAppeargr8jlp=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"uyxjjJ3ey\"),1500);});const onAppeard722mv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IeY3yF57m\"),1500);});const onAppeareyggox=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bLBPg1C37\"),1500);});const onAppearvt3g9m=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"eM__VPVEO\"),500);});const onAppear726c9g=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lVmFIzqUD\"),1500);});const onAppear15ztrcl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"XRFlZazyM\"),1500);});const onAppear60sma2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"pmAbHGhAl\"),1500);});const onAppear1wztmb8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Kvgh7F_xI\"),1500);});const onAppearzxpwzt=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"v8CZBl0Ko\"),1500);});const onAppeargnlfr2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ZqKCXQ4l0\"),1500);});const onAppearms5gb8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"h9CGQ7Hlr\"),500);});useOnVariantChange(baseVariant,{bLBPg1C37:onAppearvt3g9m,BShxAen51:onAppear1ybepx5,default:onAppear1ycm7qx,h9CGQ7Hlr:onAppear726c9g,IeY3yF57m:onAppeareyggox,Kvgh7F_xI:onAppearzxpwzt,lVmFIzqUD:onAppear15ztrcl,pmAbHGhAl:onAppear1wztmb8,rIcUIJRGp:onAppeargr8jlp,uyxjjJ3ey:onAppeard722mv,v8CZBl0Ko:onAppeargnlfr2,xHVNrzxxD:onAppearblchm6,XRFlZazyM:onAppear60sma2,ZqKCXQ4l0:onAppearms5gb8});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1yv1d09\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"eM__VPVEO\",ref:refBinding,style:{...style},...addPropertyOverrides({bLBPg1C37:{\"data-framer-name\":\"Variant 7\"},BShxAen51:{\"data-framer-name\":\"Variant 2\"},h9CGQ7Hlr:{\"data-framer-name\":\"mobile 1\"},IeY3yF57m:{\"data-framer-name\":\"Variant 6\"},Kvgh7F_xI:{\"data-framer-name\":\"mobile 5\"},lVmFIzqUD:{\"data-framer-name\":\"mobile 2\"},pmAbHGhAl:{\"data-framer-name\":\"mobile 4\"},rIcUIJRGp:{\"data-framer-name\":\"Variant 4\"},uyxjjJ3ey:{\"data-framer-name\":\"Variant 5\"},v8CZBl0Ko:{\"data-framer-name\":\"mobile 6\"},xHVNrzxxD:{\"data-framer-name\":\"Variant 3\"},XRFlZazyM:{\"data-framer-name\":\"mobile 3\"},ZqKCXQ4l0:{\"data-framer-name\":\"mobile 7\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ej9oq\",\"data-styles-preset\":\"utZ4dg3ym\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),className:\"framer-atbshr\",\"data-framer-name\":\"Text-1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VVXyHP6G6\",style:{\"--extracted-gdpscs\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{bLBPg1C37:{opacity:0},BShxAen51:{opacity:0},h9CGQ7Hlr:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\",opacity:1},IeY3yF57m:{opacity:0},Kvgh7F_xI:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\",opacity:0},lVmFIzqUD:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\",opacity:0},pmAbHGhAl:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\",opacity:0},rIcUIJRGp:{opacity:0},uyxjjJ3ey:{opacity:0},v8CZBl0Ko:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\",opacity:0},xHVNrzxxD:{opacity:0},XRFlZazyM:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\",opacity:0},ZqKCXQ4l0:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\",opacity:0}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({h9CGQ7Hlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})})},Kvgh7F_xI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},lVmFIzqUD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},pmAbHGhAl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},v8CZBl0Ko:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},XRFlZazyM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},ZqKCXQ4l0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ej9oq\",\"data-styles-preset\":\"utZ4dg3ym\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:\"engaging\"})}),className:\"framer-123gtzr\",\"data-framer-name\":\"Text-2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IeqSxoizm\",style:{\"--extracted-gdpscs\":\"var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{BShxAen51:{opacity:1},h9CGQ7Hlr:{\"--extracted-1of0zx5\":\"var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210))\"},Kvgh7F_xI:{\"--extracted-1of0zx5\":\"var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210))\"},lVmFIzqUD:{\"--extracted-1of0zx5\":\"var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210))\",opacity:1},pmAbHGhAl:{\"--extracted-1of0zx5\":\"var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210))\"},v8CZBl0Ko:{\"--extracted-1of0zx5\":\"var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210))\"},XRFlZazyM:{\"--extracted-1of0zx5\":\"var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210))\"},ZqKCXQ4l0:{\"--extracted-1of0zx5\":\"var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({h9CGQ7Hlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:\"engaging\"})}),transformTemplate:transformTemplate1},Kvgh7F_xI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:\"engaging\"})}),transformTemplate:transformTemplate1},lVmFIzqUD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:\"engaging\"})})},pmAbHGhAl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:\"engaging\"})}),transformTemplate:transformTemplate1},v8CZBl0Ko:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:\"engaging\"})}),transformTemplate:transformTemplate1},XRFlZazyM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:\"engaging\"})}),transformTemplate:transformTemplate1},ZqKCXQ4l0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:\"engaging\"})}),transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ej9oq\",\"data-styles-preset\":\"utZ4dg3ym\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235)))\"},children:\"original\"})}),className:\"framer-1l7f6f8\",\"data-framer-name\":\"Text-3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FUV77mpiK\",style:{\"--extracted-gdpscs\":\"var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{h9CGQ7Hlr:{\"--extracted-1of0zx5\":\"var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235))\"},Kvgh7F_xI:{\"--extracted-1of0zx5\":\"var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235))\"},lVmFIzqUD:{\"--extracted-1of0zx5\":\"var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235))\"},pmAbHGhAl:{\"--extracted-1of0zx5\":\"var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235))\"},v8CZBl0Ko:{\"--extracted-1of0zx5\":\"var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235))\"},xHVNrzxxD:{opacity:1},XRFlZazyM:{\"--extracted-1of0zx5\":\"var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235))\",opacity:1},ZqKCXQ4l0:{\"--extracted-1of0zx5\":\"var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({h9CGQ7Hlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235)))\"},children:\"original\"})}),transformTemplate:transformTemplate1},Kvgh7F_xI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235)))\"},children:\"original\"})}),transformTemplate:transformTemplate1},lVmFIzqUD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235)))\"},children:\"original\"})}),transformTemplate:transformTemplate1},pmAbHGhAl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235)))\"},children:\"original\"})}),transformTemplate:transformTemplate1},v8CZBl0Ko:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235)))\"},children:\"original\"})}),transformTemplate:transformTemplate1},XRFlZazyM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235)))\"},children:\"original\"})})},ZqKCXQ4l0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-676c3675-777c-4037-8e34-b6e717df6ece, rgb(99, 71, 235)))\"},children:\"original\"})}),transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ej9oq\",\"data-styles-preset\":\"utZ4dg3ym\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223)))\"},children:\"delightful\"})}),className:\"framer-wznp0k\",\"data-framer-name\":\"Text-4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GPGP18yRj\",style:{\"--extracted-gdpscs\":\"var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{h9CGQ7Hlr:{\"--extracted-1of0zx5\":\"var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223))\"},Kvgh7F_xI:{\"--extracted-1of0zx5\":\"var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223))\"},lVmFIzqUD:{\"--extracted-1of0zx5\":\"var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223))\"},pmAbHGhAl:{\"--extracted-1of0zx5\":\"var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223))\",opacity:1},rIcUIJRGp:{opacity:1},v8CZBl0Ko:{\"--extracted-1of0zx5\":\"var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223))\"},XRFlZazyM:{\"--extracted-1of0zx5\":\"var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223))\"},ZqKCXQ4l0:{\"--extracted-1of0zx5\":\"var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({h9CGQ7Hlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223)))\"},children:\"delightful\"})}),transformTemplate:transformTemplate1},Kvgh7F_xI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223)))\"},children:\"delightful\"})}),transformTemplate:transformTemplate1},lVmFIzqUD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223)))\"},children:\"delightful\"})}),transformTemplate:transformTemplate1},pmAbHGhAl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223)))\"},children:\"delightful\"})})},v8CZBl0Ko:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223)))\"},children:\"delightful\"})}),transformTemplate:transformTemplate1},XRFlZazyM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223)))\"},children:\"delightful\"})}),transformTemplate:transformTemplate1},ZqKCXQ4l0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8e44577b-dcba-44f4-821d-d618e80cbab0, rgb(12, 110, 223)))\"},children:\"delightful\"})}),transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ej9oq\",\"data-styles-preset\":\"utZ4dg3ym\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181)))\"},children:\"fun\"})}),className:\"framer-s7ksos\",\"data-framer-name\":\"Text-5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BA00qV5uq\",style:{\"--extracted-gdpscs\":\"var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{h9CGQ7Hlr:{\"--extracted-1of0zx5\":\"var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181))\"},Kvgh7F_xI:{\"--extracted-1of0zx5\":\"var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181))\",opacity:1},lVmFIzqUD:{\"--extracted-1of0zx5\":\"var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181))\"},pmAbHGhAl:{\"--extracted-1of0zx5\":\"var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181))\"},uyxjjJ3ey:{opacity:1},v8CZBl0Ko:{\"--extracted-1of0zx5\":\"var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181))\"},XRFlZazyM:{\"--extracted-1of0zx5\":\"var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181))\"},ZqKCXQ4l0:{\"--extracted-1of0zx5\":\"var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({h9CGQ7Hlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181)))\"},children:\"fun\"})}),transformTemplate:transformTemplate1},Kvgh7F_xI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181)))\"},children:\"fun\"})})},lVmFIzqUD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181)))\"},children:\"fun\"})}),transformTemplate:transformTemplate1},pmAbHGhAl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181)))\"},children:\"fun\"})}),transformTemplate:transformTemplate1},v8CZBl0Ko:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181)))\"},children:\"fun\"})}),transformTemplate:transformTemplate1},XRFlZazyM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181)))\"},children:\"fun\"})}),transformTemplate:transformTemplate1},ZqKCXQ4l0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-4cd7fed3-0c70-43f4-a1c5-2e84f3d21776, rgb(36, 181, 181)))\"},children:\"fun\"})}),transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ej9oq\",\"data-styles-preset\":\"utZ4dg3ym\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35)))\"},children:\"epic\"})}),className:\"framer-1365oxg\",\"data-framer-name\":\"Text-6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QUM8ycMyg\",style:{\"--extracted-gdpscs\":\"var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{h9CGQ7Hlr:{\"--extracted-1of0zx5\":\"var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35))\"},IeY3yF57m:{opacity:1},Kvgh7F_xI:{\"--extracted-1of0zx5\":\"var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35))\"},lVmFIzqUD:{\"--extracted-1of0zx5\":\"var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35))\"},pmAbHGhAl:{\"--extracted-1of0zx5\":\"var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35))\"},v8CZBl0Ko:{\"--extracted-1of0zx5\":\"var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35))\",opacity:1},XRFlZazyM:{\"--extracted-1of0zx5\":\"var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35))\"},ZqKCXQ4l0:{\"--extracted-1of0zx5\":\"var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({h9CGQ7Hlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35)))\"},children:\"epic\"})}),transformTemplate:transformTemplate1},Kvgh7F_xI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35)))\"},children:\"epic\"})}),transformTemplate:transformTemplate1},lVmFIzqUD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35)))\"},children:\"epic\"})}),transformTemplate:transformTemplate1},pmAbHGhAl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35)))\"},children:\"epic\"})}),transformTemplate:transformTemplate1},v8CZBl0Ko:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35)))\"},children:\"epic\"})})},XRFlZazyM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35)))\"},children:\"epic\"})}),transformTemplate:transformTemplate1},ZqKCXQ4l0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-627b4547-c69c-42fe-9c66-5839f52f6892, rgb(131, 199, 35)))\"},children:\"epic\"})}),transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ej9oq\",\"data-styles-preset\":\"utZ4dg3ym\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),className:\"framer-17x26zq\",\"data-framer-name\":\"Text-1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jG_mWyAY5\",style:{\"--extracted-gdpscs\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},transformTemplate:transformTemplate2,variants:{bLBPg1C37:{opacity:1},h9CGQ7Hlr:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\"},Kvgh7F_xI:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\"},lVmFIzqUD:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\"},pmAbHGhAl:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\"},v8CZBl0Ko:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\"},XRFlZazyM:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\"},ZqKCXQ4l0:{\"--extracted-1of0zx5\":\"var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53))\",opacity:1}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({bLBPg1C37:{transformTemplate:undefined},BShxAen51:{transformTemplate:undefined},h9CGQ7Hlr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},IeY3yF57m:{transformTemplate:undefined},Kvgh7F_xI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},lVmFIzqUD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},pmAbHGhAl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},rIcUIJRGp:{transformTemplate:undefined},uyxjjJ3ey:{transformTemplate:undefined},v8CZBl0Ko:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},xHVNrzxxD:{transformTemplate:undefined},XRFlZazyM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:transformTemplate1},ZqKCXQ4l0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, rgb(230, 37, 53)))\"},children:\"real\"})}),transformTemplate:undefined}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IIx7r.framer-ns2k5w, .framer-IIx7r .framer-ns2k5w { display: block; }\",\".framer-IIx7r.framer-1yv1d09 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: min-content; }\",\".framer-IIx7r .framer-atbshr { flex: none; height: auto; overflow: visible; pointer-events: none; position: relative; white-space: pre; width: auto; }\",\".framer-IIx7r .framer-123gtzr, .framer-IIx7r .framer-1l7f6f8, .framer-IIx7r .framer-wznp0k, .framer-IIx7r .framer-s7ksos, .framer-IIx7r .framer-1365oxg { bottom: -85px; flex: none; height: auto; left: 0px; overflow: visible; pointer-events: none; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-IIx7r .framer-17x26zq { flex: none; height: auto; left: 0px; overflow: visible; pointer-events: none; position: absolute; top: 49%; white-space: pre; width: auto; z-index: 0; }\",\".framer-IIx7r.framer-v-137o2kq .framer-atbshr, .framer-IIx7r.framer-v-1m338pd .framer-atbshr, .framer-IIx7r.framer-v-c86uzm .framer-atbshr, .framer-IIx7r.framer-v-n4qmi1 .framer-atbshr { left: 0px; position: absolute; top: -85px; z-index: 1; }\",\".framer-IIx7r.framer-v-137o2kq .framer-123gtzr, .framer-IIx7r.framer-v-1m338pd .framer-1l7f6f8, .framer-IIx7r.framer-v-c86uzm .framer-wznp0k, .framer-IIx7r.framer-v-n4qmi1 .framer-s7ksos, .framer-IIx7r.framer-v-1bzw7v1 .framer-1365oxg, .framer-IIx7r.framer-v-2vabp3 .framer-123gtzr, .framer-IIx7r.framer-v-z46ygl .framer-1l7f6f8, .framer-IIx7r.framer-v-2ijk5k .framer-wznp0k, .framer-IIx7r.framer-v-6two1o .framer-s7ksos, .framer-IIx7r.framer-v-jplxe0 .framer-1365oxg { bottom: unset; left: unset; position: relative; }\",\".framer-IIx7r.framer-v-137o2kq .framer-17x26zq, .framer-IIx7r.framer-v-1m338pd .framer-17x26zq, .framer-IIx7r.framer-v-c86uzm .framer-17x26zq, .framer-IIx7r.framer-v-n4qmi1 .framer-17x26zq { bottom: -85px; top: unset; }\",\".framer-IIx7r.framer-v-1m338pd .framer-123gtzr, .framer-IIx7r.framer-v-c86uzm .framer-123gtzr, .framer-IIx7r.framer-v-c86uzm .framer-1l7f6f8, .framer-IIx7r.framer-v-n4qmi1 .framer-123gtzr, .framer-IIx7r.framer-v-n4qmi1 .framer-1l7f6f8, .framer-IIx7r.framer-v-n4qmi1 .framer-wznp0k, .framer-IIx7r.framer-v-1bzw7v1 .framer-123gtzr, .framer-IIx7r.framer-v-1bzw7v1 .framer-1l7f6f8, .framer-IIx7r.framer-v-1bzw7v1 .framer-wznp0k, .framer-IIx7r.framer-v-1bzw7v1 .framer-s7ksos, .framer-IIx7r.framer-v-1v4enpz .framer-123gtzr, .framer-IIx7r.framer-v-1v4enpz .framer-1l7f6f8, .framer-IIx7r.framer-v-1v4enpz .framer-wznp0k, .framer-IIx7r.framer-v-1v4enpz .framer-s7ksos, .framer-IIx7r.framer-v-1v4enpz .framer-1365oxg { bottom: unset; top: -85px; }\",\".framer-IIx7r.framer-v-1bzw7v1 .framer-atbshr { bottom: -85px; left: 0px; position: absolute; z-index: 1; }\",\".framer-IIx7r.framer-v-1bzw7v1 .framer-17x26zq { bottom: -85px; height: 67px; top: unset; }\",\".framer-IIx7r.framer-v-1v4enpz .framer-atbshr { left: 0px; position: absolute; top: 0px; z-index: 1; }\",\".framer-IIx7r.framer-v-1v4enpz .framer-17x26zq, .framer-IIx7r.framer-v-xjnd2i .framer-17x26zq { left: unset; position: relative; top: unset; }\",\".framer-IIx7r.framer-v-1p6oucg.framer-1yv1d09, .framer-IIx7r.framer-v-2vabp3.framer-1yv1d09, .framer-IIx7r.framer-v-z46ygl.framer-1yv1d09, .framer-IIx7r.framer-v-2ijk5k.framer-1yv1d09, .framer-IIx7r.framer-v-6two1o.framer-1yv1d09, .framer-IIx7r.framer-v-jplxe0.framer-1yv1d09, .framer-IIx7r.framer-v-xjnd2i.framer-1yv1d09 { align-content: center; align-items: center; }\",\".framer-IIx7r.framer-v-1p6oucg .framer-123gtzr, .framer-IIx7r.framer-v-1p6oucg .framer-wznp0k, .framer-IIx7r.framer-v-1p6oucg .framer-1365oxg { bottom: unset; left: 52%; top: 217%; }\",\".framer-IIx7r.framer-v-1p6oucg .framer-1l7f6f8, .framer-IIx7r.framer-v-1p6oucg .framer-s7ksos { bottom: unset; left: 53%; top: 217%; }\",\".framer-IIx7r.framer-v-1p6oucg .framer-17x26zq { left: 50%; top: 50%; }\",\".framer-IIx7r.framer-v-2vabp3 .framer-atbshr { left: 50%; position: absolute; top: -113%; z-index: 1; }\",\".framer-IIx7r.framer-v-2vabp3 .framer-1l7f6f8, .framer-IIx7r.framer-v-2vabp3 .framer-wznp0k, .framer-IIx7r.framer-v-2vabp3 .framer-s7ksos, .framer-IIx7r.framer-v-2vabp3 .framer-1365oxg { bottom: unset; left: 50%; top: 221%; }\",\".framer-IIx7r.framer-v-2vabp3 .framer-17x26zq { left: 50%; top: 221%; }\",\".framer-IIx7r.framer-v-z46ygl .framer-atbshr, .framer-IIx7r.framer-v-2ijk5k .framer-atbshr { left: 50%; position: absolute; top: -117%; z-index: 1; }\",\".framer-IIx7r.framer-v-z46ygl .framer-123gtzr, .framer-IIx7r.framer-v-2ijk5k .framer-123gtzr, .framer-IIx7r.framer-v-2ijk5k .framer-1l7f6f8, .framer-IIx7r.framer-v-jplxe0 .framer-123gtzr, .framer-IIx7r.framer-v-jplxe0 .framer-1l7f6f8, .framer-IIx7r.framer-v-jplxe0 .framer-wznp0k, .framer-IIx7r.framer-v-jplxe0 .framer-s7ksos { bottom: unset; left: 50%; top: -117%; }\",\".framer-IIx7r.framer-v-z46ygl .framer-wznp0k, .framer-IIx7r.framer-v-z46ygl .framer-s7ksos, .framer-IIx7r.framer-v-z46ygl .framer-1365oxg, .framer-IIx7r.framer-v-2ijk5k .framer-s7ksos, .framer-IIx7r.framer-v-2ijk5k .framer-1365oxg { bottom: unset; left: 50%; top: 217%; }\",\".framer-IIx7r.framer-v-z46ygl .framer-17x26zq, .framer-IIx7r.framer-v-2ijk5k .framer-17x26zq, .framer-IIx7r.framer-v-jplxe0 .framer-17x26zq { left: 50%; top: 217%; }\",\".framer-IIx7r.framer-v-6two1o .framer-atbshr { left: 51%; position: absolute; top: -117%; z-index: 1; }\",\".framer-IIx7r.framer-v-6two1o .framer-123gtzr, .framer-IIx7r.framer-v-6two1o .framer-1l7f6f8, .framer-IIx7r.framer-v-6two1o .framer-wznp0k { bottom: unset; left: 51%; top: -117%; }\",\".framer-IIx7r.framer-v-6two1o .framer-1365oxg { bottom: unset; left: 51%; top: 217%; }\",\".framer-IIx7r.framer-v-6two1o .framer-17x26zq { left: 51%; top: 217%; }\",\".framer-IIx7r.framer-v-jplxe0 .framer-atbshr { left: 50%; position: absolute; top: 217%; z-index: 1; }\",\".framer-IIx7r.framer-v-xjnd2i .framer-atbshr { left: 50%; position: absolute; top: 50%; z-index: 1; }\",\".framer-IIx7r.framer-v-xjnd2i .framer-123gtzr, .framer-IIx7r.framer-v-xjnd2i .framer-1l7f6f8, .framer-IIx7r.framer-v-xjnd2i .framer-wznp0k, .framer-IIx7r.framer-v-xjnd2i .framer-s7ksos, .framer-IIx7r.framer-v-xjnd2i .framer-1365oxg { bottom: unset; left: 50%; top: -113%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"BShxAen51\":{\"layout\":[\"auto\",\"auto\"]},\"xHVNrzxxD\":{\"layout\":[\"auto\",\"auto\"]},\"rIcUIJRGp\":{\"layout\":[\"auto\",\"auto\"]},\"uyxjjJ3ey\":{\"layout\":[\"auto\",\"auto\"]},\"IeY3yF57m\":{\"layout\":[\"auto\",\"auto\"]},\"bLBPg1C37\":{\"layout\":[\"auto\",\"auto\"]},\"h9CGQ7Hlr\":{\"layout\":[\"auto\",\"auto\"]},\"lVmFIzqUD\":{\"layout\":[\"auto\",\"auto\"]},\"XRFlZazyM\":{\"layout\":[\"auto\",\"auto\"]},\"pmAbHGhAl\":{\"layout\":[\"auto\",\"auto\"]},\"Kvgh7F_xI\":{\"layout\":[\"auto\",\"auto\"]},\"v8CZBl0Ko\":{\"layout\":[\"auto\",\"auto\"]},\"ZqKCXQ4l0\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameregiQsuKrk=withCSS(Component,css,\"framer-IIx7r\");export default FrameregiQsuKrk;FrameregiQsuKrk.displayName=\"Words Bad\";FrameregiQsuKrk.defaultProps={height:88,width:120};addPropertyControls(FrameregiQsuKrk,{variant:{options:[\"eM__VPVEO\",\"BShxAen51\",\"xHVNrzxxD\",\"rIcUIJRGp\",\"uyxjjJ3ey\",\"IeY3yF57m\",\"bLBPg1C37\",\"h9CGQ7Hlr\",\"lVmFIzqUD\",\"XRFlZazyM\",\"pmAbHGhAl\",\"Kvgh7F_xI\",\"v8CZBl0Ko\",\"ZqKCXQ4l0\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"mobile 1\",\"mobile 2\",\"mobile 3\",\"mobile 4\",\"mobile 5\",\"mobile 6\",\"mobile 7\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameregiQsuKrk,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameregiQsuKrk\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"120\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BShxAen51\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xHVNrzxxD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rIcUIJRGp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uyxjjJ3ey\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IeY3yF57m\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bLBPg1C37\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h9CGQ7Hlr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lVmFIzqUD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XRFlZazyM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pmAbHGhAl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Kvgh7F_xI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"v8CZBl0Ko\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZqKCXQ4l0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"88\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./egiQsuKrk.map","// Generated by Framer (8ebf084)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rtYLcGX2ewdOpXrukGgm/eLpYic5y6J6voMyV5QtQ/dHKTxVyyK.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/TiPteql2Dv2TOgg0vzoM/tRxdN8KrObucA0rlRA8S/utZ4dg3ym.js\";import WordsBad from\"https://framerusercontent.com/modules/UQGmf9KlNXQP9YHW7aRL/tE3v5d2qPqkKiem2O4D4/egiQsuKrk.js\";const FeatherFonts=getFonts(Feather);const WordsBadFonts=getFonts(WordsBad);const cycleOrder=[\"Kznr56KXF\",\"U1fQ4bk6M\",\"oroWYXJJQ\"];const serializationHash=\"framer-HTM2K\";const variantClassNames={Kznr56KXF:\"framer-v-1mf1ueo\",oroWYXJJQ:\"framer-v-10iuiw1\",U1fQ4bk6M:\"framer-v-150wo6e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile 1\":\"oroWYXJJQ\",\"Variant 1\":\"Kznr56KXF\",\"Variant 2\":\"U1fQ4bk6M\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Kznr56KXF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Kznr56KXF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterot5hgn=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"U1fQ4bk6M\");});const onMouseLeave1f0a2qd=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"Kznr56KXF\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"oroWYXJJQ\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1mf1ueo\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Kznr56KXF\",onMouseEnter:onMouseEnterot5hgn,ref:refBinding,style:{...style},...addPropertyOverrides({oroWYXJJQ:{\"data-framer-name\":\"Mobile 1\",\"data-highlight\":undefined,onMouseEnter:undefined},U1fQ4bk6M:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave1f0a2qd}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-56),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/fJIrI7f6Ze5H1blg9sM7emDjk.gif\"},className:\"framer-sp8rqc\",\"data-framer-name\":\"Summer Sun Sticker by Glenda Morahan\",layoutDependency:layoutDependency,layoutId:\"hGlL7KhWK\",style:{rotate:-8},...addPropertyOverrides({oroWYXJJQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||234)*.8659793814432992-31)),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/fJIrI7f6Ze5H1blg9sM7emDjk.gif\"},transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vwzxbq\",layoutDependency:layoutDependency,layoutId:\"MaX0jD5Z1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ej9oq\",\"data-styles-preset\":\"utZ4dg3ym\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(51, 51, 51)))\"},children:\"Let's make\"})}),className:\"framer-km8ij7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"H8DOZNnNW\",style:{\"--extracted-gdpscs\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(51, 51, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{oroWYXJJQ:{\"--extracted-1of0zx5\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(51, 51, 51))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oroWYXJJQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10fhivc\",\"data-styles-preset\":\"dHKTxVyyK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(51, 51, 51)))\"},children:\"Let's make something\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||172)-0-172)/2+0+0)+84-0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/pHiGmlFt2a5o9cdfoyk5yUCZCfQ.gif\"},className:\"framer-17uciz0\",\"data-framer-name\":\"Peace Paz Sticker\",layoutDependency:layoutDependency,layoutId:\"efBsK_Z1o\",...addPropertyOverrides({oroWYXJJQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||234)-0-222)/2+0+0)+0+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/pHiGmlFt2a5o9cdfoyk5yUCZCfQ.gif\"}},U1fQ4bk6M:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||172)-0-172)/2+0+0)+84-123),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/pHiGmlFt2a5o9cdfoyk5yUCZCfQ.gif\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tiqsu4-container\",\"data-framer-name\":\"Arrow\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AkvM9trWE-container\",name:\"Arrow\",nodeId:\"AkvM9trWE\",rendersWithMotion:true,scopeId:\"HpLCNUrRD\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"AkvM9trWE\",layoutId:\"AkvM9trWE\",mirrored:false,name:\"Arrow\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n7785\",layoutDependency:layoutDependency,layoutId:\"E5uG3eBkg\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ej9oq\",\"data-styles-preset\":\"utZ4dg3ym\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(51, 51, 51)))\"},children:\"something\"})}),className:\"framer-j7mcsc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Nc6VxIK14\",style:{\"--extracted-gdpscs\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(51, 51, 51))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:(componentViewport?.y||0)+0+(((componentViewport?.height||172)-0-172)/2+84+0)+0,...addPropertyOverrides({oroWYXJJQ:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||234)-0-222)/2+134+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cayve8-container\",layoutDependency:layoutDependency,layoutId:\"vboTEEF6H-container\",nodeId:\"vboTEEF6H\",rendersWithMotion:true,scopeId:\"HpLCNUrRD\",children:/*#__PURE__*/_jsx(WordsBad,{height:\"100%\",id:\"vboTEEF6H\",layoutId:\"vboTEEF6H\",style:{width:\"100%\"},variant:\"eM__VPVEO\",width:\"100%\",...addPropertyOverrides({oroWYXJJQ:{variant:\"h9CGQ7Hlr\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||172)-56),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/o2LaTpjuAAAhm0dLwldgH3Yubg.gif\"},className:\"framer-5uveml\",\"data-framer-name\":\"Happy Rainbow Sticker\",layoutDependency:layoutDependency,layoutId:\"zGkmelzvQ\",style:{rotate:0},variants:{oroWYXJJQ:{rotate:4}},...addPropertyOverrides({oroWYXJJQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||234)*.8762886597938147-37)),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/o2LaTpjuAAAhm0dLwldgH3Yubg.gif\"},transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HTM2K.framer-6008q5, .framer-HTM2K .framer-6008q5 { display: block; }\",\".framer-HTM2K.framer-1mf1ueo { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 515px; }\",\".framer-HTM2K .framer-sp8rqc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); left: 108px; overflow: visible; position: absolute; top: -56px; width: 81px; z-index: 1; }\",\".framer-HTM2K .framer-1vwzxbq, .framer-HTM2K .framer-n7785 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; pointer-events: none; position: relative; width: 100%; }\",\".framer-HTM2K .framer-km8ij7, .framer-HTM2K .framer-j7mcsc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HTM2K .framer-17uciz0 { aspect-ratio: 0.5874125874125874 / 1; bottom: -2px; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 342px; overflow: visible; position: absolute; width: 1px; z-index: 1; }\",\".framer-HTM2K .framer-tiqsu4-container { align-self: stretch; flex: none; height: auto; position: relative; width: 48px; }\",\".framer-HTM2K .framer-1cayve8-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-HTM2K .framer-5uveml { aspect-ratio: 1 / 1; bottom: -55px; flex: none; height: var(--framer-aspect-ratio-supported, 111px); left: -38px; overflow: visible; position: absolute; width: 111px; z-index: 1; }\",\".framer-HTM2K.framer-v-150wo6e .framer-1vwzxbq { gap: 80px; }\",\".framer-HTM2K.framer-v-150wo6e .framer-17uciz0 { bottom: 0px; height: var(--framer-aspect-ratio-supported, 123px); width: 72px; }\",\".framer-HTM2K.framer-v-10iuiw1.framer-1mf1ueo { width: 376px; }\",\".framer-HTM2K.framer-v-10iuiw1 .framer-sp8rqc { height: var(--framer-aspect-ratio-supported, 62px); left: 18%; top: 87%; width: 62px; }\",\".framer-HTM2K.framer-v-10iuiw1 .framer-1vwzxbq { flex-direction: column; gap: 0px; justify-content: center; }\",\".framer-HTM2K.framer-v-10iuiw1 .framer-km8ij7 { order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HTM2K.framer-v-10iuiw1 .framer-17uciz0 { aspect-ratio: 0.5897435897435898 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 86px); left: unset; order: 0; position: relative; width: 51px; }\",\".framer-HTM2K.framer-v-10iuiw1 .framer-n7785 { gap: 8px; justify-content: center; }\",\".framer-HTM2K.framer-v-10iuiw1 .framer-5uveml { bottom: unset; height: var(--framer-aspect-ratio-supported, 74px); left: 83%; top: 88%; width: 74px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 172\n * @framerIntrinsicWidth 515\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"U1fQ4bk6M\":{\"layout\":[\"fixed\",\"auto\"]},\"oroWYXJJQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHpLCNUrRD=withCSS(Component,css,\"framer-HTM2K\");export default FramerHpLCNUrRD;FramerHpLCNUrRD.displayName=\"Text Animation\";FramerHpLCNUrRD.defaultProps={height:172,width:515};addPropertyControls(FramerHpLCNUrRD,{variant:{options:[\"Kznr56KXF\",\"U1fQ4bk6M\",\"oroWYXJJQ\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Mobile 1\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHpLCNUrRD,[{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\"}]},...FeatherFonts,...WordsBadFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHpLCNUrRD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"172\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"515\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U1fQ4bk6M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oroWYXJJQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/7B3zfkAaA2VEEVoGYPrO/FBZZ9gndd9UhTLwrfn4h/cpCHzISa4.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/MEudzHNiIFff1ZPWAEKF/0fxY2Fb9au9XSCwDNf8Y/DvhspzyhT.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/F2qBxdpsGyYMK4oRg0ix/ZxGChcgocY1rfOuLj1DE/HTPOkEZQ8.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/LRkHHsKA9sb8XjxFnjyX/ich8Jnvd4FOBHljaUgVl/NYcOkH0ur.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/vdCFpj9U1xonE8HHmcYD/5ZZlOUHcEPbaNWu7WryU/zMpsiMOLk.js\";import TextAnimation from\"https://framerusercontent.com/modules/knyoYXR8UjSZWQuT1yVp/Zhr5E8aYNrJVN0xf3dHC/HpLCNUrRD.js\";const TextAnimationFonts=getFonts(TextAnimation);const cycleOrder=[\"hkhslZSfI\",\"B8moBPUfV\",\"htROOszE7\",\"zGxhWAKWq\"];const serializationHash=\"framer-kxgsU\";const variantClassNames={B8moBPUfV:\"framer-v-1p0qwcw\",hkhslZSfI:\"framer-v-1ujjqfz\",htROOszE7:\"framer-v-1cga65n\",zGxhWAKWq:\"framer-v-13y6m0y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile Default\":\"B8moBPUfV\",\"Small desktop\":\"htROOszE7\",Default:\"hkhslZSfI\",Tablet:\"zGxhWAKWq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hkhslZSfI\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hkhslZSfI\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"B8moBPUfV\")return false;return true;};const isDisplayed1=()=>{if([\"B8moBPUfV\",\"zGxhWAKWq\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"B8moBPUfV\",\"zGxhWAKWq\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ujjqfz\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"hkhslZSfI\",ref:refBinding,style:{...style},...addPropertyOverrides({B8moBPUfV:{\"data-framer-name\":\"Mobile Default\"},htROOszE7:{\"data-framer-name\":\"Small desktop\"},zGxhWAKWq:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ygm12b\",layoutDependency:layoutDependency,layoutId:\"uI8DmJnMR\",style:{background:\"linear-gradient(0deg, var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) 0%, var(--token-61f2c496-e947-41c2-afa9-47c0fa742d0d, rgb(242, 233, 247)) 100%)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14z9fb5\",\"data-framer-name\":\"Get in touch\",layoutDependency:layoutDependency,layoutId:\"B3yRkQr_B\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qaugcv\",layoutDependency:layoutDependency,layoutId:\"q2sfXg2bP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rrxxzg\",layoutDependency:layoutDependency,layoutId:\"ExLfKcYYT\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ew2cqr\",layoutDependency:layoutDependency,layoutId:\"nzK1fgIOz\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:172,width:`max(min(${componentViewport?.width||\"100vw\"} - 480px, 1200px) * 0.7, 1px)`,...addPropertyOverrides({B8moBPUfV:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`},htROOszE7:{width:`max(min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) * 0.7, 1px)`},zGxhWAKWq:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 1px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-164qt17-container\",layoutDependency:layoutDependency,layoutId:\"dhTlcrLos-container\",nodeId:\"dhTlcrLos\",rendersWithMotion:true,scopeId:\"TDgefwlxz\",children:/*#__PURE__*/_jsx(TextAnimation,{height:\"100%\",id:\"dhTlcrLos\",layoutId:\"dhTlcrLos\",style:{width:\"100%\"},variant:\"Kznr56KXF\",width:\"100%\",...addPropertyOverrides({B8moBPUfV:{variant:\"oroWYXJJQ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1edvow5\",layoutDependency:layoutDependency,layoutId:\"g9CNXgyWN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a863kv\",\"data-styles-preset\":\"HTPOkEZQ8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23)))\"},children:\"Contact me at\"})}),className:\"framer-1wd4uhv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cK3PzlBNP\",style:{\"--extracted-r6o4lv\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qnfll4\",layoutDependency:layoutDependency,layoutId:\"HqSn_Ulc8\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-far4q\",layoutDependency:layoutDependency,layoutId:\"s1sV1crHy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-131qkua\",\"data-styles-preset\":\"NYcOkH0ur\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://lstheo.designer@gmail.com\",motionChild:true,nodeId:\"MMo6WhEf4\",openInNewTab:true,relValues:[],scopeId:\"TDgefwlxz\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"lstheo.designer@gmail.com\"})})})}),className:\"framer-17o3svq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MMo6WhEf4\",style:{\"--extracted-a0htzi\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{B8moBPUfV:{\"--extracted-1lwpl3i\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1jq975n\",\"data-styles-preset\":\"DvhspzyhT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://lstheo.designer@gmail.com\",motionChild:true,nodeId:\"MMo6WhEf4\",openInNewTab:true,relValues:[],scopeId:\"TDgefwlxz\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"lstheo.designer@gmail.com\"})})})})}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-amaskz\",layoutDependency:layoutDependency,layoutId:\"g40DDAcI8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/LdgwVHjjjprwP4unebjX9CcoVX4.gif\"},className:\"framer-1ibdyqk\",\"data-framer-name\":\"Untitled-1\",layoutDependency:layoutDependency,layoutId:\"jlY2n_i_0\",...addPropertyOverrides({B8moBPUfV:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2aicg9\",layoutDependency:layoutDependency,layoutId:\"KN9qeVoms\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-10c3hw0\",layoutDependency:layoutDependency,layoutId:\"S9Vhi8crS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 580 580\" overflow=\"visible\"><g><path d=\"M 251.715 526.89 C 120.884 505.746 31.965 382.546 53.11 251.715 C 74.254 120.884 197.454 31.965 328.285 53.11 C 459.116 74.254 548.035 197.454 526.89 328.285 C 505.746 459.116 382.546 548.035 251.715 526.89 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.15\"></path><path d=\"M 243.739 576.242 C 85.651 550.693 -21.792 401.826 3.758 243.739 C 29.307 85.651 178.174 -21.792 336.261 3.758 C 494.349 29.307 601.792 178.174 576.242 336.261 C 550.693 494.349 401.826 601.792 243.739 576.242 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.1\"></path><path d=\"M 259.458 478.001 C 155.883 461.258 85.489 363.706 102.229 260.111 C 118.968 156.516 216.502 86.108 320.076 102.851 C 423.65 119.594 494.044 217.146 477.305 320.741 C 460.566 424.336 363.032 494.744 259.458 478.001 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.15\"></path><path d=\"M 267.931 427.748 C 191.613 415.412 139.744 343.531 152.078 267.198 C 164.413 190.865 236.279 138.986 312.597 151.322 C 388.915 163.659 440.784 235.54 428.45 311.873 C 416.116 388.206 344.249 440.085 267.931 427.748 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.6\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 379 379\" overflow=\"visible\"><g><path d=\"M 159.271 376.545 C 55.969 359.849 -14.24 262.572 2.455 159.271 C 19.151 55.969 116.428 -14.24 219.729 2.455 C 323.031 19.151 393.24 116.428 376.545 219.729 C 359.849 323.031 262.572 393.24 159.271 376.545 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.15\"></path><path d=\"M 164.476 346.927 C 77.256 332.831 17.977 250.697 32.073 163.476 C 46.169 76.256 128.303 16.977 215.524 31.073 C 302.744 45.169 362.023 127.303 347.927 214.524 C 333.831 301.744 251.697 361.023 164.476 346.927 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.1\"></path><path d=\"M 169.107 317.627 C 98.24 306.171 50.076 239.424 61.529 168.543 C 72.982 97.662 139.716 49.488 210.583 60.944 C 281.45 72.399 329.615 139.146 318.162 210.027 C 306.708 280.908 239.974 329.082 169.107 317.627 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.15\"></path><path d=\"M 174.365 285.353 C 121.058 276.736 84.828 226.528 93.443 173.21 C 102.059 119.893 152.257 83.656 205.564 92.273 C 258.871 100.89 295.101 151.097 286.485 204.415 C 277.87 257.733 227.672 293.97 174.365 285.353 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.6\"></path></g></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18o13k7\",layoutDependency:layoutDependency,layoutId:\"cqZtxbw1N\",opacity:.15,requiresOverflowVisible:false,style:{opacity:.15},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 480 480\" overflow=\"visible\"><path d=\"M 201.715 476.89 C 70.884 455.746 -18.035 332.546 3.11 201.715 C 24.254 70.884 147.454 -18.035 278.285 3.11 C 409.116 24.254 498.035 147.454 476.89 278.285 C 455.746 409.116 332.546 498.035 201.715 476.89 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.15\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 379 379\" overflow=\"visible\"><path d=\"M 159.271 376.545 C 55.969 359.849 -14.24 262.572 2.455 159.271 C 19.151 55.969 116.428 -14.24 219.729 2.455 C 323.031 19.151 393.24 116.428 376.545 219.729 C 359.849 323.031 262.572 393.24 159.271 376.545 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.15\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ytvjek\",layoutDependency:layoutDependency,layoutId:\"MB2R7jnrY\",opacity:.1,requiresOverflowVisible:false,style:{opacity:.1},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 580 580\" overflow=\"visible\"><path d=\"M 243.739 576.242 C 85.651 550.693 -21.792 401.826 3.758 243.739 C 29.307 85.651 178.174 -21.792 336.261 3.758 C 494.349 29.307 601.792 178.174 576.242 336.261 C 550.693 494.349 401.826 601.792 243.739 576.242 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.1\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 320 320\" overflow=\"visible\"><path d=\"M 134.476 317.927 C 47.256 303.831 -12.023 221.697 2.073 134.476 C 16.169 47.256 98.303 -12.023 185.524 2.073 C 272.744 16.169 332.023 98.303 317.927 185.524 C 303.831 272.744 221.697 332.023 134.476 317.927 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.1\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1a7c6cv\",layoutDependency:layoutDependency,layoutId:\"SzEI6CWIq\",opacity:.15,requiresOverflowVisible:false,style:{opacity:.15},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 380 380.075\" overflow=\"visible\"><path d=\"M 159.691 377.612 C 56.116 360.87 -14.277 263.317 2.462 159.722 C 19.201 56.127 116.735 -14.28 220.309 2.462 C 323.884 19.205 394.277 116.758 377.538 220.353 C 360.799 323.947 263.265 394.355 159.691 377.612 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.15\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 260.001 260.053\" overflow=\"visible\"><path d=\"M 109.263 258.368 C 38.396 246.912 -9.769 180.165 1.685 109.284 C 13.138 38.403 79.872 -9.771 150.739 1.685 C 221.606 13.14 269.77 79.887 258.317 150.768 C 246.864 221.649 180.13 269.823 109.263 258.368 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.15\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qmz1uo\",layoutDependency:layoutDependency,layoutId:\"V_gaWOhI2\",opacity:.6,requiresOverflowVisible:false,style:{opacity:.6},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 280 280.055\" overflow=\"visible\"><path d=\"M 117.667 278.241 C 41.349 265.904 -10.52 194.023 1.814 117.69 C 14.148 41.357 86.015 -10.522 162.333 1.814 C 238.651 14.151 290.52 86.032 278.186 162.365 C 265.852 238.698 193.985 290.577 117.667 278.241 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.6\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 195.576 195.615\" overflow=\"visible\"><path d=\"M 82.189 194.347 C 28.882 185.73 -7.348 135.523 1.267 82.205 C 9.882 28.887 60.08 -7.35 113.388 1.267 C 166.695 9.884 202.925 60.092 194.309 113.41 C 185.694 166.727 135.496 202.964 82.189 194.347 Z\" fill=\"rgb(0, 27, 201)\" opacity=\"0.6\"></path></svg>'}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b5fskq\",layoutDependency:layoutDependency,layoutId:\"vBy4V3IaS\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1pssk1w\",layoutDependency:layoutDependency,layoutId:\"Wb7WUGR5Z\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 909 432\" overflow=\"visible\"><g><defs><linearGradient id=\"idsWb7WUGR5Z_1g671345369\" x1=\"5.551115123125783e-17\" x2=\"1\" y1=\"0.5148843935538714\" y2=\"0.48511560644612867\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 423 0 C 498.131 0 562.266 47.076 587.519 113.339 C 603.008 106.685 620.073 103 638 103 C 690.051 103 734.846 134.069 754.85 178.673 C 763.292 176.921 772.039 176 781 176 C 851.692 176 909 233.308 909 304 C 909 374.692 851.692 432 781 432 L 116 432 L 115.948 431.44 C 50.907 425.366 0 370.628 0 304 C 0 233.308 57.308 176 128 176 C 139.785 176 151.198 177.593 162.035 180.574 C 169.891 147.556 199.578 123 235 123 C 241.69 123 248.175 123.876 254.347 125.519 C 276.046 52.919 343.343 0 423 0 Z\" fill=\"url(#idsWb7WUGR5Z_1g671345369)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 420.833 200\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVWb7WUGR5Z_1g671345369\" x1=\"5.551115123125783e-17\" x2=\"1\" y1=\"0.5148843935538714\" y2=\"0.48511560644612867\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 195.833 0 C 230.616 0 260.308 21.794 271.999 52.472 C 279.17 49.391 287.071 47.685 295.37 47.685 C 319.468 47.685 340.206 62.069 349.468 82.719 C 353.376 81.908 357.425 81.481 361.574 81.481 C 394.302 81.481 420.833 108.013 420.833 140.741 C 420.833 173.469 394.302 200 361.574 200 C 361.574 200 361.574 200 361.574 200 L 361.574 200 L 53.704 200 L 53.679 199.741 C 23.568 196.929 0 171.587 0 140.741 C 0 108.013 26.531 81.481 59.259 81.481 C 64.715 81.481 69.999 82.219 75.016 83.599 C 78.653 68.313 92.397 56.944 108.796 56.944 C 111.893 56.944 114.896 57.35 117.753 58.111 C 127.799 24.5 158.955 0 195.833 0 Z\" fill=\"url(#idsB8moBPUfVWb7WUGR5Z_1g671345369)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 909 432\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7Wb7WUGR5Z_1g671345369\" x1=\"5.551115123125783e-17\" x2=\"1\" y1=\"0.5148843935538714\" y2=\"0.48511560644612867\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 423 0 C 498.131 0 562.266 47.076 587.519 113.339 C 603.008 106.685 620.073 103 638 103 C 690.051 103 734.846 134.069 754.85 178.673 C 763.292 176.921 772.039 176 781 176 C 851.692 176 909 233.308 909 304 C 909 374.692 851.692 432 781 432 L 116 432 L 115.948 431.44 C 50.907 425.366 0 370.628 0 304 C 0 233.308 57.308 176 128 176 C 139.785 176 151.198 177.593 162.035 180.574 C 169.891 147.556 199.578 123 235 123 C 241.69 123 248.175 123.876 254.347 125.519 C 276.046 52.919 343.343 0 423 0 Z\" fill=\"url(#idshtROOszE7Wb7WUGR5Z_1g671345369)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 603.733 299.718\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqWb7WUGR5Z_1g671345369\" x1=\"5.551115123125783e-17\" x2=\"1\" y1=\"0.5148843935538714\" y2=\"0.48511560644612867\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 285.952 0 C 334.981 0 377.572 27.56 399.08 68.034 C 405.557 66.608 412.287 65.856 419.192 65.856 C 453.941 65.856 484.243 84.891 500.242 113.103 C 503.65 112.725 507.114 112.531 510.623 112.531 C 562.046 112.531 603.733 154.217 603.733 205.64 C 603.733 239.327 585.842 268.836 559.044 285.184 L 559.044 299.718 L 75.312 299.718 L 75.058 297.001 C 32.275 288.596 0 250.887 0 205.64 C 0 154.217 41.686 112.531 93.109 112.531 C 97.483 112.531 101.786 112.832 105.998 113.416 C 113.921 93.065 133.704 78.644 156.857 78.644 C 160.456 78.644 163.974 78.992 167.378 79.657 C 186.459 32.929 232.36 0 285.952 0 Z\" fill=\"url(#idszGxhWAKWqWb7WUGR5Z_1g671345369)\"></path></g></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11aeb7o\",layoutDependency:layoutDependency,layoutId:\"crxpYdf3H\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 352 352\" overflow=\"visible\"><g><defs><linearGradient id=\"idscrxpYdf3H_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 176 0 C 273.202 0 352 78.798 352 176 C 352 273.202 273.202 352 176 352 C 78.798 352 0 273.202 0 176 C 0 78.798 78.798 0 176 0 Z\" fill=\"url(#idscrxpYdf3H_1g671345205)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 162.963 162.963\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVcrxpYdf3H_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 81.481 0 C 126.482 0 162.963 36.481 162.963 81.481 C 162.963 126.482 126.482 162.963 81.481 162.963 C 36.481 162.963 0 126.482 0 81.481 C 0 36.481 36.481 0 81.481 0 Z\" fill=\"url(#idsB8moBPUfVcrxpYdf3H_1g671345205)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 352 352\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7crxpYdf3H_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 176 0 C 273.202 0 352 78.798 352 176 C 352 273.202 273.202 352 176 352 C 78.798 352 0 273.202 0 176 C 0 78.798 78.798 0 176 0 Z\" fill=\"url(#idshtROOszE7crxpYdf3H_1g671345205)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 256.05 256.05\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqcrxpYdf3H_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 128.025 0 C 198.732 0 256.05 57.319 256.05 128.025 C 256.05 198.732 198.732 256.05 128.025 256.05 C 57.319 256.05 0 198.732 0 128.025 C 0 57.319 57.319 0 128.025 0 Z\" fill=\"url(#idszGxhWAKWqcrxpYdf3H_1g671345205)\"></path></g></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1iat43h\",layoutDependency:layoutDependency,layoutId:\"P8p9BdkK1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 150\" overflow=\"visible\"><g><defs><linearGradient id=\"idsP8p9BdkK1_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 75 0 C 116.421 0 150 33.579 150 75 C 150 116.421 116.421 150 75 150 C 33.579 150 0 116.421 0 75 C 0 33.579 33.579 0 75 0 Z\" fill=\"url(#idsP8p9BdkK1_1g671345205)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 69.444 69.444\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVP8p9BdkK1_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 34.722 0 C 53.899 0 69.444 15.546 69.444 34.722 C 69.444 53.899 53.899 69.444 34.722 69.444 C 15.546 69.444 0 53.899 0 34.722 C 0 15.546 15.546 0 34.722 0 Z\" fill=\"url(#idsB8moBPUfVP8p9BdkK1_1g671345205)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 150\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7P8p9BdkK1_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 75 0 C 116.421 0 150 33.579 150 75 C 150 116.421 116.421 150 75 150 C 33.579 150 0 116.421 0 75 C 0 33.579 33.579 0 75 0 Z\" fill=\"url(#idshtROOszE7P8p9BdkK1_1g671345205)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 109.112 109.112\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqP8p9BdkK1_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 54.556 0 C 84.687 0 109.112 24.426 109.112 54.556 C 109.112 84.687 84.687 109.112 54.556 109.112 C 24.426 109.112 0 84.687 0 54.556 C 0 24.426 24.426 0 54.556 0 Z\" fill=\"url(#idszGxhWAKWqP8p9BdkK1_1g671345205)\"></path></g></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yxz577\",layoutDependency:layoutDependency,layoutId:\"lSwvlPwQe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 256 256\" overflow=\"visible\"><g><defs><linearGradient id=\"idslSwvlPwQe_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 128 0 C 198.692 0 256 57.308 256 128 C 256 198.692 198.692 256 128 256 C 57.308 256 0 198.692 0 128 C 0 57.308 57.308 0 128 0 Z\" fill=\"url(#idslSwvlPwQe_1g671345205)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 118.519 118.519\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVlSwvlPwQe_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 59.259 0 C 91.987 0 118.519 26.531 118.519 59.259 C 118.519 91.987 91.987 118.519 59.259 118.519 C 26.531 118.519 0 91.987 0 59.259 C 0 26.531 26.531 0 59.259 0 Z\" fill=\"url(#idsB8moBPUfVlSwvlPwQe_1g671345205)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 256 256\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7lSwvlPwQe_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 128 0 C 198.692 0 256 57.308 256 128 C 256 198.692 198.692 256 128 256 C 57.308 256 0 198.692 0 128 C 0 57.308 57.308 0 128 0 Z\" fill=\"url(#idshtROOszE7lSwvlPwQe_1g671345205)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 186.219 186.219\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqlSwvlPwQe_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 93.109 0 C 144.532 0 186.219 41.686 186.219 93.109 C 186.219 144.532 144.532 186.219 93.109 186.219 C 41.686 186.219 0 144.532 0 93.109 C 0 41.686 41.686 0 93.109 0 Z\" fill=\"url(#idszGxhWAKWqlSwvlPwQe_1g671345205)\"></path></g></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7atk22\",layoutDependency:layoutDependency,layoutId:\"xHJPelgUK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 256 256\" overflow=\"visible\"><g><defs><linearGradient id=\"idsxHJPelgUK_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 128 0 C 198.692 0 256 57.308 256 128 C 256 198.692 198.692 256 128 256 C 57.308 256 0 198.692 0 128 C 0 57.308 57.308 0 128 0 Z\" fill=\"url(#idsxHJPelgUK_1g671345205)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 118.519 118.519\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVxHJPelgUK_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 59.259 0 C 91.987 0 118.519 26.531 118.519 59.259 C 118.519 91.987 91.987 118.519 59.259 118.519 C 26.531 118.519 0 91.987 0 59.259 C 0 26.531 26.531 0 59.259 0 Z\" fill=\"url(#idsB8moBPUfVxHJPelgUK_1g671345205)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 256 256\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7xHJPelgUK_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 128 0 C 198.692 0 256 57.308 256 128 C 256 198.692 198.692 256 128 256 C 57.308 256 0 198.692 0 128 C 0 57.308 57.308 0 128 0 Z\" fill=\"url(#idshtROOszE7xHJPelgUK_1g671345205)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 186.219 186.219\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqxHJPelgUK_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 93.109 0 C 144.532 0 186.219 41.686 186.219 93.109 C 186.219 144.532 144.532 186.219 93.109 186.219 C 41.686 186.219 0 144.532 0 93.109 C 0 41.686 41.686 0 93.109 0 Z\" fill=\"url(#idszGxhWAKWqxHJPelgUK_1g671345205)\"></path></g></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hfwg87\",layoutDependency:layoutDependency,layoutId:\"P3nZWGAop\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 256 256\" overflow=\"visible\"><g><defs><linearGradient id=\"idsP3nZWGAop_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 128 0 C 198.692 0 256 57.308 256 128 C 256 198.692 198.692 256 128 256 C 57.308 256 0 198.692 0 128 C 0 57.308 57.308 0 128 0 Z\" fill=\"url(#idsP3nZWGAop_1g671345205)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 118.519 118.519\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVP3nZWGAop_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 59.259 0 C 91.987 0 118.519 26.531 118.519 59.259 C 118.519 91.987 91.987 118.519 59.259 118.519 C 26.531 118.519 0 91.987 0 59.259 C 0 26.531 26.531 0 59.259 0 Z\" fill=\"url(#idsB8moBPUfVP3nZWGAop_1g671345205)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 256 256\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7P3nZWGAop_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 128 0 C 198.692 0 256 57.308 256 128 C 256 198.692 198.692 256 128 256 C 57.308 256 0 198.692 0 128 C 0 57.308 57.308 0 128 0 Z\" fill=\"url(#idshtROOszE7P3nZWGAop_1g671345205)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 186.219 186.219\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqP3nZWGAop_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 93.109 0 C 144.532 0 186.219 41.686 186.219 93.109 C 186.219 144.532 144.532 186.219 93.109 186.219 C 41.686 186.219 0 144.532 0 93.109 C 0 41.686 41.686 0 93.109 0 Z\" fill=\"url(#idszGxhWAKWqP3nZWGAop_1g671345205)\"></path></g></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uf4cgx\",layoutDependency:layoutDependency,layoutId:\"Ponhv7Lj2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 678 267\" overflow=\"visible\"><g><defs><linearGradient id=\"idsPonhv7Lj2_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 274 0 L 0 128 L 13 267 L 678 267 L 678 116 Z\" fill=\"url(#idsPonhv7Lj2_1g671345205)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 313.889 123.611\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVPonhv7Lj2_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 126.852 0 L 0 59.259 L 6.019 123.611 L 313.889 123.611 L 313.889 53.704 Z\" fill=\"url(#idsB8moBPUfVPonhv7Lj2_1g671345205)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 678 267\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7Ponhv7Lj2_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 274 0 L 0 128 L 13 267 L 678 267 L 678 116 Z\" fill=\"url(#idshtROOszE7Ponhv7Lj2_1g671345205)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 493.188 194.22\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqPonhv7Lj2_1g671345205\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(249, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 199.312 0 L 0 93.109 L 9.456 194.22 L 493.188 194.22 L 493.188 84.38 Z\" fill=\"url(#idszGxhWAKWqPonhv7Lj2_1g671345205)\"></path></g></svg>'}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xkm0dc\",layoutDependency:layoutDependency,layoutId:\"qrcwLXcSE\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1wg3hiu\",layoutDependency:layoutDependency,layoutId:\"yWO9xPlfy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1282.432 600\" overflow=\"visible\"><g><defs><linearGradient id=\"idsyWO9xPlfy_1g609375115\" x1=\"1\" x2=\"0\" y1=\"0.44465586674719826\" y2=\"0.5553441332528017\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 172.973 583.784 C 77.443 583.784 0 506.341 0 410.811 C 0 315.28 77.443 237.838 172.973 237.838 C 185.083 237.838 196.902 239.082 208.31 241.45 C 235.344 181.174 295.877 139.189 366.216 139.189 C 390.441 139.189 413.503 144.169 434.434 153.161 C 468.559 63.616 555.229 0 656.757 0 C 754.983 0 839.301 59.546 875.585 144.509 C 891.307 136.776 908.998 132.432 927.703 132.432 C 980.6 132.432 1025.384 167.167 1040.492 215.072 C 1055.446 211.404 1071.077 209.459 1087.162 209.459 C 1195.007 209.459 1282.432 296.885 1282.432 404.73 C 1282.432 512.575 1195.007 600 1087.162 600 C 1059.419 600 1033.027 594.214 1009.127 583.784 L 172.973 583.784 L 172.973 583.784 C 172.973 583.784 172.973 583.784 172.973 583.784 Z\" fill=\"url(#idsyWO9xPlfy_1g609375115)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 336.667 160\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVyWO9xPlfy_1g609375115\" x1=\"1\" x2=\"0\" y1=\"0.44465586674719826\" y2=\"0.5553441332528017\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 156.667 0 C 184.493 0 208.247 17.435 217.6 41.978 C 223.336 39.513 229.657 38.148 236.296 38.148 C 255.574 38.148 272.165 49.655 279.574 66.175 C 282.701 65.526 285.94 65.185 289.259 65.185 C 315.442 65.185 336.667 86.41 336.667 112.593 C 336.667 138.775 315.442 160 289.259 160 C 289.259 160 289.259 160 289.259 160 L 289.259 160 L 42.963 160 L 42.944 159.793 C 18.855 157.543 0 137.27 0 112.593 C 0 86.41 21.225 65.185 47.407 65.185 C 51.772 65.185 55.999 65.775 60.013 66.879 C 62.923 54.651 73.918 45.556 87.037 45.556 C 89.515 45.556 91.917 45.88 94.202 46.489 C 102.239 19.6 127.164 0 156.667 0 Z\" fill=\"url(#idsB8moBPUfVyWO9xPlfy_1g609375115)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1282.432 600\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7yWO9xPlfy_1g609375115\" x1=\"1\" x2=\"0\" y1=\"0.44465586674719826\" y2=\"0.5553441332528017\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 172.973 583.784 C 77.443 583.784 0 506.341 0 410.811 C 0 315.28 77.443 237.838 172.973 237.838 C 185.083 237.838 196.902 239.082 208.31 241.45 C 235.344 181.174 295.877 139.189 366.216 139.189 C 390.441 139.189 413.503 144.169 434.434 153.161 C 468.559 63.616 555.229 0 656.757 0 C 754.983 0 839.301 59.546 875.585 144.509 C 891.307 136.776 908.998 132.432 927.703 132.432 C 980.6 132.432 1025.384 167.167 1040.492 215.072 C 1055.446 211.404 1071.077 209.459 1087.162 209.459 C 1195.007 209.459 1282.432 296.885 1282.432 404.73 C 1282.432 512.575 1195.007 600 1087.162 600 C 1059.419 600 1033.027 594.214 1009.127 583.784 L 172.973 583.784 L 172.973 583.784 C 172.973 583.784 172.973 583.784 172.973 583.784 Z\" fill=\"url(#idshtROOszE7yWO9xPlfy_1g609375115)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 683.964 320\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqyWO9xPlfy_1g609375115\" x1=\"1\" x2=\"0\" y1=\"0.44465586674719826\" y2=\"0.5553441332528017\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 92.252 311.351 C 41.303 311.351 0 270.049 0 219.099 C 0 168.15 41.303 126.847 92.252 126.847 C 98.711 126.847 105.015 127.511 111.099 128.774 C 125.517 96.626 157.801 74.234 195.315 74.234 C 208.235 74.234 220.535 76.89 231.698 81.686 C 249.898 33.928 296.122 0 350.27 0 C 402.658 0 447.627 31.758 466.978 77.071 C 475.364 72.947 484.799 70.631 494.775 70.631 C 522.986 70.631 546.871 89.156 554.929 114.705 C 562.904 112.749 571.241 111.712 579.82 111.712 C 637.337 111.712 683.964 158.339 683.964 215.856 C 683.964 273.373 637.337 320 579.82 320 C 565.023 320 550.948 316.914 538.201 311.351 L 92.252 311.351 L 92.252 311.351 C 92.252 311.351 92.252 311.351 92.252 311.351 Z\" fill=\"url(#idszGxhWAKWqyWO9xPlfy_1g609375115)\"></path></g></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rqz462\",layoutDependency:layoutDependency,layoutId:\"X35Cl_jIc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 475.676 475.676\" overflow=\"visible\"><g><defs><linearGradient id=\"idsX35Cl_jIc_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 237.838 0 C 106.484 0 0 106.484 0 237.838 C 0 369.192 106.484 475.676 237.838 475.676 C 369.192 475.676 475.676 369.192 475.676 237.838 C 475.676 106.484 369.192 0 237.838 0 Z\" fill=\"url(#idsX35Cl_jIc_1g609374775)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 130.37 130.37\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVX35Cl_jIc_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 65.185 0 C 101.186 0 130.37 29.184 130.37 65.185 C 130.37 101.186 101.186 130.37 65.185 130.37 C 29.184 130.37 0 101.186 0 65.185 C 0 29.184 29.184 0 65.185 0 Z\" fill=\"url(#idsB8moBPUfVX35Cl_jIc_1g609374775)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 475.676 475.676\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7X35Cl_jIc_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 237.838 0 C 106.484 0 0 106.484 0 237.838 C 0 369.192 106.484 475.676 237.838 475.676 C 369.192 475.676 475.676 369.192 475.676 237.838 C 475.676 106.484 369.192 0 237.838 0 Z\" fill=\"url(#idshtROOszE7X35Cl_jIc_1g609374775)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 253.694 253.694\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqX35Cl_jIc_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 126.847 0 C 56.791 0 0 56.791 0 126.847 C 0 196.902 56.791 253.694 126.847 253.694 C 196.902 253.694 253.694 196.902 253.694 126.847 C 253.694 56.791 196.902 0 126.847 0 Z\" fill=\"url(#idszGxhWAKWqX35Cl_jIc_1g609374775)\"></path></g></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jemdqz\",layoutDependency:layoutDependency,layoutId:\"sINKPd66R\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 236.486 236.486\" overflow=\"visible\"><g><defs><linearGradient id=\"idssINKPd66R_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 118.243 0 C 52.939 0 0 52.939 0 118.243 C 0 183.547 52.939 236.486 118.243 236.486 C 183.547 236.486 236.486 183.547 236.486 118.243 C 236.486 52.939 183.547 0 118.243 0 Z\" fill=\"url(#idssINKPd66R_1g609374775)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55.556 55.556\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVsINKPd66R_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 27.778 0 C 43.119 0 55.556 12.437 55.556 27.778 C 55.556 43.119 43.119 55.556 27.778 55.556 C 12.437 55.556 0 43.119 0 27.778 C 0 12.437 12.437 0 27.778 0 Z\" fill=\"url(#idsB8moBPUfVsINKPd66R_1g609374775)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 236.486 236.486\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7sINKPd66R_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 118.243 0 C 52.939 0 0 52.939 0 118.243 C 0 183.547 52.939 236.486 118.243 236.486 C 183.547 236.486 236.486 183.547 236.486 118.243 C 236.486 52.939 183.547 0 118.243 0 Z\" fill=\"url(#idshtROOszE7sINKPd66R_1g609374775)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 126.126 126.126\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqsINKPd66R_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 63.063 0 C 28.234 0 0 28.234 0 63.063 C 0 97.892 28.234 126.126 63.063 126.126 C 97.892 126.126 126.126 97.892 126.126 63.063 C 126.126 28.234 97.892 0 63.063 0 Z\" fill=\"url(#idszGxhWAKWqsINKPd66R_1g609374775)\"></path></g></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15mg0st\",layoutDependency:layoutDependency,layoutId:\"JtQLQYxXV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 390.541 390.541\" overflow=\"visible\"><g><defs><linearGradient id=\"idsJtQLQYxXV_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 195.27 0 C 87.425 0 0 87.425 0 195.27 C 0 303.115 87.425 390.541 195.27 390.541 C 303.115 390.541 390.541 303.115 390.541 195.27 C 390.541 87.425 303.115 0 195.27 0 Z\" fill=\"url(#idsJtQLQYxXV_1g609374775)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 94.815 94.815\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVJtQLQYxXV_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 47.407 0 C 73.59 0 94.815 21.225 94.815 47.407 C 94.815 73.59 73.59 94.815 47.407 94.815 C 21.225 94.815 0 73.59 0 47.407 C 0 21.225 21.225 0 47.407 0 Z\" fill=\"url(#idsB8moBPUfVJtQLQYxXV_1g609374775)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 390.541 390.541\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7JtQLQYxXV_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 195.27 0 C 87.425 0 0 87.425 0 195.27 C 0 303.115 87.425 390.541 195.27 390.541 C 303.115 390.541 390.541 303.115 390.541 195.27 C 390.541 87.425 303.115 0 195.27 0 Z\" fill=\"url(#idshtROOszE7JtQLQYxXV_1g609374775)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 208.288 208.288\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqJtQLQYxXV_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 104.144 0 C 46.627 0 0 46.627 0 104.144 C 0 161.661 46.627 208.288 104.144 208.288 C 161.661 208.288 208.288 161.661 208.288 104.144 C 208.288 46.627 161.661 0 104.144 0 Z\" fill=\"url(#idszGxhWAKWqJtQLQYxXV_1g609374775)\"></path></g></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jf7ayq\",layoutDependency:layoutDependency,layoutId:\"HQfquTKXU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 345.946 345.946\" overflow=\"visible\"><g><defs><linearGradient id=\"idsHQfquTKXU_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 172.973 0 C 77.443 0 0 77.443 0 172.973 C 0 268.503 77.443 345.946 172.973 345.946 C 268.503 345.946 345.946 268.503 345.946 172.973 C 345.946 77.443 268.503 0 172.973 0 Z\" fill=\"url(#idsHQfquTKXU_1g609374775)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 94.815 94.815\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVHQfquTKXU_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 47.407 0 C 73.59 0 94.815 21.225 94.815 47.407 C 94.815 73.59 73.59 94.815 47.407 94.815 C 21.225 94.815 0 73.59 0 47.407 C 0 21.225 21.225 0 47.407 0 Z\" fill=\"url(#idsB8moBPUfVHQfquTKXU_1g609374775)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 345.946 345.946\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7HQfquTKXU_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 172.973 0 C 77.443 0 0 77.443 0 172.973 C 0 268.503 77.443 345.946 172.973 345.946 C 268.503 345.946 345.946 268.503 345.946 172.973 C 345.946 77.443 268.503 0 172.973 0 Z\" fill=\"url(#idshtROOszE7HQfquTKXU_1g609374775)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 184.505 184.505\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqHQfquTKXU_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 92.252 0 C 41.303 0 0 41.303 0 92.252 C 0 143.202 41.303 184.505 92.252 184.505 C 143.202 184.505 184.505 143.202 184.505 92.252 C 184.505 41.303 143.202 0 92.252 0 Z\" fill=\"url(#idszGxhWAKWqHQfquTKXU_1g609374775)\"></path></g></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tv2ze3\",layoutDependency:layoutDependency,layoutId:\"whG2wd_Ee\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 345.946 345.946\" overflow=\"visible\"><g><defs><linearGradient id=\"idswhG2wd_Ee_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 172.973 0 C 77.443 0 0 77.443 0 172.973 C 0 268.503 77.443 345.946 172.973 345.946 C 268.503 345.946 345.946 268.503 345.946 172.973 C 345.946 77.443 268.503 0 172.973 0 Z\" fill=\"url(#idswhG2wd_Ee_1g609374775)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 94.815 94.815\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVwhG2wd_Ee_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 47.407 0 C 73.59 0 94.815 21.225 94.815 47.407 C 94.815 73.59 73.59 94.815 47.407 94.815 C 21.225 94.815 0 73.59 0 47.407 C 0 21.225 21.225 0 47.407 0 Z\" fill=\"url(#idsB8moBPUfVwhG2wd_Ee_1g609374775)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 345.946 345.946\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7whG2wd_Ee_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 172.973 0 C 77.443 0 0 77.443 0 172.973 C 0 268.503 77.443 345.946 172.973 345.946 C 268.503 345.946 345.946 268.503 345.946 172.973 C 345.946 77.443 268.503 0 172.973 0 Z\" fill=\"url(#idshtROOszE7whG2wd_Ee_1g609374775)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 184.505 184.505\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqwhG2wd_Ee_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 92.252 0 C 41.303 0 0 41.303 0 92.252 C 0 143.202 41.303 184.505 92.252 184.505 C 143.202 184.505 184.505 143.202 184.505 92.252 C 184.505 41.303 143.202 0 92.252 0 Z\" fill=\"url(#idszGxhWAKWqwhG2wd_Ee_1g609374775)\"></path></g></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mj3gzx\",layoutDependency:layoutDependency,layoutId:\"K0dGXfRnh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 916.216 360.811\" overflow=\"visible\"><g><defs><linearGradient id=\"idsK0dGXfRnh_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 545.946 0 L 916.216 172.973 L 898.649 360.811 L 0 360.811 L 0 156.757 Z\" fill=\"url(#idsK0dGXfRnh_1g609374775)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({B8moBPUfV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 251.111 98.889\" overflow=\"visible\"><g><defs><linearGradient id=\"idsB8moBPUfVK0dGXfRnh_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 101.481 0 L 0 47.407 L 4.815 98.889 L 251.111 98.889 L 251.111 42.963 Z\" fill=\"url(#idsB8moBPUfVK0dGXfRnh_1g609374775)\"></path></g></svg>'},htROOszE7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 916.216 360.811\" overflow=\"visible\"><g><defs><linearGradient id=\"idshtROOszE7K0dGXfRnh_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 545.946 0 L 916.216 172.973 L 898.649 360.811 L 0 360.811 L 0 156.757 Z\" fill=\"url(#idshtROOszE7K0dGXfRnh_1g609374775)\"></path></g></svg>'},zGxhWAKWq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 488.649 192.432\" overflow=\"visible\"><g><defs><linearGradient id=\"idszGxhWAKWqK0dGXfRnh_1g609374775\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White BG&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-801f0398-d070-4b82-990d-0880f07a4ec8, rgb(247, 245, 250)) /* {&quot;name&quot;:&quot;BG&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 291.171 0 L 488.649 92.252 L 479.279 192.432 L 0 192.432 L 0 83.604 Z\" fill=\"url(#idszGxhWAKWqK0dGXfRnh_1g609374775)\"></path></g></svg>'}},baseVariant,gestureVariant)})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cehrks\",\"data-framer-name\":\"Get in touch\",layoutDependency:layoutDependency,layoutId:\"lKsx7RGTo\",style:{backgroundColor:\"var(--token-f6d687dd-fdf4-4158-ba6a-f9ea334d2a09, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8d0e82\",layoutDependency:layoutDependency,layoutId:\"MIOogEl2Y\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bln9m9\",layoutDependency:layoutDependency,layoutId:\"fdZFswI1e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nke467\",\"data-styles-preset\":\"cpCHzISa4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23)))\"},children:\"Copyright \\xa9 2024 Lstheo\"})}),className:\"framer-dg2kli\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R0DHBtDag\",style:{\"--extracted-r6o4lv\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhIE9icmlnZSBQZXJzb25hbCBVc2U=\",\"--framer-font-family\":'\"La Obrige Personal Use\", \"La Obrige Personal Use Placeholder\", sans-serif',\"--framer-font-size\":\"48.311161885223726px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f2daaa74-67f3-48b3-8efe-3fd51d2a0822, rgb(170, 167, 171)))\"},children:\"1\"})}),className:\"framer-7gn0ct\",fonts:[\"CUSTOM;La Obrige Personal Use\"],layoutDependency:layoutDependency,layoutId:\"y5E5RqHSt\",style:{\"--extracted-gdpscs\":\"var(--token-f2daaa74-67f3-48b3-8efe-3fd51d2a0822, rgb(170, 167, 171))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",viewBox:\"0 0 58 58\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nke467\",\"data-styles-preset\":\"cpCHzISa4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23)))\"},children:\"Design by day ☕️, party by night 🥂\"})}),className:\"framer-ox2quu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QAzUUZQAL\",style:{\"--extracted-r6o4lv\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8r4yxg\",layoutDependency:layoutDependency,layoutId:\"AqHcAO8Gy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nke467\",\"data-styles-preset\":\"cpCHzISa4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/lstheo/\",motionChild:true,nodeId:\"gbkcVpY5J\",openInNewTab:true,relValues:[],scopeId:\"TDgefwlxz\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"LinkedIn\"})})})}),className:\"framer-i365n\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gbkcVpY5J\",style:{\"--extracted-r6o4lv\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhIE9icmlnZSBQZXJzb25hbCBVc2U=\",\"--framer-font-family\":'\"La Obrige Personal Use\", \"La Obrige Personal Use Placeholder\", sans-serif',\"--framer-font-size\":\"48.311161885223726px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f2daaa74-67f3-48b3-8efe-3fd51d2a0822, rgb(170, 167, 171)))\"},children:\"1\"})}),className:\"framer-1g57bpu\",fonts:[\"CUSTOM;La Obrige Personal Use\"],layoutDependency:layoutDependency,layoutId:\"kwV1RD7S6\",style:{\"--extracted-gdpscs\":\"var(--token-f2daaa74-67f3-48b3-8efe-3fd51d2a0822, rgb(170, 167, 171))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",viewBox:\"0 0 58 58\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nke467\",\"data-styles-preset\":\"cpCHzISa4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/lstheo/\",motionChild:true,nodeId:\"X4OiivIZa\",openInNewTab:true,relValues:[],scopeId:\"TDgefwlxz\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"Behance\"})})})}),className:\"framer-1uqthdr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"X4OiivIZa\",style:{\"--extracted-r6o4lv\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0xhIE9icmlnZSBQZXJzb25hbCBVc2U=\",\"--framer-font-family\":'\"La Obrige Personal Use\", \"La Obrige Personal Use Placeholder\", sans-serif',\"--framer-font-size\":\"48.311161885223726px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f2daaa74-67f3-48b3-8efe-3fd51d2a0822, rgb(170, 167, 171)))\"},children:\"1\"})}),className:\"framer-s110g8\",fonts:[\"CUSTOM;La Obrige Personal Use\"],layoutDependency:layoutDependency,layoutId:\"Q7W041s89\",style:{\"--extracted-gdpscs\":\"var(--token-f2daaa74-67f3-48b3-8efe-3fd51d2a0822, rgb(170, 167, 171))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",viewBox:\"0 0 58 58\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nke467\",\"data-styles-preset\":\"cpCHzISa4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/15hMBmvFb2mu5NRX54CCCA0ET6-gOHPSa/view?usp=drive_link\",motionChild:true,nodeId:\"to4NF_UKZ\",openInNewTab:true,relValues:[],scopeId:\"TDgefwlxz\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"My Resume\"})})})}),className:\"framer-1srphu3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"to4NF_UKZ\",style:{\"--extracted-r6o4lv\":\"var(--token-a9f8edb3-bfad-4c02-a881-4ee78cbc9929, rgb(21, 17, 23))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y8jsda\",\"data-framer-name\":\"Get in touch\",layoutDependency:layoutDependency,layoutId:\"fd7gbDkpH\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLWJvbGQ=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"344.31358109794604px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgba(0, 115, 27, 0.5) 0%, rgba(135, 119, 0, 0.06) 50%, rgba(145, 90, 0, 0.5) 100%)\"},children:\"Linh Nguyen\"})})}),className:\"framer-d2i9ma\",fonts:[\"FS;Cabinet Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"YsTbhZuSb\",style:{\"--extracted-gdpscs\":\"var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",viewBox:\"0 0 1879.5568641890206 344\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLWJvbGQ=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"128.11023426320395px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgba(0, 115, 27, 0.5) 0%, rgba(135, 119, 0, 0.06) 50%, rgba(145, 90, 0, 0.5) 100%)\"},children:\"Lstheo\"})})}),className:\"framer-1oqmv0w\",fonts:[\"FS;Cabinet Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"TrFGkQOGE\",style:{\"--extracted-gdpscs\":\"var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",viewBox:\"0 0 389.71889765736796 128\",withExternalLayout:true,...addPropertyOverrides({zGxhWAKWq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLWJvbGQ=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"128.11023426320395px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a048dc7b-fa71-4826-87bd-c787c35bac80, rgb(177, 45, 210)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgba(0, 115, 27, 0.5) 0%, rgba(135, 119, 0, 0.06) 47.2973%, rgba(145, 90, 0, 0.5) 100%)\"},children:\"Lstheo\"})})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kxgsU.framer-iu3bw3, .framer-kxgsU .framer-iu3bw3 { display: block; }\",\".framer-kxgsU.framer-1ujjqfz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1920px; }\",\".framer-kxgsU .framer-ygm12b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-kxgsU .framer-14z9fb5 { 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: 80px 240px 80px 240px; position: relative; width: 100%; }\",\".framer-kxgsU .framer-qaugcv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-kxgsU .framer-rrxxzg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 320px; justify-content: space-between; max-height: 320px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-kxgsU .framer-1ew2cqr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kxgsU .framer-164qt17-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-kxgsU .framer-1edvow5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kxgsU .framer-1wd4uhv, .framer-kxgsU .framer-17o3svq, .framer-kxgsU .framer-dg2kli, .framer-kxgsU .framer-ox2quu, .framer-kxgsU .framer-i365n, .framer-kxgsU .framer-1uqthdr, .framer-kxgsU .framer-1srphu3 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-kxgsU .framer-qnfll4 { -webkit-tap-highlight-color: var(--token-c3458b55-d89c-4198-99a9-116a99d4fe39, #e62535); align-content: center; align-items: center; 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-kxgsU .framer-far4q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-kxgsU .framer-amaskz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 540px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 30%; }\",\".framer-kxgsU .framer-1ibdyqk { aspect-ratio: 1 / 1; bottom: -108px; flex: none; height: 120%; max-height: 800px; overflow: visible; position: absolute; right: -144px; width: var(--framer-aspect-ratio-supported, 648px); z-index: 2; }\",\".framer-kxgsU .framer-2aicg9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 68%; mix-blend-mode: difference; overflow: visible; padding: 0px; position: absolute; top: 92%; width: min-content; z-index: 1; }\",\".framer-kxgsU .framer-10c3hw0 { height: 580px; position: relative; width: 580px; }\",\".framer-kxgsU .framer-18o13k7 { height: 480px; left: 50px; position: absolute; top: 50px; width: 480px; }\",\".framer-kxgsU .framer-1ytvjek { height: 580px; left: 0px; position: absolute; top: 0px; width: 580px; }\",\".framer-kxgsU .framer-1a7c6cv { height: 380px; left: 100px; position: absolute; top: 101px; width: 380px; }\",\".framer-kxgsU .framer-qmz1uo { height: 280px; left: 151px; position: absolute; top: 150px; width: 280px; }\",\".framer-kxgsU .framer-b5fskq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 95%; overflow: hidden; padding: 0px; position: absolute; top: 86%; width: min-content; z-index: 1; }\",\".framer-kxgsU .framer-1pssk1w { height: 432px; position: relative; width: 909px; }\",\".framer-kxgsU .framer-11aeb7o { height: 352px; left: 247px; position: absolute; top: 0px; width: 352px; }\",\".framer-kxgsU .framer-1iat43h { height: 150px; left: 160px; position: absolute; top: 123px; width: 150px; }\",\".framer-kxgsU .framer-yxz577 { height: 256px; left: 0px; position: absolute; top: 176px; width: 256px; }\",\".framer-kxgsU .framer-7atk22 { height: 256px; left: 510px; position: absolute; top: 103px; width: 256px; }\",\".framer-kxgsU .framer-hfwg87 { height: 256px; left: 653px; position: absolute; top: 176px; width: 256px; }\",\".framer-kxgsU .framer-uf4cgx { height: 267px; left: 103px; position: absolute; top: 165px; width: 678px; }\",\".framer-kxgsU .framer-xkm0dc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 4%; overflow: hidden; padding: 0px; position: absolute; top: 80%; width: min-content; z-index: 1; }\",\".framer-kxgsU .framer-1wg3hiu { height: 600px; position: relative; width: 1283px; }\",\".framer-kxgsU .framer-1rqz462 { height: 476px; left: 419px; position: absolute; top: 0px; width: 476px; }\",\".framer-kxgsU .framer-1jemdqz { height: 237px; left: 810px; position: absolute; top: 133px; width: 237px; }\",\".framer-kxgsU .framer-15mg0st { height: 391px; left: 892px; position: absolute; top: 210px; width: 391px; }\",\".framer-kxgsU .framer-1jf7ayq { height: 346px; left: 193px; position: absolute; top: 139px; width: 346px; }\",\".framer-kxgsU .framer-tv2ze3 { height: 346px; left: 0px; position: absolute; top: 238px; width: 346px; }\",\".framer-kxgsU .framer-1mj3gzx { height: 361px; left: 173px; position: absolute; top: 223px; width: 916px; }\",\".framer-kxgsU .framer-cehrks { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 20px 24px 20px; position: relative; width: 100%; z-index: 3; }\",\".framer-kxgsU .framer-8d0e82 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kxgsU .framer-1bln9m9, .framer-kxgsU .framer-8r4yxg { 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-kxgsU .framer-7gn0ct, .framer-kxgsU .framer-1g57bpu, .framer-kxgsU .framer-s110g8 { flex: none; height: auto; max-width: 64px; overflow: visible; position: relative; white-space: pre; width: 16px; }\",\".framer-kxgsU .framer-1y8jsda { align-content: center; align-items: center; bottom: 5px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; left: 0px; mix-blend-mode: difference; overflow: visible; padding: 0px; pointer-events: none; position: absolute; right: 0px; z-index: 1; }\",\".framer-kxgsU .framer-d2i9ma, .framer-kxgsU .framer-1oqmv0w { flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",\".framer-kxgsU.framer-v-1p0qwcw.framer-1ujjqfz { width: 390px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-ygm12b { padding: 80px 0px 0px 0px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-14z9fb5 { gap: 20px; padding: 80px 20px 0px 20px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-qaugcv { flex-direction: column; gap: 8px; justify-content: center; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-rrxxzg { align-content: center; align-items: center; flex: none; gap: 8px; height: min-content; justify-content: center; max-height: unset; width: 100%; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1ew2cqr { gap: 24px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1edvow5 { align-content: center; align-items: center; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-qnfll4 { justify-content: center; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-amaskz { height: min-content; min-height: 300px; width: 100%; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1ibdyqk { bottom: -20px; height: 100%; left: 50%; max-height: unset; right: unset; width: var(--framer-aspect-ratio-supported, 300px); }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-2aicg9 { left: 49%; top: 87%; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-10c3hw0 { height: 379px; width: 379px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-18o13k7 { height: 379px; left: 0px; top: 0px; width: 379px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1ytvjek { height: 320px; left: 30px; top: 29px; width: 320px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1a7c6cv { height: 260px; left: 60px; top: 60px; width: 260px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-qmz1uo { height: 196px; left: 92px; top: 91px; width: 196px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-b5fskq { left: 100%; top: 93%; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1pssk1w { height: 200px; order: 0; width: 421px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-11aeb7o { height: 163px; left: 115px; width: 163px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1iat43h { height: 70px; left: 74px; top: 57px; width: 70px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-yxz577 { height: 119px; top: 82px; width: 119px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-7atk22 { height: 119px; left: 236px; top: 48px; width: 119px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-hfwg87 { height: 119px; left: 303px; top: 82px; width: 119px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-uf4cgx { height: 124px; left: 48px; top: 77px; width: 314px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-xkm0dc { left: 5%; top: 94%; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1wg3hiu { height: 160px; order: 0; width: 337px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1rqz462 { height: 131px; left: 92px; width: 131px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1jemdqz { height: 56px; left: 60px; top: 46px; width: 56px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-15mg0st { height: 95px; left: 0px; top: 65px; width: 95px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1jf7ayq { height: 95px; left: 189px; top: 38px; width: 95px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-tv2ze3 { height: 95px; left: 242px; top: 65px; width: 95px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1mj3gzx { height: 99px; left: 38px; top: 61px; width: 251px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-8d0e82 { flex-direction: column; gap: 24px; justify-content: center; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1bln9m9 { flex-direction: column; gap: 4px; }\",\".framer-kxgsU.framer-v-1p0qwcw .framer-1y8jsda { bottom: 122px; }\",\".framer-kxgsU.framer-v-1cga65n.framer-1ujjqfz { width: 1440px; }\",\".framer-kxgsU.framer-v-1cga65n .framer-14z9fb5 { padding: 80px 120px 80px 120px; }\",\".framer-kxgsU.framer-v-1cga65n .framer-1y8jsda, .framer-kxgsU.framer-v-13y6m0y .framer-1y8jsda { bottom: 20px; }\",\".framer-kxgsU.framer-v-13y6m0y.framer-1ujjqfz { width: 810px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-ygm12b { order: 0; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-14z9fb5 { padding: 80px 40px 80px 40px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-amaskz { width: 1px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-1ibdyqk { bottom: -104px; height: var(--framer-aspect-ratio-supported, 421px); right: -66px; width: 421px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-2aicg9 { left: 74%; top: 96%; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-b5fskq { left: 100%; top: 87%; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-1pssk1w { height: 300px; width: 604px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-11aeb7o { height: 256px; left: 158px; width: 256px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-1iat43h { height: 109px; left: 103px; top: 79px; width: 109px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-yxz577 { height: 186px; top: 113px; width: 186px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-7atk22 { height: 186px; left: 326px; top: 66px; width: 186px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-hfwg87 { height: 186px; left: 418px; top: 113px; width: 186px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-uf4cgx { height: 194px; left: 66px; top: 106px; width: 493px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-xkm0dc { left: 5%; top: 87%; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-1wg3hiu { height: 320px; order: 0; width: 684px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-1rqz462 { height: 254px; left: 224px; width: 254px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-1jemdqz { height: 126px; left: 432px; top: 71px; width: 126px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-15mg0st { height: 209px; left: 476px; top: 112px; width: 209px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-1jf7ayq { height: 185px; left: 103px; top: 74px; width: 185px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-tv2ze3 { height: 185px; top: 127px; width: 185px; }\",\".framer-kxgsU.framer-v-13y6m0y .framer-1mj3gzx { height: 193px; left: 93px; top: 119px; width: 489px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"B8moBPUfV\":{\"layout\":[\"fixed\",\"fixed\"]},\"htROOszE7\":{\"layout\":[\"fixed\",\"fixed\"]},\"zGxhWAKWq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerTDgefwlxz=withCSS(Component,css,\"framer-kxgsU\");export default FramerTDgefwlxz;FramerTDgefwlxz.displayName=\"Footer\";FramerTDgefwlxz.defaultProps={height:800,width:1920};addPropertyControls(FramerTDgefwlxz,{variant:{options:[\"hkhslZSfI\",\"B8moBPUfV\",\"htROOszE7\",\"zGxhWAKWq\"],optionTitles:[\"Default\",\"Mobile Default\",\"Small desktop\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTDgefwlxz,[{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:\"La Obrige Personal Use\",source:\"custom\",url:\"https://framerusercontent.com/assets/clRUWNbuSvtpYqJ2GWAQHXPYu8.woff2\"},{family:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XMXWOHABYLQDJ42L65EFRYNVRY37HQCB/B2O4O6V3JMFM2WDCYQI3A47L5U4THDUL/WN5274VQ3AUBDFP74GB4EC4XYJ3EKVNE.woff2\",weight:\"700\"}]},...TextAnimationFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTDgefwlxz\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1920\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B8moBPUfV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"htROOszE7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zGxhWAKWq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}