{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/gbp4g8DJNsBs7M2VUS1M/e2CsCp178ceMgWbZQFo9/FNp10DkTB.js", "ssg:https://framerusercontent.com/modules/8HIkw8sP8o2QdaE4j8aI/Ej8GbZT0G36UNNGftoJm/QnGDztJUy.js", "ssg:https://framerusercontent.com/modules/0kDX4aba8nxqcJHTizJw/nYEbOdlFFCNDc400baVD/EiGGy_6lK.js", "ssg:https://framerusercontent.com/modules/z0z4kRSyWCBLn0wtdl30/ecInMhiUtYbg5Ls8ec1K/zX4cTqiuB.js", "ssg:https://framerusercontent.com/modules/5B6QqvpDUD4naWcSugY6/eWQjQ9GBygHz1IZxddnC/YQd8ph1_I.js", "ssg:https://framerusercontent.com/modules/joLcDLNce7G6yUrMmb9F/5X2iITy3lnwUISWqbX8m/rFdJt45qJ.js", "ssg:https://framerusercontent.com/modules/7vbNTcuptQQA1piJ0ZYg/TfTTMXI3s6X4prAWAUQc/K3a9jWA7Q.js", "ssg:https://framerusercontent.com/modules/ZNiilnpGc0oVByk3tmIw/VLrggW5YCVJtnB8Xb2dA/H3VHBv7GG.js", "ssg:https://framerusercontent.com/modules/AIGTWlfOQFXHVV0WufM3/I5ez6vo8P9TrE34OiBE4/nX5Llcm8Q.js", "ssg:https://framerusercontent.com/modules/ZYzOAx20BFdFJYALP6ND/oovgj5dxQi78TE1tOQYY/y5yz6e4dS.js", "ssg:https://framerusercontent.com/modules/hdFtL53lyVZLPQ4PETdy/saNeLkJV0z8aAIdP6kmD/wxwRznwxq.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);};},[]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=[...document.querySelectorAll(\"a[href]\")].filter(anchor=>anchor.href.includes(\"#\")).map(anchor=>{const href=`#${anchor.href.split(\"#\").pop()}`;const decodedHref=decodeURIComponent(href);let scrollMargin=0;const targetElement=document.querySelector(decodedHref);if(targetElement){scrollMargin=parseInt(window.getComputedStyle(targetElement).scrollMarginTop);}return{href,scrollMargin,anchorElement:anchor};});const handleClick=(e,href,scrollMargin)=>{e.preventDefault();lenis.current.scrollTo(href,{offset:-scrollMargin});};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.addEventListener(\"click\",handlers[index]);});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.removeEventListener(\"click\",handlers[index]);});};},[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", "// Generated by Framer (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Geist-500\",\"GF;Geist-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_Re-Q4mJPby1QNtA.woff2\",weight:\"700\"}]}];export const css=[\".framer-IgmY0 .framer-styles-preset-19010zg:not(.rich-text-wrapper), .framer-IgmY0 .framer-styles-preset-19010zg.rich-text-wrapper p { --framer-font-family: \\\"Geist\\\", \\\"Geist Placeholder\\\", sans-serif; --framer-font-family-bold: \\\"Geist\\\", \\\"Geist Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #1e1e1e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1439px) and (min-width: 810px) { .framer-IgmY0 .framer-styles-preset-19010zg:not(.rich-text-wrapper), .framer-IgmY0 .framer-styles-preset-19010zg.rich-text-wrapper p { --framer-font-family: \\\"Geist\\\", \\\"Geist Placeholder\\\", sans-serif; --framer-font-family-bold: \\\"Geist\\\", \\\"Geist Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #1e1e1e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 0px) { .framer-IgmY0 .framer-styles-preset-19010zg:not(.rich-text-wrapper), .framer-IgmY0 .framer-styles-preset-19010zg.rich-text-wrapper p { --framer-font-family: \\\"Geist\\\", \\\"Geist Placeholder\\\", sans-serif; --framer-font-family-bold: \\\"Geist\\\", \\\"Geist Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #1e1e1e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-IgmY0\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f318921)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Geist-regular\",\"GF;Geist-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_Re-Q4mJPby1QNtA.woff2\",weight:\"700\"}]}];export const css=['.framer-cI5il .framer-styles-preset-umdyz6:not(.rich-text-wrapper), .framer-cI5il .framer-styles-preset-umdyz6.rich-text-wrapper p { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #778088; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }'];export const className=\"framer-cI5il\";\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 (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-i6ol8 .framer-styles-preset-kmswhz:not(.rich-text-wrapper), .framer-i6ol8 .framer-styles-preset-kmswhz.rich-text-wrapper a { --framer-link-current-text-color: var(--token-812a9ec7-4941-425e-882c-5462c36d5877, #778088) /* {\"name\":\"paragraph color\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, #1e1e1e) /* {\"name\":\"Primary\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-812a9ec7-4941-425e-882c-5462c36d5877, #778088); --framer-link-text-decoration: none; }'];export const className=\"framer-i6ol8\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Geist-500\",\"GF;Geist-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_Re-Q4mJPby1QNtA.woff2\",weight:\"700\"}]}];export const css=['.framer-Dq4E0 .framer-styles-preset-17bvnbg:not(.rich-text-wrapper), .framer-Dq4E0 .framer-styles-preset-17bvnbg.rich-text-wrapper h2 { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #1e1e1e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-Dq4E0 .framer-styles-preset-17bvnbg:not(.rich-text-wrapper), .framer-Dq4E0 .framer-styles-preset-17bvnbg.rich-text-wrapper h2 { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #1e1e1e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Dq4E0 .framer-styles-preset-17bvnbg:not(.rich-text-wrapper), .framer-Dq4E0 .framer-styles-preset-17bvnbg.rich-text-wrapper h2 { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #1e1e1e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }'];export const className=\"framer-Dq4E0\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3969033)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"YzKhMyJ_n\",\"nvWQ4eZF2\",\"YCZbIzK3h\",\"NAiiWCgi_\",\"WIKeo9eC4\",\"Tx0DSwtFH\"];const serializationHash=\"framer-Z3BhD\";const variantClassNames={NAiiWCgi_:\"framer-v-l8c8e9\",nvWQ4eZF2:\"framer-v-1z4wkm\",Tx0DSwtFH:\"framer-v-11c8h8j\",WIKeo9eC4:\"framer-v-wjr05w\",YCZbIzK3h:\"framer-v-1gctiru\",YzKhMyJ_n:\"framer-v-1alpnvc\"};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={duration:0,type:\"tween\"};const transition2={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.create(React.Fragment);const humanReadableVariantMap={\"Default 1\":\"YzKhMyJ_n\",\"Default 2\":\"NAiiWCgi_\",\"Line In 1\":\"nvWQ4eZF2\",\"Line In 2\":\"WIKeo9eC4\",\"Line Out 2\":\"Tx0DSwtFH\"};const getProps=({height,iconVisible,id,lineColor,link,text,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,CgTkW2rvJ:(_ref=iconVisible!==null&&iconVisible!==void 0?iconVisible:props.CgTkW2rvJ)!==null&&_ref!==void 0?_ref:true,kK5CLlJSZ:(_ref1=lineColor!==null&&lineColor!==void 0?lineColor:props.kK5CLlJSZ)!==null&&_ref1!==void 0?_ref1:\"var(--token-815ce37a-e57a-4738-bad2-f28f8a205caf, rgb(83, 95, 105))\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"YzKhMyJ_n\",wese7Dho_:link!==null&&link!==void 0?link:props.wese7Dho_,X4kGlDs4u:(_ref3=text!==null&&text!==void 0?text:props.X4kGlDs4u)!==null&&_ref3!==void 0?_ref3:\"Learn more\"};};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,X4kGlDs4u,wese7Dho_,CgTkW2rvJ,kK5CLlJSZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YzKhMyJ_n\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntervebruw=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"nvWQ4eZF2\");});const onMouseLeave8f2jrk=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"YCZbIzK3h\");});const onAppearqjb64j=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YzKhMyJ_n\"),350);});const onMouseEnterydzzqj=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"WIKeo9eC4\");});const onMouseLeave1nlk8r5=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"Tx0DSwtFH\");});const onAppear1l3x6az=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"NAiiWCgi_\"),350);});useOnVariantChange(baseVariant,{Tx0DSwtFH:onAppear1l3x6az,YCZbIzK3h:onAppearqjb64j});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"YCZbIzK3h\")return false;return true;};const isDisplayed1=()=>{if([\"nvWQ4eZF2\",\"YCZbIzK3h\"].includes(baseVariant))return false;return true;};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,...addPropertyOverrides({nvWQ4eZF2:{value:transition2},Tx0DSwtFH:{value:transition2},WIKeo9eC4:{value:transition2},YCZbIzK3h:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1alpnvc\",className,classNames),\"data-framer-name\":\"Default 1\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"YzKhMyJ_n\",onMouseEnter:onMouseEntervebruw,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({NAiiWCgi_:{\"data-framer-name\":\"Default 2\",onMouseEnter:onMouseEnterydzzqj},nvWQ4eZF2:{\"data-framer-name\":\"Line In 1\",onMouseEnter:undefined,onMouseLeave:onMouseLeave8f2jrk},Tx0DSwtFH:{\"data-framer-name\":\"Line Out 2\",onMouseEnter:undefined},WIKeo9eC4:{\"data-framer-name\":\"Line In 2\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1nlk8r5},YCZbIzK3h:{\"data-framer-name\":\"Line Out 2\",onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:wese7Dho_,nodeId:\"h3U1XWIZJ\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-l9yznj framer-b20rm8\",\"data-framer-name\":\"Text & Icon\",layoutDependency:layoutDependency,layoutId:\"h3U1XWIZJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7ssc8g\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"MclJsC1kg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30)))\"},children:\"Learn more\"})}),className:\"framer-catnzx\",\"data-framer-name\":\"Label\",fonts:[\"GF;Geist-regular\"],layoutDependency:layoutDependency,layoutId:\"oy4l9s8yt\",style:{\"--extracted-r6o4lv\":\"var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:X4kGlDs4u,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xq0p8x\",\"data-framer-name\":\"Underline Wrap\",layoutDependency:layoutDependency,layoutId:\"YKssKswpv\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-161or2v\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"Sh1pyL9H0\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:kK5CLlJSZ},variants:{nvWQ4eZF2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({nvWQ4eZF2:{\"data-border\":true}},baseVariant,gestureVariant)})})]}),CgTkW2rvJ&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1azbvax\",\"data-framer-name\":\"Icon List\",layoutDependency:layoutDependency,layoutId:\"d8R22pPyS\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||25)-0-25)/2+0+0)+4+17- -2),pixelHeight:11,pixelWidth:10,src:\"https://framerusercontent.com/images/PAvD92A5QC9eMRGnc30F1M6kM4.svg\"},className:\"framer-pkxsqh\",\"data-framer-name\":\"Icon 01\",layoutDependency:layoutDependency,layoutId:\"aEdBd3gJz\",style:{rotate:0},variants:{NAiiWCgi_:{rotate:90},Tx0DSwtFH:{rotate:90}},...addPropertyOverrides({NAiiWCgi_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||25)-0-25)/2+0+0)+4+-10),pixelHeight:11,pixelWidth:10,src:\"https://framerusercontent.com/images/PAvD92A5QC9eMRGnc30F1M6kM4.svg\"}},Tx0DSwtFH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||49)-0-25)/2+0+0)+4+4.5),pixelHeight:11,pixelWidth:10,src:\"https://framerusercontent.com/images/PAvD92A5QC9eMRGnc30F1M6kM4.svg\"}},WIKeo9eC4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||25)-0-25)/2+0+0)+4+-10),pixelHeight:11,pixelWidth:10,src:\"https://framerusercontent.com/images/PAvD92A5QC9eMRGnc30F1M6kM4.svg\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||25)-0-25)/2+0+0)+4+17- -2),pixelHeight:11,pixelWidth:10,src:\"https://framerusercontent.com/images/PAvD92A5QC9eMRGnc30F1M6kM4.svg\"},className:\"framer-mnl41c\",\"data-framer-name\":\"Icon 02\",layoutDependency:layoutDependency,layoutId:\"YOoJ3gOPN\",style:{rotate:0},variants:{NAiiWCgi_:{rotate:90},Tx0DSwtFH:{rotate:90},WIKeo9eC4:{rotate:90}},...addPropertyOverrides({NAiiWCgi_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||25)-0-25)/2+0+0)+4+-10),pixelHeight:11,pixelWidth:10,src:\"https://framerusercontent.com/images/PAvD92A5QC9eMRGnc30F1M6kM4.svg\"}},Tx0DSwtFH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||49)-0-25)/2+0+0)+4+17- -2),pixelHeight:11,pixelWidth:10,src:\"https://framerusercontent.com/images/PAvD92A5QC9eMRGnc30F1M6kM4.svg\"}},WIKeo9eC4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||25)-0-25)/2+0+0)+4+4.5),pixelHeight:11,pixelWidth:10,src:\"https://framerusercontent.com/images/PAvD92A5QC9eMRGnc30F1M6kM4.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xc4gyk\",\"data-framer-name\":\"Icon 01\",layoutDependency:layoutDependency,layoutId:\"SOV5dsoxt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1slgi5n\",\"data-framer-name\":\"Graphic\",fill:'var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30)) /* {\"name\":\"Primary\"} */',intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"oGMaOYzNe\",svg:'<svg width=\"17\" height=\"17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.636 16.364 15.364 1.636m-9.073-.2c1.782 1.309 6.056 3.217 8.895.378-2.839 2.839-.93 7.113.378 8.895\" stroke=\"#1E1E1E\" style=\"stroke:color(display-p3 .1176 .1176 .1176);stroke-opacity:1\" stroke-width=\"1.5\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wvuzno\",\"data-framer-name\":\"Icon 02\",layoutDependency:layoutDependency,layoutId:\"QwL02cOgt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ll4ebd\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"Skle1O0c7\",svg:'<svg width=\"17\" height=\"17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.636 16.364 15.364 1.636m-9.073-.2c1.782 1.309 6.056 3.217 8.895.378-2.839 2.839-.93 7.113.378 8.895\" stroke=\"#1E1E1E\" style=\"stroke:color(display-p3 .1176 .1176 .1176);stroke-opacity:1\" stroke-width=\"1.5\"/></svg>',withExternalLayout:true,...addPropertyOverrides({nvWQ4eZF2:{fill:'var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30)) /* {\"name\":\"Primary\"} */'}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15wvpso\",\"data-framer-name\":\"Icon 03\",layoutDependency:layoutDependency,layoutId:\"qmqD_XNAE\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kg43nz\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"W98Y4lNFq\",svg:'<svg width=\"17\" height=\"17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.636 16.364 15.364 1.636m-9.073-.2c1.782 1.309 6.056 3.217 8.895.378-2.839 2.839-.93 7.113.378 8.895\" stroke=\"#1E1E1E\" style=\"stroke:color(display-p3 .1176 .1176 .1176);stroke-opacity:1\" stroke-width=\"1.5\"/></svg>',withExternalLayout:true})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Z3BhD.framer-b20rm8, .framer-Z3BhD .framer-b20rm8 { display: block; }\",\".framer-Z3BhD.framer-1alpnvc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Z3BhD .framer-l9yznj { 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; text-decoration: none; width: min-content; }\",\".framer-Z3BhD .framer-7ssc8g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Z3BhD .framer-catnzx { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Z3BhD .framer-xq0p8x { align-self: stretch; flex: none; height: 1px; overflow: hidden; position: relative; width: auto; }\",\".framer-Z3BhD .framer-161or2v { bottom: 0px; flex: none; left: -6px; overflow: hidden; position: absolute; top: 0px; width: 1%; }\",\".framer-Z3BhD .framer-1azbvax { 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-Z3BhD .framer-pkxsqh, .framer-Z3BhD .framer-mnl41c { bottom: -10px; flex: none; height: 8px; left: -10px; position: absolute; width: 8px; z-index: 1; }\",\".framer-Z3BhD .framer-xc4gyk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Z3BhD .framer-1slgi5n, .framer-Z3BhD .framer-ll4ebd, .framer-Z3BhD .framer-1kg43nz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 17px; }\",\".framer-Z3BhD .framer-wvuzno { align-content: center; align-items: center; bottom: -17px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: -17px; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-Z3BhD .framer-15wvpso { align-content: center; align-items: center; bottom: -37px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: -32px; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Z3BhD.framer-1alpnvc, .framer-Z3BhD .framer-l9yznj, .framer-Z3BhD .framer-7ssc8g, .framer-Z3BhD .framer-1azbvax, .framer-Z3BhD .framer-xc4gyk, .framer-Z3BhD .framer-wvuzno, .framer-Z3BhD .framer-15wvpso { gap: 0px; } .framer-Z3BhD.framer-1alpnvc > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-Z3BhD.framer-1alpnvc > :first-child, .framer-Z3BhD .framer-7ssc8g > :first-child { margin-top: 0px; } .framer-Z3BhD.framer-1alpnvc > :last-child, .framer-Z3BhD .framer-7ssc8g > :last-child { margin-bottom: 0px; } .framer-Z3BhD .framer-l9yznj > *, .framer-Z3BhD .framer-1azbvax > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Z3BhD .framer-l9yznj > :first-child, .framer-Z3BhD .framer-1azbvax > :first-child, .framer-Z3BhD .framer-xc4gyk > :first-child, .framer-Z3BhD .framer-wvuzno > :first-child, .framer-Z3BhD .framer-15wvpso > :first-child { margin-left: 0px; } .framer-Z3BhD .framer-l9yznj > :last-child, .framer-Z3BhD .framer-1azbvax > :last-child, .framer-Z3BhD .framer-xc4gyk > :last-child, .framer-Z3BhD .framer-wvuzno > :last-child, .framer-Z3BhD .framer-15wvpso > :last-child { margin-right: 0px; } .framer-Z3BhD .framer-7ssc8g > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Z3BhD .framer-xc4gyk > *, .framer-Z3BhD .framer-wvuzno > *, .framer-Z3BhD .framer-15wvpso > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-Z3BhD.framer-v-1z4wkm.framer-1alpnvc, .framer-Z3BhD.framer-v-1z4wkm .framer-7ssc8g { align-content: flex-start; align-items: flex-start; }\",\".framer-Z3BhD.framer-v-1z4wkm .framer-161or2v, .framer-Z3BhD.framer-v-wjr05w .framer-161or2v { left: 0px; right: 0px; width: unset; }\",\".framer-Z3BhD.framer-v-1z4wkm .framer-xc4gyk, .framer-Z3BhD.framer-v-1gctiru .framer-xc4gyk { position: absolute; right: -30px; top: -30px; z-index: 1; }\",\".framer-Z3BhD.framer-v-1z4wkm .framer-wvuzno, .framer-Z3BhD.framer-v-1gctiru .framer-15wvpso, .framer-Z3BhD.framer-v-wjr05w .framer-mnl41c, .framer-Z3BhD.framer-v-11c8h8j .framer-pkxsqh { bottom: unset; left: unset; position: relative; }\",\".framer-Z3BhD.framer-v-1gctiru .framer-161or2v { left: unset; right: -6px; }\",\".framer-Z3BhD.framer-v-1gctiru .framer-wvuzno { bottom: unset; left: unset; right: -30px; top: -30px; }\",\".framer-Z3BhD.framer-v-l8c8e9 .framer-pkxsqh, .framer-Z3BhD.framer-v-l8c8e9 .framer-mnl41c, .framer-Z3BhD.framer-v-wjr05w .framer-pkxsqh { bottom: unset; top: -10px; }\",\".framer-Z3BhD.framer-v-11c8h8j .framer-161or2v { left: unset; right: -10px; width: 1%; }\",\".framer-Z3BhD.framer-v-11c8h8j .framer-mnl41c { left: unset; right: -10px; }\",'.framer-Z3BhD[data-border=\"true\"]::after, .framer-Z3BhD [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 25\n * @framerIntrinsicWidth 106\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"nvWQ4eZF2\":{\"layout\":[\"auto\",\"auto\"]},\"YCZbIzK3h\":{\"layout\":[\"auto\",\"auto\"]},\"NAiiWCgi_\":{\"layout\":[\"auto\",\"auto\"]},\"WIKeo9eC4\":{\"layout\":[\"auto\",\"auto\"]},\"Tx0DSwtFH\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"X4kGlDs4u\":\"text\",\"wese7Dho_\":\"link\",\"CgTkW2rvJ\":\"iconVisible\",\"kK5CLlJSZ\":\"lineColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYQd8ph1_I=withCSS(Component,css,\"framer-Z3BhD\");export default FramerYQd8ph1_I;FramerYQd8ph1_I.displayName=\"Button/Main Button\";FramerYQd8ph1_I.defaultProps={height:25,width:106};addPropertyControls(FramerYQd8ph1_I,{variant:{options:[\"YzKhMyJ_n\",\"nvWQ4eZF2\",\"YCZbIzK3h\",\"NAiiWCgi_\",\"WIKeo9eC4\",\"Tx0DSwtFH\"],optionTitles:[\"Default 1\",\"Line In 1\",\"Line Out 2\",\"Default 2\",\"Line In 2\",\"Line Out 2\"],title:\"Variant\",type:ControlType.Enum},X4kGlDs4u:{defaultValue:\"Learn more\",displayTextArea:false,title:\"Text\",type:ControlType.String},wese7Dho_:{title:\"Link\",type:ControlType.Link},CgTkW2rvJ:{defaultValue:true,title:\"Icon Visible\",type:ControlType.Boolean},kK5CLlJSZ:{defaultValue:'var(--token-815ce37a-e57a-4738-bad2-f28f8a205caf, rgb(83, 95, 105)) /* {\"name\":\"Neutral Color 04\"} */',title:\"Line Color\",type:ControlType.Color}});addFonts(FramerYQd8ph1_I,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYQd8ph1_I\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"X4kGlDs4u\\\":\\\"text\\\",\\\"wese7Dho_\\\":\\\"link\\\",\\\"CgTkW2rvJ\\\":\\\"iconVisible\\\",\\\"kK5CLlJSZ\\\":\\\"lineColor\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nvWQ4eZF2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YCZbIzK3h\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NAiiWCgi_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WIKeo9eC4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Tx0DSwtFH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"106\",\"framerIntrinsicHeight\":\"25\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YQd8ph1_I.map", "// Generated by Framer (3969033)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/8HIkw8sP8o2QdaE4j8aI/Ej8GbZT0G36UNNGftoJm/QnGDztJUy.js\";const cycleOrder=[\"i_PXT6TH_\",\"ZdK5rrtCH\"];const serializationHash=\"framer-ttLG3\";const variantClassNames={i_PXT6TH_:\"framer-v-sdokat\",ZdK5rrtCH:\"framer-v-15x8ymo\"};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={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const humanReadableVariantMap={\"Footer button\":\"i_PXT6TH_\",Hover:\"ZdK5rrtCH\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,hgxLBwyWG:link!==null&&link!==void 0?link:props.hgxLBwyWG,tevp_qehI:(_ref=title!==null&&title!==void 0?title:props.tevp_qehI)!==null&&_ref!==void 0?_ref:\"Work\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"i_PXT6TH_\"};};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,tevp_qehI,hgxLBwyWG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"i_PXT6TH_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1jv8azf=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"ZdK5rrtCH\");});const onMouseLeave10ano3c=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"i_PXT6TH_\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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__*/_jsx(Link,{href:hgxLBwyWG,nodeId:\"i_PXT6TH_\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-sdokat\",className,classNames)} framer-1u9lnjg`,\"data-border\":true,\"data-framer-name\":\"Footer button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"i_PXT6TH_\",onMouseEnter:onMouseEnter1jv8azf,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(30, 30, 30, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({ZdK5rrtCH:{\"data-framer-name\":\"Hover\",onMouseLeave:onMouseLeave10ano3c}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30)))\"},children:\"Work\"})}),className:\"framer-vo7kn9\",\"data-framer-name\":\"Navigation Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"reAQUBldi\",style:{\"--extracted-r6o4lv\":\"var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30))\",\"--framer-paragraph-spacing\":\"0px\"},text:tevp_qehI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b5cwf3\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"NSL9kDqx_\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nh935v\",\"data-framer-name\":\"Vector\",fill:'var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30)) /* {\"name\":\"Primary\"} */',intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"KohxRfHHN\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.47727 14.5227L14.5227 3.47723M7.71851 3.3269C9.05504 4.30855 12.2604 5.73955 14.3896 3.61031C12.2604 5.73955 13.6914 8.94492 14.6731 10.2814\" stroke=\"#1E1E1E\" style=\"stroke:#1E1E1E;stroke:color(display-p3 0.1176 0.1176 0.1176);stroke-opacity:1;\" stroke-width=\"1.125\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t2mb7n\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"bJO1maNXZ\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.47727 14.5227L14.5227 3.47723M7.71851 3.3269C9.05504 4.30855 12.2604 5.73955 14.3896 3.61031C12.2604 5.73955 13.6914 8.94492 14.6731 10.2814\" stroke=\"#1E1E1E\" style=\"stroke:#1E1E1E;stroke:color(display-p3 0.1176 0.1176 0.1176);stroke-opacity:1;\" stroke-width=\"1.125\"/>\\n</svg>\\n',withExternalLayout:true,...addPropertyOverrides({ZdK5rrtCH:{fill:'var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30)) /* {\"name\":\"Primary\"} */'}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ttLG3.framer-1u9lnjg, .framer-ttLG3 .framer-1u9lnjg { display: block; }\",\".framer-ttLG3.framer-sdokat { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 8px 0px; position: relative; text-decoration: none; width: 305px; }\",\".framer-ttLG3 .framer-vo7kn9 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ttLG3 .framer-1b5cwf3 { 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-ttLG3 .framer-nh935v { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-ttLG3 .framer-1t2mb7n { bottom: -20px; flex: none; height: 20px; left: -20px; position: absolute; width: 20px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ttLG3 .framer-1b5cwf3 { gap: 0px; } .framer-ttLG3 .framer-1b5cwf3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ttLG3 .framer-1b5cwf3 > :first-child { margin-left: 0px; } .framer-ttLG3 .framer-1b5cwf3 > :last-child { margin-right: 0px; } }\",\".framer-ttLG3.framer-v-15x8ymo .framer-nh935v { position: absolute; right: -20px; top: -20px; z-index: 1; }\",\".framer-ttLG3.framer-v-15x8ymo .framer-1t2mb7n { bottom: unset; left: unset; position: relative; }\",...sharedStyle.css,'.framer-ttLG3[data-border=\"true\"]::after, .framer-ttLG3 [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 305\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZdK5rrtCH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"tevp_qehI\":\"title\",\"hgxLBwyWG\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrFdJt45qJ=withCSS(Component,css,\"framer-ttLG3\");export default FramerrFdJt45qJ;FramerrFdJt45qJ.displayName=\"Button/Footer Button\";FramerrFdJt45qJ.defaultProps={height:32,width:305};addPropertyControls(FramerrFdJt45qJ,{variant:{options:[\"i_PXT6TH_\",\"ZdK5rrtCH\"],optionTitles:[\"Footer button\",\"Hover\"],title:\"Variant\",type:ControlType.Enum},tevp_qehI:{defaultValue:\"Work\",displayTextArea:false,title:\"Title\",type:ControlType.String},hgxLBwyWG:{title:\"Link\",type:ControlType.Link}});addFonts(FramerrFdJt45qJ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrFdJt45qJ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZdK5rrtCH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"32\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"305\",\"framerVariables\":\"{\\\"tevp_qehI\\\":\\\"title\\\",\\\"hgxLBwyWG\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rFdJt45qJ.map", "// Generated by Framer (4240133)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/0kDX4aba8nxqcJHTizJw/nYEbOdlFFCNDc400baVD/EiGGy_6lK.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gbp4g8DJNsBs7M2VUS1M/e2CsCp178ceMgWbZQFo9/FNp10DkTB.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/8HIkw8sP8o2QdaE4j8aI/Ej8GbZT0G36UNNGftoJm/QnGDztJUy.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/z0z4kRSyWCBLn0wtdl30/ecInMhiUtYbg5Ls8ec1K/zX4cTqiuB.js\";import ButtonFooterButton from\"https://framerusercontent.com/modules/joLcDLNce7G6yUrMmb9F/5X2iITy3lnwUISWqbX8m/rFdJt45qJ.js\";import ButtonMainButton from\"https://framerusercontent.com/modules/5B6QqvpDUD4naWcSugY6/eWQjQ9GBygHz1IZxddnC/YQd8ph1_I.js\";const ButtonMainButtonFonts=getFonts(ButtonMainButton);const ButtonFooterButtonFonts=getFonts(ButtonFooterButton);const cycleOrder=[\"ktI2H_v3p\",\"mKDDp9VtE\",\"JUw1d6Bm6\"];const serializationHash=\"framer-rWcQl\";const variantClassNames={JUw1d6Bm6:\"framer-v-89k78q\",ktI2H_v3p:\"framer-v-nioah3\",mKDDp9VtE:\"framer-v-odhgos\"};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={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const humanReadableVariantMap={Desktop:\"ktI2H_v3p\",Phone:\"JUw1d6Bm6\",Tablet:\"mKDDp9VtE\"};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:\"ktI2H_v3p\"};};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:\"ktI2H_v3p\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.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__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-nioah3\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ktI2H_v3p\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-22399db1-df0c-4a5d-90ff-7fc36b34ab55, rgb(243, 245, 247))\",...style},...addPropertyOverrides({JUw1d6Bm6:{\"data-framer-name\":\"Phone\"},mKDDp9VtE:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zxac2r\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"KlI59SgNl\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v862e4\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"XUC68CTyb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11hjs0h\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"bsuNu1_yT\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"sfC0sUkxl\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5mw1in framer-1smyyjx\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"sfC0sUkxl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nv8oe6\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:83,layoutDependency:layoutDependency,layoutId:\"zYle2F2z4\",svg:'<svg width=\"83\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8.399 7.612a9.09 9.09 0 0 1 .692 3.479H0V2a9.09 9.09 0 0 1 8.399 5.612Zm0 8.776a9.09 9.09 0 0 0 .692-3.479H0V22a9.092 9.092 0 0 0 8.399-5.612Zm2.511-5.298A9.09 9.09 0 0 1 20 2v9.09h-9.09Zm.691 5.298a9.09 9.09 0 0 1-.692-3.479H20V22a9.092 9.092 0 0 1-8.399-5.612Zm21.775 1.868c-.875 0-1.637-.165-2.288-.496a4.007 4.007 0 0 1-1.552-1.36c-.373-.587-.592-1.264-.656-2.032l1.44-.096c.117.843.432 1.493.944 1.952.523.459 1.237.688 2.144.688.79 0 1.403-.15 1.84-.448.448-.31.672-.757.672-1.344 0-.352-.085-.661-.256-.928-.16-.277-.475-.528-.944-.752-.459-.235-1.141-.464-2.048-.688-.875-.224-1.573-.47-2.096-.736-.512-.267-.885-.592-1.12-.976-.224-.384-.336-.859-.336-1.424 0-.64.15-1.2.448-1.68.31-.49.747-.87 1.312-1.136.565-.277 1.237-.416 2.016-.416.832 0 1.547.16 2.144.48a3.68 3.68 0 0 1 1.424 1.28c.352.544.57 1.163.656 1.856l-1.44.096c-.096-.693-.379-1.259-.848-1.696-.459-.448-1.115-.672-1.968-.672-.704 0-1.264.17-1.68.512-.416.33-.624.768-.624 1.312 0 .352.08.645.24.88.17.224.47.427.896.608.427.17 1.04.357 1.84.56.95.235 1.701.517 2.256.848.565.32.965.693 1.2 1.12.245.427.368.912.368 1.456 0 .661-.17 1.237-.512 1.728-.341.48-.81.853-1.408 1.12-.597.256-1.285.384-2.064.384ZM41.908 18c-.768 0-1.339-.176-1.712-.528-.363-.352-.544-.901-.544-1.648v-5.12h-1.248V9.52h1.248V7.536h1.344V9.52h2.256v1.184h-2.256v5.088c0 .384.085.65.256.8.17.15.432.224.784.224h1.216V18h-1.344Zm5.532.192c-.843 0-1.52-.283-2.032-.848-.502-.576-.752-1.365-.752-2.368V9.52H46v5.088c0 .821.144 1.43.432 1.824.298.384.752.576 1.36.576.672 0 1.2-.213 1.584-.64.384-.437.576-1.035.576-1.792V9.52h1.344V18h-1.28v-1.376c-.47 1.045-1.328 1.568-2.576 1.568Zm8.95 0c-.736 0-1.376-.181-1.92-.544-.533-.363-.944-.875-1.231-1.536-.288-.661-.432-1.445-.432-2.352 0-.907.143-1.69.431-2.352.288-.661.7-1.173 1.233-1.536.544-.363 1.184-.544 1.92-.544.565 0 1.082.123 1.552.368.469.235.82.57 1.056 1.008V6.64h1.343V18h-1.215l-.049-1.28a2.57 2.57 0 0 1-1.072 1.088 3.38 3.38 0 0 1-1.615.384Zm.273-1.28c.757 0 1.333-.283 1.728-.848.405-.565.608-1.333.608-2.304 0-.981-.203-1.75-.608-2.304-.395-.565-.971-.848-1.728-.848-.747 0-1.344.283-1.792.848-.438.555-.657 1.323-.657 2.304 0 .97.22 1.739.657 2.304.447.565 1.045.848 1.791.848ZM62.266 18V9.52h1.344V18h-1.344Zm-.032-9.808V6.624h1.408v1.568h-1.408Zm6.774 10c-.779 0-1.462-.181-2.048-.544a3.603 3.603 0 0 1-1.36-1.536c-.32-.672-.48-1.456-.48-2.352 0-.907.16-1.69.48-2.352a3.603 3.603 0 0 1 1.36-1.536c.586-.363 1.269-.544 2.048-.544.778 0 1.456.181 2.032.544a3.61 3.61 0 0 1 1.36 1.536c.32.661.48 1.445.48 2.352 0 .896-.16 1.68-.48 2.352a3.602 3.602 0 0 1-1.36 1.536c-.576.363-1.254.544-2.032.544Zm0-1.28c.778 0 1.381-.277 1.808-.832.437-.565.656-1.339.656-2.32 0-.981-.219-1.75-.656-2.304-.427-.565-1.03-.848-1.808-.848-.779 0-1.387.283-1.824.848-.438.555-.656 1.323-.656 2.304 0 .981.218 1.755.656 2.32.437.555 1.045.832 1.824.832ZM73.195 18l3.728-5.696-3.696-5.664h1.632l2.96 4.576 2.928-4.576h1.6l-3.696 5.632L82.411 18h-1.632l-2.992-4.64L74.795 18h-1.6Z\" fill=\"#1E1E1E\" style=\"fill:color(display-p3 .1176 .1176 .1176);fill-opacity:1\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-17bvnbg\",\"data-styles-preset\":\"zX4cTqiuB\",children:[\"Make Your Business \",/*#__PURE__*/_jsx(motion.br,{}),\"Stand Out\"]})}),className:\"framer-8jy4xp\",\"data-framer-name\":\"Make Your Business Stand Out\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jtOaUX6UG\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BToX8ptId\"},implicitPathVariables:undefined},{href:{webPageId:\"BToX8ptId\"},implicitPathVariables:undefined},{href:{webPageId:\"BToX8ptId\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||551)-0-873.8)/2)+80+0+0+0+148.8,...addPropertyOverrides({JUw1d6Bm6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1155)-0-2201.8)/2)+80+0+0+0+0+148.8},mKDDp9VtE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||699)-0-873.8)/2)+80+0+0+0+148.8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m4jxws-container\",layoutDependency:layoutDependency,layoutId:\"dvw2q2Cfx-container\",children:/*#__PURE__*/_jsx(ButtonMainButton,{CgTkW2rvJ:true,height:\"100%\",id:\"dvw2q2Cfx\",kK5CLlJSZ:\"var(--token-812a9ec7-4941-425e-882c-5462c36d5877, rgb(119, 128, 136))\",layoutId:\"dvw2q2Cfx\",variant:\"YzKhMyJ_n\",wese7Dho_:resolvedLinks[0],width:\"100%\",X4kGlDs4u:\"Contact Now\",...addPropertyOverrides({JUw1d6Bm6:{wese7Dho_:resolvedLinks[2]},mKDDp9VtE:{wese7Dho_:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mfc129\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"pOotf2Aw6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-507oi9\",\"data-framer-name\":\"Info Container\",layoutDependency:layoutDependency,layoutId:\"p3H5Y3uq6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19010zg\",\"data-styles-preset\":\"FNp10DkTB\",children:\"Info\"})}),className:\"framer-11f9ga5\",\"data-framer-name\":\"Info Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B8tLXmZQs\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-83h25c\",\"data-framer-name\":\"Info Details Container\",layoutDependency:layoutDependency,layoutId:\"oyPWUO9iS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",children:\"New York, NY 10110, USA\"})}),className:\"framer-1suvnaj\",\"data-framer-name\":\"Address\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CrpR3oKXK\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",children:/*#__PURE__*/_jsx(Link,{href:\"contact@StudioX.com\",nodeId:\"otadMzfHU\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kmswhz\",\"data-styles-preset\":\"EiGGy_6lK\",children:\"contact@StudioX.com\"})})})}),className:\"framer-149c9qg\",\"data-framer-name\":\"Email\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"otadMzfHU\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",children:/*#__PURE__*/_jsx(Link,{href:\" tel:+1 (555) 123-4567\",nodeId:\"epmm6S41B\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kmswhz\",\"data-styles-preset\":\"EiGGy_6lK\",children:\" [+1 (555) 123-4567]\"})})})}),className:\"framer-sn4vom\",\"data-framer-name\":\"Phone\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"epmm6S41B\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kwibys\",\"data-framer-name\":\"Social Container\",layoutDependency:layoutDependency,layoutId:\"Ou2B8uTcV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19010zg\",\"data-styles-preset\":\"FNp10DkTB\",children:\"Social\"})}),className:\"framer-xf0lo4\",\"data-framer-name\":\"Social Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"npJyQezza\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hfoaai\",\"data-framer-name\":\"Social Links Container\",layoutDependency:layoutDependency,layoutId:\"puDpjrKSx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/\",nodeId:\"tQYMbvN13\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kmswhz\",\"data-styles-preset\":\"EiGGy_6lK\",children:\"Instagram\"})})})}),className:\"framer-15cs563\",\"data-framer-name\":\"Instagram\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tQYMbvN13\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/\",nodeId:\"QUJC3LpkJ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kmswhz\",\"data-styles-preset\":\"EiGGy_6lK\",children:\"Behance\"})})})}),className:\"framer-jfcuex\",\"data-framer-name\":\"Behance\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QUJC3LpkJ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/\",nodeId:\"Ye9VxbTFK\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kmswhz\",\"data-styles-preset\":\"EiGGy_6lK\",children:\"LinkedIn\"})})})}),className:\"framer-vu1psx\",\"data-framer-name\":\"LinkedIn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ye9VxbTFK\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17zi4wm\",\"data-framer-name\":\"Links Container\",layoutDependency:layoutDependency,layoutId:\"C9n5_2ki_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19010zg\",\"data-styles-preset\":\"FNp10DkTB\",children:\"Links\"})}),className:\"framer-igj1c\",\"data-framer-name\":\"Links Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HQy8lU1aj\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uf2rv9\",\"data-framer-name\":\"Links List Container\",layoutDependency:layoutDependency,layoutId:\"gOk5oUrr2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"Fdo743AXD\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kmswhz\",\"data-styles-preset\":\"EiGGy_6lK\",children:\"Home\"})})})}),className:\"framer-1lpiyvm\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Fdo743AXD\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BaK6mAHMu\"},nodeId:\"Sca89KfAx\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kmswhz\",\"data-styles-preset\":\"EiGGy_6lK\",children:\"404\"})})})}),className:\"framer-151cdh7\",\"data-framer-name\":\"Terms of Service\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Sca89KfAx\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-va585w\",\"data-framer-name\":\"Pages\",layoutDependency:layoutDependency,layoutId:\"drn2lU0ZL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-180txgz\",\"data-framer-name\":\"Nav link\",layoutDependency:layoutDependency,layoutId:\"xBN7GRmsl\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mSoa7PPLF\"},implicitPathVariables:undefined},{href:{webPageId:\"mSoa7PPLF\"},implicitPathVariables:undefined},{href:{webPageId:\"mSoa7PPLF\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`min(max((min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 24px) / 2, 1px), 305px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||551)-0-873.8)/2)+80+78+0+0+0,...addPropertyOverrides({JUw1d6Bm6:{width:`calc(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1155)-0-2201.8)/2)+80+1769.8+0+0+0+0},mKDDp9VtE:{width:`min(max((min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 104px) / 2, 1px), 305px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||699)-0-873.8)/2)+80+73+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-diannp-container\",layoutDependency:layoutDependency,layoutId:\"LTIR1QF67-container\",children:/*#__PURE__*/_jsx(ButtonFooterButton,{height:\"100%\",hgxLBwyWG:resolvedLinks1[0],id:\"LTIR1QF67\",layoutId:\"LTIR1QF67\",style:{width:\"100%\"},tevp_qehI:\"Projects\",variant:\"i_PXT6TH_\",width:\"100%\",...addPropertyOverrides({JUw1d6Bm6:{hgxLBwyWG:resolvedLinks1[2]},mKDDp9VtE:{hgxLBwyWG:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":doB3TFurQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":doB3TFurQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":doB3TFurQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`min(max((min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 24px) / 2, 1px), 305px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||551)-0-873.8)/2)+80+78+0+0+48,...addPropertyOverrides({JUw1d6Bm6:{width:`calc(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1155)-0-2201.8)/2)+80+1769.8+0+0+0+48},mKDDp9VtE:{width:`min(max((min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 104px) / 2, 1px), 305px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||699)-0-873.8)/2)+80+73+0+0+48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oujlsk-container\",layoutDependency:layoutDependency,layoutId:\"aXnFmS2UE-container\",children:/*#__PURE__*/_jsx(ButtonFooterButton,{height:\"100%\",hgxLBwyWG:resolvedLinks2[0],id:\"aXnFmS2UE\",layoutId:\"aXnFmS2UE\",style:{width:\"100%\"},tevp_qehI:\"Services\",variant:\"i_PXT6TH_\",width:\"100%\",...addPropertyOverrides({JUw1d6Bm6:{hgxLBwyWG:resolvedLinks2[2]},mKDDp9VtE:{hgxLBwyWG:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"shbNe2jVi\"},implicitPathVariables:undefined},{href:{webPageId:\"shbNe2jVi\"},implicitPathVariables:undefined},{href:{webPageId:\"shbNe2jVi\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`min(max((min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 24px) / 2, 1px), 305px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||551)-0-873.8)/2)+80+78+0+0+96,...addPropertyOverrides({JUw1d6Bm6:{width:`calc(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1155)-0-2201.8)/2)+80+1769.8+0+0+0+96},mKDDp9VtE:{width:`min(max((min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 104px) / 2, 1px), 305px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||699)-0-873.8)/2)+80+73+0+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d3f78b-container\",layoutDependency:layoutDependency,layoutId:\"eekWPQVLy-container\",children:/*#__PURE__*/_jsx(ButtonFooterButton,{height:\"100%\",hgxLBwyWG:resolvedLinks3[0],id:\"eekWPQVLy\",layoutId:\"eekWPQVLy\",style:{width:\"100%\"},tevp_qehI:\"About\",variant:\"i_PXT6TH_\",width:\"100%\",...addPropertyOverrides({JUw1d6Bm6:{hgxLBwyWG:resolvedLinks3[2]},mKDDp9VtE:{hgxLBwyWG:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CVE07ijJr\"},implicitPathVariables:undefined},{href:{webPageId:\"CVE07ijJr\"},implicitPathVariables:undefined},{href:{webPageId:\"CVE07ijJr\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`min(max((min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 24px) / 2, 1px), 305px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||551)-0-873.8)/2)+80+78+0+0+144,...addPropertyOverrides({JUw1d6Bm6:{width:`calc(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1155)-0-2201.8)/2)+80+1769.8+0+0+0+144},mKDDp9VtE:{width:`min(max((min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 1320px) - 104px) / 2, 1px), 305px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||699)-0-873.8)/2)+80+73+0+0+144}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fm1z7g-container\",layoutDependency:layoutDependency,layoutId:\"J8SAJcC6l-container\",children:/*#__PURE__*/_jsx(ButtonFooterButton,{height:\"100%\",hgxLBwyWG:resolvedLinks4[0],id:\"J8SAJcC6l\",layoutId:\"J8SAJcC6l\",style:{width:\"100%\"},tevp_qehI:\"Blog\",variant:\"i_PXT6TH_\",width:\"100%\",...addPropertyOverrides({JUw1d6Bm6:{hgxLBwyWG:resolvedLinks4[2]},mKDDp9VtE:{hgxLBwyWG:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hcg67l\",\"data-framer-name\":\"Navlink\",layoutDependency:layoutDependency,layoutId:\"bXNC3OWax\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-812a9ec7-4941-425e-882c-5462c36d5877, rgb(119, 128, 136)))\"},children:[\"\\xa9 \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/Tanjim38\",nodeId:\"pGbAfBb9J\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kmswhz\",\"data-styles-preset\":\"EiGGy_6lK\",children:\"tanjim \"})}),\"All rights reserved.\"]})}),className:\"framer-15ycgc\",\"data-framer-name\":\"Navigation Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pGbAfBb9J\",style:{\"--extracted-r6o4lv\":\"var(--token-812a9ec7-4941-425e-882c-5462c36d5877, rgb(119, 128, 136))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JUw1d6Bm6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-812a9ec7-4941-425e-882c-5462c36d5877, rgb(119, 128, 136)))\"},children:[\"\\xa9 \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/Tanjim38\",nodeId:\"pGbAfBb9J\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-kmswhz\",\"data-styles-preset\":\"EiGGy_6lK\",children:\"tanjim \"})}),\"All rights reserved.\"]})})}},baseVariant,gestureVariant)})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rWcQl.framer-1smyyjx, .framer-rWcQl .framer-1smyyjx { display: block; }\",\".framer-rWcQl.framer-nioah3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-rWcQl .framer-zxac2r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 80px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-rWcQl .framer-1v862e4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-rWcQl .framer-11hjs0h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 628px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rWcQl .framer-5mw1in { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rWcQl .framer-1nv8oe6 { aspect-ratio: 3.4583333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 83px; }\",\".framer-rWcQl .framer-8jy4xp, .framer-rWcQl .framer-11f9ga5, .framer-rWcQl .framer-1suvnaj, .framer-rWcQl .framer-149c9qg, .framer-rWcQl .framer-sn4vom, .framer-rWcQl .framer-xf0lo4, .framer-rWcQl .framer-15cs563, .framer-rWcQl .framer-jfcuex, .framer-rWcQl .framer-vu1psx, .framer-rWcQl .framer-igj1c, .framer-rWcQl .framer-1lpiyvm, .framer-rWcQl .framer-151cdh7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rWcQl .framer-1m4jxws-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-rWcQl .framer-1mfc129 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 660px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rWcQl .framer-507oi9, .framer-rWcQl .framer-1kwibys, .framer-rWcQl .framer-17zi4wm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rWcQl .framer-83h25c, .framer-rWcQl .framer-hfoaai, .framer-rWcQl .framer-1uf2rv9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rWcQl .framer-va585w { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; max-width: 305px; overflow: hidden; padding: 78px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-rWcQl .framer-180txgz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rWcQl .framer-diannp-container, .framer-rWcQl .framer-oujlsk-container, .framer-rWcQl .framer-d3f78b-container, .framer-rWcQl .framer-fm1z7g-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-rWcQl .framer-hcg67l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rWcQl .framer-15ycgc { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rWcQl.framer-nioah3, .framer-rWcQl .framer-zxac2r, .framer-rWcQl .framer-1v862e4, .framer-rWcQl .framer-11hjs0h, .framer-rWcQl .framer-5mw1in, .framer-rWcQl .framer-1mfc129, .framer-rWcQl .framer-507oi9, .framer-rWcQl .framer-83h25c, .framer-rWcQl .framer-1kwibys, .framer-rWcQl .framer-hfoaai, .framer-rWcQl .framer-17zi4wm, .framer-rWcQl .framer-1uf2rv9, .framer-rWcQl .framer-180txgz { gap: 0px; } .framer-rWcQl.framer-nioah3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-rWcQl.framer-nioah3 > :first-child, .framer-rWcQl .framer-zxac2r > :first-child, .framer-rWcQl .framer-5mw1in > :first-child, .framer-rWcQl .framer-1mfc129 > :first-child { margin-left: 0px; } .framer-rWcQl.framer-nioah3 > :last-child, .framer-rWcQl .framer-zxac2r > :last-child, .framer-rWcQl .framer-5mw1in > :last-child, .framer-rWcQl .framer-1mfc129 > :last-child { margin-right: 0px; } .framer-rWcQl .framer-zxac2r > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-rWcQl .framer-1v862e4 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-rWcQl .framer-1v862e4 > :first-child, .framer-rWcQl .framer-11hjs0h > :first-child, .framer-rWcQl .framer-507oi9 > :first-child, .framer-rWcQl .framer-83h25c > :first-child, .framer-rWcQl .framer-1kwibys > :first-child, .framer-rWcQl .framer-hfoaai > :first-child, .framer-rWcQl .framer-17zi4wm > :first-child, .framer-rWcQl .framer-1uf2rv9 > :first-child, .framer-rWcQl .framer-180txgz > :first-child { margin-top: 0px; } .framer-rWcQl .framer-1v862e4 > :last-child, .framer-rWcQl .framer-11hjs0h > :last-child, .framer-rWcQl .framer-507oi9 > :last-child, .framer-rWcQl .framer-83h25c > :last-child, .framer-rWcQl .framer-1kwibys > :last-child, .framer-rWcQl .framer-hfoaai > :last-child, .framer-rWcQl .framer-17zi4wm > :last-child, .framer-rWcQl .framer-1uf2rv9 > :last-child, .framer-rWcQl .framer-180txgz > :last-child { margin-bottom: 0px; } .framer-rWcQl .framer-11hjs0h > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-rWcQl .framer-5mw1in > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-rWcQl .framer-1mfc129 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-rWcQl .framer-507oi9 > *, .framer-rWcQl .framer-1kwibys > *, .framer-rWcQl .framer-17zi4wm > *, .framer-rWcQl .framer-180txgz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-rWcQl .framer-83h25c > *, .framer-rWcQl .framer-hfoaai > *, .framer-rWcQl .framer-1uf2rv9 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-rWcQl.framer-v-odhgos.framer-nioah3 { width: 810px; }\",\".framer-rWcQl.framer-v-odhgos .framer-zxac2r { padding: 80px 40px 40px 40px; }\",\".framer-rWcQl.framer-v-odhgos .framer-va585w { padding: 73px 0px 0px 0px; }\",\".framer-rWcQl.framer-v-89k78q.framer-nioah3 { width: 390px; }\",\".framer-rWcQl.framer-v-89k78q .framer-zxac2r { flex-direction: column; gap: 40px; padding: 80px 20px 40px 20px; }\",\".framer-rWcQl.framer-v-89k78q .framer-1v862e4 { align-content: center; align-items: center; flex: none; width: 100%; }\",\".framer-rWcQl.framer-v-89k78q .framer-11hjs0h { max-width: unset; }\",\".framer-rWcQl.framer-v-89k78q .framer-1mfc129 { flex-direction: column; max-width: unset; }\",\".framer-rWcQl.framer-v-89k78q .framer-507oi9, .framer-rWcQl.framer-v-89k78q .framer-1kwibys, .framer-rWcQl.framer-v-89k78q .framer-17zi4wm { flex: none; width: 100%; }\",\".framer-rWcQl.framer-v-89k78q .framer-va585w { align-self: unset; flex: none; gap: 16px; height: min-content; justify-content: center; max-width: unset; padding: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rWcQl.framer-v-89k78q .framer-zxac2r, .framer-rWcQl.framer-v-89k78q .framer-1mfc129, .framer-rWcQl.framer-v-89k78q .framer-va585w { gap: 0px; } .framer-rWcQl.framer-v-89k78q .framer-zxac2r > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-rWcQl.framer-v-89k78q .framer-zxac2r > :first-child, .framer-rWcQl.framer-v-89k78q .framer-1mfc129 > :first-child, .framer-rWcQl.framer-v-89k78q .framer-va585w > :first-child { margin-top: 0px; } .framer-rWcQl.framer-v-89k78q .framer-zxac2r > :last-child, .framer-rWcQl.framer-v-89k78q .framer-1mfc129 > :last-child, .framer-rWcQl.framer-v-89k78q .framer-va585w > :last-child { margin-bottom: 0px; } .framer-rWcQl.framer-v-89k78q .framer-1mfc129 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-rWcQl.framer-v-89k78q .framer-va585w > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 551\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mKDDp9VtE\":{\"layout\":[\"fixed\",\"auto\"]},\"JUw1d6Bm6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerK3a9jWA7Q=withCSS(Component,css,\"framer-rWcQl\");export default FramerK3a9jWA7Q;FramerK3a9jWA7Q.displayName=\"Footer\";FramerK3a9jWA7Q.defaultProps={height:551,width:1440};addPropertyControls(FramerK3a9jWA7Q,{variant:{options:[\"ktI2H_v3p\",\"mKDDp9VtE\",\"JUw1d6Bm6\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerK3a9jWA7Q,[{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\"}]},...ButtonMainButtonFonts,...ButtonFooterButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK3a9jWA7Q\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"551\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mKDDp9VtE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JUw1d6Bm6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./K3a9jWA7Q.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/8HIkw8sP8o2QdaE4j8aI/Ej8GbZT0G36UNNGftoJm/QnGDztJUy.js\";const cycleOrder=[\"kgVMfqgB7\",\"r8XeUl5Ap\",\"QO30ud9J7\"];const serializationHash=\"framer-QYzrH\";const variantClassNames={kgVMfqgB7:\"framer-v-11l7nix\",QO30ud9J7:\"framer-v-1vsjr4s\",r8XeUl5Ap:\"framer-v-1rogm2e\"};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={duration:0,type:\"tween\"};const transition2={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.create(React.Fragment);const humanReadableVariantMap={\"Line IN\":\"r8XeUl5Ap\",\"Line OUT\":\"QO30ud9J7\",Default:\"kgVMfqgB7\"};const getProps=({buttonText,height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,UyXSbzLKo:link!==null&&link!==void 0?link:props.UyXSbzLKo,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"kgVMfqgB7\",X4kGlDs4u:(_ref1=buttonText!==null&&buttonText!==void 0?buttonText:props.X4kGlDs4u)!==null&&_ref1!==void 0?_ref1:\"BUTTON\"};};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,X4kGlDs4u,UyXSbzLKo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kgVMfqgB7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap4qg8ef=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"r8XeUl5Ap\");});const onMouseEnter1avrjna=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"r8XeUl5Ap\");});const onMouseLeave11zvhu3=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"QO30ud9J7\");});const onAppear1g58tkf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kgVMfqgB7\"),350);});useOnVariantChange(baseVariant,{QO30ud9J7:onAppear1g58tkf});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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,...addPropertyOverrides({QO30ud9J7:{value:transition2},r8XeUl5Ap:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:UyXSbzLKo,nodeId:\"kgVMfqgB7\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-11l7nix\",className,classNames)} framer-1qub4d5`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kgVMfqgB7\",onMouseEnter:onMouseEnter1avrjna,onTap:onTap4qg8ef,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({QO30ud9J7:{\"data-framer-name\":\"Line OUT\",onMouseEnter:undefined},r8XeUl5Ap:{\"data-framer-name\":\"Line IN\",onMouseEnter:undefined,onMouseLeave:onMouseLeave11zvhu3}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qb97sx\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"HDEibYGdA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-go6lts\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"y17R9tdDI\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30)))\"},children:\"BUTTON\"})}),className:\"framer-v7znl9\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AKglPmF6Y\",style:{\"--extracted-r6o4lv\":\"var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:X4kGlDs4u,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m0d4a1\",layoutDependency:layoutDependency,layoutId:\"xIn1wsL0h\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-eq2z22\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:14,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"zA2HiTgnM\",svg:'<svg width=\"14\" height=\"14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.864 13.136 13.136.864M5.576.697c1.485 1.09 5.047 2.68 7.413.314-2.366 2.366-.776 5.928.314 7.413\" stroke=\"#778088\" style=\"stroke:color(display-p3 .4667 .502 .5333);stroke-opacity:1\" stroke-width=\"1.25\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l582go\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:14,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"Gp7ctDI4G\",svg:'<svg width=\"14\" height=\"14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.864 13.136 13.136.864M5.576.697c1.485 1.09 5.047 2.68 7.413.314-2.366 2.366-.776 5.928.314 7.413\" stroke=\"#778088\" style=\"stroke:color(display-p3 .4667 .502 .5333);stroke-opacity:1\" stroke-width=\"1.25\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rb4949\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:14,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"XtGnZMmNQ\",svg:'<svg width=\"14\" height=\"14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.864 13.136 13.136.864M5.576.697c1.485 1.09 5.047 2.68 7.413.314-2.366 2.366-.776 5.928.314 7.413\" stroke=\"#778088\" style=\"stroke:color(display-p3 .4667 .502 .5333);stroke-opacity:1\" stroke-width=\"1.25\"/></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ngfz3d\",\"data-framer-name\":\"Underline Wrap\",layoutDependency:layoutDependency,layoutId:\"x35hKGNWJ\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0r4cm\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"D1ircjE1R\",style:{backgroundColor:\"var(--token-812a9ec7-4941-425e-882c-5462c36d5877, rgb(119, 128, 136))\"}})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QYzrH.framer-1qub4d5, .framer-QYzrH .framer-1qub4d5 { display: block; }\",\".framer-QYzrH.framer-11l7nix { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-QYzrH .framer-1qb97sx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QYzrH .framer-go6lts, .framer-QYzrH .framer-m0d4a1 { 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-QYzrH .framer-v7znl9 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-QYzrH .framer-eq2z22 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 14px; }\",\".framer-QYzrH .framer-l582go { bottom: -16px; flex: none; height: 14px; left: -16px; position: absolute; width: 14px; z-index: 1; }\",\".framer-QYzrH .framer-rb4949 { aspect-ratio: 1 / 1; bottom: -32px; flex: none; height: var(--framer-aspect-ratio-supported, 14px); left: -32px; position: absolute; width: 14px; z-index: 1; }\",\".framer-QYzrH .framer-1ngfz3d { align-self: stretch; flex: none; height: 1px; overflow: hidden; position: relative; width: auto; }\",\".framer-QYzrH .framer-1g0r4cm { bottom: 0px; flex: none; left: -10px; overflow: hidden; position: absolute; top: 0px; width: 1%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QYzrH.framer-11l7nix, .framer-QYzrH .framer-1qb97sx, .framer-QYzrH .framer-go6lts, .framer-QYzrH .framer-m0d4a1 { gap: 0px; } .framer-QYzrH.framer-11l7nix > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-QYzrH.framer-11l7nix > :first-child { margin-top: 0px; } .framer-QYzrH.framer-11l7nix > :last-child { margin-bottom: 0px; } .framer-QYzrH .framer-1qb97sx > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-QYzrH .framer-1qb97sx > :first-child, .framer-QYzrH .framer-go6lts > :first-child, .framer-QYzrH .framer-m0d4a1 > :first-child { margin-left: 0px; } .framer-QYzrH .framer-1qb97sx > :last-child, .framer-QYzrH .framer-go6lts > :last-child, .framer-QYzrH .framer-m0d4a1 > :last-child { margin-right: 0px; } .framer-QYzrH .framer-go6lts > *, .framer-QYzrH .framer-m0d4a1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-QYzrH.framer-v-1rogm2e .framer-v7znl9 { z-index: 1; }\",\".framer-QYzrH.framer-v-1rogm2e .framer-eq2z22 { position: absolute; right: -16px; top: -16px; z-index: 1; }\",\".framer-QYzrH.framer-v-1rogm2e .framer-l582go, .framer-QYzrH.framer-v-1vsjr4s .framer-rb4949 { bottom: unset; left: unset; position: relative; }\",\".framer-QYzrH.framer-v-1rogm2e .framer-1g0r4cm { left: 0px; right: 0px; width: unset; }\",\".framer-QYzrH.framer-v-1vsjr4s .framer-eq2z22 { position: absolute; right: -32px; top: -32px; z-index: 1; }\",\".framer-QYzrH.framer-v-1vsjr4s .framer-l582go { bottom: unset; left: unset; right: -16px; top: -16px; }\",\".framer-QYzrH.framer-v-1vsjr4s .framer-1g0r4cm { left: unset; right: -10px; width: 1%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 83\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"r8XeUl5Ap\":{\"layout\":[\"auto\",\"auto\"]},\"QO30ud9J7\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"X4kGlDs4u\":\"buttonText\",\"UyXSbzLKo\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerH3VHBv7GG=withCSS(Component,css,\"framer-QYzrH\");export default FramerH3VHBv7GG;FramerH3VHBv7GG.displayName=\"Button/Button\";FramerH3VHBv7GG.defaultProps={height:27,width:83};addPropertyControls(FramerH3VHBv7GG,{variant:{options:[\"kgVMfqgB7\",\"r8XeUl5Ap\",\"QO30ud9J7\"],optionTitles:[\"Default\",\"Line IN\",\"Line OUT\"],title:\"Variant\",type:ControlType.Enum},X4kGlDs4u:{defaultValue:\"BUTTON\",displayTextArea:false,title:\"Button text\",type:ControlType.String},UyXSbzLKo:{title:\"Link\",type:ControlType.Link}});addFonts(FramerH3VHBv7GG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH3VHBv7GG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"83\",\"framerVariables\":\"{\\\"X4kGlDs4u\\\":\\\"buttonText\\\",\\\"UyXSbzLKo\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"r8XeUl5Ap\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QO30ud9J7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"27\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./H3VHBv7GG.map", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/8HIkw8sP8o2QdaE4j8aI/Ej8GbZT0G36UNNGftoJm/QnGDztJUy.js\";const cycleOrder=[\"Uj4S0bTOJ\",\"R6gARCyrO\",\"Xa5zlSxU4\"];const serializationHash=\"framer-Rho4I\";const variantClassNames={R6gARCyrO:\"framer-v-12tmtnb\",Uj4S0bTOJ:\"framer-v-1llfcik\",Xa5zlSxU4:\"framer-v-1c1bzy3\"};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={duration:0,type:\"tween\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Line IN\":\"R6gARCyrO\",\"Line OUT\":\"Xa5zlSxU4\",Default:\"Uj4S0bTOJ\"};const getProps=({height,id,label,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,UyXSbzLKo:link!==null&&link!==void 0?link:props.UyXSbzLKo,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Uj4S0bTOJ\",X4kGlDs4u:(_ref1=label!==null&&label!==void 0?label:props.X4kGlDs4u)!==null&&_ref1!==void 0?_ref1:\"BUTTON\"};};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,X4kGlDs4u,UyXSbzLKo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Uj4S0bTOJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnteru5rwoz=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"R6gARCyrO\");});const onMouseLeavehwz9av=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"Xa5zlSxU4\");});const onAppear13lesxy=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Uj4S0bTOJ\"),350);});useOnVariantChange(baseVariant,{Xa5zlSxU4:onAppear13lesxy});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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,...addPropertyOverrides({R6gARCyrO:{value:transition2},Xa5zlSxU4:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:UyXSbzLKo,nodeId:\"Uj4S0bTOJ\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1llfcik\",className,classNames)} framer-1c1nv2j`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Uj4S0bTOJ\",onMouseEnter:onMouseEnteru5rwoz,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({R6gARCyrO:{\"data-framer-name\":\"Line IN\",onMouseEnter:undefined,onMouseLeave:onMouseLeavehwz9av},Xa5zlSxU4:{\"data-framer-name\":\"Line OUT\",onMouseEnter:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19nikji\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"oX6X5MSsR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",style:{\"--framer-text-alignment\":\"left\"},children:\"UNDERLINE BUTTON\"})}),className:\"framer-1uf1q51\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ucKBQJnVP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:X4kGlDs4u,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({R6gARCyrO:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",style:{\"--framer-text-alignment\":\"left\"},children:\"UNDERLINE BUTTON\"})}),className:\"framer-ac6wx8\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hWiuKL3MO\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:X4kGlDs4u,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wt63jr\",\"data-framer-name\":\"Underline Wrap\",layoutDependency:layoutDependency,layoutId:\"JEnLWZYdT\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16mtbrs\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"xv2I1Iu6r\",style:{backgroundColor:\"var(--token-812a9ec7-4941-425e-882c-5462c36d5877, rgb(119, 128, 136))\"}})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rho4I.framer-1c1nv2j, .framer-Rho4I .framer-1c1nv2j { display: block; }\",\".framer-Rho4I.framer-1llfcik { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Rho4I .framer-19nikji { align-content: center; align-items: center; align-self: stretch; 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: auto; }\",\".framer-Rho4I .framer-1uf1q51 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Rho4I .framer-ac6wx8 { -webkit-user-select: none; bottom: -28px; flex: none; height: auto; position: absolute; right: 0px; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-Rho4I .framer-wt63jr { align-self: stretch; flex: none; height: 1px; overflow: hidden; position: relative; width: auto; }\",\".framer-Rho4I .framer-16mtbrs { bottom: 0px; flex: none; left: -10px; overflow: hidden; position: absolute; top: 0px; width: 1%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rho4I.framer-1llfcik, .framer-Rho4I .framer-19nikji { gap: 0px; } .framer-Rho4I.framer-1llfcik > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-Rho4I.framer-1llfcik > :first-child { margin-top: 0px; } .framer-Rho4I.framer-1llfcik > :last-child { margin-bottom: 0px; } .framer-Rho4I .framer-19nikji > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Rho4I .framer-19nikji > :first-child { margin-left: 0px; } .framer-Rho4I .framer-19nikji > :last-child { margin-right: 0px; } }\",\".framer-Rho4I.framer-v-12tmtnb .framer-1uf1q51 { left: 50%; position: absolute; top: -30px; z-index: 1; }\",\".framer-Rho4I.framer-v-12tmtnb .framer-ac6wx8 { bottom: unset; position: relative; right: unset; }\",\".framer-Rho4I.framer-v-12tmtnb .framer-16mtbrs { left: 0px; right: 0px; width: unset; }\",\".framer-Rho4I.framer-v-1c1bzy3 .framer-16mtbrs { left: unset; right: -10px; width: 1%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 61\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"R6gARCyrO\":{\"layout\":[\"auto\",\"auto\"]},\"Xa5zlSxU4\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"X4kGlDs4u\":\"label\",\"UyXSbzLKo\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernX5Llcm8Q=withCSS(Component,css,\"framer-Rho4I\");export default FramernX5Llcm8Q;FramernX5Llcm8Q.displayName=\"Button/Nav Button\";FramernX5Llcm8Q.defaultProps={height:27,width:61};addPropertyControls(FramernX5Llcm8Q,{variant:{options:[\"Uj4S0bTOJ\",\"R6gARCyrO\",\"Xa5zlSxU4\"],optionTitles:[\"Default\",\"Line IN\",\"Line OUT\"],title:\"Variant\",type:ControlType.Enum},X4kGlDs4u:{defaultValue:\"BUTTON\",displayTextArea:false,title:\"Label\",type:ControlType.String},UyXSbzLKo:{title:\"Link\",type:ControlType.Link}});addFonts(FramernX5Llcm8Q,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernX5Llcm8Q\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"R6gARCyrO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Xa5zlSxU4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"27\",\"framerVariables\":\"{\\\"X4kGlDs4u\\\":\\\"label\\\",\\\"UyXSbzLKo\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"61\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nX5Llcm8Q.map", "// Generated by Framer (3969033)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/8HIkw8sP8o2QdaE4j8aI/Ej8GbZT0G36UNNGftoJm/QnGDztJUy.js\";import ButtonButton from\"https://framerusercontent.com/modules/ZNiilnpGc0oVByk3tmIw/VLrggW5YCVJtnB8Xb2dA/H3VHBv7GG.js\";import ButtonNavButton from\"https://framerusercontent.com/modules/AIGTWlfOQFXHVV0WufM3/I5ez6vo8P9TrE34OiBE4/nX5Llcm8Q.js\";const ButtonNavButtonFonts=getFonts(ButtonNavButton);const ButtonButtonFonts=getFonts(ButtonButton);const cycleOrder=[\"fq5QFnZgw\",\"TgZc3CvSA\",\"wu_zuPuHn\",\"r9Zh_gTAX\",\"a637qNjqU\",\"GDGhRHy2L\",\"OAebwrROm\",\"zX1zBd1z7\",\"Aft9aUcEm\",\"f6mTG1iyF\"];const serializationHash=\"framer-ZFKdP\";const variantClassNames={a637qNjqU:\"framer-v-1qplzc1\",Aft9aUcEm:\"framer-v-wdk73o\",f6mTG1iyF:\"framer-v-1sevpwj\",fq5QFnZgw:\"framer-v-15c28iu\",GDGhRHy2L:\"framer-v-rkr3ew\",OAebwrROm:\"framer-v-1whvc6u\",r9Zh_gTAX:\"framer-v-1w8ky83\",TgZc3CvSA:\"framer-v-3rcomt\",wu_zuPuHn:\"framer-v-q0lphs\",zX1zBd1z7:\"framer-v-6zei38\"};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={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const humanReadableVariantMap={\"Desktop Scroll\":\"TgZc3CvSA\",\"Phone open\":\"a637qNjqU\",\"Phone Scroll open\":\"GDGhRHy2L\",\"Phone Scroll\":\"r9Zh_gTAX\",\"Tablet Scroll open\":\"f6mTG1iyF\",\"Tablet scroll\":\"Aft9aUcEm\",Desktop:\"fq5QFnZgw\",Phone:\"wu_zuPuHn\",Tablet:\"zX1zBd1z7\"};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:\"fq5QFnZgw\"};};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:\"fq5QFnZgw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1l85d5g=activeVariantCallback(async(...args)=>{setVariant(\"a637qNjqU\");});const onTaplnxg3w=activeVariantCallback(async(...args)=>{setVariant(\"GDGhRHy2L\");});const onTaplmoro8=activeVariantCallback(async(...args)=>{setVariant(\"wu_zuPuHn\");});const onTap1k38ujq=activeVariantCallback(async(...args)=>{setVariant(\"r9Zh_gTAX\");});const onTap1qpnwqr=activeVariantCallback(async(...args)=>{setVariant(\"zX1zBd1z7\");});const onTap18tans1=activeVariantCallback(async(...args)=>{setVariant(\"OAebwrROm\");});const onTap1kenpg3=activeVariantCallback(async(...args)=>{setVariant(\"f6mTG1iyF\");});const onTap1wccn25=activeVariantCallback(async(...args)=>{setVariant(\"Aft9aUcEm\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"wu_zuPuHn\",\"r9Zh_gTAX\",\"a637qNjqU\",\"GDGhRHy2L\",\"OAebwrROm\",\"zX1zBd1z7\",\"Aft9aUcEm\",\"f6mTG1iyF\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"wu_zuPuHn\",\"r9Zh_gTAX\",\"OAebwrROm\",\"Aft9aUcEm\"].includes(baseVariant))return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15c28iu\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"fq5QFnZgw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{a637qNjqU:{backgroundColor:\"var(--token-b2ba52c2-7c9a-4c4d-a981-4467e26b7446, rgb(255, 255, 255))\"},Aft9aUcEm:{backgroundColor:\"var(--token-b2ba52c2-7c9a-4c4d-a981-4467e26b7446, rgb(255, 255, 255))\"},f6mTG1iyF:{backgroundColor:\"var(--token-b2ba52c2-7c9a-4c4d-a981-4467e26b7446, rgb(255, 255, 255))\"},GDGhRHy2L:{backgroundColor:\"var(--token-b2ba52c2-7c9a-4c4d-a981-4467e26b7446, rgb(255, 255, 255))\"},r9Zh_gTAX:{backgroundColor:\"var(--token-b2ba52c2-7c9a-4c4d-a981-4467e26b7446, rgb(255, 255, 255))\"},TgZc3CvSA:{backgroundColor:\"var(--token-b2ba52c2-7c9a-4c4d-a981-4467e26b7446, rgb(255, 255, 255))\"},zX1zBd1z7:{backgroundColor:\"var(--token-b2ba52c2-7c9a-4c4d-a981-4467e26b7446, rgb(255, 255, 255))\"}},...addPropertyOverrides({a637qNjqU:{\"data-framer-name\":\"Phone open\"},Aft9aUcEm:{\"data-framer-name\":\"Tablet scroll\"},f6mTG1iyF:{\"data-framer-name\":\"Tablet Scroll open\"},GDGhRHy2L:{\"data-framer-name\":\"Phone Scroll open\"},OAebwrROm:{\"data-framer-name\":\"Tablet\"},r9Zh_gTAX:{\"data-framer-name\":\"Phone Scroll\"},TgZc3CvSA:{\"data-framer-name\":\"Desktop Scroll\"},wu_zuPuHn:{\"data-framer-name\":\"Phone\"},zX1zBd1z7:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c633gu\",\"data-framer-name\":\"Nav Container\",layoutDependency:layoutDependency,layoutId:\"et2egf6GI\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"s2h6IiahF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-13lw74f framer-60z0pp\",\"data-framer-name\":\"Logo-wapper\",layoutDependency:layoutDependency,layoutId:\"s2h6IiahF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r628hu\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"yzjw02A7y\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rnk2wy\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"kSZNDMl5x\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.39888 5.61196C8.85576 6.71492 9.09091 7.89706 9.09091 9.09091H0V0C1.19385 0 2.37593 0.235152 3.47889 0.692028C4.58185 1.14885 5.58405 1.81851 6.42822 2.66269C7.27239 3.50686 7.94201 4.509 8.39888 5.61196Z\" fill=\"#1E1E1E\" style=\"fill:#1E1E1E;fill:color(display-p3 0.1176 0.1176 0.1176);fill-opacity:1;\"/>\\n<path d=\"M8.39888 14.388C8.85576 13.2851 9.09091 12.1029 9.09091 10.9091H0V20C1.19385 20 2.37593 19.7648 3.47889 19.308C4.58185 18.8512 5.58405 18.1815 6.42822 17.3373C7.27239 16.4931 7.94201 15.491 8.39888 14.388Z\" fill=\"#1E1E1E\" style=\"fill:#1E1E1E;fill:color(display-p3 0.1176 0.1176 0.1176);fill-opacity:1;\"/>\\n<path d=\"M10.9091 9.09091C10.9091 7.89706 11.1442 6.71492 11.6011 5.61196C12.058 4.509 12.7276 3.50686 13.5718 2.66269C14.4159 1.81851 15.4181 1.14885 16.5211 0.692028C17.6241 0.235152 18.8062 0 20 0V9.09091H10.9091Z\" fill=\"#1E1E1E\" style=\"fill:#1E1E1E;fill:color(display-p3 0.1176 0.1176 0.1176);fill-opacity:1;\"/>\\n<path d=\"M11.6011 14.388C11.1442 13.2851 10.9091 12.1029 10.9091 10.9091H20V20C18.8062 20 17.6241 19.7648 16.5211 19.308C15.4181 18.8512 14.4159 18.1815 13.5718 17.3373C12.7276 16.4931 12.058 15.491 11.6011 14.388Z\" fill=\"#1E1E1E\" style=\"fill:#1E1E1E;fill:color(display-p3 0.1176 0.1176 0.1176);fill-opacity:1;\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-umdyz6\",\"data-styles-preset\":\"QnGDztJUy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30)))\"},children:\"StudioX\"})}),className:\"framer-1ailn3p\",\"data-framer-name\":\"StudioX\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XFHHFJEDA\",style:{\"--extracted-r6o4lv\":\"var(--token-8adc9627-93fe-4d84-8473-44925b3a5e9c, rgb(30, 30, 30))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w82lp8\",\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"I2842:293970;1288:30694;1288:22\",...addPropertyOverrides({a637qNjqU:{\"data-highlight\":true,onTap:onTaplmoro8},Aft9aUcEm:{\"data-highlight\":true,onTap:onTap1kenpg3},f6mTG1iyF:{\"data-highlight\":true,onTap:onTap1wccn25},GDGhRHy2L:{\"data-highlight\":true,onTap:onTap1k38ujq},OAebwrROm:{\"data-highlight\":true,onTap:onTap1qpnwqr},r9Zh_gTAX:{\"data-highlight\":true,onTap:onTaplnxg3w},wu_zuPuHn:{\"data-highlight\":true,onTap:onTap1l85d5g},zX1zBd1z7:{\"data-highlight\":true,onTap:onTap18tans1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hqfc1h\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"OwNuE3hNa\",style:{backgroundColor:\"var(--token-812a9ec7-4941-425e-882c-5462c36d5877, rgb(119, 128, 136))\",rotate:0},variants:{a637qNjqU:{rotate:45},f6mTG1iyF:{rotate:45},GDGhRHy2L:{rotate:45},zX1zBd1z7:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aee519\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"dZPZ9Rr7c\",style:{backgroundColor:\"var(--token-812a9ec7-4941-425e-882c-5462c36d5877, rgb(119, 128, 136))\",rotate:0},variants:{a637qNjqU:{rotate:-45},f6mTG1iyF:{rotate:-45},GDGhRHy2L:{rotate:-45},zX1zBd1z7:{rotate:-45}}})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-le877a\",\"data-framer-name\":\"Navmenu\",layoutDependency:layoutDependency,layoutId:\"w_AxPDxtp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f0oifs\",\"data-framer-name\":\"Pages\",layoutDependency:layoutDependency,layoutId:\"PIgYypR9s\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mSoa7PPLF\"},implicitPathVariables:undefined},{href:{webPageId:\"mSoa7PPLF\"},implicitPathVariables:undefined},{href:{webPageId:\"mSoa7PPLF\"},implicitPathVariables:undefined},{href:{webPageId:\"mSoa7PPLF\"},implicitPathVariables:undefined},{href:{webPageId:\"mSoa7PPLF\"},implicitPathVariables:undefined},{href:{webPageId:\"mSoa7PPLF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||67)-0-67)/2)+20+0+0,...addPropertyOverrides({a637qNjqU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+0+0+0},f6mTG1iyF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+0+0+0},GDGhRHy2L:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+0+0+0},zX1zBd1z7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z0k0a7-container\",layoutDependency:layoutDependency,layoutId:\"N6DpvrtQ3-container\",children:/*#__PURE__*/_jsx(ButtonNavButton,{height:\"100%\",id:\"N6DpvrtQ3\",layoutId:\"N6DpvrtQ3\",UyXSbzLKo:resolvedLinks[0],variant:\"Uj4S0bTOJ\",width:\"100%\",X4kGlDs4u:\"Projects\",...addPropertyOverrides({a637qNjqU:{UyXSbzLKo:resolvedLinks[2]},f6mTG1iyF:{UyXSbzLKo:resolvedLinks[5]},GDGhRHy2L:{UyXSbzLKo:resolvedLinks[3]},TgZc3CvSA:{UyXSbzLKo:resolvedLinks[1]},zX1zBd1z7:{UyXSbzLKo:resolvedLinks[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":doB3TFurQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":doB3TFurQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":doB3TFurQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":doB3TFurQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":doB3TFurQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":doB3TFurQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||67)-0-67)/2)+20+0+0,...addPropertyOverrides({a637qNjqU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+0+0+57},f6mTG1iyF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+0+0+57},GDGhRHy2L:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+0+0+57},zX1zBd1z7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+0+0+57}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ge2qxu-container\",layoutDependency:layoutDependency,layoutId:\"rsD71CLtk-container\",children:/*#__PURE__*/_jsx(ButtonNavButton,{height:\"100%\",id:\"rsD71CLtk\",layoutId:\"rsD71CLtk\",UyXSbzLKo:resolvedLinks1[0],variant:\"Uj4S0bTOJ\",width:\"100%\",X4kGlDs4u:\"Services\",...addPropertyOverrides({a637qNjqU:{UyXSbzLKo:resolvedLinks1[2]},f6mTG1iyF:{UyXSbzLKo:resolvedLinks1[5]},GDGhRHy2L:{UyXSbzLKo:resolvedLinks1[3]},TgZc3CvSA:{UyXSbzLKo:resolvedLinks1[1]},zX1zBd1z7:{UyXSbzLKo:resolvedLinks1[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ryi1zvrzN\"},implicitPathVariables:undefined},{href:{webPageId:\"ryi1zvrzN\"},implicitPathVariables:undefined},{href:{webPageId:\"ryi1zvrzN\"},implicitPathVariables:undefined},{href:{webPageId:\"ryi1zvrzN\"},implicitPathVariables:undefined},{href:{webPageId:\"ryi1zvrzN\"},implicitPathVariables:undefined},{href:{webPageId:\"ryi1zvrzN\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||67)-0-67)/2)+20+0+0,...addPropertyOverrides({a637qNjqU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+0+0+114},f6mTG1iyF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+0+0+114},GDGhRHy2L:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+0+0+114},zX1zBd1z7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+0+0+114}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15bcifm-container\",layoutDependency:layoutDependency,layoutId:\"d5scBst4T-container\",children:/*#__PURE__*/_jsx(ButtonNavButton,{height:\"100%\",id:\"d5scBst4T\",layoutId:\"d5scBst4T\",UyXSbzLKo:resolvedLinks2[0],variant:\"Uj4S0bTOJ\",width:\"100%\",X4kGlDs4u:\"Pricing\",...addPropertyOverrides({a637qNjqU:{UyXSbzLKo:resolvedLinks2[2]},f6mTG1iyF:{UyXSbzLKo:resolvedLinks2[5]},GDGhRHy2L:{UyXSbzLKo:resolvedLinks2[3]},TgZc3CvSA:{UyXSbzLKo:resolvedLinks2[1]},zX1zBd1z7:{UyXSbzLKo:resolvedLinks2[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"shbNe2jVi\"},implicitPathVariables:undefined},{href:{webPageId:\"shbNe2jVi\"},implicitPathVariables:undefined},{href:{webPageId:\"shbNe2jVi\"},implicitPathVariables:undefined},{href:{webPageId:\"shbNe2jVi\"},implicitPathVariables:undefined},{href:{webPageId:\"shbNe2jVi\"},implicitPathVariables:undefined},{href:{webPageId:\"shbNe2jVi\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||67)-0-67)/2)+20+0+0,...addPropertyOverrides({a637qNjqU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+0+0+171},f6mTG1iyF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+0+0+171},GDGhRHy2L:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+0+0+171},zX1zBd1z7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+0+0+171}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6xhaw8-container\",layoutDependency:layoutDependency,layoutId:\"Mx6ReiWD7-container\",children:/*#__PURE__*/_jsx(ButtonNavButton,{height:\"100%\",id:\"Mx6ReiWD7\",layoutId:\"Mx6ReiWD7\",UyXSbzLKo:resolvedLinks3[0],variant:\"Uj4S0bTOJ\",width:\"100%\",X4kGlDs4u:\"About\",...addPropertyOverrides({a637qNjqU:{UyXSbzLKo:resolvedLinks3[2]},f6mTG1iyF:{UyXSbzLKo:resolvedLinks3[5]},GDGhRHy2L:{UyXSbzLKo:resolvedLinks3[3]},TgZc3CvSA:{UyXSbzLKo:resolvedLinks3[1]},zX1zBd1z7:{UyXSbzLKo:resolvedLinks3[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CVE07ijJr\"},implicitPathVariables:undefined},{href:{webPageId:\"CVE07ijJr\"},implicitPathVariables:undefined},{href:{webPageId:\"CVE07ijJr\"},implicitPathVariables:undefined},{href:{webPageId:\"CVE07ijJr\"},implicitPathVariables:undefined},{href:{webPageId:\"CVE07ijJr\"},implicitPathVariables:undefined},{href:{webPageId:\"CVE07ijJr\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||67)-0-67)/2)+20+0+0,...addPropertyOverrides({a637qNjqU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+0+0+228},f6mTG1iyF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+0+0+228},GDGhRHy2L:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+0+0+228},zX1zBd1z7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+0+0+228}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jxssci-container\",layoutDependency:layoutDependency,layoutId:\"yRKnKhc18-container\",children:/*#__PURE__*/_jsx(ButtonNavButton,{height:\"100%\",id:\"yRKnKhc18\",layoutId:\"yRKnKhc18\",UyXSbzLKo:resolvedLinks4[0],variant:\"Uj4S0bTOJ\",width:\"100%\",X4kGlDs4u:\"Blog\",...addPropertyOverrides({a637qNjqU:{UyXSbzLKo:resolvedLinks4[2]},f6mTG1iyF:{UyXSbzLKo:resolvedLinks4[5]},GDGhRHy2L:{UyXSbzLKo:resolvedLinks4[3]},TgZc3CvSA:{UyXSbzLKo:resolvedLinks4[1]},zX1zBd1z7:{UyXSbzLKo:resolvedLinks4[4]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BToX8ptId\"},implicitPathVariables:undefined},{href:{webPageId:\"BToX8ptId\"},implicitPathVariables:undefined},{href:{webPageId:\"BToX8ptId\"},implicitPathVariables:undefined},{href:{webPageId:\"BToX8ptId\"},implicitPathVariables:undefined},{href:{webPageId:\"BToX8ptId\"},implicitPathVariables:undefined},{href:{webPageId:\"BToX8ptId\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||67)-0-67)/2)+20+0,...addPropertyOverrides({a637qNjqU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+285},f6mTG1iyF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+285},GDGhRHy2L:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||406)-0-406)/2+0+0)+20+34+10+285},zX1zBd1z7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-406)/2+0+0)+20+34+10+285}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1whws74-container\",layoutDependency:layoutDependency,layoutId:\"C_TpNAa_o-container\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"C_TpNAa_o\",layoutId:\"C_TpNAa_o\",UyXSbzLKo:resolvedLinks5[0],variant:\"r8XeUl5Ap\",width:\"100%\",X4kGlDs4u:\"Contact\",...addPropertyOverrides({a637qNjqU:{UyXSbzLKo:resolvedLinks5[2]},f6mTG1iyF:{UyXSbzLKo:resolvedLinks5[5]},GDGhRHy2L:{UyXSbzLKo:resolvedLinks5[3]},TgZc3CvSA:{UyXSbzLKo:resolvedLinks5[1]},zX1zBd1z7:{UyXSbzLKo:resolvedLinks5[4]}},baseVariant,gestureVariant)})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZFKdP.framer-60z0pp, .framer-ZFKdP .framer-60z0pp { display: block; }\",\".framer-ZFKdP.framer-15c28iu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-ZFKdP .framer-c633gu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1320px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-ZFKdP .framer-13lw74f { 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; text-decoration: none; width: min-content; }\",\".framer-ZFKdP .framer-r628hu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZFKdP .framer-1rnk2wy { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-ZFKdP .framer-1ailn3p { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZFKdP .framer-1w82lp8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; }\",\".framer-ZFKdP .framer-1hqfc1h, .framer-ZFKdP .framer-1aee519 { flex: none; height: 1px; overflow: hidden; position: relative; width: 14px; }\",\".framer-ZFKdP .framer-le877a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZFKdP .framer-f0oifs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZFKdP .framer-z0k0a7-container, .framer-ZFKdP .framer-1ge2qxu-container, .framer-ZFKdP .framer-15bcifm-container, .framer-ZFKdP .framer-6xhaw8-container, .framer-ZFKdP .framer-1jxssci-container, .framer-ZFKdP .framer-1whws74-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZFKdP.framer-15c28iu, .framer-ZFKdP .framer-13lw74f, .framer-ZFKdP .framer-r628hu, .framer-ZFKdP .framer-1w82lp8, .framer-ZFKdP .framer-le877a, .framer-ZFKdP .framer-f0oifs { gap: 0px; } .framer-ZFKdP.framer-15c28iu > *, .framer-ZFKdP .framer-13lw74f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZFKdP.framer-15c28iu > :first-child, .framer-ZFKdP .framer-13lw74f > :first-child, .framer-ZFKdP .framer-r628hu > :first-child, .framer-ZFKdP .framer-le877a > :first-child, .framer-ZFKdP .framer-f0oifs > :first-child { margin-left: 0px; } .framer-ZFKdP.framer-15c28iu > :last-child, .framer-ZFKdP .framer-13lw74f > :last-child, .framer-ZFKdP .framer-r628hu > :last-child, .framer-ZFKdP .framer-le877a > :last-child, .framer-ZFKdP .framer-f0oifs > :last-child { margin-right: 0px; } .framer-ZFKdP .framer-r628hu > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ZFKdP .framer-1w82lp8 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-ZFKdP .framer-1w82lp8 > :first-child { margin-top: 0px; } .framer-ZFKdP .framer-1w82lp8 > :last-child { margin-bottom: 0px; } .framer-ZFKdP .framer-le877a > * { margin: 0px; margin-left: calc(90px / 2); margin-right: calc(90px / 2); } .framer-ZFKdP .framer-f0oifs > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",\".framer-ZFKdP.framer-v-q0lphs.framer-15c28iu, .framer-ZFKdP.framer-v-1w8ky83.framer-15c28iu { padding: 0px 20px 0px 20px; width: 390px; }\",\".framer-ZFKdP.framer-v-q0lphs .framer-13lw74f, .framer-ZFKdP.framer-v-1w8ky83 .framer-13lw74f, .framer-ZFKdP.framer-v-1whvc6u .framer-13lw74f, .framer-ZFKdP.framer-v-wdk73o .framer-13lw74f { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\".framer-ZFKdP.framer-v-q0lphs .framer-1w82lp8, .framer-ZFKdP.framer-v-1w8ky83 .framer-1w82lp8, .framer-ZFKdP.framer-v-1whvc6u .framer-1w82lp8, .framer-ZFKdP.framer-v-wdk73o .framer-1w82lp8 { cursor: pointer; gap: 8px; }\",\".framer-ZFKdP.framer-v-q0lphs .framer-1hqfc1h, .framer-ZFKdP.framer-v-q0lphs .framer-1aee519, .framer-ZFKdP.framer-v-1w8ky83 .framer-1hqfc1h, .framer-ZFKdP.framer-v-1w8ky83 .framer-1aee519, .framer-ZFKdP.framer-v-1whvc6u .framer-1hqfc1h, .framer-ZFKdP.framer-v-1whvc6u .framer-1aee519, .framer-ZFKdP.framer-v-wdk73o .framer-1hqfc1h, .framer-ZFKdP.framer-v-wdk73o .framer-1aee519 { width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZFKdP.framer-v-q0lphs .framer-13lw74f, .framer-ZFKdP.framer-v-q0lphs .framer-1w82lp8 { gap: 0px; } .framer-ZFKdP.framer-v-q0lphs .framer-13lw74f > *, .framer-ZFKdP.framer-v-q0lphs .framer-13lw74f > :first-child, .framer-ZFKdP.framer-v-q0lphs .framer-13lw74f > :last-child { margin: 0px; } .framer-ZFKdP.framer-v-q0lphs .framer-1w82lp8 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZFKdP.framer-v-q0lphs .framer-1w82lp8 > :first-child { margin-top: 0px; } .framer-ZFKdP.framer-v-q0lphs .framer-1w82lp8 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZFKdP.framer-v-1w8ky83 .framer-13lw74f, .framer-ZFKdP.framer-v-1w8ky83 .framer-1w82lp8 { gap: 0px; } .framer-ZFKdP.framer-v-1w8ky83 .framer-13lw74f > *, .framer-ZFKdP.framer-v-1w8ky83 .framer-13lw74f > :first-child, .framer-ZFKdP.framer-v-1w8ky83 .framer-13lw74f > :last-child { margin: 0px; } .framer-ZFKdP.framer-v-1w8ky83 .framer-1w82lp8 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZFKdP.framer-v-1w8ky83 .framer-1w82lp8 > :first-child { margin-top: 0px; } .framer-ZFKdP.framer-v-1w8ky83 .framer-1w82lp8 > :last-child { margin-bottom: 0px; } }\",\".framer-ZFKdP.framer-v-1qplzc1.framer-15c28iu, .framer-ZFKdP.framer-v-rkr3ew.framer-15c28iu { flex-direction: column; padding: 0px 20px 0px 20px; width: 390px; }\",\".framer-ZFKdP.framer-v-1qplzc1 .framer-c633gu, .framer-ZFKdP.framer-v-rkr3ew .framer-c633gu, .framer-ZFKdP.framer-v-6zei38 .framer-c633gu, .framer-ZFKdP.framer-v-1sevpwj .framer-c633gu { flex: none; flex-direction: column; gap: 10px; justify-content: center; width: 100%; }\",\".framer-ZFKdP.framer-v-1qplzc1 .framer-13lw74f, .framer-ZFKdP.framer-v-rkr3ew .framer-13lw74f, .framer-ZFKdP.framer-v-6zei38 .framer-13lw74f, .framer-ZFKdP.framer-v-1sevpwj .framer-13lw74f { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-ZFKdP.framer-v-1qplzc1 .framer-1w82lp8, .framer-ZFKdP.framer-v-rkr3ew .framer-1w82lp8, .framer-ZFKdP.framer-v-6zei38 .framer-1w82lp8, .framer-ZFKdP.framer-v-1sevpwj .framer-1w82lp8 { cursor: pointer; min-height: 24px; min-width: 24px; }\",\".framer-ZFKdP.framer-v-1qplzc1 .framer-1hqfc1h, .framer-ZFKdP.framer-v-1qplzc1 .framer-1aee519, .framer-ZFKdP.framer-v-rkr3ew .framer-1hqfc1h, .framer-ZFKdP.framer-v-rkr3ew .framer-1aee519, .framer-ZFKdP.framer-v-6zei38 .framer-1hqfc1h, .framer-ZFKdP.framer-v-6zei38 .framer-1aee519, .framer-ZFKdP.framer-v-1sevpwj .framer-1hqfc1h, .framer-ZFKdP.framer-v-1sevpwj .framer-1aee519 { left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 16px; z-index: 1; }\",\".framer-ZFKdP.framer-v-1qplzc1 .framer-le877a, .framer-ZFKdP.framer-v-rkr3ew .framer-le877a, .framer-ZFKdP.framer-v-6zei38 .framer-le877a, .framer-ZFKdP.framer-v-1sevpwj .framer-le877a { flex-direction: column; gap: 30px; padding: 10px; width: 100%; }\",\".framer-ZFKdP.framer-v-1qplzc1 .framer-f0oifs, .framer-ZFKdP.framer-v-rkr3ew .framer-f0oifs, .framer-ZFKdP.framer-v-6zei38 .framer-f0oifs, .framer-ZFKdP.framer-v-1sevpwj .framer-f0oifs { flex-direction: column; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZFKdP.framer-v-1qplzc1.framer-15c28iu, .framer-ZFKdP.framer-v-1qplzc1 .framer-c633gu, .framer-ZFKdP.framer-v-1qplzc1 .framer-13lw74f, .framer-ZFKdP.framer-v-1qplzc1 .framer-le877a, .framer-ZFKdP.framer-v-1qplzc1 .framer-f0oifs { gap: 0px; } .framer-ZFKdP.framer-v-1qplzc1.framer-15c28iu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZFKdP.framer-v-1qplzc1.framer-15c28iu > :first-child, .framer-ZFKdP.framer-v-1qplzc1 .framer-c633gu > :first-child, .framer-ZFKdP.framer-v-1qplzc1 .framer-le877a > :first-child, .framer-ZFKdP.framer-v-1qplzc1 .framer-f0oifs > :first-child { margin-top: 0px; } .framer-ZFKdP.framer-v-1qplzc1.framer-15c28iu > :last-child, .framer-ZFKdP.framer-v-1qplzc1 .framer-c633gu > :last-child, .framer-ZFKdP.framer-v-1qplzc1 .framer-le877a > :last-child, .framer-ZFKdP.framer-v-1qplzc1 .framer-f0oifs > :last-child { margin-bottom: 0px; } .framer-ZFKdP.framer-v-1qplzc1 .framer-c633gu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZFKdP.framer-v-1qplzc1 .framer-13lw74f > *, .framer-ZFKdP.framer-v-1qplzc1 .framer-13lw74f > :first-child, .framer-ZFKdP.framer-v-1qplzc1 .framer-13lw74f > :last-child { margin: 0px; } .framer-ZFKdP.framer-v-1qplzc1 .framer-le877a > *, .framer-ZFKdP.framer-v-1qplzc1 .framer-f0oifs > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZFKdP.framer-v-rkr3ew.framer-15c28iu, .framer-ZFKdP.framer-v-rkr3ew .framer-c633gu, .framer-ZFKdP.framer-v-rkr3ew .framer-13lw74f, .framer-ZFKdP.framer-v-rkr3ew .framer-le877a, .framer-ZFKdP.framer-v-rkr3ew .framer-f0oifs { gap: 0px; } .framer-ZFKdP.framer-v-rkr3ew.framer-15c28iu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZFKdP.framer-v-rkr3ew.framer-15c28iu > :first-child, .framer-ZFKdP.framer-v-rkr3ew .framer-c633gu > :first-child, .framer-ZFKdP.framer-v-rkr3ew .framer-le877a > :first-child, .framer-ZFKdP.framer-v-rkr3ew .framer-f0oifs > :first-child { margin-top: 0px; } .framer-ZFKdP.framer-v-rkr3ew.framer-15c28iu > :last-child, .framer-ZFKdP.framer-v-rkr3ew .framer-c633gu > :last-child, .framer-ZFKdP.framer-v-rkr3ew .framer-le877a > :last-child, .framer-ZFKdP.framer-v-rkr3ew .framer-f0oifs > :last-child { margin-bottom: 0px; } .framer-ZFKdP.framer-v-rkr3ew .framer-c633gu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZFKdP.framer-v-rkr3ew .framer-13lw74f > *, .framer-ZFKdP.framer-v-rkr3ew .framer-13lw74f > :first-child, .framer-ZFKdP.framer-v-rkr3ew .framer-13lw74f > :last-child { margin: 0px; } .framer-ZFKdP.framer-v-rkr3ew .framer-le877a > *, .framer-ZFKdP.framer-v-rkr3ew .framer-f0oifs > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-ZFKdP.framer-v-1whvc6u.framer-15c28iu, .framer-ZFKdP.framer-v-wdk73o.framer-15c28iu { padding: 0px 40px 0px 40px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZFKdP.framer-v-1whvc6u .framer-13lw74f, .framer-ZFKdP.framer-v-1whvc6u .framer-1w82lp8 { gap: 0px; } .framer-ZFKdP.framer-v-1whvc6u .framer-13lw74f > *, .framer-ZFKdP.framer-v-1whvc6u .framer-13lw74f > :first-child, .framer-ZFKdP.framer-v-1whvc6u .framer-13lw74f > :last-child { margin: 0px; } .framer-ZFKdP.framer-v-1whvc6u .framer-1w82lp8 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZFKdP.framer-v-1whvc6u .framer-1w82lp8 > :first-child { margin-top: 0px; } .framer-ZFKdP.framer-v-1whvc6u .framer-1w82lp8 > :last-child { margin-bottom: 0px; } }\",\".framer-ZFKdP.framer-v-6zei38.framer-15c28iu, .framer-ZFKdP.framer-v-1sevpwj.framer-15c28iu { flex-direction: column; padding: 0px 40px 0px 40px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZFKdP.framer-v-6zei38.framer-15c28iu, .framer-ZFKdP.framer-v-6zei38 .framer-c633gu, .framer-ZFKdP.framer-v-6zei38 .framer-13lw74f, .framer-ZFKdP.framer-v-6zei38 .framer-le877a, .framer-ZFKdP.framer-v-6zei38 .framer-f0oifs { gap: 0px; } .framer-ZFKdP.framer-v-6zei38.framer-15c28iu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZFKdP.framer-v-6zei38.framer-15c28iu > :first-child, .framer-ZFKdP.framer-v-6zei38 .framer-c633gu > :first-child, .framer-ZFKdP.framer-v-6zei38 .framer-le877a > :first-child, .framer-ZFKdP.framer-v-6zei38 .framer-f0oifs > :first-child { margin-top: 0px; } .framer-ZFKdP.framer-v-6zei38.framer-15c28iu > :last-child, .framer-ZFKdP.framer-v-6zei38 .framer-c633gu > :last-child, .framer-ZFKdP.framer-v-6zei38 .framer-le877a > :last-child, .framer-ZFKdP.framer-v-6zei38 .framer-f0oifs > :last-child { margin-bottom: 0px; } .framer-ZFKdP.framer-v-6zei38 .framer-c633gu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZFKdP.framer-v-6zei38 .framer-13lw74f > *, .framer-ZFKdP.framer-v-6zei38 .framer-13lw74f > :first-child, .framer-ZFKdP.framer-v-6zei38 .framer-13lw74f > :last-child { margin: 0px; } .framer-ZFKdP.framer-v-6zei38 .framer-le877a > *, .framer-ZFKdP.framer-v-6zei38 .framer-f0oifs > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZFKdP.framer-v-wdk73o .framer-13lw74f, .framer-ZFKdP.framer-v-wdk73o .framer-1w82lp8 { gap: 0px; } .framer-ZFKdP.framer-v-wdk73o .framer-13lw74f > *, .framer-ZFKdP.framer-v-wdk73o .framer-13lw74f > :first-child, .framer-ZFKdP.framer-v-wdk73o .framer-13lw74f > :last-child { margin: 0px; } .framer-ZFKdP.framer-v-wdk73o .framer-1w82lp8 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZFKdP.framer-v-wdk73o .framer-1w82lp8 > :first-child { margin-top: 0px; } .framer-ZFKdP.framer-v-wdk73o .framer-1w82lp8 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZFKdP.framer-v-1sevpwj.framer-15c28iu, .framer-ZFKdP.framer-v-1sevpwj .framer-c633gu, .framer-ZFKdP.framer-v-1sevpwj .framer-13lw74f, .framer-ZFKdP.framer-v-1sevpwj .framer-le877a, .framer-ZFKdP.framer-v-1sevpwj .framer-f0oifs { gap: 0px; } .framer-ZFKdP.framer-v-1sevpwj.framer-15c28iu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZFKdP.framer-v-1sevpwj.framer-15c28iu > :first-child, .framer-ZFKdP.framer-v-1sevpwj .framer-c633gu > :first-child, .framer-ZFKdP.framer-v-1sevpwj .framer-le877a > :first-child, .framer-ZFKdP.framer-v-1sevpwj .framer-f0oifs > :first-child { margin-top: 0px; } .framer-ZFKdP.framer-v-1sevpwj.framer-15c28iu > :last-child, .framer-ZFKdP.framer-v-1sevpwj .framer-c633gu > :last-child, .framer-ZFKdP.framer-v-1sevpwj .framer-le877a > :last-child, .framer-ZFKdP.framer-v-1sevpwj .framer-f0oifs > :last-child { margin-bottom: 0px; } .framer-ZFKdP.framer-v-1sevpwj .framer-c633gu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZFKdP.framer-v-1sevpwj .framer-13lw74f > *, .framer-ZFKdP.framer-v-1sevpwj .framer-13lw74f > :first-child, .framer-ZFKdP.framer-v-1sevpwj .framer-13lw74f > :last-child { margin: 0px; } .framer-ZFKdP.framer-v-1sevpwj .framer-le877a > *, .framer-ZFKdP.framer-v-1sevpwj .framer-f0oifs > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 67\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TgZc3CvSA\":{\"layout\":[\"fixed\",\"auto\"]},\"wu_zuPuHn\":{\"layout\":[\"fixed\",\"auto\"]},\"r9Zh_gTAX\":{\"layout\":[\"fixed\",\"auto\"]},\"a637qNjqU\":{\"layout\":[\"fixed\",\"auto\"]},\"GDGhRHy2L\":{\"layout\":[\"fixed\",\"auto\"]},\"OAebwrROm\":{\"layout\":[\"fixed\",\"auto\"]},\"zX1zBd1z7\":{\"layout\":[\"fixed\",\"auto\"]},\"Aft9aUcEm\":{\"layout\":[\"fixed\",\"auto\"]},\"f6mTG1iyF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framery5yz6e4dS=withCSS(Component,css,\"framer-ZFKdP\");export default Framery5yz6e4dS;Framery5yz6e4dS.displayName=\"Navbar/Navbar\";Framery5yz6e4dS.defaultProps={height:67,width:1440};addPropertyControls(Framery5yz6e4dS,{variant:{options:[\"fq5QFnZgw\",\"TgZc3CvSA\",\"wu_zuPuHn\",\"r9Zh_gTAX\",\"a637qNjqU\",\"GDGhRHy2L\",\"OAebwrROm\",\"zX1zBd1z7\",\"Aft9aUcEm\",\"f6mTG1iyF\"],optionTitles:[\"Desktop\",\"Desktop Scroll\",\"Phone\",\"Phone Scroll\",\"Phone open\",\"Phone Scroll open\",\"Tablet\",\"Tablet\",\"Tablet scroll\",\"Tablet Scroll open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framery5yz6e4dS,[{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\"}]},...ButtonNavButtonFonts,...ButtonButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery5yz6e4dS\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TgZc3CvSA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wu_zuPuHn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r9Zh_gTAX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a637qNjqU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GDGhRHy2L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OAebwrROm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zX1zBd1z7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Aft9aUcEm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f6mTG1iyF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"67\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./y5yz6e4dS.map", "// Generated by Framer (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Geist-500\",\"GF;Geist-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_Re-Q4mJPby1QNtA.woff2\",weight:\"700\"}]}];export const css=['.framer-dh4Zf .framer-styles-preset-bz2jzv:not(.rich-text-wrapper), .framer-dh4Zf .framer-styles-preset-bz2jzv.rich-text-wrapper h1 { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 72px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #1e1e1e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-dh4Zf .framer-styles-preset-bz2jzv:not(.rich-text-wrapper), .framer-dh4Zf .framer-styles-preset-bz2jzv.rich-text-wrapper h1 { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 58px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #1e1e1e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-dh4Zf .framer-styles-preset-bz2jzv:not(.rich-text-wrapper), .framer-dh4Zf .framer-styles-preset-bz2jzv.rich-text-wrapper h1 { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 38px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #1e1e1e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }'];export const className=\"framer-dh4Zf\";\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\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "i", "Animate", "s", "o", "n", "r", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "l", "h", "a", "c", "u", "d", "p", "m", "v", "g", "w", "S", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "checkOverflow", "window", "htmlObserver", "mutations", "mutation", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinksData", "anchor", "href", "decodedHref", "scrollMargin", "targetElement", "handleClick", "e", "handlers", "anchorElement", "index", "p", "l", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "iconVisible", "id", "lineColor", "link", "text", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "X4kGlDs4u", "wese7Dho_", "CgTkW2rvJ", "kK5CLlJSZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntervebruw", "args", "onMouseLeave8f2jrk", "onAppearqjb64j", "onMouseEnterydzzqj", "onMouseLeave1nlk8r5", "onAppear1l3x6az", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Link", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "SVG", "css", "FramerYQd8ph1_I", "withCSS", "YQd8ph1_I_default", "addPropertyControls", "ControlType", "addFonts", "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", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "tevp_qehI", "hgxLBwyWG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1jv8azf", "args", "onMouseLeave10ano3c", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "SVG", "css", "FramerrFdJt45qJ", "withCSS", "rFdJt45qJ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonMainButtonFonts", "getFonts", "YQd8ph1_I_default", "ButtonFooterButtonFonts", "rFdJt45qJ_default", "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", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "SVG", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerK3a9jWA7Q", "withCSS", "K3a9jWA7Q_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonText", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "X4kGlDs4u", "UyXSbzLKo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap4qg8ef", "args", "onMouseEnter1avrjna", "onMouseLeave11zvhu3", "onAppear1g58tkf", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "SVG", "css", "FramerH3VHBv7GG", "withCSS", "H3VHBv7GG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "label", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "X4kGlDs4u", "UyXSbzLKo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnteru5rwoz", "args", "onMouseLeavehwz9av", "onAppear13lesxy", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramernX5Llcm8Q", "withCSS", "nX5Llcm8Q_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonNavButtonFonts", "getFonts", "nX5Llcm8Q_default", "ButtonButtonFonts", "H3VHBv7GG_default", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1l85d5g", "args", "onTaplnxg3w", "onTaplmoro8", "onTap1k38ujq", "onTap1qpnwqr", "onTap18tans1", "onTap1kenpg3", "onTap1wccn25", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "SVG", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "Framery5yz6e4dS", "withCSS", "y5yz6e4dS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
