{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/s8KoqWSd7OOFVFWjfSWd/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/xm4VkAxGPTKjmIlpGjEc/X0OFIz4wJwlRuQ5Xvso2/IMUmVaXeS.js", "ssg:https://framerusercontent.com/modules/aTplRPnwbc0xqzkau5jC/EVS9na7qNVpUKrH2hQ5q/jwzEa7FEA.js", "ssg:https://framerusercontent.com/modules/7WPViKkLhmTbokT4AYG4/tzlULrGvxu039fDqfsye/yQquvq9YR.js", "ssg:https://framerusercontent.com/modules/2GfWw1bUJL4bNMD52G4W/Ctxve7HSAWAvdWvsCMvs/ERIXNzQYd.js", "ssg:https://framerusercontent.com/modules/lB4KNiahotxETD80xO4M/SDSn6ihGyVfPVXxft14J/pwadqoFoy.js", "ssg:https://framerusercontent.com/modules/qMS6xt2Xhu05nFXauCRa/6n5Xdj6iXPg6IEkSoGCM/ypaEivyGa.js", "ssg:https://framerusercontent.com/modules/yWuru8uFaWBMAp00PZQy/8ZjL3BMvp2kauFEeVwAp/YDBz_5hEL.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,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"lenis\";// import Lenis from \"@studio-freight/lenis\"\nimport{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);// Check Overlay overflow\nuseEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const checkOverflow=()=>{const htmlStyle=window.getComputedStyle(document.documentElement);const isOverflowHidden=htmlStyle.overflow===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}};// Set up MutationObserver for the html element\nconst htmlObserver=new MutationObserver(mutations=>{for(const mutation of mutations){if(mutation.type===\"attributes\"&&mutation.attributeName===\"style\"){checkOverflow();}}});// Observe the html element for style changes\nhtmlObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});// Initial check\ncheckOverflow();return()=>{htmlObserver.disconnect();};}},[]);// useEffect(() => {\n//     const overlayElement = document.getElementById(\"overlay\")\n//     if (overlayElement) {\n//         const handleMutation = (mutationsList, observer) => {\n//             for (const mutation of mutationsList) {\n//                 if (\n//                     mutation.type === \"childList\" &&\n//                     overlayElement.children.length > 0\n//                 ) {\n//                     // Check if the html tag has the style \"overflow: hidden;\"\n//                     const htmlElement = document.documentElement\n//                     console.log(htmlElement, \"htmlElement\")\n//                     const computedStyle =\n//                         window.getComputedStyle(htmlElement)\n//                     console.log(\"computedStyle\", computedStyle)\n//                     const isOverflowHidden =\n//                         computedStyle.overflow === \"hidden\"\n//                     console.log(\"isOverflowHidden\", isOverflowHidden)\n//                     if (isOverflowHidden) {\n//                         overlayElement.setAttribute(\n//                             \"data-lenis-prevent\",\n//                             \"true\"\n//                         )\n//                     }\n//                 }\n//             }\n//         }\n//         const observer = new MutationObserver(handleMutation)\n//         observer.observe(overlayElement, {\n//             childList: true,\n//             attributes: true,\n//             subtree: true,\n//         })\n//         return () => observer.disconnect()\n//     }\n// }, [])\nuseEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);useEffect(()=>{const anchorLinks=[...document.querySelectorAll(\"a[href]\")];const handleClick=(e,href)=>{e.preventDefault();const decodedHref=decodeURIComponent(href);lenis.current.scrollTo(decodedHref);};anchorLinks.filter(a=>a.href.includes(\"#\")).forEach(a=>{const href=`#${a.href.split(\"#\").pop()}`;a.addEventListener(\"click\",e=>handleClick(e,href));});return()=>{anchorLinks.filter(a=>a.href.includes(\"#\")).forEach(a=>{const href=`#${a.href.split(\"#\").pop()}`;a.removeEventListener(\"click\",e=>handleClick(e,href));});};},[lenis]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-600\",\"GF;Inter-900\"]);export const fonts=[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZ1rib2Bg-4.woff2\",weight:\"900\"}];export const css=['.framer-L3elv .framer-styles-preset-13e1mql:not(.rich-text-wrapper), .framer-L3elv .framer-styles-preset-13e1mql.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 140%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9a7d8316-9ad9-4e5e-ad9f-7575bc264814, #262f3f); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 801px) { .framer-L3elv .framer-styles-preset-13e1mql:not(.rich-text-wrapper), .framer-L3elv .framer-styles-preset-13e1mql.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 140%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9a7d8316-9ad9-4e5e-ad9f-7575bc264814, #262f3f); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 800px) and (min-width: 0px) { .framer-L3elv .framer-styles-preset-13e1mql:not(.rich-text-wrapper), .framer-L3elv .framer-styles-preset-13e1mql.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 140%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9a7d8316-9ad9-4e5e-ad9f-7575bc264814, #262f3f); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-L3elv\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-300\",\"GF;Inter-regular\"]);export const fonts=[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZ1rib2Bg-4.woff2\",weight:\"300\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}];export const css=['.framer-SPQO6 .framer-styles-preset-z7oium:not(.rich-text-wrapper), .framer-SPQO6 .framer-styles-preset-z7oium.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: 0px; --framer-line-height: 140%; --framer-paragraph-spacing: 36px; --framer-text-alignment: start; --framer-text-color: var(--token-4067807a-6def-49f9-ad55-81bfa24413df, #777777); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 801px) { .framer-SPQO6 .framer-styles-preset-z7oium:not(.rich-text-wrapper), .framer-SPQO6 .framer-styles-preset-z7oium.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: 0px; --framer-line-height: 21px; --framer-paragraph-spacing: 28px; --framer-text-alignment: start; --framer-text-color: var(--token-4067807a-6def-49f9-ad55-81bfa24413df, #777777); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 800px) and (min-width: 0px) { .framer-SPQO6 .framer-styles-preset-z7oium:not(.rich-text-wrapper), .framer-SPQO6 .framer-styles-preset-z7oium.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: 0px; --framer-line-height: 24px; --framer-paragraph-spacing: 32px; --framer-text-alignment: start; --framer-text-color: var(--token-4067807a-6def-49f9-ad55-81bfa24413df, #777777); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-SPQO6\";\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 (a96673f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"cTMm6CokS\",\"WkwZRlU3s\",\"qKS32tRS6\"];const serializationHash=\"framer-Avavq\";const variantClassNames={cTMm6CokS:\"framer-v-1i0kutc\",qKS32tRS6:\"framer-v-1ky6psd\",WkwZRlU3s:\"framer-v-eznfb2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Bottom:\"WkwZRlU3s\",right:\"qKS32tRS6\",Top:\"cTMm6CokS\"};const getProps=({color,height,id,title,title1,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,dvR17uw_x:(_ref=color!==null&&color!==void 0?color:props.dvR17uw_x)!==null&&_ref!==void 0?_ref:'var(--token-8c2e2696-2294-47af-a0cd-8fd8990b2d78, rgb(17, 17, 17)) /* {\"name\":\"Background Dark\"} */',hNHgX251k:(_ref1=title!==null&&title!==void 0?title:props.hNHgX251k)!==null&&_ref1!==void 0?_ref1:\"Tooltip\",Jmoryo6og:(_ref2=title1!==null&&title1!==void 0?title1:props.Jmoryo6og)!==null&&_ref2!==void 0?_ref2:\"var(--token-d76e7120-d27d-4da8-b15f-04234125e89d, rgb(255, 255, 255)) \",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"cTMm6CokS\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,hNHgX251k,Jmoryo6og,dvR17uw_x,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"cTMm6CokS\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1i0kutc\",className,classNames),\"data-framer-name\":\"Top\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"cTMm6CokS\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({qKS32tRS6:{\"data-framer-name\":\"right\"},WkwZRlU3s:{\"data-framer-name\":\"Bottom\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17xl9ub\",\"data-framer-name\":\"Tooltip\",layoutDependency:layoutDependency,layoutId:\"xnFBhgD58\",style:{backgroundColor:dvR17uw_x,borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-Jmoryo6og))\"},children:\"Tooltip\"})}),className:\"framer-knp2ts\",fonts:[\"CUSTOM;SF Pro Display Regular\"],layoutDependency:layoutDependency,layoutId:\"vxpWrzKmM\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-Jmoryo6og)\",\"--framer-link-current-text-color\":\"var(--token-bd71055c-0a2c-4476-8cc9-4310acba652d, rgb(0, 136, 255))\",\"--variable-reference-Jmoryo6og\":Jmoryo6og},text:hNHgX251k,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ynsdbj\",layoutDependency:layoutDependency,layoutId:\"AWdREZp5U\",style:{backgroundColor:dvR17uw_x,borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,rotate:45},transformTemplate:transformTemplate1,...addPropertyOverrides({qKS32tRS6:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant)})]})})});});const css=['.framer-Avavq[data-border=\"true\"]::after, .framer-Avavq [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Avavq.framer-mcs11, .framer-Avavq .framer-mcs11 { display: block; }\",\".framer-Avavq.framer-1i0kutc { height: 32px; position: relative; width: 70px; }\",\".framer-Avavq .framer-17xl9ub { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; justify-content: flex-start; left: 50%; overflow: visible; padding: 6px 14px 6px 14px; position: absolute; top: 0px; width: min-content; }\",\".framer-Avavq .framer-knp2ts { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Avavq .framer-1ynsdbj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 50%; overflow: hidden; position: absolute; top: -5px; width: 13px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Avavq .framer-17xl9ub { gap: 0px; } .framer-Avavq .framer-17xl9ub > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-Avavq .framer-17xl9ub > :first-child { margin-left: 0px; } .framer-Avavq .framer-17xl9ub > :last-child { margin-right: 0px; } }\",\".framer-Avavq.framer-v-eznfb2 .framer-1ynsdbj { bottom: -5px; top: unset; }\",\".framer-Avavq.framer-v-1ky6psd .framer-1ynsdbj { left: unset; right: -5px; top: 50%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 70\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WkwZRlU3s\":{\"layout\":[\"fixed\",\"fixed\"]},\"qKS32tRS6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"hNHgX251k\":\"title\",\"Jmoryo6og\":\"title1\",\"dvR17uw_x\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FrameryQquvq9YR=withCSS(Component,css,\"framer-Avavq\");export default FrameryQquvq9YR;FrameryQquvq9YR.displayName=\"Elements/Tooltip\";FrameryQquvq9YR.defaultProps={height:32,width:70};addPropertyControls(FrameryQquvq9YR,{variant:{options:[\"cTMm6CokS\",\"WkwZRlU3s\",\"qKS32tRS6\"],optionTitles:[\"Top\",\"Bottom\",\"right\"],title:\"Variant\",type:ControlType.Enum},hNHgX251k:{defaultValue:\"Tooltip\",displayTextArea:false,title:\"Title\",type:ControlType.String},Jmoryo6og:{defaultValue:\"var(--token-d76e7120-d27d-4da8-b15f-04234125e89d, rgb(255, 255, 255)) \",title:\"Title\",type:ControlType.Color},dvR17uw_x:{defaultValue:'var(--token-8c2e2696-2294-47af-a0cd-8fd8990b2d78, rgb(17, 17, 17)) /* {\"name\":\"Background Dark\"} */',title:\"Color\",type:ControlType.Color}});addFonts(FrameryQquvq9YR,[{family:\"SF Pro Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/4Z3xmeeNKW5bZJHUgyp2dWUy7UM.otf\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryQquvq9YR\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"hNHgX251k\\\":\\\"title\\\",\\\"Jmoryo6og\\\":\\\"title1\\\",\\\"dvR17uw_x\\\":\\\"color\\\"}\",\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"70\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WkwZRlU3s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qKS32tRS6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yQquvq9YR.map", "// Generated by Framer (acd6bc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import ElementsTooltip from\"https://framerusercontent.com/modules/7WPViKkLhmTbokT4AYG4/tzlULrGvxu039fDqfsye/yQquvq9YR.js\";const ElementsTooltipFonts=getFonts(ElementsTooltip);const PhosphorFonts=getFonts(Phosphor);const enabledGestures={ai4hYZwKM:{hover:true},pDy2GZ1Y5:{hover:true}};const cycleOrder=[\"pDy2GZ1Y5\",\"ai4hYZwKM\"];const serializationHash=\"framer-MywSj\";const variantClassNames={ai4hYZwKM:\"framer-v-baeivy\",pDy2GZ1Y5:\"framer-v-1jcalyw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Flip:\"ai4hYZwKM\",Plus:\"pDy2GZ1Y5\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"pDy2GZ1Y5\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pDy2GZ1Y5\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jcalyw\",className,classNames),\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"pDy2GZ1Y5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a254a299-ac90-4358-86dd-e4beba79300f, rgb(255, 255, 255))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48,...style},variants:{\"ai4hYZwKM-hover\":{backgroundColor:\"var(--token-59f39def-18a1-4713-a605-7f94533f383e, rgba(232, 232, 232, 0.8))\"},\"pDy2GZ1Y5-hover\":{backgroundColor:\"var(--token-59f39def-18a1-4713-a605-7f94533f383e, rgba(232, 232, 232, 0.8))\"}},...addPropertyOverrides({\"ai4hYZwKM-hover\":{\"data-framer-name\":undefined},\"pDy2GZ1Y5-hover\":{\"data-framer-name\":undefined},ai4hYZwKM:{\"data-framer-name\":\"Flip\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jt2mu1-container\",layoutDependency:layoutDependency,layoutId:\"O2BW6ADzA-container\",style:{opacity:0},variants:{\"ai4hYZwKM-hover\":{opacity:1},\"pDy2GZ1Y5-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(ElementsTooltip,{dvR17uw_x:\"rgb(32, 54, 77)\",height:\"100%\",hNHgX251k:\"Learn More\",id:\"O2BW6ADzA\",Jmoryo6og:\"var(--token-d76e7120-d27d-4da8-b15f-04234125e89d, rgb(255, 255, 255))\",layoutId:\"O2BW6ADzA\",style:{height:\"100%\",width:\"100%\"},variant:\"cTMm6CokS\",width:\"100%\",...addPropertyOverrides({ai4hYZwKM:{hNHgX251k:\"Flip It\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n0cy6c\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"GsUfjwpT6\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-a4ca4624-6ce1-4c78-808a-3f2e6f8c4f57, rgb(230, 230, 230))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n76nup-container\",layoutDependency:layoutDependency,layoutId:\"jumUIiSte-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4067807a-6def-49f9-ad55-81bfa24413df, rgb(128, 128, 128))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"jumUIiSte\",layoutId:\"jumUIiSte\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({ai4hYZwKM:{iconSelection:\"ArrowsClockwise\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MywSj.framer-1frkqax, .framer-MywSj .framer-1frkqax { display: block; }\",\".framer-MywSj.framer-1jcalyw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MywSj .framer-jt2mu1-container { bottom: -46px; flex: none; height: 32px; left: calc(50.00000000000002% - 99px / 2); position: absolute; width: 99px; z-index: 1; }\",\".framer-MywSj .framer-n0cy6c { 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: 6px; position: relative; width: min-content; }\",\".framer-MywSj .framer-n76nup-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MywSj.framer-1jcalyw, .framer-MywSj .framer-n0cy6c { gap: 0px; } .framer-MywSj.framer-1jcalyw > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-MywSj.framer-1jcalyw > :first-child, .framer-MywSj .framer-n0cy6c > :first-child { margin-left: 0px; } .framer-MywSj.framer-1jcalyw > :last-child, .framer-MywSj .framer-n0cy6c > :last-child { margin-right: 0px; } .framer-MywSj .framer-n0cy6c > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",'.framer-MywSj[data-border=\"true\"]::after, .framer-MywSj [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ai4hYZwKM\":{\"layout\":[\"auto\",\"auto\"]},\"R_74XrPe7\":{\"layout\":[\"auto\",\"auto\"]},\"ixhlhgToM\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerERIXNzQYd=withCSS(Component,css,\"framer-MywSj\");export default FramerERIXNzQYd;FramerERIXNzQYd.displayName=\"Button Plus Flip\";FramerERIXNzQYd.defaultProps={height:32,width:32};addPropertyControls(FramerERIXNzQYd,{variant:{options:[\"pDy2GZ1Y5\",\"ai4hYZwKM\"],optionTitles:[\"Plus\",\"Flip\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerERIXNzQYd,[{explicitInter:true,fonts:[]},...ElementsTooltipFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerERIXNzQYd\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ai4hYZwKM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"R_74XrPe7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ixhlhgToM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"32\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ERIXNzQYd.map", "// Generated by Framer (c60b0a0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/xm4VkAxGPTKjmIlpGjEc/X0OFIz4wJwlRuQ5Xvso2/IMUmVaXeS.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/aTplRPnwbc0xqzkau5jC/EVS9na7qNVpUKrH2hQ5q/jwzEa7FEA.js\";import ButtonPlusFlip from\"https://framerusercontent.com/modules/2GfWw1bUJL4bNMD52G4W/Ctxve7HSAWAvdWvsCMvs/ERIXNzQYd.js\";const ButtonPlusFlipFonts=getFonts(ButtonPlusFlip);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"LB__UcgAA\",\"ttyz4Bbzv\",\"miurD7bVJ\"];const serializationHash=\"framer-Uv1Db\";const variantClassNames={LB__UcgAA:\"framer-v-1i1w2fg\",miurD7bVJ:\"framer-v-657ylz\",ttyz4Bbzv:\"framer-v-16rt84\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"+ Button only\":\"RenAOC7Sx\",\"no link\":\"HMPB2e3gh\",\"Whole Card\":\"YmVrTA2HL\"};const humanReadableVariantMap={Big:\"LB__UcgAA\",Medium:\"ttyz4Bbzv\",Small:\"miurD7bVJ\"};const getProps=({bGCard,bGImage,description,height,id,image,imageFile,link,linkArea,title,width,...props})=>{var _ref,_ref1,_humanReadableEnumMap_linkArea,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6;return{...props,dZ7yFf9p3:(_ref=bGCard!==null&&bGCard!==void 0?bGCard:props.dZ7yFf9p3)!==null&&_ref!==void 0?_ref:\"var(--token-a176bde9-e6ec-4fe4-9b67-6ca843226d14, rgba(250, 249, 247, 0.8))\",GRr09VmPW:(_ref1=title!==null&&title!==void 0?title:props.GRr09VmPW)!==null&&_ref1!==void 0?_ref1:\"Product Name\",hXGlJLQFP:image!==null&&image!==void 0?image:props.hXGlJLQFP,iAUKjVdkW:(_ref3=(_ref2=(_humanReadableEnumMap_linkArea=humanReadableEnumMap[linkArea])!==null&&_humanReadableEnumMap_linkArea!==void 0?_humanReadableEnumMap_linkArea:linkArea)!==null&&_ref2!==void 0?_ref2:props.iAUKjVdkW)!==null&&_ref3!==void 0?_ref3:\"RenAOC7Sx\",JAvLRtTn8:link!==null&&link!==void 0?link:props.JAvLRtTn8,MNIK7kwgD:(_ref4=description!==null&&description!==void 0?description:props.MNIK7kwgD)!==null&&_ref4!==void 0?_ref4:\"Product Description\",NdCkhffts:imageFile!==null&&imageFile!==void 0?imageFile:props.NdCkhffts,variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"LB__UcgAA\",Wm1xfWUrZ:(_ref6=bGImage!==null&&bGImage!==void 0?bGImage:props.Wm1xfWUrZ)!==null&&_ref6!==void 0?_ref6:\"var(--token-5edd12d2-2f88-4d28-9880-938a86cc887b, rgb(255, 255, 255))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,NdCkhffts,hXGlJLQFP,GRr09VmPW,MNIK7kwgD,dZ7yFf9p3,Wm1xfWUrZ,iAUKjVdkW,JAvLRtTn8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LB__UcgAA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=equals(iAUKjVdkW,\"RenAOC7Sx\");const isDisplayed=()=>{if([\"ttyz4Bbzv\",\"miurD7bVJ\"].includes(baseVariant))return false;return true;};const visible1=equals(iAUKjVdkW,\"YmVrTA2HL\");const isDisplayed1=()=>{if([\"ttyz4Bbzv\",\"miurD7bVJ\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,\"aria-label\":\"Project\",className:cx(serializationHash,...sharedStyleClassNames,\"framer-1i1w2fg\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Big\",layoutDependency:layoutDependency,layoutId:\"LB__UcgAA\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-a4ca4624-6ce1-4c78-808a-3f2e6f8c4f57, rgba(230, 230, 230, 0.8))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backdropFilter:\"blur(5px)\",backgroundColor:dZ7yFf9p3,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 1px 40px 0px var(--token-677b888e-dec7-419d-956c-236092b6dc67, rgba(0, 0, 0, 0.25))\",WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({miurD7bVJ:{\"data-framer-name\":\"Small\"},ttyz4Bbzv:{\"data-framer-name\":\"Medium\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11eansd\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"gLd0pYZV0\",children:[/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"picture\",className:\"framer-qzxher\",\"data-framer-name\":\"Picture\",layoutDependency:layoutDependency,layoutId:\"m8MUwBaDq\",style:{backgroundColor:Wm1xfWUrZ,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:hXGlJLQFP&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:627.5,intrinsicWidth:302.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+0+0+0+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||394)-16-0)/1)*1-0)*.61-0-((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||394)-16-0)/1)*1-0)*.61-0)*1)),pixelHeight:1255,pixelWidth:605,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 0, 1px)`,...toResponsiveImage(NdCkhffts)},className:\"framer-qnv55g\",\"data-framer-name\":\"Picture\",layoutDependency:layoutDependency,layoutId:\"YPPNJFlyz\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({miurD7bVJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:627.5,intrinsicWidth:302.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+0+0+0+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||340)-16-0)/1)*1-0)*.61-0-((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||340)-16-0)/1)*1-0)*.61-0)*1)),pixelHeight:1255,pixelWidth:605,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 0, 1px)`,...toResponsiveImage(NdCkhffts)}},ttyz4Bbzv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:627.5,intrinsicWidth:302.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+0+0+0+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||367)-16-0)/1)*1-0)*.61-0-((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||367)-16-0)/1)*1-0)*.61-0)*1)),pixelHeight:1255,pixelWidth:605,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px) / 0, 1px)`,...toResponsiveImage(NdCkhffts)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"description\",className:\"framer-1w992jl\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"J4BwJuYMi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12f284e\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"U6vDaljCl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-13e1mql\",\"data-styles-preset\":\"IMUmVaXeS\",children:\"Product Name\"})}),className:\"framer-rbrj2r\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Bf4hf6ZWt\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:GRr09VmPW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z7oium\",\"data-styles-preset\":\"jwzEa7FEA\",children:\"Product Description\"})}),className:\"framer-1a2qkyo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IUO6KaIeN\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:MNIK7kwgD,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),visible&&/*#__PURE__*/_jsx(Link,{href:JAvLRtTn8,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1oe4e5p framer-euq5e9\",\"data-framer-name\":\"Link Plus\",layoutDependency:layoutDependency,layoutId:\"XMbYj28VB\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13hz1nk-container\",layoutDependency:layoutDependency,layoutId:\"YkJJcpzIs-container\",children:/*#__PURE__*/_jsx(ButtonPlusFlip,{height:\"100%\",id:\"YkJJcpzIs\",layoutId:\"YkJJcpzIs\",variant:\"pDy2GZ1Y5\",width:\"100%\"})})})})}),visible1&&/*#__PURE__*/_jsx(Link,{href:JAvLRtTn8,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8kfozr framer-euq5e9\",\"data-framer-name\":\"Link Card\",layoutDependency:layoutDependency,layoutId:\"McyeFpejO\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xt1527-container\",layoutDependency:layoutDependency,layoutId:\"ejHf2R45K-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4067807a-6def-49f9-ad55-81bfa24413df, rgb(119, 119, 119))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"ejHf2R45K\",layoutId:\"ejHf2R45K\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Uv1Db.framer-euq5e9, .framer-Uv1Db .framer-euq5e9 { display: block; }\",\".framer-Uv1Db.framer-1i1w2fg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 394px; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 290px; }\",\".framer-Uv1Db .framer-11eansd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Uv1Db .framer-qzxher { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 61%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Uv1Db .framer-qnv55g { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-Uv1Db .framer-1w992jl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 8px; position: relative; width: 100%; }\",\".framer-Uv1Db .framer-12f284e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Uv1Db .framer-rbrj2r, .framer-Uv1Db .framer-1a2qkyo { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Uv1Db .framer-1oe4e5p { align-content: flex-end; align-items: flex-end; bottom: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 8px; text-decoration: none; width: min-content; z-index: 1; }\",\".framer-Uv1Db .framer-13hz1nk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Uv1Db .framer-8kfozr { align-content: flex-end; align-items: flex-end; bottom: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 378px; justify-content: flex-end; left: calc(50.00000000000002% - 274px / 2); overflow: visible; padding: 0px; pointer-events: none; position: absolute; text-decoration: none; width: 274px; z-index: 1; }\",\".framer-Uv1Db .framer-xt1527-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uv1Db.framer-1i1w2fg, .framer-Uv1Db .framer-11eansd, .framer-Uv1Db .framer-qzxher, .framer-Uv1Db .framer-12f284e, .framer-Uv1Db .framer-1oe4e5p, .framer-Uv1Db .framer-8kfozr { gap: 0px; } .framer-Uv1Db.framer-1i1w2fg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Uv1Db.framer-1i1w2fg > :first-child, .framer-Uv1Db .framer-11eansd > :first-child, .framer-Uv1Db .framer-12f284e > :first-child, .framer-Uv1Db .framer-1oe4e5p > :first-child, .framer-Uv1Db .framer-8kfozr > :first-child { margin-top: 0px; } .framer-Uv1Db.framer-1i1w2fg > :last-child, .framer-Uv1Db .framer-11eansd > :last-child, .framer-Uv1Db .framer-12f284e > :last-child, .framer-Uv1Db .framer-1oe4e5p > :last-child, .framer-Uv1Db .framer-8kfozr > :last-child { margin-bottom: 0px; } .framer-Uv1Db .framer-11eansd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Uv1Db .framer-qzxher > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Uv1Db .framer-qzxher > :first-child { margin-left: 0px; } .framer-Uv1Db .framer-qzxher > :last-child { margin-right: 0px; } .framer-Uv1Db .framer-12f284e > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Uv1Db .framer-1oe4e5p > *, .framer-Uv1Db .framer-8kfozr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-Uv1Db.framer-v-16rt84.framer-1i1w2fg { aspect-ratio: 0.7358490566037735 / 1; height: var(--framer-aspect-ratio-supported, 367px); width: 270px; }\",\".framer-Uv1Db.framer-v-16rt84 .framer-qzxher { overflow: visible; }\",\".framer-Uv1Db.framer-v-16rt84 .framer-qnv55g { overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",\".framer-Uv1Db.framer-v-16rt84 .framer-1oe4e5p { min-height: 28px; min-width: 28px; padding: 4px; }\",\".framer-Uv1Db.framer-v-16rt84 .framer-8kfozr { height: 351px; left: calc(50.00000000000002% - 254px / 2); padding: 4px; pointer-events: unset; width: 254px; }\",\".framer-Uv1Db.framer-v-657ylz.framer-1i1w2fg { aspect-ratio: 0.7352941176470589 / 1; height: var(--framer-aspect-ratio-supported, 340px); width: 250px; }\",\".framer-Uv1Db.framer-v-657ylz .framer-11eansd { gap: 12px; }\",\".framer-Uv1Db.framer-v-657ylz .framer-1oe4e5p { min-height: 20px; min-width: 20px; }\",\".framer-Uv1Db.framer-v-657ylz .framer-8kfozr { height: 324px; left: calc(50.00000000000002% - 234px / 2); pointer-events: unset; width: 234px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uv1Db.framer-v-657ylz .framer-11eansd { gap: 0px; } .framer-Uv1Db.framer-v-657ylz .framer-11eansd > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Uv1Db.framer-v-657ylz .framer-11eansd > :first-child { margin-top: 0px; } .framer-Uv1Db.framer-v-657ylz .framer-11eansd > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Uv1Db[data-border=\"true\"]::after, .framer-Uv1Db [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 394\n * @framerIntrinsicWidth 290\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ttyz4Bbzv\":{\"layout\":[\"fixed\",\"fixed\"]},\"miurD7bVJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"NdCkhffts\":\"imageFile\",\"hXGlJLQFP\":\"image\",\"GRr09VmPW\":\"title\",\"MNIK7kwgD\":\"description\",\"dZ7yFf9p3\":\"bGCard\",\"Wm1xfWUrZ\":\"bGImage\",\"iAUKjVdkW\":\"linkArea\",\"JAvLRtTn8\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpwadqoFoy=withCSS(Component,css,\"framer-Uv1Db\");export default FramerpwadqoFoy;FramerpwadqoFoy.displayName=\"Card Product\";FramerpwadqoFoy.defaultProps={height:394,width:290};addPropertyControls(FramerpwadqoFoy,{variant:{options:[\"LB__UcgAA\",\"ttyz4Bbzv\",\"miurD7bVJ\"],optionTitles:[\"Big\",\"Medium\",\"Small\"],title:\"Variant\",type:ControlType.Enum},NdCkhffts:{title:\"Image File\",type:ControlType.ResponsiveImage},hXGlJLQFP:{defaultValue:false,title:\"Image\",type:ControlType.Boolean},GRr09VmPW:{defaultValue:\"Product Name\",displayTextArea:false,title:\"Title\",type:ControlType.String},MNIK7kwgD:{defaultValue:\"Product Description\",displayTextArea:false,title:\"Description\",type:ControlType.String},dZ7yFf9p3:{defaultValue:'var(--token-a176bde9-e6ec-4fe4-9b67-6ca843226d14, rgba(250, 249, 247, 0.8)) /* {\"name\":\"BG Card\"} */',title:\"BG Card\",type:ControlType.Color},Wm1xfWUrZ:{defaultValue:'var(--token-5edd12d2-2f88-4d28-9880-938a86cc887b, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"BG Image\",type:ControlType.Color},iAUKjVdkW:{defaultValue:\"RenAOC7Sx\",options:[\"YmVrTA2HL\",\"RenAOC7Sx\",\"HMPB2e3gh\"],optionTitles:[\"Whole Card\",\"+ Button only\",\"no link\"],title:\"Link Area\",type:ControlType.Enum},JAvLRtTn8:{title:\"Link\",type:ControlType.Link}});addFonts(FramerpwadqoFoy,[{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\"}]},...ButtonPlusFlipFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpwadqoFoy\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"NdCkhffts\\\":\\\"imageFile\\\",\\\"hXGlJLQFP\\\":\\\"image\\\",\\\"GRr09VmPW\\\":\\\"title\\\",\\\"MNIK7kwgD\\\":\\\"description\\\",\\\"dZ7yFf9p3\\\":\\\"bGCard\\\",\\\"Wm1xfWUrZ\\\":\\\"bGImage\\\",\\\"iAUKjVdkW\\\":\\\"linkArea\\\",\\\"JAvLRtTn8\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ttyz4Bbzv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"miurD7bVJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"394\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"290\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (acd6bc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import ElementsTooltip from\"https://framerusercontent.com/modules/7WPViKkLhmTbokT4AYG4/tzlULrGvxu039fDqfsye/yQquvq9YR.js\";const ElementsTooltipFonts=getFonts(ElementsTooltip);const PhosphorFonts=getFonts(Phosphor);const enabledGestures={VJVk039tB:{hover:true}};const cycleOrder=[\"VJVk039tB\",\"JzrUeZ4De\",\"H4mvYcNUL\"];const serializationHash=\"framer-1RMC7\";const variantClassNames={H4mvYcNUL:\"framer-v-133btyw\",JzrUeZ4De:\"framer-v-x3zd5i\",VJVk039tB:\"framer-v-1dc7viq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Mouse over\":\"VJVk039tB\",Phone:\"H4mvYcNUL\",Touch:\"JzrUeZ4De\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"VJVk039tB\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VJVk039tB\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"JzrUeZ4De\",\"H4mvYcNUL\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"H4mvYcNUL\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"H4mvYcNUL\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dc7viq\",className,classNames),\"data-framer-name\":\"Mouse over\",layoutDependency:layoutDependency,layoutId:\"VJVk039tB\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"VJVk039tB-hover\":{\"data-framer-name\":undefined},H4mvYcNUL:{\"data-framer-name\":\"Phone\"},JzrUeZ4De:{\"data-framer-name\":\"Touch\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hl9ggl-container\",layoutDependency:layoutDependency,layoutId:\"y7OhSazJi-container\",style:{opacity:0},variants:{\"VJVk039tB-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(ElementsTooltip,{dvR17uw_x:\"var(--token-7acb284b-df22-42b1-8d70-458fba6ade01, rgb(38, 47, 63))\",height:\"100%\",hNHgX251k:\"Drag & Drop the Cards\",id:\"y7OhSazJi\",Jmoryo6og:\"var(--token-d76e7120-d27d-4da8-b15f-04234125e89d, rgb(255, 255, 255))\",layoutId:\"y7OhSazJi\",style:{height:\"100%\",width:\"100%\"},variant:\"WkwZRlU3s\",width:\"100%\",...addPropertyOverrides({\"VJVk039tB-hover\":{dvR17uw_x:\"rgb(32, 54, 77)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pdwmir\",layoutDependency:layoutDependency,layoutId:\"sy7k_n6TD\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1abezks-container\",layoutDependency:layoutDependency,layoutId:\"iGH7ah4f5-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4067807a-6def-49f9-ad55-81bfa24413df, rgb(153, 153, 153))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"HandSwipeLeft\",id:\"iGH7ah4f5\",layoutId:\"iGH7ah4f5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dyqdg7-container\",layoutDependency:layoutDependency,layoutId:\"Ct4faC29d-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4067807a-6def-49f9-ad55-81bfa24413df, rgb(153, 153, 153))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"HandGrabbing\",id:\"Ct4faC29d\",layoutId:\"Ct4faC29d\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kn26x1-container\",layoutDependency:layoutDependency,layoutId:\"ZnmwVjR44-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4067807a-6def-49f9-ad55-81bfa24413df, rgb(153, 153, 153))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"HandSwipeRight\",id:\"ZnmwVjR44\",layoutId:\"ZnmwVjR44\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\",...addPropertyOverrides({H4mvYcNUL:{iconSelection:\"HandSwipeLeft\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rasqgj-container\",layoutDependency:layoutDependency,layoutId:\"Z2zQBxMmF-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4067807a-6def-49f9-ad55-81bfa24413df, rgb(153, 153, 153))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"HandSwipeRight\",id:\"Z2zQBxMmF\",layoutId:\"Z2zQBxMmF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1RMC7.framer-1thg2il, .framer-1RMC7 .framer-1thg2il { display: block; }\",\".framer-1RMC7.framer-1dc7viq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1RMC7 .framer-1hl9ggl-container { flex: none; height: 38px; position: relative; width: 200px; }\",\".framer-1RMC7 .framer-1pdwmir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 95px; }\",\".framer-1RMC7 .framer-1abezks-container, .framer-1RMC7 .framer-dyqdg7-container, .framer-1RMC7 .framer-1kn26x1-container { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 1px; }\",\".framer-1RMC7 .framer-rasqgj-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1RMC7.framer-1dc7viq, .framer-1RMC7 .framer-1pdwmir { gap: 0px; } .framer-1RMC7.framer-1dc7viq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-1RMC7.framer-1dc7viq > :first-child { margin-top: 0px; } .framer-1RMC7.framer-1dc7viq > :last-child { margin-bottom: 0px; } .framer-1RMC7 .framer-1pdwmir > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1RMC7 .framer-1pdwmir > :first-child { margin-left: 0px; } .framer-1RMC7 .framer-1pdwmir > :last-child { margin-right: 0px; } }\",\".framer-1RMC7.framer-v-x3zd5i.framer-1dc7viq, .framer-1RMC7.framer-v-133btyw.framer-1dc7viq { cursor: unset; }\",\".framer-1RMC7.framer-v-133btyw .framer-1kn26x1-container { aspect-ratio: unset; flex: none; height: 24px; width: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 86\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"JzrUeZ4De\":{\"layout\":[\"auto\",\"auto\"]},\"H4mvYcNUL\":{\"layout\":[\"auto\",\"auto\"]},\"tK3d6boc9\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerypaEivyGa=withCSS(Component,css,\"framer-1RMC7\");export default FramerypaEivyGa;FramerypaEivyGa.displayName=\"DragDrop\";FramerypaEivyGa.defaultProps={height:86,width:200};addPropertyControls(FramerypaEivyGa,{variant:{options:[\"VJVk039tB\",\"JzrUeZ4De\",\"H4mvYcNUL\"],optionTitles:[\"Mouse over\",\"Touch\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerypaEivyGa,[{explicitInter:true,fonts:[]},...ElementsTooltipFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerypaEivyGa\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JzrUeZ4De\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"H4mvYcNUL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tK3d6boc9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"86\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ypaEivyGa.map", "// Generated by Framer (2a6858f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/s8KoqWSd7OOFVFWjfSWd/SmoothScroll_Prod.js\";import Navigation from\"#framer/local/canvasComponent/KgoNi4cSI/KgoNi4cSI.js\";import Footer from\"#framer/local/canvasComponent/klK_eksDB/klK_eksDB.js\";import CardProduct from\"#framer/local/canvasComponent/pwadqoFoy/pwadqoFoy.js\";import DragDrop from\"#framer/local/canvasComponent/ypaEivyGa/ypaEivyGa.js\";import*as sharedStyle from\"#framer/local/css/WPmU38EE7/WPmU38EE7.js\";import*as sharedStyle1 from\"#framer/local/css/z0IC7sdWc/z0IC7sdWc.js\";import metadataProvider from\"#framer/local/webPageMetadata/YDBz_5hEL/YDBz_5hEL.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CardProductFonts=getFonts(CardProduct);const DragDropFonts=getFonts(DragDrop);const FooterFonts=getFonts(Footer);const breakpoints={IzOfVt_gM:\"(max-width: 800px)\",KhKk2EsZO:\"(min-width: 801px) and (max-width: 1199px)\",zbJ9MAbLT:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hH6zq\";const variantClassNames={IzOfVt_gM:\"framer-v-x9k50e\",KhKk2EsZO:\"framer-v-1s85bjr\",zbJ9MAbLT:\"framer-v-zuud4w\"};const transition1={damping:50,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:.1,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition3={delay:.9,duration:.9,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:.7,duration:.9,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:-2,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition5};const animation7={cursor:\"grabbing\"};const animation8={opacity:1,rotate:-2,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation9={opacity:1,rotate:3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:170,y:60};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition5};const animation11={opacity:1,rotate:3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:10,y:100};const animation12={opacity:1,rotate:3,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition5};const animation13={opacity:1,rotate:3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation14={opacity:1,rotate:3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-220,y:80};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition6={damping:30,delay:0,mass:4,stiffness:300,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"zbJ9MAbLT\",Phone:\"IzOfVt_gM\",Tablet:\"KhKk2EsZO\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"zbJ9MAbLT\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-hH6zq`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-hH6zq`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"IzOfVt_gM\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zbJ9MAbLT\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zuud4w\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gzbbj2-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"emg0Oxof2\",intensity:10,layoutId:\"emg0Oxof2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fo3s3e-container\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{variant:\"bSoCDARBW\"},KhKk2EsZO:{variant:\"gXE_EDvgH\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"aFqnf7OPY\",layoutId:\"aFqnf7OPY\",style:{width:\"100%\"},variant:\"ny67fd05j\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u0h8la\",\"data-framer-name\":\"BG Colors\",name:\"BG Colors\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q082kk\",\"data-framer-name\":\"blue\",name:\"blue\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lstusv\",\"data-framer-name\":\"pink\",name:\"pink\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-okh75k\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,\"aria-label\":\"Header\",className:\"framer-sjavj7\",\"data-framer-appear-id\":\"sjavj7\",\"data-framer-name\":\"Headline\",initial:animation2,name:\"Headline\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cqdc9r\",\"data-framer-name\":\"Big\",name:\"Big\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17x4c76\",\"data-styles-preset\":\"WPmU38EE7\",children:\"Simple. Beautiful. Caring. Crafted.\"})}),className:\"framer-6dqcgh\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lapqix\",\"data-framer-name\":\"Small\",name:\"Small\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{animate:animation5}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10umtxo\",\"data-styles-preset\":\"z0IC7sdWc\",children:\"We craft beautifully simple apps with care: care for our team, care for our users, and care for every detail.\"})}),className:\"framer-156gtm0\",\"data-framer-appear-id\":\"156gtm0\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-rdukhf hidden-x9k50e\",\"data-framer-name\":\"Cards BG Grid\",name:\"Cards BG Grid\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nsgg2y\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1akecnz\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x9vii5\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4z3a2q\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ee1wb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-obf1a4\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p7v620\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w86iui\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wbgcai\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rqg3du\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17w4yl7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m96x2y\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h9rn39\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1demmkr\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qja8ub\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m3sxg2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hjbnsz\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ndasib\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t11sjb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ougsr4\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nnea49\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jofoui\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8k3xou\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-apy5tu\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mygdtw\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15aipw3\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ggm81r\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7tv3wm\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gt7gct\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pds7yq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wreoyl\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vv2gnm\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yuybbc\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xnamxs\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13772jw\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c3bqjp\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dow5yc\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w07oj5\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-glokej\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16iafvl\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jg01y1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x5j66f\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h2vdsg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eyfj6z\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yfmvo9\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m0myok\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1269yv2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10isnja\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tsbpy3\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nfwd3h\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c6emch\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dxh7hr\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-149sdko\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dytctn\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l40dq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-187n2is\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i4oe2r\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sdku9u\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r5e9u9\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tm52wp\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gqhsyg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ehbia\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1972shg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oj12lu\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-815v4b\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1veepoh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6f3oct\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u6uj8m\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5tvmnl\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-41ilqk\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k1t5zb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12hulkw\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-120iksk\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sj7yc7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zo21jt\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13mqo9a\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xs8q9r\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p21zn1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1900urg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3l0omc\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pei7by\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sry9a1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cofmw0\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kwrmap\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-et3pom\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pqslad\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d0n7t0\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eqccv5\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nirwbb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jhwipv\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-153zsq4\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wmte45\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16lbsle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yf791i\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cyql1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9w37zv\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x2q74n\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18lb9ff\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rn5upm\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1chcp0m\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yxp41u\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fm34iy\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10w4lba\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-196wtvx\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2e0ter\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q3vcqh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-131i5w6\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hj8134\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q7p2ip\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nislbt\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vaus84\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u40i8z\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mfpak7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cjdex7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bf73sy\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ilcszz\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gteb5i\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fnosvy\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mund55\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-llrgkn\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1psnjxu\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ntlyma\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-43lhkd\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-199yley\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z6j6ks\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y1xapd\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k3aog6\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1imheh7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7gdesc\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-101t7t1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fuaubn\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ksiqeg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-efknhs\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-knfhis\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18mz0h4\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14uxl45\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-34p8os\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hcxe4e\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-22onuh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13t62la\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1in10xu\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ihuhs4\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-101uiel\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eahem8\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ilybye\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14g6cfc\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xeuy25\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nnvwsd\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15kxa8u\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12zi8cy\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vnkrdd\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mhx2td\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k78gvs\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lcopcm\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h1naqk\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mlwdx1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gwbt41\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nkfrt7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5j8dm5\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-176s0xf\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16hdbcr\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e8jlmq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gtxtk4\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dqq249\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cqkj5o\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bx3hck\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4tjyr2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e3kogu\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18r2eqp\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yzmsz3\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w0ag8p\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cti64z\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vgcgb1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kgzdja\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-afl96\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x63pee\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10vmovj\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qdd993\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qgiamd\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ozyi12\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1shvtbm\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o5wof4\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4nj3st\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vygrbz\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nveo6q\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xilstg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-olptl1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9kigsq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vl0plp\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11k4pi2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ivwb5b\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lgkich\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13zq8ta\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qewzk\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7vwjk7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hbq5cg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nvqjge\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cswgv1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q193af\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-73z258\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jcg8hg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g7n48h\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-98kp1l\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uhrxv7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h4if4w\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mywuwg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vpwecr\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f7r3be\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r6h51e\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xb7zae\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14f28jn\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k7dgzz\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13a30iv\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yniprq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rvjzxi\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jv12xu\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d5u3cb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ia00n8\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3bs0z6\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hubnq2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f8nd99\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ikr7wx\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r5a2o7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{\"data-hide-scrollbars\":true}},children:/*#__PURE__*/_jsxs(\"div\",{\"aria-label\":\"projects\",className:\"framer-o4dbta\",\"data-framer-name\":\"Cards\",name:\"Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{y:690},KhKk2EsZO:{y:749}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:394,y:883,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{animate:undefined,drag:undefined,initial:undefined,optimized:undefined,style:{rotate:-2},whileHover:undefined,whileTap:undefined},KhKk2EsZO:{whileHover:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation8,className:\"framer-p2y0a4-container\",\"data-framer-appear-id\":\"p2y0a4\",drag:true,dragMomentum:false,initial:animation9,onMouseDown:preventDefault,optimized:true,style:{rotate:-2,transformPerspective:1200},whileHover:animation6,whileTap:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{iAUKjVdkW:\"YmVrTA2HL\",variant:\"ttyz4Bbzv\"},KhKk2EsZO:{iAUKjVdkW:\"YmVrTA2HL\",variant:\"miurD7bVJ\"}},children:/*#__PURE__*/_jsx(CardProduct,{dZ7yFf9p3:\"var(--token-a176bde9-e6ec-4fe4-9b67-6ca843226d14, rgba(250, 249, 247, 0.8))\",GRr09VmPW:\"Rotations: Shift Buddy System\",height:\"100%\",hXGlJLQFP:true,iAUKjVdkW:\"RenAOC7Sx\",id:\"lt8nM1psP\",JAvLRtTn8:\"https://apps.apple.com/us/app/rotations-shift-buddy-system/id1616212306\",layoutId:\"lt8nM1psP\",MNIK7kwgD:\"Makes it easy to rotate team members on an interval.\",NdCkhffts:addImageAlt({src:\"https://framerusercontent.com/images/wKBb4AzdjrzSPQ9AEokc4hEopis.png\",srcSet:\"https://framerusercontent.com/images/wKBb4AzdjrzSPQ9AEokc4hEopis.png?scale-down-to=512 512w,https://framerusercontent.com/images/wKBb4AzdjrzSPQ9AEokc4hEopis.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wKBb4AzdjrzSPQ9AEokc4hEopis.png 2048w\"},\"\"),variant:\"LB__UcgAA\",width:\"100%\",Wm1xfWUrZ:\"var(--token-d10688ec-4d2d-4448-a87e-b694fd1c0ecd, rgb(255, 204, 230))\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{y:690},KhKk2EsZO:{y:721}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:394,y:771,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{animate:undefined,drag:undefined,initial:undefined,optimized:undefined,style:{},whileHover:undefined,whileTap:undefined},KhKk2EsZO:{whileHover:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation1,className:\"framer-f2mchc-container\",\"data-framer-appear-id\":\"f2mchc\",drag:true,dragMomentum:false,initial:animation11,onMouseDown:preventDefault,optimized:true,style:{transformPerspective:1200},whileHover:animation10,whileTap:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{iAUKjVdkW:\"YmVrTA2HL\",variant:\"ttyz4Bbzv\"},KhKk2EsZO:{iAUKjVdkW:\"YmVrTA2HL\",variant:\"miurD7bVJ\"}},children:/*#__PURE__*/_jsx(CardProduct,{dZ7yFf9p3:\"var(--token-a176bde9-e6ec-4fe4-9b67-6ca843226d14, rgba(255, 255, 255, 0.9))\",GRr09VmPW:\"Restore: Guest Issue Tracking\",height:\"100%\",hXGlJLQFP:true,iAUKjVdkW:\"RenAOC7Sx\",id:\"H_25Kl2fd\",JAvLRtTn8:\"https://restoreapp.com\",layoutId:\"H_25Kl2fd\",MNIK7kwgD:\"Lets teams track, resolve, and analyze guest issues.\",NdCkhffts:addImageAlt({src:\"https://framerusercontent.com/images/qcRRpPHI5eCHjVl8xQCkY7Pdlyo.png\",srcSet:\"https://framerusercontent.com/images/qcRRpPHI5eCHjVl8xQCkY7Pdlyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/qcRRpPHI5eCHjVl8xQCkY7Pdlyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qcRRpPHI5eCHjVl8xQCkY7Pdlyo.png 2048w\"},\"\"),variant:\"LB__UcgAA\",width:\"100%\",Wm1xfWUrZ:\"var(--token-ba1f11ab-8de9-4472-a79c-8bb7c6f1b93d, rgba(47, 195, 120, 0.9))\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{y:690},KhKk2EsZO:{y:753}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:394,y:863,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{animate:undefined,drag:undefined,initial:undefined,optimized:undefined,style:{rotate:3},whileHover:undefined,whileTap:undefined},KhKk2EsZO:{whileHover:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation13,className:\"framer-1kfqsmw-container\",\"data-framer-appear-id\":\"1kfqsmw\",drag:true,dragMomentum:false,initial:animation14,onMouseDown:preventDefault,optimized:true,style:{rotate:3,transformPerspective:1200},whileHover:animation12,whileTap:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{iAUKjVdkW:\"YmVrTA2HL\",variant:\"ttyz4Bbzv\"},KhKk2EsZO:{variant:\"miurD7bVJ\"}},children:/*#__PURE__*/_jsx(CardProduct,{dZ7yFf9p3:\"var(--token-a176bde9-e6ec-4fe4-9b67-6ca843226d14, rgba(255, 255, 255, 0.8))\",GRr09VmPW:\"Restore: Food Waste Tracking\",height:\"100%\",hXGlJLQFP:true,iAUKjVdkW:\"RenAOC7Sx\",id:\"tXdxtQm3a\",JAvLRtTn8:\"https://restoreapp.com\",layoutId:\"tXdxtQm3a\",MNIK7kwgD:\"Lets teams track and reduce food waste in real time.\",NdCkhffts:addImageAlt({src:\"https://framerusercontent.com/images/qcRRpPHI5eCHjVl8xQCkY7Pdlyo.png\",srcSet:\"https://framerusercontent.com/images/qcRRpPHI5eCHjVl8xQCkY7Pdlyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/qcRRpPHI5eCHjVl8xQCkY7Pdlyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qcRRpPHI5eCHjVl8xQCkY7Pdlyo.png 2048w\"},\"\"),variant:\"LB__UcgAA\",width:\"100%\",Wm1xfWUrZ:\"var(--token-e6182b83-5b8b-40ed-abc5-cf5048d8f6c4, rgba(27, 125, 242, 0.9))\"})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2qkts5\",\"data-framer-name\":\"Drag & Drop\",name:\"Drag & Drop\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{y:1161},KhKk2EsZO:{y:1403}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,y:1457,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12ek2ks-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{variant:\"H4mvYcNUL\"}},children:/*#__PURE__*/_jsx(DragDrop,{height:\"100%\",id:\"euznKZFDG\",layoutId:\"euznKZFDG\",variant:\"VJVk039tB\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{y:1311},KhKk2EsZO:{y:1649}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"100vw\",y:1687,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sumsqe-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IzOfVt_gM:{variant:\"nIYRLMEuc\"},KhKk2EsZO:{variant:\"Pd8_a81UF\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"KHPx7XUkw\",layoutId:\"KHPx7XUkw\",style:{width:\"100%\"},variant:\"mv6Jn0IRW\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-hH6zq { background: var(--token-a254a299-ac90-4358-86dd-e4beba79300f, rgb(255, 255, 255)); }`,\".framer-hH6zq.framer-9a2bnd, .framer-hH6zq .framer-9a2bnd { display: block; }\",\".framer-hH6zq.framer-zuud4w { align-content: center; align-items: center; background-color: var(--token-a254a299-ac90-4358-86dd-e4beba79300f, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-hH6zq .framer-gzbbj2-container, .framer-hH6zq .framer-12ek2ks-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hH6zq .framer-1fo3s3e-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 5; }\",\".framer-hH6zq .framer-1u0h8la { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 75%; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-hH6zq .framer-1q082kk { background: radial-gradient(46.6% 44.3% at 62.5% 44.7%, rgba(27, 124, 242, 0.12) 0%, rgba(171, 171, 171, 0) 100%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(49.93324432576771% - 99.96662216288385% / 2); width: 100%; z-index: 1; }\",'.framer-hH6zq .framer-1lstusv { background: radial-gradient(46.6% 44.3% at 31.8% 55.50000000000001%, var(--token-1b52c661-e599-4c01-81dd-78c58845f4fb, rgba(232, 21, 172, 0.09)) /* {\"name\":\"BG Dark Mode Color 2\"} */ 0%, rgba(171, 171, 171, 0) 100%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(49.93324432576771% - 99.96662216288385% / 2); width: 100%; z-index: 1; }',\".framer-hH6zq .framer-okh75k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 976px; overflow: visible; padding: 144px 0px 144px 0px; position: relative; width: 100%; }\",\".framer-hH6zq .framer-sjavj7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 976px; z-index: 2; }\",\".framer-hH6zq .framer-cqdc9r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hH6zq .framer-6dqcgh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-hH6zq .framer-1lapqix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-hH6zq .framer-156gtm0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",\".framer-hH6zq .framer-rdukhf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 535px; transform: translateX(-50%); width: 1104px; z-index: 0; }\",'.framer-hH6zq .framer-nsgg2y { background: radial-gradient(55.7% 57.699999999999996% at 50% 50%, var(--token-32c51cd0-49ca-4e2e-8967-81f638fc5e4e, rgba(34, 34, 34, 0.15)) /* {\"name\":\"Grid\"} */ 0%, var(--token-a254a299-ac90-4358-86dd-e4beba79300f, rgb(255, 255, 255)) /* {\"name\":\"BG Level 0 - Background\"} */ 100%); display: grid; flex: none; gap: 1px; grid-auto-rows: 64px; grid-template-columns: repeat(17, 64px); grid-template-rows: repeat(4, 64px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }',\".framer-hH6zq .framer-1akecnz, .framer-hH6zq .framer-x9vii5, .framer-hH6zq .framer-4z3a2q, .framer-hH6zq .framer-ee1wb, .framer-hH6zq .framer-obf1a4, .framer-hH6zq .framer-1p7v620, .framer-hH6zq .framer-1w86iui, .framer-hH6zq .framer-1wbgcai, .framer-hH6zq .framer-1rqg3du, .framer-hH6zq .framer-17w4yl7, .framer-hH6zq .framer-1m96x2y, .framer-hH6zq .framer-1h9rn39, .framer-hH6zq .framer-1demmkr, .framer-hH6zq .framer-qja8ub, .framer-hH6zq .framer-1m3sxg2, .framer-hH6zq .framer-1hjbnsz, .framer-hH6zq .framer-1ndasib, .framer-hH6zq .framer-t11sjb, .framer-hH6zq .framer-1ougsr4, .framer-hH6zq .framer-nnea49, .framer-hH6zq .framer-1jofoui, .framer-hH6zq .framer-8k3xou, .framer-hH6zq .framer-apy5tu, .framer-hH6zq .framer-mygdtw, .framer-hH6zq .framer-15aipw3, .framer-hH6zq .framer-1ggm81r, .framer-hH6zq .framer-7tv3wm, .framer-hH6zq .framer-1gt7gct, .framer-hH6zq .framer-1pds7yq, .framer-hH6zq .framer-wreoyl, .framer-hH6zq .framer-vv2gnm, .framer-hH6zq .framer-yuybbc, .framer-hH6zq .framer-1xnamxs, .framer-hH6zq .framer-13772jw, .framer-hH6zq .framer-c3bqjp, .framer-hH6zq .framer-1dow5yc, .framer-hH6zq .framer-w07oj5, .framer-hH6zq .framer-glokej, .framer-hH6zq .framer-16iafvl, .framer-hH6zq .framer-1jg01y1, .framer-hH6zq .framer-x5j66f, .framer-hH6zq .framer-1h2vdsg, .framer-hH6zq .framer-1eyfj6z, .framer-hH6zq .framer-yfmvo9, .framer-hH6zq .framer-1m0myok, .framer-hH6zq .framer-1269yv2, .framer-hH6zq .framer-10isnja, .framer-hH6zq .framer-tsbpy3, .framer-hH6zq .framer-nfwd3h, .framer-hH6zq .framer-c6emch, .framer-hH6zq .framer-dxh7hr, .framer-hH6zq .framer-149sdko, .framer-hH6zq .framer-1dytctn, .framer-hH6zq .framer-1l40dq, .framer-hH6zq .framer-187n2is, .framer-hH6zq .framer-i4oe2r, .framer-hH6zq .framer-sdku9u, .framer-hH6zq .framer-1r5e9u9, .framer-hH6zq .framer-1tm52wp, .framer-hH6zq .framer-gqhsyg, .framer-hH6zq .framer-17ehbia, .framer-hH6zq .framer-1972shg, .framer-hH6zq .framer-1oj12lu, .framer-hH6zq .framer-815v4b, .framer-hH6zq .framer-1veepoh, .framer-hH6zq .framer-6f3oct, .framer-hH6zq .framer-u6uj8m, .framer-hH6zq .framer-5tvmnl, .framer-hH6zq .framer-41ilqk, .framer-hH6zq .framer-1k1t5zb, .framer-hH6zq .framer-12hulkw, .framer-hH6zq .framer-120iksk, .framer-hH6zq .framer-sj7yc7, .framer-hH6zq .framer-zo21jt, .framer-hH6zq .framer-13mqo9a, .framer-hH6zq .framer-1xs8q9r, .framer-hH6zq .framer-1p21zn1, .framer-hH6zq .framer-1900urg, .framer-hH6zq .framer-3l0omc, .framer-hH6zq .framer-pei7by, .framer-hH6zq .framer-sry9a1, .framer-hH6zq .framer-1cofmw0, .framer-hH6zq .framer-1kwrmap, .framer-hH6zq .framer-et3pom, .framer-hH6zq .framer-1pqslad, .framer-hH6zq .framer-d0n7t0, .framer-hH6zq .framer-eqccv5, .framer-hH6zq .framer-nirwbb, .framer-hH6zq .framer-jhwipv, .framer-hH6zq .framer-153zsq4, .framer-hH6zq .framer-wmte45, .framer-hH6zq .framer-16lbsle, .framer-hH6zq .framer-yf791i, .framer-hH6zq .framer-cyql1, .framer-hH6zq .framer-9w37zv, .framer-hH6zq .framer-1x2q74n, .framer-hH6zq .framer-18lb9ff, .framer-hH6zq .framer-rn5upm, .framer-hH6zq .framer-1chcp0m, .framer-hH6zq .framer-1yxp41u, .framer-hH6zq .framer-1fm34iy, .framer-hH6zq .framer-10w4lba, .framer-hH6zq .framer-196wtvx, .framer-hH6zq .framer-2e0ter, .framer-hH6zq .framer-q3vcqh, .framer-hH6zq .framer-131i5w6, .framer-hH6zq .framer-1hj8134, .framer-hH6zq .framer-q7p2ip, .framer-hH6zq .framer-1nislbt, .framer-hH6zq .framer-1vaus84, .framer-hH6zq .framer-u40i8z, .framer-hH6zq .framer-mfpak7, .framer-hH6zq .framer-cjdex7, .framer-hH6zq .framer-1bf73sy, .framer-hH6zq .framer-ilcszz, .framer-hH6zq .framer-1gteb5i, .framer-hH6zq .framer-fnosvy, .framer-hH6zq .framer-mund55, .framer-hH6zq .framer-llrgkn, .framer-hH6zq .framer-1psnjxu, .framer-hH6zq .framer-1ntlyma, .framer-hH6zq .framer-43lhkd, .framer-hH6zq .framer-199yley, .framer-hH6zq .framer-z6j6ks, .framer-hH6zq .framer-y1xapd, .framer-hH6zq .framer-k3aog6, .framer-hH6zq .framer-1imheh7, .framer-hH6zq .framer-7gdesc, .framer-hH6zq .framer-101t7t1, .framer-hH6zq .framer-fuaubn, .framer-hH6zq .framer-ksiqeg, .framer-hH6zq .framer-efknhs, .framer-hH6zq .framer-knfhis, .framer-hH6zq .framer-18mz0h4, .framer-hH6zq .framer-14uxl45, .framer-hH6zq .framer-34p8os, .framer-hH6zq .framer-1hcxe4e, .framer-hH6zq .framer-22onuh, .framer-hH6zq .framer-13t62la, .framer-hH6zq .framer-1in10xu, .framer-hH6zq .framer-ihuhs4, .framer-hH6zq .framer-101uiel, .framer-hH6zq .framer-1eahem8, .framer-hH6zq .framer-ilybye, .framer-hH6zq .framer-14g6cfc, .framer-hH6zq .framer-1xeuy25, .framer-hH6zq .framer-nnvwsd, .framer-hH6zq .framer-15kxa8u, .framer-hH6zq .framer-12zi8cy, .framer-hH6zq .framer-1vnkrdd, .framer-hH6zq .framer-mhx2td, .framer-hH6zq .framer-1k78gvs, .framer-hH6zq .framer-lcopcm, .framer-hH6zq .framer-h1naqk, .framer-hH6zq .framer-1mlwdx1, .framer-hH6zq .framer-1gwbt41, .framer-hH6zq .framer-1nkfrt7, .framer-hH6zq .framer-5j8dm5, .framer-hH6zq .framer-176s0xf, .framer-hH6zq .framer-16hdbcr, .framer-hH6zq .framer-1e8jlmq, .framer-hH6zq .framer-1gtxtk4, .framer-hH6zq .framer-1dqq249, .framer-hH6zq .framer-cqkj5o, .framer-hH6zq .framer-1bx3hck, .framer-hH6zq .framer-4tjyr2, .framer-hH6zq .framer-1e3kogu, .framer-hH6zq .framer-18r2eqp, .framer-hH6zq .framer-1yzmsz3, .framer-hH6zq .framer-1w0ag8p, .framer-hH6zq .framer-1cti64z, .framer-hH6zq .framer-vgcgb1, .framer-hH6zq .framer-1kgzdja, .framer-hH6zq .framer-afl96, .framer-hH6zq .framer-1x63pee, .framer-hH6zq .framer-10vmovj, .framer-hH6zq .framer-qdd993, .framer-hH6zq .framer-1qgiamd, .framer-hH6zq .framer-1ozyi12, .framer-hH6zq .framer-1shvtbm, .framer-hH6zq .framer-1o5wof4, .framer-hH6zq .framer-4nj3st, .framer-hH6zq .framer-1vygrbz, .framer-hH6zq .framer-nveo6q, .framer-hH6zq .framer-1xilstg, .framer-hH6zq .framer-olptl1, .framer-hH6zq .framer-9kigsq, .framer-hH6zq .framer-vl0plp, .framer-hH6zq .framer-11k4pi2, .framer-hH6zq .framer-ivwb5b, .framer-hH6zq .framer-1lgkich, .framer-hH6zq .framer-13zq8ta, .framer-hH6zq .framer-qewzk, .framer-hH6zq .framer-7vwjk7, .framer-hH6zq .framer-hbq5cg, .framer-hH6zq .framer-1nvqjge, .framer-hH6zq .framer-cswgv1, .framer-hH6zq .framer-1q193af, .framer-hH6zq .framer-73z258, .framer-hH6zq .framer-jcg8hg, .framer-hH6zq .framer-1g7n48h, .framer-hH6zq .framer-98kp1l, .framer-hH6zq .framer-1uhrxv7, .framer-hH6zq .framer-1h4if4w, .framer-hH6zq .framer-mywuwg, .framer-hH6zq .framer-1vpwecr, .framer-hH6zq .framer-1f7r3be, .framer-hH6zq .framer-r6h51e, .framer-hH6zq .framer-1xb7zae, .framer-hH6zq .framer-14f28jn, .framer-hH6zq .framer-k7dgzz, .framer-hH6zq .framer-13a30iv, .framer-hH6zq .framer-1yniprq, .framer-hH6zq .framer-rvjzxi, .framer-hH6zq .framer-1jv12xu, .framer-hH6zq .framer-1d5u3cb, .framer-hH6zq .framer-1ia00n8, .framer-hH6zq .framer-3bs0z6, .framer-hH6zq .framer-hubnq2, .framer-hH6zq .framer-1f8nd99, .framer-hH6zq .framer-ikr7wx { align-self: start; background-color: var(--token-a254a299-ac90-4358-86dd-e4beba79300f, #ffffff); flex: none; height: 64px; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-hH6zq .framer-1r5a2o7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hH6zq .framer-o4dbta { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 700px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-hH6zq .framer-p2y0a4-container { cursor: grab; flex: none; height: auto; left: 137px; position: absolute; top: 174px; width: auto; z-index: 1; }\",\".framer-hH6zq .framer-f2mchc-container { cursor: grab; flex: none; height: auto; left: 343px; position: absolute; top: 62px; width: auto; z-index: 1; }\",\".framer-hH6zq .framer-1kfqsmw-container { cursor: grab; flex: none; height: auto; left: 554px; position: absolute; top: 154px; width: auto; z-index: 1; }\",\".framer-hH6zq .framer-2qkts5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-hH6zq .framer-sumsqe-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hH6zq.framer-zuud4w, .framer-hH6zq .framer-1u0h8la, .framer-hH6zq .framer-okh75k, .framer-hH6zq .framer-sjavj7, .framer-hH6zq .framer-cqdc9r, .framer-hH6zq .framer-1lapqix, .framer-hH6zq .framer-rdukhf, .framer-hH6zq .framer-1r5a2o7, .framer-hH6zq .framer-o4dbta, .framer-hH6zq .framer-2qkts5 { gap: 0px; } .framer-hH6zq.framer-zuud4w > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hH6zq.framer-zuud4w > :first-child, .framer-hH6zq .framer-1u0h8la > :first-child, .framer-hH6zq .framer-okh75k > :first-child, .framer-hH6zq .framer-sjavj7 > :first-child, .framer-hH6zq .framer-cqdc9r > :first-child, .framer-hH6zq .framer-rdukhf > :first-child { margin-top: 0px; } .framer-hH6zq.framer-zuud4w > :last-child, .framer-hH6zq .framer-1u0h8la > :last-child, .framer-hH6zq .framer-okh75k > :last-child, .framer-hH6zq .framer-sjavj7 > :last-child, .framer-hH6zq .framer-cqdc9r > :last-child, .framer-hH6zq .framer-rdukhf > :last-child { margin-bottom: 0px; } .framer-hH6zq .framer-1u0h8la > *, .framer-hH6zq .framer-rdukhf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hH6zq .framer-okh75k > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-hH6zq .framer-sjavj7 > *, .framer-hH6zq .framer-cqdc9r > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-hH6zq .framer-1lapqix > *, .framer-hH6zq .framer-1r5a2o7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hH6zq .framer-1lapqix > :first-child, .framer-hH6zq .framer-1r5a2o7 > :first-child, .framer-hH6zq .framer-o4dbta > :first-child, .framer-hH6zq .framer-2qkts5 > :first-child { margin-left: 0px; } .framer-hH6zq .framer-1lapqix > :last-child, .framer-hH6zq .framer-1r5a2o7 > :last-child, .framer-hH6zq .framer-o4dbta > :last-child, .framer-hH6zq .framer-2qkts5 > :last-child { margin-right: 0px; } .framer-hH6zq .framer-o4dbta > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-hH6zq .framer-2qkts5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",`@media (min-width: 801px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-hH6zq { background: var(--token-a254a299-ac90-4358-86dd-e4beba79300f, rgb(255, 255, 255)); } .framer-hH6zq.framer-zuud4w { overflow: hidden; width: 801px; } .framer-hH6zq .framer-okh75k { gap: 24px; padding: 144px 0px 160px 0px; } .framer-hH6zq .framer-sjavj7 { gap: 40px; width: 801px; } .framer-hH6zq .framer-cqdc9r { gap: 32px; } .framer-hH6zq .framer-156gtm0 { width: 510px; } .framer-hH6zq .framer-rdukhf { left: 50%; top: 453px; width: 100%; } .framer-hH6zq .framer-nsgg2y { height: 821px; } .framer-hH6zq .framer-o4dbta { flex: none; height: 710px; width: 801px; } .framer-hH6zq .framer-p2y0a4-container { left: 83px; top: 80px; } .framer-hH6zq .framer-f2mchc-container { left: 297px; top: 52px; } .framer-hH6zq .framer-1kfqsmw-container { left: 492px; top: 84px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hH6zq .framer-okh75k, .framer-hH6zq .framer-sjavj7, .framer-hH6zq .framer-cqdc9r { gap: 0px; } .framer-hH6zq .framer-okh75k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hH6zq .framer-okh75k > :first-child, .framer-hH6zq .framer-sjavj7 > :first-child, .framer-hH6zq .framer-cqdc9r > :first-child { margin-top: 0px; } .framer-hH6zq .framer-okh75k > :last-child, .framer-hH6zq .framer-sjavj7 > :last-child, .framer-hH6zq .framer-cqdc9r > :last-child { margin-bottom: 0px; } .framer-hH6zq .framer-sjavj7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hH6zq .framer-cqdc9r > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,`@media (max-width: 800px) { .${metadata.bodyClassName}-framer-hH6zq { background: var(--token-a254a299-ac90-4358-86dd-e4beba79300f, rgb(255, 255, 255)); } .framer-hH6zq.framer-zuud4w { width: 390px; } .framer-hH6zq .framer-1q082kk { height: 609px; top: calc(52.78911564625852% - 609px / 2); } .framer-hH6zq .framer-1lstusv { height: 652px; top: calc(53.69614512471658% - 652px / 2); } .framer-hH6zq .framer-okh75k { gap: 24px; padding: 120px 0px 64px 0px; } .framer-hH6zq .framer-sjavj7 { gap: 32px; order: 0; width: 100%; } .framer-hH6zq .framer-cqdc9r { gap: 32px; justify-content: center; } .framer-hH6zq .framer-6dqcgh { width: 362px; } .framer-hH6zq .framer-1lapqix { padding: 0px 30px 0px 30px; width: 100%; } .framer-hH6zq .framer-156gtm0 { flex: 1 0 0px; width: 1px; } .framer-hH6zq .framer-1r5a2o7 { flex-direction: column; height: 480px; order: 2; overflow: hidden; } .framer-hH6zq .framer-o4dbta { align-content: center; align-items: center; flex: none; gap: 0px; height: 500px; justify-content: flex-start; left: calc(50.00000000000002% - 100% / 2); overflow: auto; padding: 0px 40px 0px 40px; position: absolute; top: 0px; width: 100%; } .framer-hH6zq .framer-p2y0a4-container, .framer-hH6zq .framer-f2mchc-container, .framer-hH6zq .framer-1kfqsmw-container { cursor: unset; left: unset; position: relative; top: unset; } .framer-hH6zq .framer-2qkts5 { flex-direction: column; gap: 10px; order: 3; padding: 20px 0px 0px 0px; width: 100%; z-index: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hH6zq .framer-okh75k, .framer-hH6zq .framer-sjavj7, .framer-hH6zq .framer-cqdc9r, .framer-hH6zq .framer-1r5a2o7, .framer-hH6zq .framer-o4dbta, .framer-hH6zq .framer-2qkts5 { gap: 0px; } .framer-hH6zq .framer-okh75k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hH6zq .framer-okh75k > :first-child, .framer-hH6zq .framer-sjavj7 > :first-child, .framer-hH6zq .framer-cqdc9r > :first-child, .framer-hH6zq .framer-1r5a2o7 > :first-child, .framer-hH6zq .framer-2qkts5 > :first-child { margin-top: 0px; } .framer-hH6zq .framer-okh75k > :last-child, .framer-hH6zq .framer-sjavj7 > :last-child, .framer-hH6zq .framer-cqdc9r > :last-child, .framer-hH6zq .framer-1r5a2o7 > :last-child, .framer-hH6zq .framer-2qkts5 > :last-child { margin-bottom: 0px; } .framer-hH6zq .framer-sjavj7 > *, .framer-hH6zq .framer-cqdc9r > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hH6zq .framer-1r5a2o7 > *, .framer-hH6zq .framer-2qkts5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hH6zq .framer-o4dbta > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hH6zq .framer-o4dbta > :first-child { margin-left: 0px; } .framer-hH6zq .framer-o4dbta > :last-child { margin-right: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,'.framer-hH6zq[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-hH6zq [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-hH6zq[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-hH6zq [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1780\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KhKk2EsZO\":{\"layout\":[\"fixed\",\"auto\"]},\"IzOfVt_gM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerYDBz_5hEL=withCSS(Component,css,\"framer-hH6zq\");export default FramerYDBz_5hEL;FramerYDBz_5hEL.displayName=\"Home\";FramerYDBz_5hEL.defaultProps={height:1780,width:1200};addFonts(FramerYDBz_5hEL,[{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\"}]},...SmoothScrollFonts,...NavigationFonts,...CardProductFonts,...DragDropFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYDBz_5hEL\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KhKk2EsZO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IzOfVt_gM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1780\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,cAAc,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,cAAc,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB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",
  "names": ["clamp", "t", "e", "i", "Animate", "s", "n", "r", "Dimensions", "o", "window", "Emitter", "VirtualScroll", "Lenis", "l", "h", "a", "u", "d", "p", "m", "v", "g", "w", "S", "c", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "checkOverflow", "window", "htmlObserver", "mutations", "mutation", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinks", "handleClick", "e", "href", "decodedHref", "a", "p", "l", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "color", "height", "id", "title", "title1", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hNHgX251k", "Jmoryo6og", "dvR17uw_x", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "RichText2", "x", "css", "FrameryQquvq9YR", "withCSS", "yQquvq9YR_default", "addPropertyControls", "ControlType", "addFonts", "ElementsTooltipFonts", "getFonts", "yQquvq9YR_default", "PhosphorFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerERIXNzQYd", "withCSS", "ERIXNzQYd_default", "addPropertyControls", "ControlType", "addFonts", "ButtonPlusFlipFonts", "getFonts", "ERIXNzQYd_default", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "equals", "a", "b", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "bGCard", "bGImage", "description", "height", "id", "image", "imageFile", "link", "linkArea", "title", "width", "props", "_ref", "_ref1", "_humanReadableEnumMap_linkArea", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "NdCkhffts", "hXGlJLQFP", "GRr09VmPW", "MNIK7kwgD", "dZ7yFf9p3", "Wm1xfWUrZ", "iAUKjVdkW", "JAvLRtTn8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "isDisplayed", "visible1", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "Link", "ComponentViewportProvider", "css", "FramerpwadqoFoy", "withCSS", "pwadqoFoy_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ElementsTooltipFonts", "getFonts", "yQquvq9YR_default", "PhosphorFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerypaEivyGa", "withCSS", "ypaEivyGa_default", "addPropertyControls", "ControlType", "addFonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavigationFonts", "KgoNi4cSI_default", "ContainerWithFX", "withFX", "Container", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "CardProductFonts", "pwadqoFoy_default", "DragDropFonts", "ypaEivyGa_default", "FooterFonts", "klK_eksDB_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "preventDefault", "e", "transition5", "animation6", "animation7", "animation8", "transition2", "animation9", "addImageAlt", "image", "alt", "animation10", "animation11", "animation12", "animation13", "animation14", "animation15", "transition6", "animation16", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "isDisplayed", "isBrowser", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "variantClassNames", "u", "LayoutGroup", "motion", "cx", "serializationHash", "ComponentViewportProvider", "Container", "SmoothScroll", "ContainerWithFX", "transition1", "animation", "PropertyOverrides2", "KgoNi4cSI_default", "MotionDivWithOptimizedAppearEffect", "animation1", "animation2", "RichText2", "x", "animation5", "RichTextWithOptimizedAppearEffect", "animation3", "animation4", "pwadqoFoy_default", "ypaEivyGa_default", "klK_eksDB_default", "css", "FramerYDBz_5hEL", "withCSS", "YDBz_5hEL_default", "addFonts", "SmoothScrollFonts", "NavigationFonts", "CardProductFonts", "DragDropFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
